diff --git a/.github/workflows/micropython-badger2040.yml b/.github/workflows/micropython-badger2040.yml index 290d1659..3c14439f 100644 --- a/.github/workflows/micropython-badger2040.yml +++ b/.github/workflows/micropython-badger2040.yml @@ -42,18 +42,8 @@ jobs: path: pimoroni-pico-${{ github.sha }} # Copy Python module files - - name: Copy modules & examples + - name: HACK - Copy board config fixup run: | - cp -r pimoroni-pico-${GITHUB_SHA}/micropython/badger2040_modules_py/* micropython/ports/rp2/modules/ - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/launcher.py micropython/ports/rp2/modules/_launcher.py - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/clock.py micropython/ports/rp2/modules/_clock.py - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/fonts.py micropython/ports/rp2/modules/_fonts.py - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/e-reader.py micropython/ports/rp2/modules/_ebook.py - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/image.py micropython/ports/rp2/modules/_image.py - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/checklist.py micropython/ports/rp2/modules/_list.py - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/badge.py micropython/ports/rp2/modules/_badge.py - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/help.py micropython/ports/rp2/modules/_help.py - cp pimoroni-pico-${GITHUB_SHA}/micropython/examples/badger2040/info.py micropython/ports/rp2/modules/_info.py cp pimoroni-pico-${GITHUB_SHA}/micropython/badger2040-mpconfigboard.h micropython/ports/rp2/boards/PICO/mpconfigboard.h # Linux deps @@ -61,6 +51,7 @@ jobs: if: runner.os == 'Linux' run: | sudo apt update && sudo apt install ${{matrix.apt-packages}} + python3 -m pip install pillow - name: Fetch base MicroPython submodules shell: bash diff --git a/examples/badger2040/image_converter/convert.py b/examples/badger2040/image_converter/convert.py index 1e8c43ba..c1c7b447 100755 --- a/examples/badger2040/image_converter/convert.py +++ b/examples/badger2040/image_converter/convert.py @@ -5,14 +5,17 @@ # and reducing to black and white with dither. the data is then output as an # array that can be embedded directly into your c++ code +import io import argparse -import sys from PIL import Image, ImageEnhance from pathlib import Path +import data_to_py parser = argparse.ArgumentParser(description='Converts images into the format used by Badger2040.') parser.add_argument('file', nargs="+", help='input files to convert') +parser.add_argument('--out_dir', type=Path, default=None, help='output directory') parser.add_argument('--binary', action="store_true", help='output binary file for MicroPython') +parser.add_argument('--py', action="store_true", help='output .py file for MicroPython embedding') parser.add_argument('--resize', action="store_true", help='force images to 296x128 pixels') options = parser.parse_args() @@ -39,10 +42,21 @@ for input_filename in options.file: output_data = [~b & 0xff for b in list(img.tobytes())] if options.binary: - output_filename = Path(input_filename).with_suffix(".bin") + if options.out_dir is not None: + output_filename = (options.out_dir / image_name).with_suffix(".bin") + else: + output_filename = Path(input_filename).with_suffix(".bin") print(f"Saving to {output_filename}, {w}x{h}") with open(output_filename, "wb") as out: out.write(bytearray(output_data)) + elif options.py: + if options.out_dir is not None: + output_filename = (options.out_dir / image_name).with_suffix(".py") + else: + output_filename = Path(input_filename).with_suffix(".py") + print(f"Saving to {output_filename}, {w}x{h}") + with open(output_filename, "w") as out: + data_to_py.write_stream(io.BytesIO(bytes(output_data)), out) else: image_code = '''\ static const uint8_t {image_name}[{count}] = {{ diff --git a/examples/badger2040/image_converter/data_to_py.py b/examples/badger2040/image_converter/data_to_py.py new file mode 100644 index 00000000..da604909 --- /dev/null +++ b/examples/badger2040/image_converter/data_to_py.py @@ -0,0 +1,153 @@ +#! /usr/bin/python3 +# -*- coding: utf-8 -*- + +# The MIT License (MIT) +# +# Copyright (c) 2016 Peter Hinch +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +# THE SOFTWARE. + +import argparse +import sys +import os + +# UTILITIES FOR WRITING PYTHON SOURCECODE TO A FILE + +# ByteWriter takes as input a variable name and data values and writes +# Python source to an output stream of the form +# my_variable = b'\x01\x02\x03\x04\x05\x06\x07\x08'\ + +# Lines are broken with \ for readability. + + +class ByteWriter(object): + bytes_per_line = 16 + + def __init__(self, stream, varname): + self.stream = stream + self.stream.write('{} =\\\n'.format(varname)) + self.bytecount = 0 # For line breaks + + def _eol(self): + self.stream.write("'\\\n") + + def _eot(self): + self.stream.write("'\n") + + def _bol(self): + self.stream.write("b'") + + # Output a single byte + def obyte(self, data): + if not self.bytecount: + self._bol() + self.stream.write('\\x{:02x}'.format(data)) + self.bytecount += 1 + self.bytecount %= self.bytes_per_line + if not self.bytecount: + self._eol() + + # Output from a sequence + def odata(self, bytelist): + for byt in bytelist: + self.obyte(byt) + + # ensure a correct final line + def eot(self): # User force EOL if one hasn't occurred + if self.bytecount: + self._eot() + self.stream.write('\n') + + +# PYTHON FILE WRITING + +STR01 = """# Code generated by data_to_py.py. +version = '0.1' +""" + +STR02 = """_mvdata = memoryview(_data) + +def data(): + return _mvdata + +""" + +def write_func(stream, name, arg): + stream.write('def {}():\n return {}\n\n'.format(name, arg)) + + +def write_data(op_path, ip_path): + try: + with open(ip_path, 'rb') as ip_stream: + try: + with open(op_path, 'w') as op_stream: + write_stream(ip_stream, op_stream) + except OSError: + print("Can't open", op_path, 'for writing') + return False + except OSError: + print("Can't open", ip_path) + return False + return True + + +def write_stream(ip_stream, op_stream): + op_stream.write(STR01) + op_stream.write('\n') + data = ip_stream.read() + bw_data = ByteWriter(op_stream, '_data') + bw_data.odata(data) + bw_data.eot() + op_stream.write(STR02) + + +# PARSE COMMAND LINE ARGUMENTS + +def quit(msg): + print(msg) + sys.exit(1) + +DESC = """data_to_py.py +Utility to convert an arbitrary binary file to Python source. +Sample usage: +data_to_py.py image.jpg image.py + +""" + +if __name__ == "__main__": + parser = argparse.ArgumentParser(__file__, description=DESC, + formatter_class=argparse.RawDescriptionHelpFormatter) + parser.add_argument('infile', type=str, help='Input file path') + parser.add_argument('outfile', type=str, + help='Path and name of output file. Must have .py extension.') + + + args = parser.parse_args() + + if not os.path.isfile(args.infile): + quit("Data filename does not exist") + + if not os.path.splitext(args.outfile)[1].upper() == '.PY': + quit('Output filename must have a .py extension.') + + print('Writing Python file.') + if not write_data(args.outfile, args.infile): + sys.exit(1) + + print(args.outfile, 'written successfully.') diff --git a/micropython/badger2040_modules_py/badge_image.py b/micropython/badger2040_modules_py/badge_image.py deleted file mode 100644 index 17699dc7..00000000 --- a/micropython/badger2040_modules_py/badge_image.py +++ /dev/null @@ -1,114 +0,0 @@ -# Code generated by data_to_py.py. -version = '0.1' - -_data =\ -b'\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x71\x0b\x40\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x09\xfc\x8b\xa8\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x04\xbf\x42\xee\x88\x00\x00\x00\x00\x80\x00'\ -b'\x00\x18\x43\xd5\x6f\xb7\xf0\x00\x00\x04\x5b\x1a\x00\x00\x04\x0f'\ -b'\x6f\xe3\x6d\x4d\x00\x00\x2b\xcd\xbc\x90\x00\x0e\xb5\xfa\xb7\xb7'\ -b'\xec\x00\x00\x07\xfe\xee\x31\xa4\x27\x76\xaf\xf5\xf5\xbc\x00\x00'\ -b'\x1a\xd7\x6b\x39\xe4\x05\xdd\xfa\xbe\xbe\xf2\x00\x00\x0f\x7a\xbe'\ -b'\xb7\xdc\x27\x47\x5f\x6f\xe7\xa8\x00\x00\x2b\xaf\xd5\x1f\xee\x13'\ -b'\x63\x7f\xfd\x7d\xf8\x00\x00\x0d\xf5\xff\xdf\xfd\x53\xb1\xde\xef'\ -b'\xad\x44\x00\x00\x2e\xde\xae\xef\xf1\x0d\xf3\xef\xff\xf7\x98\x00'\ -b'\x00\x0b\xfb\xfb\xfe\xfd\x0f\xad\xfe\xfd\x5e\xf0\x00\x00\x1d\x2d'\ -b'\xaf\xb7\xee\x06\xbe\xff\x5f\xeb\xa0\x00\x00\x0d\xfe\xf5\xbf\xf7'\ -b'\x0b\xd7\xff\xff\xfe\xe0\x00\x00\x73\x6b\x5f\xd7\xdb\x1e\xfa\xff'\ -b'\xff\xdd\xa0\x00\x00\x07\xbf\xfd\xbf\xba\x03\xcd\xff\x6f\xf7\xe8'\ -b'\x00\x00\x2e\xda\xd6\xff\xf4\x1f\xff\xff\xff\xfb\x20\x00\x00\x13'\ -b'\xff\xff\x7b\xd6\x1d\xff\xfb\xad\xfb\xc0\x00\x00\x0b\x5e\xaf\xbf'\ -b'\xf9\x05\xff\xbe\xdf\xfe\xd0\x00\x00\x57\xfb\xf6\xfd\xbb\x07\x5f'\ -b'\xe7\x7b\xfa\x00\x00\x00\x45\x6d\x5f\x77\xee\x07\xdf\xf7\xbf\xff'\ -b'\x20\x04\x00\x27\xbd\xfb\xbf\x7b\x0b\xff\xfb\xfd\xfb\x88\x00\x00'\ -b'\x05\xdf\x3d\xff\xaf\x0a\xff\xf6\xff\xfe\x80\x00\x00\x15\x6d\xef'\ -b'\xff\x7f\x01\xdf\xff\xbf\x7f\x00\x00\x00\x03\xff\xf6\xff\xff\x05'\ -b'\x6f\xf6\xff\xef\x80\x00\x00\x4d\x5a\xff\xfd\xff\x02\xbb\xff\xff'\ -b'\xf9\x80\x00\x00\x0f\x6f\x5d\xff\x7f\x07\x6f\x9b\xff\xfc\xa0\x00'\ -b'\x00\x5d\xff\xff\xff\xf7\x00\xee\xee\xff\xee\x00\x00\x00\x17\x95'\ -b'\x57\xfb\xff\x00\x37\xff\x7f\xff\xa0\x00\x00\x95\xff\xfd\xff\xff'\ -b'\x22\x9d\xff\xff\xee\x80\x00\x00\x7e\xaa\xdf\xff\xff\x17\x97\x5f'\ -b'\xff\xff\xc0\x40\x20\x2b\xff\xe7\xff\xff\x0f\x72\xef\xef\xfb\x60'\ -b'\x00\x00\x1f\xf5\x3f\x7f\xff\x09\x3b\x7f\xff\xfd\x90\x20\x00\x4b'\ -b'\x3f\xff\xff\xff\x00\x0d\xd7\xff\xef\x40\x00\x00\x5b\xad\xb7\xff'\ -b'\xff\x04\x0f\x7f\xfd\xdb\x00\x00\x00\x1e\xf7\x7f\xff\xfe\x0a\x01'\ -b'\xf7\xff\xfd\x90\x00\x00\x2f\xad\xff\xff\xfb\x18\x05\xbd\xff\xed'\ -b'\xc0\x00\x04\x2b\xf6\xff\xff\xfb\x08\x10\xef\xff\xfe\x20\x04\x00'\ -b'\xae\xbb\x7f\xff\xfc\x01\x02\xb5\xff\xf7\x00\x00\x00\x1b\xdf\xdf'\ -b'\xff\xfe\x08\x00\xff\xff\xfd\x80\x00\x00\x1d\xf5\x7f\xfe\xee\x00'\ -b'\x00\x16\xff\xef\x00\x00\x00\x16\xfd\xbf\xff\x65\x00\x02\xf7\xbf'\ -b'\xf6\x80\x00\x00\x3b\x56\xff\xfe\x30\x10\x01\x3b\xe7\xda\x10\x00'\ -b'\x00\x3f\xff\x7f\xe8\x80\x18\x00\x0f\x5f\xee\x00\x08\x00\x0d\xab'\ -b'\xff\xf2\x04\x02\x00\x55\xf5\xf6\x02\x00\x00\x57\xee\xff\xc9\x80'\ -b'\x10\x00\x0e\xbf\x77\x00\x00\x00\x1f\xb7\x7f\xc4\x00\x38\x00\x17'\ -b'\xf7\x7c\x00\x00\x00\x0b\xff\xff\x50\x00\x11\x80\x0c\xe7\x7e\x00'\ -b'\x00\x00\x0d\xd7\xff\xe0\x00\x01\x00\x05\xf0\x58\x00\x00\x00\x1e'\ -b'\xfb\xbf\xc0\x01\x01\x00\x1f\xcd\xec\x00\x00\x00\x0f\xcf\xfe\x00'\ -b'\x01\x03\x00\x07\xf7\x7c\x00\x00\x00\x0e\x8a\xdf\x00\x01\x0a\x00'\ -b'\x05\xf8\x0c\x00\x00\x00\x0f\xcd\xfe\x80\x00\x0a\x00\x05\xd1\xc6'\ -b'\x00\x00\x00\x08\x24\xfe\x80\x00\x20\x00\x05\x22\x76\x00\x00\x00'\ -b'\x0c\x01\x7a\x00\x00\x00\x00\x03\x5f\xd6\x00\x00\x00\x3f\x70\xfc'\ -b'\x00\x00\x07\x40\x01\x3f\xf3\x00\x00\x00\x1b\xf8\xfe\x00\x00\x09'\ -b'\xe0\x00\x3f\xf3\x00\x00\x00\x1b\xfa\xfa\x00\x00\x09\x20\x03\x8f'\ -b'\xf3\x00\x00\x00\x1d\xf9\xfc\x00\x00\x04\x20\x01\xcf\xfc\x80\x00'\ -b'\x00\x3b\xf8\xf8\x00\x00\x62\x00\x00\xcf\xe3\x00\x00\x00\x32\xe1'\ -b'\xf0\x00\x01\x72\x80\x01\xe0\x03\x00\x00\x00\x36\x71\xf0\x00\x00'\ -b'\x17\x00\x01\xd9\x4b\x00\x00\x00\x39\x83\xf0\x00\x00\x0e\x82\x05'\ -b'\xc9\x83\x80\x08\x00\x28\x83\xf0\x00\x07\x01\x81\x00\xfa\x8b\x00'\ -b'\x00\x00\x3c\x07\xf8\x00\x23\x55\x80\x00\xff\xbf\x00\x40\x00\x17'\ -b'\x2f\xfc\x00\x07\x00\xc1\x00\x7e\xd5\x85\x00\x00\x12\x3f\xc0\x00'\ -b'\x0b\x15\x20\x11\x7e\x3f\x00\x04\x00\x3f\x7f\xf0\x08\x25\x82\xc4'\ -b'\x00\x7d\xeb\x00\x00\x00\x2c\xdf\xe8\x01\x17\x51\xe0\x00\x3f\xff'\ -b'\x00\x00\x00\x2f\xff\xc0\x00\x4b\x15\x61\x00\x1f\xd7\x00\x00\x00'\ -b'\x3f\xff\xc0\x05\x0e\x09\xd4\x00\x57\xfe\x00\x00\x0a\x27\xff\xa0'\ -b'\x00\x3f\x6b\x70\xa0\x0f\xea\x00\x00\x00\x1d\xff\x00\x00\x8d\x01'\ -b'\xf8\x00\x07\xfe\x00\x00\x00\x17\xf8\x80\x4a\x76\x56\xbc\x00\x1f'\ -b'\xfa\x00\x00\x00\x3f\xfd\x40\x08\x3f\x0b\x75\x50\x03\xfe\x00\x08'\ -b'\x00\x17\xec\x00\x01\x7b\x25\xae\x00\x0d\xfb\x00\x00\x00\x1b\xfc'\ -b'\x00\x15\xdd\x10\xfb\x48\x05\xfe\x00\x00\x00\x0f\xfc\x01\x41\xef'\ -b'\x0f\x7d\x44\x07\xfe\x00\x00\x00\x17\xfc\x00\x36\xfb\x05\xaf\x90'\ -b'\x0a\xf2\x00\x00\x00\x1f\xd8\x00\x8b\x77\x01\xfa\xa8\x03\x7c\x80'\ -b'\x04\x00\x1b\xf4\x02\x3d\xfe\x00\x5f\xa4\x01\xfc\x00\x02\x00\x4d'\ -b'\xf0\x08\x9f\xbf\x05\xaa\xfe\x01\x74\x80\x00\x20\x2f\xe0\x06\xed'\ -b'\xd7\x12\x2f\xb5\x01\xdd\x00\x00\x10\x05\xe0\x11\x77\xff\x08\x5a'\ -b'\xdf\x81\xf0\x00\x00\x00\x01\xb0\x0b\xbd\xdf\x05\x0f\x6b\xc0\xca'\ -b'\x00\x94\x8a\x00\xe0\x2d\xee\xfb\x00\x97\xbd\xe3\x00\x02\x42\x41'\ -b'\x00\xe0\xad\x7f\xff\x00\x7f\xff\x71\xa0\x08\x34\xf8\x00\x00\xff'\ -b'\xae\xef\x05\xe9\xfb\xa9\x80\x03\xd7\xbe\x80\x61\xfe\xdb\xbf\x00'\ -b'\x17\xfd\xe1\x00\x3f\x7a\xd6\x00\x60\xbb\xee\xff\x00\x5b\xfe\xf1'\ -b'\x00\x2b\xdf\x7b\xc0\x03\xfd\x7f\xff\x05\xbd\xfb\xd8\x00\xfe\xeb'\ -b'\xd7\x60\x23\xaf\xf7\x7f\x00\x56\xdf\xf9\x03\xeb\x5c\x5d\xf0\x03'\ -b'\xde\xff\xff\x0a\x1f\x7f\xf8\x01\x3d\xec\x4d\xb0\x27\xef\x7f\xff'\ -b'\x01\x27\xff\xfd\x03\xdd\x65\x26\xd0\x06\xb7\xd7\xff\x09\xe8\xbf'\ -b'\xec\x02\xef\xb3\x2b\xf0\x2f\xff\xff\xff\x00\x01\xff\xfc\x13\x58'\ -b'\xb5\x57\x50\x0d\xff\xff\xff\x00\x2e\xff\x6e\x0b\xeb\xa2\x65\xf8'\ -b'\x2f\xff\xff\xff\x02\x7e\xef\xee\x05\xba\xf5\x76\xba\x3f\xdf\xff'\ -b'\xff\x01\xab\xba\xfe\x13\x5b\xb1\xbb\xd8\x2f\x7f\xff\xff\x00\x36'\ -b'\xff\x9b\x05\xef\xde\xdf\x78\x3f\xff\xff\xff\x05\x68\x5d\xef\x07'\ -b'\x7f\xef\xff\xf8\xab\xff\xff\xff\x04\x4b\xef\xf7\x83\xbf\xf4\xff'\ -b'\x78\x7a\xff\xff\xff\x02\x20\xb6\xff\x42\xff\xc3\xff\xf8\xff\x7f'\ -b'\xff\xff\x00\x84\xdf\xbd\xc1\xd7\xf4\xea\xf0\xff\xff\xfe\xff\x00'\ -b'\x23\x6d\xfe\xc0\xfb\x77\x7f\xc1\x3f\xff\xff\xff\x00\x15\xf7\xff'\ -b'\xf0\x5b\x76\xd7\xc3\x4f\xff\xff\xff\x00\x09\x5f\xff\xd0\x3d\xbb'\ -b'\x7f\x07\x75\xff\xff\xff\x00\x45\xff\xff\x78\x17\xef\xfc\x1b\x2f'\ -b'\xff\xff\xff\x01\x04\xaf\xff\x57\x01\x77\xf0\x5f\xad\xff\xff\xff'\ -b'\x00\x06\x3f\xff\xe5\x81\x3f\x02\xf6\xe7\xff\xff\xff\x01\x22\x1b'\ -b'\xfd\xad\xa8\x00\x59\x9f\xff\xff\xff\xff\x04\x90\x6f\xff\xeb\xcf'\ -b'\xdb\xed\x55\xea\xff\xff\xff\x04\x00\x37\xbf\x6e\xf5\xfe\xfe\xff'\ -b'\xfe\xff\xff\xff\x00\x00\xff\xff\xf7\x5e\xb7\x6f\x7f\xeb\x7f\xff'\ -b'\xff\x00\x01\xed\xfd\xfa\xf5\xfd\xf5\xff\xff\xbf\xff\xff\x00\x07'\ -b'\x97\x7f\xbf\xbf\xff\xfe\xfb\xfa\xff\xff\xff\x00\x4c\x4f\xff\xef'\ -b'\xf5\xff\x7f\xff\xff\x7f\xff\xff\x00\x00\x2f\xff\xff\x7f\xff\xff'\ -b'\xff\xfb\x97\xff\xff\x00\x16\xdd\xff\xef\xff\xff\xff\xff\xfd\x4d'\ -b'\xff\xff\x00\x71\x97\xff\xff\xff\xff\xff\xfa\xfe\x2f\x7f\xff\x00'\ -b'\x12\x7d\xff\xef\xff\xff\xff\xff\xff\xa1\xff\xff\x01\x09\x57\xfd'\ -b'\xff\xff\xff\xff\xff\x7e\x36\xbf\xff\x00\x85\xff\xff\xff\xff\xff'\ -b'\xff\xff\xab\x5b\xeb\xff\x00\x18\x54\xff\xfb\xff\xff\xff\xff\xff'\ -b'\x80\xbf\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff'\ - -_mvdata = memoryview(_data) - -def data(): - return _mvdata - diff --git a/micropython/badger2040_modules_py/badgerpunk.py b/micropython/badger2040_modules_py/badgerpunk.py deleted file mode 100644 index d10d70be..00000000 --- a/micropython/badger2040_modules_py/badgerpunk.py +++ /dev/null @@ -1,306 +0,0 @@ -# Code generated by data_to_py.py. -version = '0.1' - -_data =\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x1f\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\xf0\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\xfc\x00\x00\x00\x7d'\ -b'\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f'\ -b'\xff\x80\x00\x01\xf0\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\xff\xff\xf8\x0f\xff\xf0\x7c\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x03\xfd\x5f\xff\xff\xff\xf5\x3e'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\xe0\x01'\ -b'\xff\xff\xff\xeb\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x3f\x80\x00\x7f\xfc\x00\x01\xff\xc0\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\xff\x00\x01\x3f\xe0\x00\x00\x1f\xf0'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\x17\x6d\x5f'\ -b'\xff\xa0\x00\x07\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x01\xf8\x2b\xf6\xf7\xef\xfe\x00\x01\xfe\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x01\xe0\x2f\xdf\xfe\xfe\xff\x80\x00\x7f\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xf1\x5f\xff\xfb\xf7'\ -b'\xfb\xf0\x00\x1f\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01'\ -b'\xfe\xef\xff\xff\xff\x6f\xf4\x00\x0f\xc0\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x01\xff\xbf\xff\xbf\xff\xff\xf8\x00\x03\xe0\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfb\xff\xff\xff\xbd\xfd'\ -b'\xae\x00\x01\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff'\ -b'\xdf\xff\xff\xff\xb7\xff\x00\x01\xf8\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\xff\xff\xff\xfe\xf7\xfe\xff\xc0\x00\x78\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xdf\xdf\xff'\ -b'\xc0\x00\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff'\ -b'\xff\xff\xff\x7f\x7f\xd0\x00\x3f\xfe\x80\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x01\xf7\xff\xff\xf7\xfd\xff\xff\xf0\x00\x3f\xff\xfe\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x7f\xff\xff\xfc'\ -b'\x00\x1f\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff'\ -b'\x7f\xff\xfb\xff\xfa\x00\x2a\xb7\xff\xe0\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x01\xf7\xff\xff\xff\xff\xff\xf5\x56\xff\xdd\x54\x0b\xf0\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x01\xfb\xff\xdd\xff\xfd\x7f\xff\xff\xff'\ -b'\xff\xff\xe5\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xeb\xfe\xff\xfd'\ -b'\xf7\xff\x7f\xff\xff\xf6\xb4\x08\x78\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x01\xf5\xf7\xfb\xf7\xff\xfe\xe7\xfe\x80\x00\x00\x01\x3c\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x01\xed\x4b\xee\x5f\xde\xf7\xcf\xa0\x00\xab'\ -b'\x52\x00\x3c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xf5\x64\x55\x57\x7f'\ -b'\xff\x90\x02\xff\xff\xfe\xa8\x1e\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03'\ -b'\xea\x11\x01\x49\xe2\xfe\x00\xbf\xff\xeb\xf0\x14\x0f\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x03\xf0\x80\x54\x10\x14\xdc\x2f\xff\x40\x01\xe0'\ -b'\x00\xaf\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xda\x42\x00\x00\x00\x7c'\ -b'\xff\x60\x02\xb8\x47\x50\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xa0'\ -b'\x00\x00\x00\x00\xfc\xf8\x02\xff\xfc\x23\xaf\x07\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x07\x80\x00\x00\x00\x01\xfc\x00\xff\xff\xa0\x08\x01'\ -b'\x6f\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x07\x80\x00\x00\x00\x03\xfe\x0f'\ -b'\xff\x80\x02\x04\x00\x1f\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x00\x00'\ -b'\x00\x00\x01\xff\xff\xc0\x01\x7e\x07\xdc\x03\xc0\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x0f\x00\x00\x00\x00\x03\xff\xf8\x01\x7f\xfc\x03\xaf\x83'\ -b'\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x01\xff\xc0\x7f'\ -b'\xfe\x8e\x03\x80\x13\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x00\x00\x00'\ -b'\x00\x00\xff\x87\xff\xa0\x04\x01\x08\x01\xc0\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x7f\xff\xff\xe8\x00'\ -b'\x00\x1e\x00\x00\x00\x00\x00\xff\x3f\xe8\x05\xf4\x00\x97\xa1\xc0'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f'\ -b'\xff\xff\xff\xff\xfe\x80\x7e\x00\x00\x00\x00\x00\x7f\x8a\x01\x7f'\ -b'\xf2\x00\x04\x43\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x7f\xff\xff\xff\xff\xff\xf5\xfe\x00\x00\x00\x00'\ -b'\x00\x01\x80\x17\xfe\x80\x00\x60\x03\xc0\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x01\xff\xd0\x00\x00\xff\xff\xff'\ -b'\xff\x80\x00\x00\x00\x00\x00\x42\xff\x40\x08\x00\x3f\x43\xc0\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xf8\x00'\ -b'\x00\x00\x00\x0f\xff\xf7\xf0\x00\x04\x00\x08\x00\x3d\x80\x02\xf8'\ -b'\x00\x17\xf9\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x0f\xc0\x00\x00\x00\x00\x00\x1f\xc0\xfe\x00\x00\x84\x52'\ -b'\x81\x0f\x01\x7f\xf4\x00\x00\x23\xc0\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00\x00\x00\x00\x00\x40'\ -b'\x57\x00\x12\x11\x04\x00\x47\xbf\xff\xc8\x00\x07\xdf\x80\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x01\xe8\x48\x82\x52\x04\x23\xff\x6a\x7a\x00'\ -b'\x03\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x01\xf8\x20\x00\x49\x10\x00\x00\x00\x00\x00\x6f\x53\x68\x48\x90'\ -b'\xa8\xb4\xaf\xfa\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x03\xe0\x82\x83\xff\xff\xe9\x00\x00\x00\x80'\ -b'\x95\xee\xbb\x0a\x45\x2a\xc5\xff\xec\x00\x00\x7e\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xc0\x0f\x83\x7f\xff'\ -b'\xff\xc0\x00\x00\x00\x6a\xbf\xed\x69\x15\x55\x2a\xff\xfa\x80\x00'\ -b'\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03'\ -b'\x80\x70\x00\x00\x00\xaf\x83\xf4\x00\x00\x94\x5e\xff\xca\xaa\xd4'\ -b'\xa9\x7f\xdd\x00\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x03\x80\x80\x00\x00\x00\x00\x03\xff\x80\x00\x2a'\ -b'\x9b\xfb\x74\xd6\xb5\x4a\xff\xf4\x00\x10\x4f\x80\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xc1\xc0\x00\x00\x00\x00'\ -b'\x00\x5f\xc0\x81\x5d\x0f\xff\xee\x52\xfa\x37\x7f\xf5\x01\x45\x17'\ -b'\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xc7'\ -b'\xfa\xff\xff\xb4\x00\x00\x01\x80\x00\xb5\x56\xff\x7f\x5b\x5a\x94'\ -b'\xff\xec\x04\x08\x4f\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x01\xff\xff\xff\xff\xff\xff\x00\x00\x00\x02\x54\xdb'\ -b'\xff\xfb\xed\x6b\x6b\x57\xb0\x01\x41\x27\xc0\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xf0'\ -b'\x08\x00\x00\xba\x4e\xff\xdf\x75\xad\xa9\x2e\xca\x02\x94\xb7\xc0'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xbf'\ -b'\x68\x94\xff\xff\xae\x05\x05\x05\x6d\x1b\xdf\xff\xff\xf5\x6d\x6f'\ -b'\xd0\x13\xd7\xdf\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x08\x00\x00\x00\x0f\xfc\x24\x08\xb7\xf5\xfd\x5a\xff'\ -b'\xff\xdd\xd5\x75\x2f\x49\x09\xdb\xff\xc0\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\xe8\x09\x02'\ -b'\xdf\xba\xb5\x6e\x7f\xff\xff\xdd\xfd\x5d\xd4\x07\xbf\xff\xc0\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x7f\x62\x28\x03\xeb\xef\xdb\xbd\xff\xff\xff\x77\xad\xef\xa4'\ -b'\x55\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\xfc\x94\x02\x09\xff\x7f\xfa\x4b\xff\xff'\ -b'\xff\xff\x7a\x2f\x4a\x2b\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xf2\xa0\x14\x83\xd5'\ -b'\xd5\xbd\xaf\xff\xff\xff\xff\xef\x7f\xea\x8f\xff\xff\x80\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07'\ -b'\xca\xd0\x20\x01\xff\xbe\x6f\xef\xff\xff\xff\xff\xf5\xdf\xb1\x2b'\ -b'\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x0f\xc9\x08\x47\x07\xe5\xf5\x96\xff\xff\xff\xff'\ -b'\xff\xff\xfb\xfc\x37\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x14\xa8\x29\x83\x7a\xdf'\ -b'\x51\xff\xff\xff\xff\xff\xff\xff\xfa\xc7\xff\xff\x80\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x00'\ -b'\x00\x75\x89\xef\x7f\xef\x7f\xff\xff\xff\xff\xff\xff\xef\x5b\xff'\ -b'\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x7c\x44\x50\xbf\xd7\xb5\xfd\x7b\xff\xff\xff\xff\xfd'\ -b'\xff\xff\xff\x6f\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x13\xfc\x75\xa6\xfa\xdf\xff'\ -b'\xff\xff\xff\xfb\xff\xff\xff\xff\xbf\xff\xff\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x01\xd0'\ -b'\x41\xd3\xf6\xf8\xff\xff\xff\xff\xff\xfb\xff\xff\xff\xf5\xdf\xfe'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x01\xe0\x20\x5c\x20\x52\xbf\x76\xff\xff\xff\xff\xff\x73\xff'\ -b'\xff\xff\xfe\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x03\xc0\x0c\x20\x01\x45\xeb\xdd\xff\xff'\ -b'\xff\xff\xff\xff\xff\x00\x40\xbb\xff\xf8\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x80\x0f\x38\x00'\ -b'\x83\xed\xf5\xff\xff\xff\xff\xff\xd1\xff\xe0\x00\x1f\xff\xe0\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x07\x80\x05\x01\x12\x40\xb7\xbf\xff\xff\xff\xff\xfd\xf5\x3f\xfa'\ -b'\x00\x07\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x0f\x00\x4b\xc8\x00\x01\xfa\xf6\xff\xff\xff'\ -b'\xff\xff\xde\x4f\xfe\x00\x01\xff\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x00\x5f\xc0\x45\x41'\ -b'\xd9\xdb\xff\xff\xff\xff\xff\x7f\xa1\xff\xc0\x00\x3f\xc0\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e'\ -b'\x00\xfb\xe0\x80\x02\xb7\x6f\xff\xff\xff\xff\xff\xff\xf8\x3f\xf8'\ -b'\x00\x0f\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x3c\x00\xff\xf0\x0a\x80\xf9\xff\xff\xff\xff\xff'\ -b'\xfb\xff\xf7\x0f\xfe\x00\x03\xfe\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\x03\xff\xf0\xaf\x40\x3c'\ -b'\xaf\xff\xff\xff\xff\xff\xbf\xff\xc3\xff\xc0\x00\x7f\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\x03'\ -b'\xfd\xf0\x4e\xe0\xfd\x77\xff\xff\xff\xff\xff\xff\xff\xf8\x7f\xf0'\ -b'\x00\x0f\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x78\x07\x81\xf9\x1f\x40\x5a\x97\xff\xff\xff\xff\xfb'\ -b'\xcf\xff\xf4\x0f\xfe\x00\x07\xc0\x00\x00\x03\x40\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x70\x06\x00\x34\x19\xe0\x7d\x5f'\ -b'\xff\xff\xff\xff\xff\xff\xff\xff\x03\xff\x80\x03\xe0\x00\x00\x1f'\ -b'\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x00\x00'\ -b'\x08\x9c\x60\xf6\x6f\xff\xff\xff\xff\xff\xef\xff\xff\xe0\x7f\xc0'\ -b'\x03\xf8\x00\x00\x7f\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x70\x00\x04\x04\x18\x41\xfe\xbd\xff\xff\xff\xff\xfe\xbb'\ -b'\xff\xff\xf0\x1f\xa8\x00\xfc\x00\x00\xff\xff\xc0\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x70\x00\xbf\x00\x38\x60\xfb\x3f\xff'\ -b'\xff\xff\xff\xff\x6e\xbf\xff\xfe\x07\x07\x00\xff\x00\x03\xff\xff'\ -b'\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x07\xf5\x80'\ -b'\x3a\xe1\x7e\xdf\xff\xff\xff\xff\xff\xbf\xff\xff\xff\x40\x07\xc4'\ -b'\x1f\xc0\x07\xff\xff\xfc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x7a\x47\xf1\x80\x78\xb1\xef\x6f\xff\xff\xff\xff\xff\xef\xbf'\ -b'\xff\x7f\xd0\x07\xf8\x07\xf0\x0f\xff\xff\xfe\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x79\x0f\xf3\xc0\x70\xfd\xff\x7d\xff\xff'\ -b'\xff\xff\xff\xdd\xff\xff\x8f\xfa\x0f\xff\x03\xf8\x1f\xff\xff\xff'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x4f\xfb\xf8\x38'\ -b'\xb7\xbf\xbf\xff\xff\xff\xff\xff\xf7\xff\xff\x83\xfd\x53\x1f\xc0'\ -b'\xfe\x3f\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x7a\x8f\xff\xf8\x72\xfd\xf6\xf7\xff\xff\xff\xff\xff\xf7\xbf\xff'\ -b'\xc0\x7f\x80\xe7\xf0\x3f\xff\xff\xbf\xff\xe0\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x7f\x0f\x1f\xfc\x7b\x7b\xff\xbf\xff\xff\xff'\ -b'\xff\xff\xef\xff\xff\xc0\x3f\xe0\x11\xe8\x0f\xff\xfe\xff\xff\xf0'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3a\x87\x00\xfc\x3e\xff'\ -b'\x7f\xdf\xff\xff\xff\xff\xff\xf5\xdf\xff\xc0\x07\xf8\x15\x6c\x03'\ -b'\xff\xff\xff\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e'\ -b'\x02\x20\x7c\x7b\xfd\xfd\xbb\xff\xff\xff\xff\xff\xfb\xff\xbf\xe0'\ -b'\x01\xfe\x03\x1e\x80\xcf\xff\xff\xff\xfc\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x3f\x46\x00\x7c\x3f\x7d\xf7\xf7\xff\xff\xff\xff'\ -b'\xff\xfb\xff\xef\xf0\x00\x7f\xc2\x1f\xd0\x0f\xff\xff\xfb\xfe\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x87\x80\x78\x3f\xdf\xff'\ -b'\xbf\xff\xff\xff\xff\xff\xfb\x7f\xdf\xf0\x00\x1f\xf5\x3f\xf4\x0f'\ -b'\xff\xff\xde\xbe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x07'\ -b'\xf8\xf0\x7f\xed\xdf\xff\xff\xff\xff\xff\xff\xfd\xef\xff\xf8\x00'\ -b'\x03\xfe\xff\xf8\x7f\xff\xff\x7f\xff\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x0f\x4f\x54\xe0\x3d\xdf\xbf\x6f\xff\xff\xff\xff\xff'\ -b'\xfd\xff\xd7\xf8\x00\x01\xff\xff\xfd\xbf\xff\xfd\xff\xdf\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x2f\x89\xc0\x7f\xfc\xfd\xfd'\ -b'\xff\xff\xff\xff\xff\xfe\xff\xbf\xfc\x00\x00\x3f\xff\xfc\xf7\xff'\ -b'\xff\xff\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0e\x97\xff'\ -b'\xc0\x7f\xd7\xf7\xf7\xff\xff\xff\xff\xff\xfe\xf7\xbf\xfc\x00\x00'\ -b'\x0f\xff\xf9\xef\xff\xef\xfd\xef\x80\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x1e\x27\xff\x80\x7f\xfe\xdf\xdf\xff\xff\xff\xff\xff\xff'\ -b'\xff\xff\xfc\x00\x00\x01\xff\xd3\xd7\xff\xff\xff\xff\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x1e\x11\xfe\x02\x7f\xef\xff\xff\xff'\ -b'\xff\xff\xff\xff\xfe\xff\xff\xfe\x00\x00\x00\xff\xc0\xc7\xff\xff'\ -b'\xff\xdf\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x0a\x18\x06'\ -b'\x7f\xfe\xff\xff\xff\xff\xff\xff\xff\xff\x7f\xef\xff\x00\x00\x00'\ -b'\x3f\xc0\x47\xff\xff\xff\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x7c\x05\x20\x0e\xff\xff\xff\xef\xff\xff\xff\xff\xff\xff\x7f'\ -b'\xff\xff\x00\x00\x00\x0f\xf0\x01\xff\xff\xff\x6f\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x78\x08\x8a\x5e\x7f\xfe\xff\xff\xff\xff'\ -b'\xff\xff\xff\xff\xff\xff\xff\x80\x00\x00\x0f\xf8\x01\xff\xff\xff'\ -b'\xff\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x16\xa9\xfc\xff'\ -b'\xff\xff\x77\xff\xff\xff\xff\xff\xfb\xbf\xf7\xff\x80\x00\x00\x1f'\ -b'\xff\x00\xdf\xff\xff\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\xe2\x0a\x92\xfd\xff\xfd\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff'\ -b'\xff\x80\x00\x00\x3f\xff\x82\x0f\xff\xfb\xdf\x80\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x01\xe0\x2a\xd5\xfc\xff\xff\xfd\xff\xff\xff\xff'\ -b'\xff\xff\xff\xff\xef\xff\xc0\x00\x00\x7f\xff\xe2\x47\xfd\xff\xff'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xc2\x0f\x5b\xfb\xff\xff'\ -b'\xf7\xbf\xff\xff\xff\xff\xff\xfb\xfd\xad\xff\xc0\x00\x01\xff\xff'\ -b'\xe4\x85\xff\xff\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x80'\ -b'\x6c\xff\xfb\xff\xff\xff\xf7\xff\xff\xff\xff\xff\xff\xdf\xe7\xff'\ -b'\xe0\x00\x07\xff\xff\xe2\x01\xbf\xfd\xff\x80\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x07\x84\xbb\x6f\xe3\xff\xff\xf7\xff\xff\xff\xff\xff'\ -b'\xff\xfb\xff\xff\xff\xe0\x00\x3f\xff\xff\xca\x02\x3f\xff\x8f\xef'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x02\x5e\xbf\xe7\xff\xff\xf6'\ -b'\xff\xff\xff\xff\xff\xff\xfd\xff\xdf\xff\xf0\x00\xff\xff\xff\xc6'\ -b'\x20\x3f\xfe\xc3\xff\x80\x00\x00\x00\x00\x00\x00\x00\x0f\x0a\xbe'\ -b'\xff\x9f\xff\xff\xeb\xdf\xff\xff\xff\xff\xff\xff\xdf\xeb\xff\xf0'\ -b'\x03\xff\xff\xff\x4c\x72\x3f\xfb\x80\xff\x80\x00\x00\x00\x00\x00'\ -b'\x00\x00\x1e\x0c\xff\xfa\x1f\xff\xff\xff\xfd\xff\xff\xff\xff\xff'\ -b'\xfd\x7f\xbf\xef\xf8\x0f\xff\xff\xfd\x04\x78\x0f\xfb\x60\x7f\xc0'\ -b'\x00\x00\x00\x00\x00\x00\x00\x1e\x19\xbf\x7c\x7f\xff\xff\xff\xbb'\ -b'\xff\xff\xff\xff\xff\xfe\xef\xff\xff\xfc\x3f\xff\xff\xfe\x88\xf0'\ -b'\x03\x7b\x70\x03\xc0\x00\x00\x00\x00\x00\x00\x00\x1c\x15\x7b\xf9'\ -b'\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x7f\xff\xd7\xff\xff'\ -b'\xff\xff\xfd\x25\x61\x88\x66\xfe\x01\xf0\x00\x00\x00\x00\x00\x00'\ -b'\x38\x3c\x3d\xff\xf7\xff\xff\xff\xef\xff\xff\xff\xff\xff\xff\xfe'\ -b'\xff\xff\xff\xff\xff\xff\xff\xfe\x51\xe3\xc0\x1f\xff\x01\xf8\x00'\ -b'\x00\x00\x00\x00\x00\xff\xf8\x77\xff\xff\xff\xff\xff\xff\xdd\xff'\ -b'\xff\xff\xff\xff\xff\xaf\xff\xef\xff\xff\xff\xff\xfe\xa1\x43\x88'\ -b'\x0d\xff\xc0\x7e\x00\x00\x00\x00\x00\x03\xff\xf8\x2d\xff\xff\xff'\ -b'\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xfd\xff\xff\xff\xff'\ -b'\xff\xff\x82\x8d\x8a\x0b\xff\xf0\x3f\x80\x00\x00\x00\x00\x07\xff'\ -b'\xf0\xff\xfe\xff\xff\xff\xff\xff\xf7\xff\xff\xff\xff\xff\xff\xff'\ -b'\xff\xff\xff\xff\xff\xff\xff\x51\x87\xd5\xb0\xff\xe0\x0f\xe0\x00'\ -b'\x00\x00\x00\x0f\xc7\xf0\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff'\ -b'\xff\xff\xff\xff\xef\xff\xff\xff\xff\xff\xff\xff\xd6\x8a\xfb\xf0'\ -b'\x3f\xc0\x03\xf8\x00\x00\x00\x00\x0f\x3c\xf0\xff\xff\xff\xff\xff'\ -b'\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xff\xfe\xff\xff\xff\xff\xff'\ -b'\xff\xe9\x57\xdf\xf8\x0f\x03\xc0\xff\x00\x00\x00\x00\x1f\x7f\xe1'\ -b'\xff\xff\xff\xff\xff\xff\xfb\xef\xff\xff\xff\xff\xff\xff\xef\xff'\ -b'\xff\xff\xff\xff\xff\xff\xf4\xaa\xff\xfe\x04\x0f\xf0\x7f\xc0\x00'\ -b'\x00\x00\x1c\xff\xe3\x9f\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff'\ -b'\xff\xff\xfd\xff\xff\xff\x7f\xff\xff\xff\xff\xfd\x47\xff\xff\x80'\ -b'\x3f\xfc\x0f\xf0\x00\x00\x00\x1d\xff\xe3\xef\xff\xff\xff\xff\xff'\ -b'\xf7\xf7\xff\xff\xff\xff\xff\xff\xff\xff\xfd\xff\xff\xff\xff\xff'\ -b'\xff\xaf\xff\xff\xe0\x3f\xfe\x03\xf8\x00\x00\x00\x3d\xff\xc6\xaf'\ -b'\xff\xff\xff\xff\xff\xdf\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff'\ -b'\xff\xff\xff\xff\xff\xff\xf7\xff\xc7\xf0\x1f\xff\x80\xff\x00\x00'\ -b'\x00\x3d\xff\xcb\x3f\xff\xff\xff\xff\xff\xf7\xff\xff\xff\xff\xff'\ -b'\xff\xfe\xfb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x01\xfe\x07'\ -b'\xff\xe0\x1f\x80\x00\x00\x3d\xff\xfd\x4b\xff\xff\xff\xff\xff\xfd'\ -b'\xf7\xff\xff\xff\xff\xff\xfd\xff\xff\xff\xff\xff\xff\xff\xff\xff'\ -b'\xff\xfc\x00\x7f\x01\xff\xf0\x0f\xe0\x00\x00\x7b\xff\xd5\x3f\xff'\ -b'\xff\xff\xff\xff\xbf\xff\xff\xff\xff\xff\xff\xff\x7f\xff\xef\xff'\ -b'\xff\xff\xff\xff\xff\xff\xf8\x00\x1f\xc0\xff\xfe\x07\xf0\x00\x00'\ - -_mvdata = memoryview(_data) - -def data(): - return _mvdata - diff --git a/micropython/badger2040_modules_py/launchericons.py b/micropython/badger2040_modules_py/launchericons.py deleted file mode 100644 index f6c95c8c..00000000 --- a/micropython/badger2040_modules_py/launchericons.py +++ /dev/null @@ -1,266 +0,0 @@ -# Code generated by data_to_py.py. -version = '0.1' - -_data =\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x3f\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\xf0\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x01\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\xfc\x00\x00\x00'\ -b'\x00\x00\x00\x0f\xfc\x00\x00\x00\x00\x00\x00\x1f\xf8\x00\x00\x00'\ -b'\x00\x00\x0f\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xfe\x00\x00\x00'\ -b'\x00\x00\x00\x7f\xff\x80\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00'\ -b'\x00\x00\x3f\xff\xff\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\xff\xff\xff\xff\x80\x00'\ -b'\x00\x1f\xff\xff\xff\xff\xe0\x00\x00\x00\x00\x7f\xfe\x00\x00\x00'\ -b'\x00\x00\x03\xff\xff\xf0\x00\x00\x00\x00\x07\xff\xff\xe0\x00\x00'\ -b'\x00\x00\x7f\xff\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\xff\xff\xff\xff\xf0\x00'\ -b'\x00\xff\xff\xff\xff\xff\xfc\x00\x00\x00\x00\xff\xff\x00\x00\x00'\ -b'\x00\x00\x0f\xff\xff\xfc\x00\x00\x00\x00\x1f\xff\xff\xf8\x00\x00'\ -b'\x00\x01\xff\xc0\x0f\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xff\xff\xff\xff\xf8\x00'\ -b'\x01\xff\xff\xff\xff\xff\xfe\x00\x00\x00\x00\xfc\x3f\x00\x00\x00'\ -b'\x00\x00\x1f\xff\xff\xfe\x00\x00\x00\x00\x3f\xff\xff\xfc\x00\x00'\ -b'\x00\x03\xfe\x00\x01\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xff\xff\xff\xff\xf8\x00'\ -b'\x03\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\xfc\x3f\x00\x00\x00'\ -b'\x00\x00\x7f\xf0\x03\xff\x80\x00\x00\x00\xff\xe0\x07\xff\x00\x00'\ -b'\x00\x07\xf8\x00\x00\x7f\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xff\xff\xff\xff\xf8\x00'\ -b'\x03\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\xfc\x3f\x00\x00\x00'\ -b'\x00\x00\xff\x80\x00\x7f\xc0\x00\x00\x01\xff\x00\x00\xff\x80\x00'\ -b'\x00\x0f\xf0\x00\x00\x3f\xc0\x00\x00\x00\x03\xff\xff\xff\xfe\x00'\ -b'\x00\x03\xff\x80\x03\xfe\x00\x00\x00\xff\xff\xff\xff\xff\xfc\x00'\ -b'\x03\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\xfc\x3f\x00\x00\x00'\ -b'\x00\x01\xfe\x00\x00\x1f\xe0\x00\x00\x03\xfc\x00\x00\x3f\xc0\x00'\ -b'\x00\x0f\xc0\x00\x00\x0f\xc0\x00\x00\x00\x03\xff\xff\xff\xfe\x00'\ -b'\x00\x3f\xff\xf0\x1f\xff\xf0\x00\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x00\x00\x00\xfc\x3f\x00\x00\x00'\ -b'\x00\x03\xfc\x00\x00\x0f\xf0\x00\x00\x07\xf8\x00\x00\x1f\xe0\x00'\ -b'\x00\x1f\x80\x00\x00\x07\xe0\x00\x00\x00\x03\xff\xff\xff\xfe\x00'\ -b'\x00\xff\xff\xfe\x3f\xff\xfc\x00\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x00\x00\x00\xfc\x3f\x00\x00\x00'\ -b'\x00\x03\xf0\x00\x60\x03\xf0\x00\x00\x07\xe0\x00\x00\x07\xe0\x00'\ -b'\x00\x3f\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xff\xff\xff\xfe\x00'\ -b'\x03\xff\xff\xff\xff\xff\xff\x00\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x00\x00\x00\xfc\x3f\x00\x00\x00'\ -b'\x00\x07\xe0\x01\xf8\x01\xf8\x00\x00\x0f\xc0\x00\x00\x03\xf0\x00'\ -b'\x00\x7e\x00\x07\x00\x01\xf8\x00\x00\x00\x03\xff\xff\xff\xfe\x00'\ -b'\x03\xff\xff\xff\xff\xff\xff\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x00\x0f\xff\xfc\x3f\xff\xf0\x00'\ -b'\x00\x0f\xc0\x01\xf8\x00\xfc\x00\x00\x1f\x80\x0f\xe0\x01\xf8\x00'\ -b'\x00\x7e\x00\x07\x00\x01\xf8\x00\x00\x00\x03\xff\xff\xff\xfe\x00'\ -b'\x07\xfe\x00\xff\xff\x03\xff\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe3\xff\xc0\x00\x00\x1f\x00\x00\x7f\xff\xfc\x3f\xff\xfe\x00'\ -b'\x00\x1f\x80\x01\xfc\x00\x7e\x00\x00\x3f\x00\x3f\xf0\x00\xfc\x00'\ -b'\x00\xfc\x00\x07\x00\x00\xfc\x00\x00\x00\x03\xff\xff\xff\xfe\x00'\ -b'\x07\xe0\x00\x1f\xf0\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe7\xff\xc0\x00\x00\x1f\x00\x00\xff\xff\xfc\x3f\xff\xff\x00'\ -b'\x00\x1f\x80\x01\xf8\x00\x7e\x00\x00\x3f\x00\x7f\xf8\x00\xfc\x00'\ -b'\x00\xf8\x00\x07\x00\x00\x7c\x00\x00\x00\x00\x00\x3f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\xc0\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe7\xff\xc0\x00\x00\x1f\x00\x01\xff\xff\xfc\x3f\xff\xff\x80'\ -b'\x00\x3f\x00\x01\xf8\x00\x3f\x00\x00\x7e\x00\xff\xfc\x00\x7e\x00'\ -b'\x00\xf8\x00\x07\x00\x00\x7c\x00\x00\x00\x00\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe7\xff\xc0\x00\x00\x1f\x00\x01\xff\xff\xfc\x3f\xff\xff\x80'\ -b'\x00\x3e\x00\x00\xf0\x00\x1f\x00\x00\x7c\x01\xfc\xfe\x00\x3e\x00'\ -b'\x01\xf0\x00\x07\x00\x00\x3e\x00\x00\x00\x00\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe7\xff\xc0\x00\x00\x1f\x00\x01\xf0\x00\xff\xff\x00\x0f\x80'\ -b'\x00\x3e\x00\x00\x00\x00\x1f\x00\x00\x7c\x03\xf0\x3f\x00\x3e\x00'\ -b'\x01\xf0\x00\x07\x00\x00\x3e\x00\x00\x00\x00\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x01\xf0\x00\x7f\xfe\x00\x0f\x80'\ -b'\x00\x7c\x00\x00\x00\x00\x0f\x80\x00\xf8\x03\xe0\x1f\x00\x1f\x00'\ -b'\x01\xf0\x00\x07\x00\x00\x3e\x00\x00\x00\x00\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x06\x1f\x00\x01\xf0\x00\x7f\xfe\x00\x0f\x80'\ -b'\x00\x7c\x00\x3f\x80\x00\x0f\x80\x00\xf8\x03\xc0\x0f\x00\x1f\x00'\ -b'\x01\xe0\x00\x07\x00\x00\x1e\x00\x00\xff\xff\xfc\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x0f\x1f\x00\x01\xf0\x00\x3f\xfc\x00\x0f\x80'\ -b'\x00\x7c\x00\x7f\xe0\x00\x0f\x80\x00\xf8\x03\xc0\x0f\x80\x1f\x00'\ -b'\x03\xe0\x00\x07\x00\x00\x1f\x00\x01\xff\xff\xfc\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x1f\x9f\x00\x01\xf0\x00\x1f\xf8\x00\x0f\x80'\ -b'\x00\x78\x00\xff\xf0\x00\x07\x80\x00\xf0\x03\xc0\x0f\x80\x0f\x00'\ -b'\x03\xe0\x00\x07\x00\x00\x1f\x00\x01\xff\xff\xfc\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x3f\x9f\x00\x01\xf0\x00\x07\xe0\x00\x0f\x80'\ -b'\x00\xf8\x00\x7f\xf0\x00\x07\xc0\x01\xf0\x03\xc0\x0f\x80\x0f\x80'\ -b'\x03\xe0\x00\x07\x00\x00\x1f\x00\x01\xff\xff\xfc\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x20\x7f\x1f\x00\x01\xf0\x00\x00\x00\x00\x0f\x80'\ -b'\x00\xf8\x00\x7f\xf0\x00\x07\xc0\x01\xf0\x00\x00\x1f\x00\x0f\x80'\ -b'\x03\xe0\x00\x07\x00\x00\x1f\x00\x01\xff\xff\xfc\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe7\xff\xc0\x70\xfe\x1f\x00\x01\xf0\x00\x00\x00\x00\x0f\x80'\ -b'\x00\xf8\x00\x07\xf0\x00\x07\xc0\x01\xf0\x00\x00\x7f\x00\x0f\x80'\ -b'\x03\xe0\x00\x07\x00\x00\x1f\x00\x01\xff\xff\xfc\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe7\xff\xc0\xf9\xfc\x1f\x00\x01\xf0\x01\xc0\x07\xfe\x0f\x80'\ -b'\x00\xf8\x00\x07\xf0\x00\x07\xc0\x01\xf0\x00\x00\xfe\x00\x0f\x80'\ -b'\x03\xe0\x00\x07\xc0\x00\x1f\x00\x01\xff\xff\xfc\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x08\x00\xfc\x00'\ -b'\x03\xe7\xff\xc1\xff\xf8\x1f\x00\x01\xf0\x03\xe0\x07\xfe\x0f\x80'\ -b'\x00\xf8\x00\x07\xf0\x00\x07\xc0\x01\xf0\x00\x03\xfe\x00\x0f\x80'\ -b'\x03\xe0\x00\x07\xe0\x00\x1f\x00\x01\xff\xff\xfc\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x1c\x00\xfc\x00'\ -b'\x03\xe7\xff\xc0\xff\xf0\x1f\x00\x01\xf0\x07\xf0\x07\xfe\x0f\x80'\ -b'\x00\xf8\x00\x0f\xe0\x00\x07\xc0\x01\xf0\x00\x03\xf8\x00\x0f\x80'\ -b'\x03\xe0\x00\x03\xf8\x00\x1f\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x00\x00\x3e\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x7f\xe0\x1f\x00\x01\xf0\x07\xf0\x07\xfe\x0f\x80'\ -b'\x00\xf8\x00\x0f\xe0\x00\x07\xc0\x01\xf0\x00\x07\xf0\x00\x0f\x80'\ -b'\x01\xe0\x00\x00\xfe\x00\x1e\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x01\x00\x7e\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x3f\xc0\x1f\x00\x01\xf0\x07\xf0\x00\x00\x0f\x80'\ -b'\x00\xf8\x00\x0f\xe0\x00\x07\xc0\x01\xf0\x00\x07\xc0\x00\x0f\x80'\ -b'\x01\xf0\x00\x00\x3f\x00\x3e\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x03\x80\x7f\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x1f\x80\x1f\x00\x01\xf0\x07\xf0\x00\x00\x0f\x80'\ -b'\x00\x78\x00\x0f\xe0\x00\x07\x80\x00\xf0\x00\x0f\x80\x00\x0f\x00'\ -b'\x01\xf0\x00\x00\x1f\xc0\x3e\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x07\xc0\xff\x80\xfc\x00'\ -b'\x03\xe0\x00\x00\x0f\x00\x1f\x00\x01\xf0\x03\xe0\x00\x00\x0f\x80'\ -b'\x00\x7c\x00\x0f\xe0\x00\x0f\x80\x00\xf8\x00\x0f\x80\x00\x1f\x00'\ -b'\x01\xf0\x00\x00\x07\xe0\x3e\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x07\xe1\xff\xc0\xfc\x00'\ -b'\x03\xe0\x00\x00\x06\x00\x1f\x00\x01\xf0\x00\x00\x07\xfe\x0f\x80'\ -b'\x00\x7c\x00\x1f\xe0\x00\x0f\x80\x00\xf8\x00\x0f\x80\x00\x1f\x00'\ -b'\x00\xf8\x00\x00\x01\xe0\x7c\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x0f\xe3\xff\xc0\xfc\x00'\ -b'\x03\xe3\xff\xc0\x00\x00\x1f\x00\x01\xf0\x00\x00\x07\xfe\x0f\x80'\ -b'\x00\x7c\x00\x1f\xc0\x00\x0f\x80\x00\xf8\x00\x07\x00\x00\x1f\x00'\ -b'\x00\xf8\x00\x00\x00\xc0\x7c\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x1f\xf7\xff\xe0\xfc\x00'\ -b'\x03\xe7\xff\xc0\x00\x00\x1f\x00\x01\xf0\x01\xc0\x07\xfe\x0f\x80'\ -b'\x00\x3e\x00\x1f\xc0\x00\x1f\x00\x00\x7c\x00\x00\x00\x00\x3e\x00'\ -b'\x00\xfc\x00\x00\x00\x00\xfc\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x3f\xff\xff\xf0\xfc\x00'\ -b'\x03\xe7\xff\xc0\x00\x00\x1f\x00\x01\xf0\x1f\xfc\x07\xfe\x0f\x80'\ -b'\x00\x3e\x00\x1f\xc0\x00\x1f\x00\x00\x7c\x00\x00\x00\x00\x3e\x00'\ -b'\x00\x7e\x00\x00\x00\x01\xf8\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x7f\xff\xff\xf8\xfc\x00'\ -b'\x03\xe7\xff\xc0\x00\x00\x1f\x00\x01\xf0\x3f\xfe\x00\x00\x0f\x80'\ -b'\x00\x3f\x00\x1f\xc0\x00\x3f\x00\x00\x7e\x00\x02\x00\x00\x7e\x00'\ -b'\x00\x7e\x00\x00\x00\x01\xf8\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe0\x00\x0f\x80\x00\x1f\x80\x00\xfc\x7f\xff\xff\xf8\xfc\x00'\ -b'\x03\xe7\xff\xc0\x00\x00\x1f\x00\x01\xf0\x7f\xff\x00\x00\x0f\x80'\ -b'\x00\x1f\x80\x1f\xc7\x00\x7e\x00\x00\x3f\x00\x0f\x80\x00\xfc\x00'\ -b'\x00\x3f\x00\x00\x00\x03\xf0\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xe3\xff\x0f\x80\x00\x1f\x80\x00\xfc\xff\xff\xff\xfc\xfc\x00'\ -b'\x03\xe3\xff\xc0\x00\x00\x1f\x00\x01\xf0\x7f\xff\x00\x00\x0f\x80'\ -b'\x00\x1f\x80\x1f\xcf\x00\x7e\x00\x00\x3f\x00\x0f\x80\x00\xfc\x00'\ -b'\x00\x1f\x80\x00\x00\x07\xe0\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xff\xff\xff\x83\xff\x1f\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x01\xf0\x7f\xff\x00\x00\x0f\x80'\ -b'\x00\x0f\xc0\x0f\xff\x00\xfc\x00\x00\x1f\x80\x0f\x80\x01\xf8\x00'\ -b'\x00\x0f\xc0\x00\x00\x0f\xc0\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xff\xff\xff\x8f\xff\xff\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x01\xf0\x00\x00\x00\x00\x0f\x80'\ -b'\x00\x07\xe0\x07\xff\x01\xf8\x00\x00\x0f\xc0\x0f\x80\x03\xf0\x00'\ -b'\x00\x0f\xf0\x00\x00\x3f\xc0\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xff\xff\xff\xbf\xff\xff\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x01\xf0\x00\x00\x00\x00\x0f\x80'\ -b'\x00\x03\xf0\x03\xfc\x03\xf0\x00\x00\x07\xe0\x07\x00\x07\xe0\x00'\ -b'\x00\x07\xf8\x00\x00\x7f\x80\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xff\xff\xff\xff\xff\xff\x80\x00\xfc\x00\x00\x00\x00\xfc\x00'\ -b'\x03\xe0\x00\x00\x00\x00\x1f\x00\x01\xf0\x00\x00\x00\x00\x0f\x80'\ -b'\x00\x03\xfc\x00\x70\x0f\xf0\x00\x00\x07\xf8\x00\x00\x1f\xe0\x00'\ -b'\x00\x03\xfe\x00\x01\xff\x00\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x07\xfe\x01\xff\xff\xff\xff\x80\x00\xff\xff\xff\xff\xff\xfc\x00'\ -b'\x03\xff\xff\xff\xff\xff\xff\x00\x01\xf0\x00\x00\x00\x00\x0f\x80'\ -b'\x00\x01\xfe\x00\x00\x1f\xe0\x00\x00\x03\xfc\x00\x00\x3f\xc0\x00'\ -b'\x00\x01\xff\xc0\x0f\xfe\x00\x00\x00\x01\xfe\x00\x1f\xe0\x00\x00'\ -b'\x03\xf0\x00\x1f\xfe\x01\xff\x80\x00\x7f\xff\xff\xff\xff\xf8\x00'\ -b'\x03\xff\xff\xff\xff\xff\xff\x00\x01\xf0\x00\x00\x00\x00\x0f\x80'\ -b'\x00\x00\xff\x80\x00\x7f\xc0\x00\x00\x01\xff\x00\x00\xff\x80\x00'\ -b'\x00\x00\x7f\xff\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x01\x80\x00\x07\xf8\x00\x3f\x00\x00\x7f\xff\xff\xff\xff\xf8\x00'\ -b'\x03\xff\xff\xff\xff\xff\xff\x00\x01\xff\xff\xff\xff\xff\xff\x80'\ -b'\x00\x00\x7f\xf0\x03\xff\x80\x00\x00\x00\xff\xe0\x07\xff\x00\x00'\ -b'\x00\x00\x3f\xff\xff\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x01\xe0\x00\x06\x00\x00\x7f\xff\xff\xff\xff\xf8\x00'\ -b'\x01\xff\xff\xff\xff\xff\xfe\x00\x01\xff\xff\xff\xff\xff\xff\x80'\ -b'\x00\x00\x1f\xff\xff\xfe\x00\x00\x00\x00\x3f\xff\xff\xfc\x00\x00'\ -b'\x00\x00\x0f\xff\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\xc0\x00\x00\x00\x00\x3f\xff\xff\xff\xff\xf0\x00'\ -b'\x00\xff\xff\xff\xff\xff\xfc\x00\x00\xff\xff\xff\xff\xff\xff\x00'\ -b'\x00\x00\x0f\xff\xff\xfc\x00\x00\x00\x00\x1f\xff\xff\xf8\x00\x00'\ -b'\x00\x00\x01\xff\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xff\xff\xff\xff\xfe\x00'\ -b'\x00\x00\x03\xff\xff\xf0\x00\x00\x00\x00\x07\xff\xff\xe0\x00\x00'\ -b'\x00\x00\x00\x3f\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\xff\xff\xff\xff\xfc\x00'\ -b'\x00\x00\x00\x7f\xff\x80\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x0f\xfc\x00\x00\x00\x00\x00\x00\x1f\xf8\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ -b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ - -_mvdata = memoryview(_data) - -def data(): - return _mvdata - diff --git a/micropython/badger2040_modules_py/witw.py b/micropython/badger2040_modules_py/witw.py deleted file mode 100644 index 01f861c3..00000000 --- a/micropython/badger2040_modules_py/witw.py +++ /dev/null @@ -1,4375 +0,0 @@ -# Code generated by data_to_py.py. -version = '0.1' - -_data =\ -b'\x54\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47'\ -b'\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x65\x42\x6f\x6f\x6b\x20\x6f'\ -b'\x66\x20\x54\x68\x65\x20\x57\x69\x6e\x64\x20\x69\x6e\x20\x74\x68'\ -b'\x65\x20\x57\x69\x6c\x6c\x6f\x77\x73\x2c\x20\x62\x79\x20\x4b\x65'\ -b'\x6e\x6e\x65\x74\x68\x20\x47\x72\x61\x68\x61\x6d\x65\x0d\x0a\x0d'\ -b'\x0a\x54\x68\x69\x73\x20\x65\x42\x6f\x6f\x6b\x20\x69\x73\x20\x66'\ -b'\x6f\x72\x20\x74\x68\x65\x20\x75\x73\x65\x20\x6f\x66\x20\x61\x6e'\ -b'\x79\x6f\x6e\x65\x20\x61\x6e\x79\x77\x68\x65\x72\x65\x20\x69\x6e'\ -b'\x20\x74\x68\x65\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74'\ -b'\x65\x73\x20\x61\x6e\x64\x0d\x0a\x6d\x6f\x73\x74\x20\x6f\x74\x68'\ -b'\x65\x72\x20\x70\x61\x72\x74\x73\x20\x6f\x66\x20\x74\x68\x65\x20'\ -b'\x77\x6f\x72\x6c\x64\x20\x61\x74\x20\x6e\x6f\x20\x63\x6f\x73\x74'\ -b'\x20\x61\x6e\x64\x20\x77\x69\x74\x68\x20\x61\x6c\x6d\x6f\x73\x74'\ -b'\x20\x6e\x6f\x20\x72\x65\x73\x74\x72\x69\x63\x74\x69\x6f\x6e\x73'\ -b'\x0d\x0a\x77\x68\x61\x74\x73\x6f\x65\x76\x65\x72\x2e\x20\x59\x6f'\ -b'\x75\x20\x6d\x61\x79\x20\x63\x6f\x70\x79\x20\x69\x74\x2c\x20\x67'\ -b'\x69\x76\x65\x20\x69\x74\x20\x61\x77\x61\x79\x20\x6f\x72\x20\x72'\ -b'\x65\x2d\x75\x73\x65\x20\x69\x74\x20\x75\x6e\x64\x65\x72\x20\x74'\ -b'\x68\x65\x20\x74\x65\x72\x6d\x73\x0d\x0a\x6f\x66\x20\x74\x68\x65'\ -b'\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65'\ -b'\x72\x67\x20\x4c\x69\x63\x65\x6e\x73\x65\x20\x69\x6e\x63\x6c\x75'\ -b'\x64\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x69\x73\x20\x65\x42'\ -b'\x6f\x6f\x6b\x20\x6f\x72\x20\x6f\x6e\x6c\x69\x6e\x65\x20\x61\x74'\ -b'\x0d\x0a\x77\x77\x77\x2e\x67\x75\x74\x65\x6e\x62\x65\x72\x67\x2e'\ -b'\x6f\x72\x67\x2e\x20\x49\x66\x20\x79\x6f\x75\x20\x61\x72\x65\x20'\ -b'\x6e\x6f\x74\x20\x6c\x6f\x63\x61\x74\x65\x64\x20\x69\x6e\x20\x74'\ -b'\x68\x65\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73'\ -b'\x2c\x20\x79\x6f\x75\x0d\x0a\x77\x69\x6c\x6c\x20\x68\x61\x76\x65'\ -b'\x20\x74\x6f\x20\x63\x68\x65\x63\x6b\x20\x74\x68\x65\x20\x6c\x61'\ -b'\x77\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6f\x75\x6e\x74\x72'\ -b'\x79\x20\x77\x68\x65\x72\x65\x20\x79\x6f\x75\x20\x61\x72\x65\x20'\ -b'\x6c\x6f\x63\x61\x74\x65\x64\x20\x62\x65\x66\x6f\x72\x65\x0d\x0a'\ -b'\x75\x73\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x65\x42\x6f\x6f\x6b'\ -b'\x2e\x0d\x0a\x0d\x0a\x54\x69\x74\x6c\x65\x3a\x20\x54\x68\x65\x20'\ -b'\x57\x69\x6e\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x57\x69\x6c\x6c'\ -b'\x6f\x77\x73\x0d\x0a\x0d\x0a\x41\x75\x74\x68\x6f\x72\x3a\x20\x4b'\ -b'\x65\x6e\x6e\x65\x74\x68\x20\x47\x72\x61\x68\x61\x6d\x65\x0d\x0a'\ -b'\x0d\x0a\x52\x65\x6c\x65\x61\x73\x65\x20\x44\x61\x74\x65\x3a\x20'\ -b'\x4a\x75\x6c\x79\x2c\x20\x31\x39\x39\x35\x20\x5b\x65\x42\x6f\x6f'\ -b'\x6b\x20\x23\x32\x38\x39\x5d\x0d\x0a\x5b\x4d\x6f\x73\x74\x20\x72'\ -b'\x65\x63\x65\x6e\x74\x6c\x79\x20\x75\x70\x64\x61\x74\x65\x64\x3a'\ -b'\x20\x4d\x61\x79\x20\x31\x35\x2c\x20\x32\x30\x32\x31\x5d\x0d\x0a'\ -b'\x0d\x0a\x4c\x61\x6e\x67\x75\x61\x67\x65\x3a\x20\x45\x6e\x67\x6c'\ -b'\x69\x73\x68\x0d\x0a\x0d\x0a\x43\x68\x61\x72\x61\x63\x74\x65\x72'\ -b'\x20\x73\x65\x74\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3a\x20\x55'\ -b'\x54\x46\x2d\x38\x0d\x0a\x0d\x0a\x50\x72\x6f\x64\x75\x63\x65\x64'\ -b'\x20\x62\x79\x3a\x20\x4d\x69\x6b\x65\x20\x4c\x6f\x75\x67\x68\x20'\ -b'\x61\x6e\x64\x20\x44\x61\x76\x69\x64\x20\x57\x69\x64\x67\x65\x72'\ -b'\x0d\x0a\x0d\x0a\x2a\x2a\x2a\x20\x53\x54\x41\x52\x54\x20\x4f\x46'\ -b'\x20\x54\x48\x45\x20\x50\x52\x4f\x4a\x45\x43\x54\x20\x47\x55\x54'\ -b'\x45\x4e\x42\x45\x52\x47\x20\x45\x42\x4f\x4f\x4b\x20\x54\x48\x45'\ -b'\x20\x57\x49\x4e\x44\x20\x49\x4e\x20\x54\x48\x45\x20\x57\x49\x4c'\ -b'\x4c\x4f\x57\x53\x20\x2a\x2a\x2a\x0d\x0a\x0d\x0a\x5b\x49\x6c\x6c'\ -b'\x75\x73\x74\x72\x61\x74\x69\x6f\x6e\x5d\x0d\x0a\x0d\x0a\x0d\x0a'\ -b'\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x57\x69\x6e\x64\x20\x69\x6e\x20'\ -b'\x74\x68\x65\x20\x57\x69\x6c\x6c\x6f\x77\x73\x0d\x0a\x0d\x0a\x62'\ -b'\x79\x20\x4b\x65\x6e\x6e\x65\x74\x68\x20\x47\x72\x61\x68\x61\x6d'\ -b'\x65\x0d\x0a\x0d\x0a\x41\x75\x74\x68\x6f\x72\x20\x4f\x66\x20\xe2'\ -b'\x80\x9c\x54\x68\x65\x20\x47\x6f\x6c\x64\x65\x6e\x20\x41\x67\x65'\ -b'\x2c\xe2\x80\x9d\x20\xe2\x80\x9c\x44\x72\x65\x61\x6d\x20\x44\x61'\ -b'\x79\x73\x2c\xe2\x80\x9d\x20\x45\x74\x63\x2e\x0d\x0a\x0d\x0a\x0d'\ -b'\x0a\x43\x6f\x6e\x74\x65\x6e\x74\x73\x0d\x0a\x0d\x0a\x20\x43\x48'\ -b'\x41\x50\x54\x45\x52\x20\x49\x2e\x20\x54\x48\x45\x20\x52\x49\x56'\ -b'\x45\x52\x20\x42\x41\x4e\x4b\x0d\x0a\x20\x43\x48\x41\x50\x54\x45'\ -b'\x52\x20\x49\x49\x2e\x20\x54\x48\x45\x20\x4f\x50\x45\x4e\x20\x52'\ -b'\x4f\x41\x44\x0d\x0a\x0d\x0a\x0d\x0a\x0d\x0a\x0d\x0a\x49\x2e\x0d'\ -b'\x0a\x54\x48\x45\x20\x52\x49\x56\x45\x52\x20\x42\x41\x4e\x4b\x0d'\ -b'\x0a\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x4d\x6f\x6c\x65\x20\x68\x61'\ -b'\x64\x20\x62\x65\x65\x6e\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x76'\ -b'\x65\x72\x79\x20\x68\x61\x72\x64\x20\x61\x6c\x6c\x20\x74\x68\x65'\ -b'\x20\x6d\x6f\x72\x6e\x69\x6e\x67\x2c\x20\x73\x70\x72\x69\x6e\x67'\ -b'\x2d\x63\x6c\x65\x61\x6e\x69\x6e\x67\x0d\x0a\x68\x69\x73\x20\x6c'\ -b'\x69\x74\x74\x6c\x65\x20\x68\x6f\x6d\x65\x2e\x20\x46\x69\x72\x73'\ -b'\x74\x20\x77\x69\x74\x68\x20\x62\x72\x6f\x6f\x6d\x73\x2c\x20\x74'\ -b'\x68\x65\x6e\x20\x77\x69\x74\x68\x20\x64\x75\x73\x74\x65\x72\x73'\ -b'\x3b\x20\x74\x68\x65\x6e\x20\x6f\x6e\x20\x6c\x61\x64\x64\x65\x72'\ -b'\x73\x0d\x0a\x61\x6e\x64\x20\x73\x74\x65\x70\x73\x20\x61\x6e\x64'\ -b'\x20\x63\x68\x61\x69\x72\x73\x2c\x20\x77\x69\x74\x68\x20\x61\x20'\ -b'\x62\x72\x75\x73\x68\x20\x61\x6e\x64\x20\x61\x20\x70\x61\x69\x6c'\ -b'\x20\x6f\x66\x20\x77\x68\x69\x74\x65\x77\x61\x73\x68\x3b\x20\x74'\ -b'\x69\x6c\x6c\x20\x68\x65\x20\x68\x61\x64\x0d\x0a\x64\x75\x73\x74'\ -b'\x20\x69\x6e\x20\x68\x69\x73\x20\x74\x68\x72\x6f\x61\x74\x20\x61'\ -b'\x6e\x64\x20\x65\x79\x65\x73\x2c\x20\x61\x6e\x64\x20\x73\x70\x6c'\ -b'\x61\x73\x68\x65\x73\x20\x6f\x66\x20\x77\x68\x69\x74\x65\x77\x61'\ -b'\x73\x68\x20\x61\x6c\x6c\x20\x6f\x76\x65\x72\x20\x68\x69\x73\x0d'\ -b'\x0a\x62\x6c\x61\x63\x6b\x20\x66\x75\x72\x2c\x20\x61\x6e\x64\x20'\ -b'\x61\x6e\x20\x61\x63\x68\x69\x6e\x67\x20\x62\x61\x63\x6b\x20\x61'\ -b'\x6e\x64\x20\x77\x65\x61\x72\x79\x20\x61\x72\x6d\x73\x2e\x20\x53'\ -b'\x70\x72\x69\x6e\x67\x20\x77\x61\x73\x20\x6d\x6f\x76\x69\x6e\x67'\ -b'\x20\x69\x6e\x20\x74\x68\x65\x0d\x0a\x61\x69\x72\x20\x61\x62\x6f'\ -b'\x76\x65\x20\x61\x6e\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x65\x61'\ -b'\x72\x74\x68\x20\x62\x65\x6c\x6f\x77\x20\x61\x6e\x64\x20\x61\x72'\ -b'\x6f\x75\x6e\x64\x20\x68\x69\x6d\x2c\x20\x70\x65\x6e\x65\x74\x72'\ -b'\x61\x74\x69\x6e\x67\x20\x65\x76\x65\x6e\x20\x68\x69\x73\x0d\x0a'\ -b'\x64\x61\x72\x6b\x20\x61\x6e\x64\x20\x6c\x6f\x77\x6c\x79\x20\x6c'\ -b'\x69\x74\x74\x6c\x65\x20\x68\x6f\x75\x73\x65\x20\x77\x69\x74\x68'\ -b'\x20\x69\x74\x73\x20\x73\x70\x69\x72\x69\x74\x20\x6f\x66\x20\x64'\ -b'\x69\x76\x69\x6e\x65\x20\x64\x69\x73\x63\x6f\x6e\x74\x65\x6e\x74'\ -b'\x20\x61\x6e\x64\x0d\x0a\x6c\x6f\x6e\x67\x69\x6e\x67\x2e\x20\x49'\ -b'\x74\x20\x77\x61\x73\x20\x73\x6d\x61\x6c\x6c\x20\x77\x6f\x6e\x64'\ -b'\x65\x72\x2c\x20\x74\x68\x65\x6e\x2c\x20\x74\x68\x61\x74\x20\x68'\ -b'\x65\x20\x73\x75\x64\x64\x65\x6e\x6c\x79\x20\x66\x6c\x75\x6e\x67'\ -b'\x20\x64\x6f\x77\x6e\x20\x68\x69\x73\x0d\x0a\x62\x72\x75\x73\x68'\ -b'\x20\x6f\x6e\x20\x74\x68\x65\x20\x66\x6c\x6f\x6f\x72\x2c\x20\x73'\ -b'\x61\x69\x64\x20\xe2\x80\x9c\x42\x6f\x74\x68\x65\x72\x21\xe2\x80'\ -b'\x9d\x20\x61\x6e\x64\x20\xe2\x80\x9c\x4f\x20\x62\x6c\x6f\x77\x21'\ -b'\xe2\x80\x9d\x20\x61\x6e\x64\x20\x61\x6c\x73\x6f\x20\xe2\x80\x9c'\ -b'\x48\x61\x6e\x67\x0d\x0a\x73\x70\x72\x69\x6e\x67\x2d\x63\x6c\x65'\ -b'\x61\x6e\x69\x6e\x67\x21\xe2\x80\x9d\x20\x61\x6e\x64\x20\x62\x6f'\ -b'\x6c\x74\x65\x64\x20\x6f\x75\x74\x20\x6f\x66\x20\x74\x68\x65\x20'\ -b'\x68\x6f\x75\x73\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x65\x76'\ -b'\x65\x6e\x20\x77\x61\x69\x74\x69\x6e\x67\x20\x74\x6f\x0d\x0a\x70'\ -b'\x75\x74\x20\x6f\x6e\x20\x68\x69\x73\x20\x63\x6f\x61\x74\x2e\x20'\ -b'\x53\x6f\x6d\x65\x74\x68\x69\x6e\x67\x20\x75\x70\x20\x61\x62\x6f'\ -b'\x76\x65\x20\x77\x61\x73\x20\x63\x61\x6c\x6c\x69\x6e\x67\x20\x68'\ -b'\x69\x6d\x20\x69\x6d\x70\x65\x72\x69\x6f\x75\x73\x6c\x79\x2c\x20'\ -b'\x61\x6e\x64\x20\x68\x65\x0d\x0a\x6d\x61\x64\x65\x20\x66\x6f\x72'\ -b'\x20\x74\x68\x65\x20\x73\x74\x65\x65\x70\x20\x6c\x69\x74\x74\x6c'\ -b'\x65\x20\x74\x75\x6e\x6e\x65\x6c\x20\x77\x68\x69\x63\x68\x20\x61'\ -b'\x6e\x73\x77\x65\x72\x65\x64\x20\x69\x6e\x20\x68\x69\x73\x20\x63'\ -b'\x61\x73\x65\x20\x74\x6f\x20\x74\x68\x65\x0d\x0a\x67\x72\x61\x76'\ -b'\x65\x6c\x6c\x65\x64\x20\x63\x61\x72\x72\x69\x61\x67\x65\x2d\x64'\ -b'\x72\x69\x76\x65\x20\x6f\x77\x6e\x65\x64\x20\x62\x79\x20\x61\x6e'\ -b'\x69\x6d\x61\x6c\x73\x20\x77\x68\x6f\x73\x65\x20\x72\x65\x73\x69'\ -b'\x64\x65\x6e\x63\x65\x73\x20\x61\x72\x65\x20\x6e\x65\x61\x72\x65'\ -b'\x72\x0d\x0a\x74\x6f\x20\x74\x68\x65\x20\x73\x75\x6e\x20\x61\x6e'\ -b'\x64\x20\x61\x69\x72\x2e\x20\x53\x6f\x20\x68\x65\x20\x73\x63\x72'\ -b'\x61\x70\x65\x64\x20\x61\x6e\x64\x20\x73\x63\x72\x61\x74\x63\x68'\ -b'\x65\x64\x20\x61\x6e\x64\x20\x73\x63\x72\x61\x62\x62\x6c\x65\x64'\ -b'\x20\x61\x6e\x64\x0d\x0a\x73\x63\x72\x6f\x6f\x67\x65\x64\x20\x61'\ -b'\x6e\x64\x20\x74\x68\x65\x6e\x20\x68\x65\x20\x73\x63\x72\x6f\x6f'\ -b'\x67\x65\x64\x20\x61\x67\x61\x69\x6e\x20\x61\x6e\x64\x20\x73\x63'\ -b'\x72\x61\x62\x62\x6c\x65\x64\x20\x61\x6e\x64\x20\x73\x63\x72\x61'\ -b'\x74\x63\x68\x65\x64\x20\x61\x6e\x64\x0d\x0a\x73\x63\x72\x61\x70'\ -b'\x65\x64\x2c\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x62\x75\x73\x69'\ -b'\x6c\x79\x20\x77\x69\x74\x68\x20\x68\x69\x73\x20\x6c\x69\x74\x74'\ -b'\x6c\x65\x20\x70\x61\x77\x73\x20\x61\x6e\x64\x20\x6d\x75\x74\x74'\ -b'\x65\x72\x69\x6e\x67\x20\x74\x6f\x20\x68\x69\x6d\x73\x65\x6c\x66'\ -b'\x2c\x0d\x0a\xe2\x80\x9c\x55\x70\x20\x77\x65\x20\x67\x6f\x21\x20'\ -b'\x55\x70\x20\x77\x65\x20\x67\x6f\x21\xe2\x80\x9d\x20\x74\x69\x6c'\ -b'\x6c\x20\x61\x74\x20\x6c\x61\x73\x74\x2c\x20\x70\x6f\x70\x21\x20'\ -b'\x68\x69\x73\x20\x73\x6e\x6f\x75\x74\x20\x63\x61\x6d\x65\x20\x6f'\ -b'\x75\x74\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x0d\x0a\x73\x75\x6e'\ -b'\x6c\x69\x67\x68\x74\x2c\x20\x61\x6e\x64\x20\x68\x65\x20\x66\x6f'\ -b'\x75\x6e\x64\x20\x68\x69\x6d\x73\x65\x6c\x66\x20\x72\x6f\x6c\x6c'\ -b'\x69\x6e\x67\x20\x69\x6e\x20\x74\x68\x65\x20\x77\x61\x72\x6d\x20'\ -b'\x67\x72\x61\x73\x73\x20\x6f\x66\x20\x61\x20\x67\x72\x65\x61\x74'\ -b'\x0d\x0a\x6d\x65\x61\x64\x6f\x77\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x54\x68\x69\x73\x20\x69\x73\x20\x66\x69\x6e\x65\x21\xe2\x80\x9d'\ -b'\x20\x68\x65\x20\x73\x61\x69\x64\x20\x74\x6f\x20\x68\x69\x6d\x73'\ -b'\x65\x6c\x66\x2e\x20\xe2\x80\x9c\x54\x68\x69\x73\x20\x69\x73\x20'\ -b'\x62\x65\x74\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x77\x68\x69\x74'\ -b'\x65\x77\x61\x73\x68\x69\x6e\x67\x21\xe2\x80\x9d\x0d\x0a\x54\x68'\ -b'\x65\x20\x73\x75\x6e\x73\x68\x69\x6e\x65\x20\x73\x74\x72\x75\x63'\ -b'\x6b\x20\x68\x6f\x74\x20\x6f\x6e\x20\x68\x69\x73\x20\x66\x75\x72'\ -b'\x2c\x20\x73\x6f\x66\x74\x20\x62\x72\x65\x65\x7a\x65\x73\x20\x63'\ -b'\x61\x72\x65\x73\x73\x65\x64\x20\x68\x69\x73\x20\x68\x65\x61\x74'\ -b'\x65\x64\x0d\x0a\x62\x72\x6f\x77\x2c\x20\x61\x6e\x64\x20\x61\x66'\ -b'\x74\x65\x72\x20\x74\x68\x65\x20\x73\x65\x63\x6c\x75\x73\x69\x6f'\ -b'\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x65\x6c\x6c\x61\x72\x61'\ -b'\x67\x65\x20\x68\x65\x20\x68\x61\x64\x20\x6c\x69\x76\x65\x64\x20'\ -b'\x69\x6e\x20\x73\x6f\x20\x6c\x6f\x6e\x67\x0d\x0a\x74\x68\x65\x20'\ -b'\x63\x61\x72\x6f\x6c\x20\x6f\x66\x20\x68\x61\x70\x70\x79\x20\x62'\ -b'\x69\x72\x64\x73\x20\x66\x65\x6c\x6c\x20\x6f\x6e\x20\x68\x69\x73'\ -b'\x20\x64\x75\x6c\x6c\x65\x64\x20\x68\x65\x61\x72\x69\x6e\x67\x20'\ -b'\x61\x6c\x6d\x6f\x73\x74\x20\x6c\x69\x6b\x65\x20\x61\x0d\x0a\x73'\ -b'\x68\x6f\x75\x74\x2e\x20\x4a\x75\x6d\x70\x69\x6e\x67\x20\x6f\x66'\ -b'\x66\x20\x61\x6c\x6c\x20\x68\x69\x73\x20\x66\x6f\x75\x72\x20\x6c'\ -b'\x65\x67\x73\x20\x61\x74\x20\x6f\x6e\x63\x65\x2c\x20\x69\x6e\x20'\ -b'\x74\x68\x65\x20\x6a\x6f\x79\x20\x6f\x66\x20\x6c\x69\x76\x69\x6e'\ -b'\x67\x20\x61\x6e\x64\x0d\x0a\x74\x68\x65\x20\x64\x65\x6c\x69\x67'\ -b'\x68\x74\x20\x6f\x66\x20\x73\x70\x72\x69\x6e\x67\x20\x77\x69\x74'\ -b'\x68\x6f\x75\x74\x20\x69\x74\x73\x20\x63\x6c\x65\x61\x6e\x69\x6e'\ -b'\x67\x2c\x20\x68\x65\x20\x70\x75\x72\x73\x75\x65\x64\x20\x68\x69'\ -b'\x73\x20\x77\x61\x79\x20\x61\x63\x72\x6f\x73\x73\x0d\x0a\x74\x68'\ -b'\x65\x20\x6d\x65\x61\x64\x6f\x77\x20\x74\x69\x6c\x6c\x20\x68\x65'\ -b'\x20\x72\x65\x61\x63\x68\x65\x64\x20\x74\x68\x65\x20\x68\x65\x64'\ -b'\x67\x65\x20\x6f\x6e\x20\x74\x68\x65\x20\x66\x75\x72\x74\x68\x65'\ -b'\x72\x20\x73\x69\x64\x65\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x48\x6f'\ -b'\x6c\x64\x20\x75\x70\x21\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x61'\ -b'\x6e\x20\x65\x6c\x64\x65\x72\x6c\x79\x20\x72\x61\x62\x62\x69\x74'\ -b'\x20\x61\x74\x20\x74\x68\x65\x20\x67\x61\x70\x2e\x20\xe2\x80\x9c'\ -b'\x53\x69\x78\x70\x65\x6e\x63\x65\x20\x66\x6f\x72\x20\x74\x68\x65'\ -b'\x0d\x0a\x70\x72\x69\x76\x69\x6c\x65\x67\x65\x20\x6f\x66\x20\x70'\ -b'\x61\x73\x73\x69\x6e\x67\x20\x62\x79\x20\x74\x68\x65\x20\x70\x72'\ -b'\x69\x76\x61\x74\x65\x20\x72\x6f\x61\x64\x21\xe2\x80\x9d\x20\x48'\ -b'\x65\x20\x77\x61\x73\x20\x62\x6f\x77\x6c\x65\x64\x20\x6f\x76\x65'\ -b'\x72\x20\x69\x6e\x20\x61\x6e\x0d\x0a\x69\x6e\x73\x74\x61\x6e\x74'\ -b'\x20\x62\x79\x20\x74\x68\x65\x20\x69\x6d\x70\x61\x74\x69\x65\x6e'\ -b'\x74\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x65\x6d\x70\x74\x75\x6f'\ -b'\x75\x73\x20\x4d\x6f\x6c\x65\x2c\x20\x77\x68\x6f\x20\x74\x72\x6f'\ -b'\x74\x74\x65\x64\x20\x61\x6c\x6f\x6e\x67\x20\x74\x68\x65\x0d\x0a'\ -b'\x73\x69\x64\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x68\x65\x64\x67'\ -b'\x65\x20\x63\x68\x61\x66\x66\x69\x6e\x67\x20\x74\x68\x65\x20\x6f'\ -b'\x74\x68\x65\x72\x20\x72\x61\x62\x62\x69\x74\x73\x20\x61\x73\x20'\ -b'\x74\x68\x65\x79\x20\x70\x65\x65\x70\x65\x64\x20\x68\x75\x72\x72'\ -b'\x69\x65\x64\x6c\x79\x0d\x0a\x66\x72\x6f\x6d\x20\x74\x68\x65\x69'\ -b'\x72\x20\x68\x6f\x6c\x65\x73\x20\x74\x6f\x20\x73\x65\x65\x20\x77'\ -b'\x68\x61\x74\x20\x74\x68\x65\x20\x72\x6f\x77\x20\x77\x61\x73\x20'\ -b'\x61\x62\x6f\x75\x74\x2e\x20\xe2\x80\x9c\x4f\x6e\x69\x6f\x6e\x2d'\ -b'\x73\x61\x75\x63\x65\x21\x0d\x0a\x4f\x6e\x69\x6f\x6e\x2d\x73\x61'\ -b'\x75\x63\x65\x21\xe2\x80\x9d\x20\x68\x65\x20\x72\x65\x6d\x61\x72'\ -b'\x6b\x65\x64\x20\x6a\x65\x65\x72\x69\x6e\x67\x6c\x79\x2c\x20\x61'\ -b'\x6e\x64\x20\x77\x61\x73\x20\x67\x6f\x6e\x65\x20\x62\x65\x66\x6f'\ -b'\x72\x65\x20\x74\x68\x65\x79\x20\x63\x6f\x75\x6c\x64\x0d\x0a\x74'\ -b'\x68\x69\x6e\x6b\x20\x6f\x66\x20\x61\x20\x74\x68\x6f\x72\x6f\x75'\ -b'\x67\x68\x6c\x79\x20\x73\x61\x74\x69\x73\x66\x61\x63\x74\x6f\x72'\ -b'\x79\x20\x72\x65\x70\x6c\x79\x2e\x20\x54\x68\x65\x6e\x20\x74\x68'\ -b'\x65\x79\x20\x61\x6c\x6c\x20\x73\x74\x61\x72\x74\x65\x64\x0d\x0a'\ -b'\x67\x72\x75\x6d\x62\x6c\x69\x6e\x67\x20\x61\x74\x20\x65\x61\x63'\ -b'\x68\x20\x6f\x74\x68\x65\x72\x2e\x20\xe2\x80\x9c\x48\x6f\x77\x20'\ -b'\x5f\x73\x74\x75\x70\x69\x64\x5f\x20\x79\x6f\x75\x20\x61\x72\x65'\ -b'\x21\x20\x57\x68\x79\x20\x64\x69\x64\x6e\xe2\x80\x99\x74\x20\x79'\ -b'\x6f\x75\x20\x74\x65\x6c\x6c\x0d\x0a\x68\x69\x6d\xe2\x80\x94\xe2'\ -b'\x80\x94\xe2\x80\x9d\x20\xe2\x80\x9c\x57\x65\x6c\x6c\x2c\x20\x77'\ -b'\x68\x79\x20\x64\x69\x64\x6e\xe2\x80\x99\x74\x20\x5f\x79\x6f\x75'\ -b'\x5f\x20\x73\x61\x79\xe2\x80\x94\xe2\x80\x94\xe2\x80\x9d\x20\xe2'\ -b'\x80\x9c\x59\x6f\x75\x20\x6d\x69\x67\x68\x74\x20\x68\x61\x76\x65'\ -b'\x20\x72\x65\x6d\x69\x6e\x64\x65\x64\x20\x68\x69\x6d\xe2\x80\x94'\ -b'\xe2\x80\x94\xe2\x80\x9d\x0d\x0a\x61\x6e\x64\x20\x73\x6f\x20\x6f'\ -b'\x6e\x2c\x20\x69\x6e\x20\x74\x68\x65\x20\x75\x73\x75\x61\x6c\x20'\ -b'\x77\x61\x79\x3b\x20\x62\x75\x74\x2c\x20\x6f\x66\x20\x63\x6f\x75'\ -b'\x72\x73\x65\x2c\x20\x69\x74\x20\x77\x61\x73\x20\x74\x68\x65\x6e'\ -b'\x20\x6d\x75\x63\x68\x20\x74\x6f\x6f\x20\x6c\x61\x74\x65\x2c\x0d'\ -b'\x0a\x61\x73\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x20\x74\x68'\ -b'\x65\x20\x63\x61\x73\x65\x2e\x0d\x0a\x0d\x0a\x49\x74\x20\x61\x6c'\ -b'\x6c\x20\x73\x65\x65\x6d\x65\x64\x20\x74\x6f\x6f\x20\x67\x6f\x6f'\ -b'\x64\x20\x74\x6f\x20\x62\x65\x20\x74\x72\x75\x65\x2e\x20\x48\x69'\ -b'\x74\x68\x65\x72\x20\x61\x6e\x64\x20\x74\x68\x69\x74\x68\x65\x72'\ -b'\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x74\x68\x65\x0d\x0a\x6d\x65'\ -b'\x61\x64\x6f\x77\x73\x20\x68\x65\x20\x72\x61\x6d\x62\x6c\x65\x64'\ -b'\x20\x62\x75\x73\x69\x6c\x79\x2c\x20\x61\x6c\x6f\x6e\x67\x20\x74'\ -b'\x68\x65\x20\x68\x65\x64\x67\x65\x72\x6f\x77\x73\x2c\x20\x61\x63'\ -b'\x72\x6f\x73\x73\x20\x74\x68\x65\x20\x63\x6f\x70\x73\x65\x73\x2c'\ -b'\x0d\x0a\x66\x69\x6e\x64\x69\x6e\x67\x20\x65\x76\x65\x72\x79\x77'\ -b'\x68\x65\x72\x65\x20\x62\x69\x72\x64\x73\x20\x62\x75\x69\x6c\x64'\ -b'\x69\x6e\x67\x2c\x20\x66\x6c\x6f\x77\x65\x72\x73\x20\x62\x75\x64'\ -b'\x64\x69\x6e\x67\x2c\x20\x6c\x65\x61\x76\x65\x73\x0d\x0a\x74\x68'\ -b'\x72\x75\x73\x74\x69\x6e\x67\xe2\x80\x94\x65\x76\x65\x72\x79\x74'\ -b'\x68\x69\x6e\x67\x20\x68\x61\x70\x70\x79\x2c\x20\x61\x6e\x64\x20'\ -b'\x70\x72\x6f\x67\x72\x65\x73\x73\x69\x76\x65\x2c\x20\x61\x6e\x64'\ -b'\x20\x6f\x63\x63\x75\x70\x69\x65\x64\x2e\x20\x41\x6e\x64\x20\x69'\ -b'\x6e\x73\x74\x65\x61\x64\x0d\x0a\x6f\x66\x20\x68\x61\x76\x69\x6e'\ -b'\x67\x20\x61\x6e\x20\x75\x6e\x65\x61\x73\x79\x20\x63\x6f\x6e\x73'\ -b'\x63\x69\x65\x6e\x63\x65\x20\x70\x72\x69\x63\x6b\x69\x6e\x67\x20'\ -b'\x68\x69\x6d\x20\x61\x6e\x64\x20\x77\x68\x69\x73\x70\x65\x72\x69'\ -b'\x6e\x67\x20\xe2\x80\x9c\x77\x68\x69\x74\x65\x77\x61\x73\x68\x21'\ -b'\xe2\x80\x9d\x0d\x0a\x68\x65\x20\x73\x6f\x6d\x65\x68\x6f\x77\x20'\ -b'\x63\x6f\x75\x6c\x64\x20\x6f\x6e\x6c\x79\x20\x66\x65\x65\x6c\x20'\ -b'\x68\x6f\x77\x20\x6a\x6f\x6c\x6c\x79\x20\x69\x74\x20\x77\x61\x73'\ -b'\x20\x74\x6f\x20\x62\x65\x20\x74\x68\x65\x20\x6f\x6e\x6c\x79\x20'\ -b'\x69\x64\x6c\x65\x20\x64\x6f\x67\x0d\x0a\x61\x6d\x6f\x6e\x67\x20'\ -b'\x61\x6c\x6c\x20\x74\x68\x65\x73\x65\x20\x62\x75\x73\x79\x20\x63'\ -b'\x69\x74\x69\x7a\x65\x6e\x73\x2e\x20\x41\x66\x74\x65\x72\x20\x61'\ -b'\x6c\x6c\x2c\x20\x74\x68\x65\x20\x62\x65\x73\x74\x20\x70\x61\x72'\ -b'\x74\x20\x6f\x66\x20\x61\x20\x68\x6f\x6c\x69\x64\x61\x79\x20\x69'\ -b'\x73\x0d\x0a\x70\x65\x72\x68\x61\x70\x73\x20\x6e\x6f\x74\x20\x73'\ -b'\x6f\x20\x6d\x75\x63\x68\x20\x74\x6f\x20\x62\x65\x20\x72\x65\x73'\ -b'\x74\x69\x6e\x67\x20\x79\x6f\x75\x72\x73\x65\x6c\x66\x2c\x20\x61'\ -b'\x73\x20\x74\x6f\x20\x73\x65\x65\x20\x61\x6c\x6c\x20\x74\x68\x65'\ -b'\x20\x6f\x74\x68\x65\x72\x0d\x0a\x66\x65\x6c\x6c\x6f\x77\x73\x20'\ -b'\x62\x75\x73\x79\x20\x77\x6f\x72\x6b\x69\x6e\x67\x2e\x0d\x0a\x0d'\ -b'\x0a\x48\x65\x20\x74\x68\x6f\x75\x67\x68\x74\x20\x68\x69\x73\x20'\ -b'\x68\x61\x70\x70\x69\x6e\x65\x73\x73\x20\x77\x61\x73\x20\x63\x6f'\ -b'\x6d\x70\x6c\x65\x74\x65\x20\x77\x68\x65\x6e\x2c\x20\x61\x73\x20'\ -b'\x68\x65\x20\x6d\x65\x61\x6e\x64\x65\x72\x65\x64\x20\x61\x69\x6d'\ -b'\x6c\x65\x73\x73\x6c\x79\x0d\x0a\x61\x6c\x6f\x6e\x67\x2c\x20\x73'\ -b'\x75\x64\x64\x65\x6e\x6c\x79\x20\x68\x65\x20\x73\x74\x6f\x6f\x64'\ -b'\x20\x62\x79\x20\x74\x68\x65\x20\x65\x64\x67\x65\x20\x6f\x66\x20'\ -b'\x61\x20\x66\x75\x6c\x6c\x2d\x66\x65\x64\x20\x72\x69\x76\x65\x72'\ -b'\x2e\x20\x4e\x65\x76\x65\x72\x20\x69\x6e\x20\x68\x69\x73\x0d\x0a'\ -b'\x6c\x69\x66\x65\x20\x68\x61\x64\x20\x68\x65\x20\x73\x65\x65\x6e'\ -b'\x20\x61\x20\x72\x69\x76\x65\x72\x20\x62\x65\x66\x6f\x72\x65\xe2'\ -b'\x80\x94\x74\x68\x69\x73\x20\x73\x6c\x65\x65\x6b\x2c\x20\x73\x69'\ -b'\x6e\x75\x6f\x75\x73\x2c\x20\x66\x75\x6c\x6c\x2d\x62\x6f\x64\x69'\ -b'\x65\x64\x0d\x0a\x61\x6e\x69\x6d\x61\x6c\x2c\x20\x63\x68\x61\x73'\ -b'\x69\x6e\x67\x20\x61\x6e\x64\x20\x63\x68\x75\x63\x6b\x6c\x69\x6e'\ -b'\x67\x2c\x20\x67\x72\x69\x70\x70\x69\x6e\x67\x20\x74\x68\x69\x6e'\ -b'\x67\x73\x20\x77\x69\x74\x68\x20\x61\x20\x67\x75\x72\x67\x6c\x65'\ -b'\x20\x61\x6e\x64\x0d\x0a\x6c\x65\x61\x76\x69\x6e\x67\x20\x74\x68'\ -b'\x65\x6d\x20\x77\x69\x74\x68\x20\x61\x20\x6c\x61\x75\x67\x68\x2c'\ -b'\x20\x74\x6f\x20\x66\x6c\x69\x6e\x67\x20\x69\x74\x73\x65\x6c\x66'\ -b'\x20\x6f\x6e\x20\x66\x72\x65\x73\x68\x20\x70\x6c\x61\x79\x6d\x61'\ -b'\x74\x65\x73\x20\x74\x68\x61\x74\x0d\x0a\x73\x68\x6f\x6f\x6b\x20'\ -b'\x74\x68\x65\x6d\x73\x65\x6c\x76\x65\x73\x20\x66\x72\x65\x65\x2c'\ -b'\x20\x61\x6e\x64\x20\x77\x65\x72\x65\x20\x63\x61\x75\x67\x68\x74'\ -b'\x20\x61\x6e\x64\x20\x68\x65\x6c\x64\x20\x61\x67\x61\x69\x6e\x2e'\ -b'\x20\x41\x6c\x6c\x20\x77\x61\x73\x20\x61\x2d\x73\x68\x61\x6b\x65'\ -b'\x0d\x0a\x61\x6e\x64\x20\x61\x2d\x73\x68\x69\x76\x65\x72\xe2\x80'\ -b'\x94\x67\x6c\x69\x6e\x74\x73\x20\x61\x6e\x64\x20\x67\x6c\x65\x61'\ -b'\x6d\x73\x20\x61\x6e\x64\x20\x73\x70\x61\x72\x6b\x6c\x65\x73\x2c'\ -b'\x20\x72\x75\x73\x74\x6c\x65\x20\x61\x6e\x64\x20\x73\x77\x69\x72'\ -b'\x6c\x2c\x20\x63\x68\x61\x74\x74\x65\x72\x0d\x0a\x61\x6e\x64\x20'\ -b'\x62\x75\x62\x62\x6c\x65\x2e\x20\x54\x68\x65\x20\x4d\x6f\x6c\x65'\ -b'\x20\x77\x61\x73\x20\x62\x65\x77\x69\x74\x63\x68\x65\x64\x2c\x20'\ -b'\x65\x6e\x74\x72\x61\x6e\x63\x65\x64\x2c\x20\x66\x61\x73\x63\x69'\ -b'\x6e\x61\x74\x65\x64\x2e\x20\x42\x79\x20\x74\x68\x65\x20\x73\x69'\ -b'\x64\x65\x0d\x0a\x6f\x66\x20\x74\x68\x65\x20\x72\x69\x76\x65\x72'\ -b'\x20\x68\x65\x20\x74\x72\x6f\x74\x74\x65\x64\x20\x61\x73\x20\x6f'\ -b'\x6e\x65\x20\x74\x72\x6f\x74\x73\x2c\x20\x77\x68\x65\x6e\x20\x76'\ -b'\x65\x72\x79\x20\x73\x6d\x61\x6c\x6c\x2c\x20\x62\x79\x20\x74\x68'\ -b'\x65\x20\x73\x69\x64\x65\x20\x6f\x66\x20\x61\x0d\x0a\x6d\x61\x6e'\ -b'\x20\x77\x68\x6f\x20\x68\x6f\x6c\x64\x73\x20\x6f\x6e\x65\x20\x73'\ -b'\x70\x65\x6c\x6c\x2d\x62\x6f\x75\x6e\x64\x20\x62\x79\x20\x65\x78'\ -b'\x63\x69\x74\x69\x6e\x67\x20\x73\x74\x6f\x72\x69\x65\x73\x3b\x20'\ -b'\x61\x6e\x64\x20\x77\x68\x65\x6e\x20\x74\x69\x72\x65\x64\x20\x61'\ -b'\x74\x0d\x0a\x6c\x61\x73\x74\x2c\x20\x68\x65\x20\x73\x61\x74\x20'\ -b'\x6f\x6e\x20\x74\x68\x65\x20\x62\x61\x6e\x6b\x2c\x20\x77\x68\x69'\ -b'\x6c\x65\x20\x74\x68\x65\x20\x72\x69\x76\x65\x72\x20\x73\x74\x69'\ -b'\x6c\x6c\x20\x63\x68\x61\x74\x74\x65\x72\x65\x64\x20\x6f\x6e\x20'\ -b'\x74\x6f\x20\x68\x69\x6d\x2c\x20\x61\x0d\x0a\x62\x61\x62\x62\x6c'\ -b'\x69\x6e\x67\x20\x70\x72\x6f\x63\x65\x73\x73\x69\x6f\x6e\x20\x6f'\ -b'\x66\x20\x74\x68\x65\x20\x62\x65\x73\x74\x20\x73\x74\x6f\x72\x69'\ -b'\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x20\x77\x6f\x72\x6c\x64\x2c'\ -b'\x20\x73\x65\x6e\x74\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x0d\x0a'\ -b'\x68\x65\x61\x72\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x61\x72'\ -b'\x74\x68\x20\x74\x6f\x20\x62\x65\x20\x74\x6f\x6c\x64\x20\x61\x74'\ -b'\x20\x6c\x61\x73\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x69\x6e\x73'\ -b'\x61\x74\x69\x61\x62\x6c\x65\x20\x73\x65\x61\x2e\x0d\x0a\x0d\x0a'\ -b'\x41\x73\x20\x68\x65\x20\x73\x61\x74\x20\x6f\x6e\x20\x74\x68\x65'\ -b'\x20\x67\x72\x61\x73\x73\x20\x61\x6e\x64\x20\x6c\x6f\x6f\x6b\x65'\ -b'\x64\x20\x61\x63\x72\x6f\x73\x73\x20\x74\x68\x65\x20\x72\x69\x76'\ -b'\x65\x72\x2c\x20\x61\x20\x64\x61\x72\x6b\x20\x68\x6f\x6c\x65\x20'\ -b'\x69\x6e\x20\x74\x68\x65\x0d\x0a\x62\x61\x6e\x6b\x20\x6f\x70\x70'\ -b'\x6f\x73\x69\x74\x65\x2c\x20\x6a\x75\x73\x74\x20\x61\x62\x6f\x76'\ -b'\x65\x20\x74\x68\x65\x20\x77\x61\x74\x65\x72\xe2\x80\x99\x73\x20'\ -b'\x65\x64\x67\x65\x2c\x20\x63\x61\x75\x67\x68\x74\x20\x68\x69\x73'\ -b'\x20\x65\x79\x65\x2c\x20\x61\x6e\x64\x0d\x0a\x64\x72\x65\x61\x6d'\ -b'\x69\x6c\x79\x20\x68\x65\x20\x66\x65\x6c\x6c\x20\x74\x6f\x20\x63'\ -b'\x6f\x6e\x73\x69\x64\x65\x72\x69\x6e\x67\x20\x77\x68\x61\x74\x20'\ -b'\x61\x20\x6e\x69\x63\x65\x20\x73\x6e\x75\x67\x20\x64\x77\x65\x6c'\ -b'\x6c\x69\x6e\x67\x2d\x70\x6c\x61\x63\x65\x20\x69\x74\x0d\x0a\x77'\ -b'\x6f\x75\x6c\x64\x20\x6d\x61\x6b\x65\x20\x66\x6f\x72\x20\x61\x6e'\ -b'\x20\x61\x6e\x69\x6d\x61\x6c\x20\x77\x69\x74\x68\x20\x66\x65\x77'\ -b'\x20\x77\x61\x6e\x74\x73\x20\x61\x6e\x64\x20\x66\x6f\x6e\x64\x20'\ -b'\x6f\x66\x20\x61\x20\x62\x69\x6a\x6f\x75\x20\x72\x69\x76\x65\x72'\ -b'\x73\x69\x64\x65\x0d\x0a\x72\x65\x73\x69\x64\x65\x6e\x63\x65\x2c'\ -b'\x20\x61\x62\x6f\x76\x65\x20\x66\x6c\x6f\x6f\x64\x20\x6c\x65\x76'\ -b'\x65\x6c\x20\x61\x6e\x64\x20\x72\x65\x6d\x6f\x74\x65\x20\x66\x72'\ -b'\x6f\x6d\x20\x6e\x6f\x69\x73\x65\x20\x61\x6e\x64\x20\x64\x75\x73'\ -b'\x74\x2e\x20\x41\x73\x20\x68\x65\x0d\x0a\x67\x61\x7a\x65\x64\x2c'\ -b'\x20\x73\x6f\x6d\x65\x74\x68\x69\x6e\x67\x20\x62\x72\x69\x67\x68'\ -b'\x74\x20\x61\x6e\x64\x20\x73\x6d\x61\x6c\x6c\x20\x73\x65\x65\x6d'\ -b'\x65\x64\x20\x74\x6f\x20\x74\x77\x69\x6e\x6b\x6c\x65\x20\x64\x6f'\ -b'\x77\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x68\x65\x61\x72\x74\x0d'\ -b'\x0a\x6f\x66\x20\x69\x74\x2c\x20\x76\x61\x6e\x69\x73\x68\x65\x64'\ -b'\x2c\x20\x74\x68\x65\x6e\x20\x74\x77\x69\x6e\x6b\x6c\x65\x64\x20'\ -b'\x6f\x6e\x63\x65\x20\x6d\x6f\x72\x65\x20\x6c\x69\x6b\x65\x20\x61'\ -b'\x20\x74\x69\x6e\x79\x20\x73\x74\x61\x72\x2e\x20\x42\x75\x74\x20'\ -b'\x69\x74\x20\x63\x6f\x75\x6c\x64\x0d\x0a\x68\x61\x72\x64\x6c\x79'\ -b'\x20\x62\x65\x20\x61\x20\x73\x74\x61\x72\x20\x69\x6e\x20\x73\x75'\ -b'\x63\x68\x20\x61\x6e\x20\x75\x6e\x6c\x69\x6b\x65\x6c\x79\x20\x73'\ -b'\x69\x74\x75\x61\x74\x69\x6f\x6e\x3b\x20\x61\x6e\x64\x20\x69\x74'\ -b'\x20\x77\x61\x73\x20\x74\x6f\x6f\x0d\x0a\x67\x6c\x69\x74\x74\x65'\ -b'\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x73\x6d\x61\x6c\x6c\x20\x66'\ -b'\x6f\x72\x20\x61\x20\x67\x6c\x6f\x77\x2d\x77\x6f\x72\x6d\x2e\x20'\ -b'\x54\x68\x65\x6e\x2c\x20\x61\x73\x20\x68\x65\x20\x6c\x6f\x6f\x6b'\ -b'\x65\x64\x2c\x20\x69\x74\x20\x77\x69\x6e\x6b\x65\x64\x20\x61\x74'\ -b'\x0d\x0a\x68\x69\x6d\x2c\x20\x61\x6e\x64\x20\x73\x6f\x20\x64\x65'\ -b'\x63\x6c\x61\x72\x65\x64\x20\x69\x74\x73\x65\x6c\x66\x20\x74\x6f'\ -b'\x20\x62\x65\x20\x61\x6e\x20\x65\x79\x65\x3b\x20\x61\x6e\x64\x20'\ -b'\x61\x20\x73\x6d\x61\x6c\x6c\x20\x66\x61\x63\x65\x20\x62\x65\x67'\ -b'\x61\x6e\x0d\x0a\x67\x72\x61\x64\x75\x61\x6c\x6c\x79\x20\x74\x6f'\ -b'\x20\x67\x72\x6f\x77\x20\x75\x70\x20\x72\x6f\x75\x6e\x64\x20\x69'\ -b'\x74\x2c\x20\x6c\x69\x6b\x65\x20\x61\x20\x66\x72\x61\x6d\x65\x20'\ -b'\x72\x6f\x75\x6e\x64\x20\x61\x20\x70\x69\x63\x74\x75\x72\x65\x2e'\ -b'\x0d\x0a\x0d\x0a\x41\x20\x62\x72\x6f\x77\x6e\x20\x6c\x69\x74\x74'\ -b'\x6c\x65\x20\x66\x61\x63\x65\x2c\x20\x77\x69\x74\x68\x20\x77\x68'\ -b'\x69\x73\x6b\x65\x72\x73\x2e\x0d\x0a\x0d\x0a\x41\x20\x67\x72\x61'\ -b'\x76\x65\x20\x72\x6f\x75\x6e\x64\x20\x66\x61\x63\x65\x2c\x20\x77'\ -b'\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x74\x77\x69'\ -b'\x6e\x6b\x6c\x65\x20\x69\x6e\x20\x69\x74\x73\x20\x65\x79\x65\x20'\ -b'\x74\x68\x61\x74\x20\x68\x61\x64\x20\x66\x69\x72\x73\x74\x0d\x0a'\ -b'\x61\x74\x74\x72\x61\x63\x74\x65\x64\x20\x68\x69\x73\x20\x6e\x6f'\ -b'\x74\x69\x63\x65\x2e\x0d\x0a\x0d\x0a\x53\x6d\x61\x6c\x6c\x20\x6e'\ -b'\x65\x61\x74\x20\x65\x61\x72\x73\x20\x61\x6e\x64\x20\x74\x68\x69'\ -b'\x63\x6b\x20\x73\x69\x6c\x6b\x79\x20\x68\x61\x69\x72\x2e\x0d\x0a'\ -b'\x0d\x0a\x49\x74\x20\x77\x61\x73\x20\x74\x68\x65\x20\x57\x61\x74'\ -b'\x65\x72\x20\x52\x61\x74\x21\x0d\x0a\x0d\x0a\x54\x68\x65\x6e\x20'\ -b'\x74\x68\x65\x20\x74\x77\x6f\x20\x61\x6e\x69\x6d\x61\x6c\x73\x20'\ -b'\x73\x74\x6f\x6f\x64\x20\x61\x6e\x64\x20\x72\x65\x67\x61\x72\x64'\ -b'\x65\x64\x20\x65\x61\x63\x68\x20\x6f\x74\x68\x65\x72\x20\x63\x61'\ -b'\x75\x74\x69\x6f\x75\x73\x6c\x79\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x48\x75\x6c\x6c\x6f\x2c\x20\x4d\x6f\x6c\x65\x21\xe2\x80\x9d\x20'\ -b'\x73\x61\x69\x64\x20\x74\x68\x65\x20\x57\x61\x74\x65\x72\x20\x52'\ -b'\x61\x74\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x48\x75\x6c\x6c\x6f\x2c'\ -b'\x20\x52\x61\x74\x21\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68'\ -b'\x65\x20\x4d\x6f\x6c\x65\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x57\x6f'\ -b'\x75\x6c\x64\x20\x79\x6f\x75\x20\x6c\x69\x6b\x65\x20\x74\x6f\x20'\ -b'\x63\x6f\x6d\x65\x20\x6f\x76\x65\x72\x3f\xe2\x80\x9d\x20\x65\x6e'\ -b'\x71\x75\x69\x72\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x70'\ -b'\x72\x65\x73\x65\x6e\x74\x6c\x79\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x4f\x68\x2c\x20\x69\x74\x73\x20\x61\x6c\x6c\x20\x76\x65\x72\x79'\ -b'\x20\x77\x65\x6c\x6c\x20\x74\x6f\x20\x5f\x74\x61\x6c\x6b\x5f\x2c'\ -b'\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x4d\x6f\x6c'\ -b'\x65\x2c\x20\x72\x61\x74\x68\x65\x72\x20\x70\x65\x74\x74\x69\x73'\ -b'\x68\x6c\x79\x2c\x20\x68\x65\x0d\x0a\x62\x65\x69\x6e\x67\x20\x6e'\ -b'\x65\x77\x20\x74\x6f\x20\x61\x20\x72\x69\x76\x65\x72\x20\x61\x6e'\ -b'\x64\x20\x72\x69\x76\x65\x72\x73\x69\x64\x65\x20\x6c\x69\x66\x65'\ -b'\x20\x61\x6e\x64\x20\x69\x74\x73\x20\x77\x61\x79\x73\x2e\x0d\x0a'\ -b'\x0d\x0a\x54\x68\x65\x20\x52\x61\x74\x20\x73\x61\x69\x64\x20\x6e'\ -b'\x6f\x74\x68\x69\x6e\x67\x2c\x20\x62\x75\x74\x20\x73\x74\x6f\x6f'\ -b'\x70\x65\x64\x20\x61\x6e\x64\x20\x75\x6e\x66\x61\x73\x74\x65\x6e'\ -b'\x65\x64\x20\x61\x20\x72\x6f\x70\x65\x20\x61\x6e\x64\x20\x68\x61'\ -b'\x75\x6c\x65\x64\x20\x6f\x6e\x0d\x0a\x69\x74\x3b\x20\x74\x68\x65'\ -b'\x6e\x20\x6c\x69\x67\x68\x74\x6c\x79\x20\x73\x74\x65\x70\x70\x65'\ -b'\x64\x20\x69\x6e\x74\x6f\x20\x61\x20\x6c\x69\x74\x74\x6c\x65\x20'\ -b'\x62\x6f\x61\x74\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x4d'\ -b'\x6f\x6c\x65\x20\x68\x61\x64\x20\x6e\x6f\x74\x0d\x0a\x6f\x62\x73'\ -b'\x65\x72\x76\x65\x64\x2e\x20\x49\x74\x20\x77\x61\x73\x20\x70\x61'\ -b'\x69\x6e\x74\x65\x64\x20\x62\x6c\x75\x65\x20\x6f\x75\x74\x73\x69'\ -b'\x64\x65\x20\x61\x6e\x64\x20\x77\x68\x69\x74\x65\x20\x77\x69\x74'\ -b'\x68\x69\x6e\x2c\x20\x61\x6e\x64\x20\x77\x61\x73\x20\x6a\x75\x73'\ -b'\x74\x0d\x0a\x74\x68\x65\x20\x73\x69\x7a\x65\x20\x66\x6f\x72\x20'\ -b'\x74\x77\x6f\x20\x61\x6e\x69\x6d\x61\x6c\x73\x3b\x20\x61\x6e\x64'\ -b'\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\xe2\x80\x99\x73\x20\x77\x68'\ -b'\x6f\x6c\x65\x20\x68\x65\x61\x72\x74\x20\x77\x65\x6e\x74\x20\x6f'\ -b'\x75\x74\x20\x74\x6f\x20\x69\x74\x20\x61\x74\x0d\x0a\x6f\x6e\x63'\ -b'\x65\x2c\x20\x65\x76\x65\x6e\x20\x74\x68\x6f\x75\x67\x68\x20\x68'\ -b'\x65\x20\x64\x69\x64\x20\x6e\x6f\x74\x20\x79\x65\x74\x20\x66\x75'\ -b'\x6c\x6c\x79\x20\x75\x6e\x64\x65\x72\x73\x74\x61\x6e\x64\x20\x69'\ -b'\x74\x73\x20\x75\x73\x65\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20'\ -b'\x52\x61\x74\x20\x73\x63\x75\x6c\x6c\x65\x64\x20\x73\x6d\x61\x72'\ -b'\x74\x6c\x79\x20\x61\x63\x72\x6f\x73\x73\x20\x61\x6e\x64\x20\x6d'\ -b'\x61\x64\x65\x20\x66\x61\x73\x74\x2e\x20\x54\x68\x65\x6e\x20\x68'\ -b'\x65\x20\x68\x65\x6c\x64\x20\x75\x70\x20\x68\x69\x73\x0d\x0a\x66'\ -b'\x6f\x72\x65\x70\x61\x77\x20\x61\x73\x20\x74\x68\x65\x20\x4d\x6f'\ -b'\x6c\x65\x20\x73\x74\x65\x70\x70\x65\x64\x20\x67\x69\x6e\x67\x65'\ -b'\x72\x6c\x79\x20\x64\x6f\x77\x6e\x2e\x20\xe2\x80\x9c\x4c\x65\x61'\ -b'\x6e\x20\x6f\x6e\x20\x74\x68\x61\x74\x21\xe2\x80\x9d\x20\x68\x65'\ -b'\x20\x73\x61\x69\x64\x2e\x0d\x0a\xe2\x80\x9c\x4e\x6f\x77\x20\x74'\ -b'\x68\x65\x6e\x2c\x20\x73\x74\x65\x70\x20\x6c\x69\x76\x65\x6c\x79'\ -b'\x21\xe2\x80\x9d\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x4d\x6f\x6c'\ -b'\x65\x20\x74\x6f\x20\x68\x69\x73\x20\x73\x75\x72\x70\x72\x69\x73'\ -b'\x65\x20\x61\x6e\x64\x20\x72\x61\x70\x74\x75\x72\x65\x20\x66\x6f'\ -b'\x75\x6e\x64\x0d\x0a\x68\x69\x6d\x73\x65\x6c\x66\x20\x61\x63\x74'\ -b'\x75\x61\x6c\x6c\x79\x20\x73\x65\x61\x74\x65\x64\x20\x69\x6e\x20'\ -b'\x74\x68\x65\x20\x73\x74\x65\x72\x6e\x20\x6f\x66\x20\x61\x20\x72'\ -b'\x65\x61\x6c\x20\x62\x6f\x61\x74\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x54\x68\x69\x73\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x61\x20'\ -b'\x77\x6f\x6e\x64\x65\x72\x66\x75\x6c\x20\x64\x61\x79\x21\xe2\x80'\ -b'\x9d\x20\x73\x61\x69\x64\x20\x68\x65\x2c\x20\x61\x73\x20\x74\x68'\ -b'\x65\x20\x52\x61\x74\x20\x73\x68\x6f\x76\x65\x64\x20\x6f\x66\x66'\ -b'\x20\x61\x6e\x64\x0d\x0a\x74\x6f\x6f\x6b\x20\x74\x6f\x20\x74\x68'\ -b'\x65\x20\x73\x63\x75\x6c\x6c\x73\x20\x61\x67\x61\x69\x6e\x2e\x20'\ -b'\xe2\x80\x9c\x44\x6f\x20\x79\x6f\x75\x20\x6b\x6e\x6f\x77\x2c\x20'\ -b'\x49\xe2\x80\x99\x76\x65\x20\x6e\x65\x76\x65\x72\x20\x62\x65\x65'\ -b'\x6e\x20\x69\x6e\x20\x61\x20\x62\x6f\x61\x74\x0d\x0a\x62\x65\x66'\ -b'\x6f\x72\x65\x20\x69\x6e\x20\x61\x6c\x6c\x20\x6d\x79\x20\x6c\x69'\ -b'\x66\x65\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x57\x68\x61'\ -b'\x74\x3f\xe2\x80\x9d\x20\x63\x72\x69\x65\x64\x20\x74\x68\x65\x20'\ -b'\x52\x61\x74\x2c\x20\x6f\x70\x65\x6e\x2d\x6d\x6f\x75\x74\x68\x65'\ -b'\x64\x3a\x20\xe2\x80\x9c\x4e\x65\x76\x65\x72\x20\x62\x65\x65\x6e'\ -b'\x20\x69\x6e\x20\x61\xe2\x80\x94\x79\x6f\x75\x20\x6e\x65\x76\x65'\ -b'\x72\xe2\x80\x94\x77\x65\x6c\x6c\x0d\x0a\x49\xe2\x80\x94\x77\x68'\ -b'\x61\x74\x20\x68\x61\x76\x65\x20\x79\x6f\x75\x20\x62\x65\x65\x6e'\ -b'\x20\x64\x6f\x69\x6e\x67\x2c\x20\x74\x68\x65\x6e\x3f\xe2\x80\x9d'\ -b'\x0d\x0a\x0d\x0a\xe2\x80\x9c\x49\x73\x20\x69\x74\x20\x73\x6f\x20'\ -b'\x6e\x69\x63\x65\x20\x61\x73\x20\x61\x6c\x6c\x20\x74\x68\x61\x74'\ -b'\x3f\xe2\x80\x9d\x20\x61\x73\x6b\x65\x64\x20\x74\x68\x65\x20\x4d'\ -b'\x6f\x6c\x65\x20\x73\x68\x79\x6c\x79\x2c\x20\x74\x68\x6f\x75\x67'\ -b'\x68\x20\x68\x65\x20\x77\x61\x73\x20\x71\x75\x69\x74\x65\x0d\x0a'\ -b'\x70\x72\x65\x70\x61\x72\x65\x64\x20\x74\x6f\x20\x62\x65\x6c\x69'\ -b'\x65\x76\x65\x20\x69\x74\x20\x61\x73\x20\x68\x65\x20\x6c\x65\x61'\ -b'\x6e\x74\x20\x62\x61\x63\x6b\x20\x69\x6e\x20\x68\x69\x73\x20\x73'\ -b'\x65\x61\x74\x20\x61\x6e\x64\x20\x73\x75\x72\x76\x65\x79\x65\x64'\ -b'\x20\x74\x68\x65\x0d\x0a\x63\x75\x73\x68\x69\x6f\x6e\x73\x2c\x20'\ -b'\x74\x68\x65\x20\x6f\x61\x72\x73\x2c\x20\x74\x68\x65\x20\x72\x6f'\ -b'\x77\x6c\x6f\x63\x6b\x73\x2c\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20'\ -b'\x74\x68\x65\x20\x66\x61\x73\x63\x69\x6e\x61\x74\x69\x6e\x67\x20'\ -b'\x66\x69\x74\x74\x69\x6e\x67\x73\x2c\x20\x61\x6e\x64\x0d\x0a\x66'\ -b'\x65\x6c\x74\x20\x74\x68\x65\x20\x62\x6f\x61\x74\x20\x73\x77\x61'\ -b'\x79\x20\x6c\x69\x67\x68\x74\x6c\x79\x20\x75\x6e\x64\x65\x72\x20'\ -b'\x68\x69\x6d\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4e\x69\x63\x65\x3f'\ -b'\x20\x49\x74\xe2\x80\x99\x73\x20\x74\x68\x65\x20\x5f\x6f\x6e\x6c'\ -b'\x79\x5f\x20\x74\x68\x69\x6e\x67\x2c\xe2\x80\x9d\x20\x73\x61\x69'\ -b'\x64\x20\x74\x68\x65\x20\x57\x61\x74\x65\x72\x20\x52\x61\x74\x20'\ -b'\x73\x6f\x6c\x65\x6d\x6e\x6c\x79\x2c\x20\x61\x73\x20\x68\x65\x20'\ -b'\x6c\x65\x61\x6e\x74\x0d\x0a\x66\x6f\x72\x77\x61\x72\x64\x20\x66'\ -b'\x6f\x72\x20\x68\x69\x73\x20\x73\x74\x72\x6f\x6b\x65\x2e\x20\xe2'\ -b'\x80\x9c\x42\x65\x6c\x69\x65\x76\x65\x20\x6d\x65\x2c\x20\x6d\x79'\ -b'\x20\x79\x6f\x75\x6e\x67\x20\x66\x72\x69\x65\x6e\x64\x2c\x20\x74'\ -b'\x68\x65\x72\x65\x20\x69\x73\x0d\x0a\x5f\x6e\x6f\x74\x68\x69\x6e'\ -b'\x67\x5f\xe2\x80\x94\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x6e\x6f'\ -b'\x74\x68\x69\x6e\x67\xe2\x80\x94\x68\x61\x6c\x66\x20\x73\x6f\x20'\ -b'\x6d\x75\x63\x68\x20\x77\x6f\x72\x74\x68\x20\x64\x6f\x69\x6e\x67'\ -b'\x20\x61\x73\x20\x73\x69\x6d\x70\x6c\x79\x20\x6d\x65\x73\x73\x69'\ -b'\x6e\x67\x0d\x0a\x61\x62\x6f\x75\x74\x20\x69\x6e\x20\x62\x6f\x61'\ -b'\x74\x73\x2e\x20\x53\x69\x6d\x70\x6c\x79\x20\x6d\x65\x73\x73\x69'\ -b'\x6e\x67\x2c\xe2\x80\x9d\x20\x68\x65\x20\x77\x65\x6e\x74\x20\x6f'\ -b'\x6e\x20\x64\x72\x65\x61\x6d\x69\x6c\x79\x3a\x0d\x0a\xe2\x80\x9c'\ -b'\x6d\x65\x73\x73\x69\x6e\x67\xe2\x80\x94\x61\x62\x6f\x75\x74\xe2'\ -b'\x80\x94\x69\x6e\xe2\x80\x94\x62\x6f\x61\x74\x73\x3b\x20\x6d\x65'\ -b'\x73\x73\x69\x6e\x67\xe2\x80\x94\xe2\x80\x94\xe2\x80\x9d\x0d\x0a'\ -b'\x0d\x0a\xe2\x80\x9c\x4c\x6f\x6f\x6b\x20\x61\x68\x65\x61\x64\x2c'\ -b'\x20\x52\x61\x74\x21\xe2\x80\x9d\x20\x63\x72\x69\x65\x64\x20\x74'\ -b'\x68\x65\x20\x4d\x6f\x6c\x65\x20\x73\x75\x64\x64\x65\x6e\x6c\x79'\ -b'\x2e\x0d\x0a\x0d\x0a\x49\x74\x20\x77\x61\x73\x20\x74\x6f\x6f\x20'\ -b'\x6c\x61\x74\x65\x2e\x20\x54\x68\x65\x20\x62\x6f\x61\x74\x20\x73'\ -b'\x74\x72\x75\x63\x6b\x20\x74\x68\x65\x20\x62\x61\x6e\x6b\x20\x66'\ -b'\x75\x6c\x6c\x20\x74\x69\x6c\x74\x2e\x20\x54\x68\x65\x20\x64\x72'\ -b'\x65\x61\x6d\x65\x72\x2c\x20\x74\x68\x65\x0d\x0a\x6a\x6f\x79\x6f'\ -b'\x75\x73\x20\x6f\x61\x72\x73\x6d\x61\x6e\x2c\x20\x6c\x61\x79\x20'\ -b'\x6f\x6e\x20\x68\x69\x73\x20\x62\x61\x63\x6b\x20\x61\x74\x20\x74'\ -b'\x68\x65\x20\x62\x6f\x74\x74\x6f\x6d\x20\x6f\x66\x20\x74\x68\x65'\ -b'\x20\x62\x6f\x61\x74\x2c\x20\x68\x69\x73\x20\x68\x65\x65\x6c\x73'\ -b'\x20\x69\x6e\x0d\x0a\x74\x68\x65\x20\x61\x69\x72\x2e\x0d\x0a\x0d'\ -b'\x0a\xe2\x80\x9c\xe2\x80\x94\x61\x62\x6f\x75\x74\x20\x69\x6e\x20'\ -b'\x62\x6f\x61\x74\x73\xe2\x80\x94\x6f\x72\x20\x5f\x77\x69\x74\x68'\ -b'\x5f\x20\x62\x6f\x61\x74\x73\x2c\xe2\x80\x9d\x20\x74\x68\x65\x20'\ -b'\x52\x61\x74\x20\x77\x65\x6e\x74\x20\x6f\x6e\x20\x63\x6f\x6d\x70'\ -b'\x6f\x73\x65\x64\x6c\x79\x2c\x20\x70\x69\x63\x6b\x69\x6e\x67\x0d'\ -b'\x0a\x68\x69\x6d\x73\x65\x6c\x66\x20\x75\x70\x20\x77\x69\x74\x68'\ -b'\x20\x61\x20\x70\x6c\x65\x61\x73\x61\x6e\x74\x20\x6c\x61\x75\x67'\ -b'\x68\x2e\x20\xe2\x80\x9c\x49\x6e\x20\x6f\x72\x20\x6f\x75\x74\x20'\ -b'\x6f\x66\x20\xe2\x80\x99\x65\x6d\x2c\x20\x69\x74\x20\x64\x6f\x65'\ -b'\x73\x6e\xe2\x80\x99\x74\x20\x6d\x61\x74\x74\x65\x72\x2e\x0d\x0a'\ -b'\x4e\x6f\x74\x68\x69\x6e\x67\x20\x73\x65\x65\x6d\x73\x20\x72\x65'\ -b'\x61\x6c\x6c\x79\x20\x74\x6f\x20\x6d\x61\x74\x74\x65\x72\x2c\x20'\ -b'\x74\x68\x61\x74\xe2\x80\x99\x73\x20\x74\x68\x65\x20\x63\x68\x61'\ -b'\x72\x6d\x20\x6f\x66\x20\x69\x74\x2e\x20\x57\x68\x65\x74\x68\x65'\ -b'\x72\x20\x79\x6f\x75\x20\x67\x65\x74\x0d\x0a\x61\x77\x61\x79\x2c'\ -b'\x20\x6f\x72\x20\x77\x68\x65\x74\x68\x65\x72\x20\x79\x6f\x75\x20'\ -b'\x64\x6f\x6e\xe2\x80\x99\x74\x3b\x20\x77\x68\x65\x74\x68\x65\x72'\ -b'\x20\x79\x6f\x75\x20\x61\x72\x72\x69\x76\x65\x20\x61\x74\x20\x79'\ -b'\x6f\x75\x72\x20\x64\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x20'\ -b'\x6f\x72\x0d\x0a\x77\x68\x65\x74\x68\x65\x72\x20\x79\x6f\x75\x20'\ -b'\x72\x65\x61\x63\x68\x20\x73\x6f\x6d\x65\x77\x68\x65\x72\x65\x20'\ -b'\x65\x6c\x73\x65\x2c\x20\x6f\x72\x20\x77\x68\x65\x74\x68\x65\x72'\ -b'\x20\x79\x6f\x75\x20\x6e\x65\x76\x65\x72\x20\x67\x65\x74\x20\x61'\ -b'\x6e\x79\x77\x68\x65\x72\x65\x20\x61\x74\x0d\x0a\x61\x6c\x6c\x2c'\ -b'\x20\x79\x6f\x75\xe2\x80\x99\x72\x65\x20\x61\x6c\x77\x61\x79\x73'\ -b'\x20\x62\x75\x73\x79\x2c\x20\x61\x6e\x64\x20\x79\x6f\x75\x20\x6e'\ -b'\x65\x76\x65\x72\x20\x64\x6f\x20\x61\x6e\x79\x74\x68\x69\x6e\x67'\ -b'\x20\x69\x6e\x20\x70\x61\x72\x74\x69\x63\x75\x6c\x61\x72\x3b\x20'\ -b'\x61\x6e\x64\x0d\x0a\x77\x68\x65\x6e\x20\x79\x6f\x75\xe2\x80\x99'\ -b'\x76\x65\x20\x64\x6f\x6e\x65\x20\x69\x74\x20\x74\x68\x65\x72\x65'\ -b'\xe2\x80\x99\x73\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x6f\x6d\x65'\ -b'\x74\x68\x69\x6e\x67\x20\x65\x6c\x73\x65\x20\x74\x6f\x20\x64\x6f'\ -b'\x2c\x20\x61\x6e\x64\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x64\x6f'\ -b'\x0d\x0a\x69\x74\x20\x69\x66\x20\x79\x6f\x75\x20\x6c\x69\x6b\x65'\ -b'\x2c\x20\x62\x75\x74\x20\x79\x6f\x75\xe2\x80\x99\x64\x20\x6d\x75'\ -b'\x63\x68\x20\x62\x65\x74\x74\x65\x72\x20\x6e\x6f\x74\x2e\x20\x4c'\ -b'\x6f\x6f\x6b\x20\x68\x65\x72\x65\x21\x20\x49\x66\x20\x79\x6f\x75'\ -b'\xe2\x80\x99\x76\x65\x20\x72\x65\x61\x6c\x6c\x79\x0d\x0a\x6e\x6f'\ -b'\x74\x68\x69\x6e\x67\x20\x65\x6c\x73\x65\x20\x6f\x6e\x20\x68\x61'\ -b'\x6e\x64\x20\x74\x68\x69\x73\x20\x6d\x6f\x72\x6e\x69\x6e\x67\x2c'\ -b'\x20\x73\x75\x70\x70\x6f\x73\x69\x6e\x67\x20\x77\x65\x20\x64\x72'\ -b'\x6f\x70\x20\x64\x6f\x77\x6e\x20\x74\x68\x65\x20\x72\x69\x76\x65'\ -b'\x72\x0d\x0a\x74\x6f\x67\x65\x74\x68\x65\x72\x2c\x20\x61\x6e\x64'\ -b'\x20\x68\x61\x76\x65\x20\x61\x20\x6c\x6f\x6e\x67\x20\x64\x61\x79'\ -b'\x20\x6f\x66\x20\x69\x74\x3f\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68'\ -b'\x65\x20\x4d\x6f\x6c\x65\x20\x77\x61\x67\x67\x6c\x65\x64\x20\x68'\ -b'\x69\x73\x20\x74\x6f\x65\x73\x20\x66\x72\x6f\x6d\x20\x73\x68\x65'\ -b'\x65\x72\x20\x68\x61\x70\x70\x69\x6e\x65\x73\x73\x2c\x20\x73\x70'\ -b'\x72\x65\x61\x64\x20\x68\x69\x73\x20\x63\x68\x65\x73\x74\x20\x77'\ -b'\x69\x74\x68\x20\x61\x0d\x0a\x73\x69\x67\x68\x20\x6f\x66\x20\x66'\ -b'\x75\x6c\x6c\x20\x63\x6f\x6e\x74\x65\x6e\x74\x6d\x65\x6e\x74\x2c'\ -b'\x20\x61\x6e\x64\x20\x6c\x65\x61\x6e\x65\x64\x20\x62\x61\x63\x6b'\ -b'\x20\x62\x6c\x69\x73\x73\x66\x75\x6c\x6c\x79\x20\x69\x6e\x74\x6f'\ -b'\x20\x74\x68\x65\x20\x73\x6f\x66\x74\x0d\x0a\x63\x75\x73\x68\x69'\ -b'\x6f\x6e\x73\x2e\x20\xe2\x80\x9c\x5f\x57\x68\x61\x74\x5f\x20\x61'\ -b'\x20\x64\x61\x79\x20\x49\xe2\x80\x99\x6d\x20\x68\x61\x76\x69\x6e'\ -b'\x67\x21\xe2\x80\x9d\x20\x68\x65\x20\x73\x61\x69\x64\x2e\x20\xe2'\ -b'\x80\x9c\x4c\x65\x74\x20\x75\x73\x20\x73\x74\x61\x72\x74\x20\x61'\ -b'\x74\x20\x6f\x6e\x63\x65\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80'\ -b'\x9c\x48\x6f\x6c\x64\x20\x68\x61\x72\x64\x20\x61\x20\x6d\x69\x6e'\ -b'\x75\x74\x65\x2c\x20\x74\x68\x65\x6e\x21\xe2\x80\x9d\x20\x73\x61'\ -b'\x69\x64\x20\x74\x68\x65\x20\x52\x61\x74\x2e\x20\x48\x65\x20\x6c'\ -b'\x6f\x6f\x70\x65\x64\x20\x74\x68\x65\x20\x70\x61\x69\x6e\x74\x65'\ -b'\x72\x20\x74\x68\x72\x6f\x75\x67\x68\x0d\x0a\x61\x20\x72\x69\x6e'\ -b'\x67\x20\x69\x6e\x20\x68\x69\x73\x20\x6c\x61\x6e\x64\x69\x6e\x67'\ -b'\x2d\x73\x74\x61\x67\x65\x2c\x20\x63\x6c\x69\x6d\x62\x65\x64\x20'\ -b'\x75\x70\x20\x69\x6e\x74\x6f\x20\x68\x69\x73\x20\x68\x6f\x6c\x65'\ -b'\x20\x61\x62\x6f\x76\x65\x2c\x20\x61\x6e\x64\x20\x61\x66\x74\x65'\ -b'\x72\x0d\x0a\x61\x20\x73\x68\x6f\x72\x74\x20\x69\x6e\x74\x65\x72'\ -b'\x76\x61\x6c\x20\x72\x65\x61\x70\x70\x65\x61\x72\x65\x64\x20\x73'\ -b'\x74\x61\x67\x67\x65\x72\x69\x6e\x67\x20\x75\x6e\x64\x65\x72\x20'\ -b'\x61\x20\x66\x61\x74\x2c\x20\x77\x69\x63\x6b\x65\x72\x0d\x0a\x6c'\ -b'\x75\x6e\x63\x68\x65\x6f\x6e\x2d\x62\x61\x73\x6b\x65\x74\x2e\x0d'\ -b'\x0a\x0d\x0a\xe2\x80\x9c\x53\x68\x6f\x76\x65\x20\x74\x68\x61\x74'\ -b'\x20\x75\x6e\x64\x65\x72\x20\x79\x6f\x75\x72\x20\x66\x65\x65\x74'\ -b'\x2c\xe2\x80\x9d\x20\x68\x65\x20\x6f\x62\x73\x65\x72\x76\x65\x64'\ -b'\x20\x74\x6f\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2c\x20\x61\x73'\ -b'\x20\x68\x65\x20\x70\x61\x73\x73\x65\x64\x20\x69\x74\x0d\x0a\x64'\ -b'\x6f\x77\x6e\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x62\x6f\x61'\ -b'\x74\x2e\x20\x54\x68\x65\x6e\x20\x68\x65\x20\x75\x6e\x74\x69\x65'\ -b'\x64\x20\x74\x68\x65\x20\x70\x61\x69\x6e\x74\x65\x72\x20\x61\x6e'\ -b'\x64\x20\x74\x6f\x6f\x6b\x20\x74\x68\x65\x20\x73\x63\x75\x6c\x6c'\ -b'\x73\x0d\x0a\x61\x67\x61\x69\x6e\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x57\x68\x61\x74\xe2\x80\x99\x73\x20\x69\x6e\x73\x69\x64\x65\x20'\ -b'\x69\x74\x3f\xe2\x80\x9d\x20\x61\x73\x6b\x65\x64\x20\x74\x68\x65'\ -b'\x20\x4d\x6f\x6c\x65\x2c\x20\x77\x72\x69\x67\x67\x6c\x69\x6e\x67'\ -b'\x20\x77\x69\x74\x68\x20\x63\x75\x72\x69\x6f\x73\x69\x74\x79\x2e'\ -b'\x0d\x0a\x0d\x0a\xe2\x80\x9c\x54\x68\x65\x72\x65\xe2\x80\x99\x73'\ -b'\x20\x63\x6f\x6c\x64\x20\x63\x68\x69\x63\x6b\x65\x6e\x20\x69\x6e'\ -b'\x73\x69\x64\x65\x20\x69\x74\x2c\xe2\x80\x9d\x20\x72\x65\x70\x6c'\ -b'\x69\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x62\x72\x69\x65'\ -b'\x66\x6c\x79\x3b\x20\xe2\x80\x9c\x0d\x0a\x63\x6f\x6c\x64\x74\x6f'\ -b'\x6e\x67\x75\x65\x63\x6f\x6c\x64\x68\x61\x6d\x63\x6f\x6c\x64\x62'\ -b'\x65\x65\x66\x70\x69\x63\x6b\x6c\x65\x64\x67\x68\x65\x72\x6b\x69'\ -b'\x6e\x73\x73\x61\x6c\x61\x64\x66\x72\x65\x6e\x63\x68\x72\x6f\x6c'\ -b'\x6c\x73\x63\x72\x65\x73\x73\x73\x61\x6e\x64\x77\x69\x63\x68\x65'\ -b'\x73\x0d\x0a\x70\x6f\x74\x74\x65\x64\x6d\x65\x20\x61\x74\x67\x69'\ -b'\x6e\x67\x65\x72\x62\x65\x65\x72\x6c\x65\x6d\x6f\x6e\x61\x64\x65'\ -b'\x73\x6f\x64\x61\x77\x61\x74\x65\x72\xe2\x80\x94\xe2\x80\x94\xe2'\ -b'\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4f\x20\x73\x74\x6f\x70\x2c'\ -b'\x20\x73\x74\x6f\x70\x2c\xe2\x80\x9d\x20\x63\x72\x69\x65\x64\x20'\ -b'\x74\x68\x65\x20\x4d\x6f\x6c\x65\x20\x69\x6e\x20\x65\x63\x73\x74'\ -b'\x61\x63\x69\x65\x73\x3a\x20\xe2\x80\x9c\x54\x68\x69\x73\x20\x69'\ -b'\x73\x20\x74\x6f\x6f\x20\x6d\x75\x63\x68\x21\xe2\x80\x9d\x0d\x0a'\ -b'\x0d\x0a\xe2\x80\x9c\x44\x6f\x20\x79\x6f\x75\x20\x72\x65\x61\x6c'\ -b'\x6c\x79\x20\x74\x68\x69\x6e\x6b\x20\x73\x6f\x3f\xe2\x80\x9d\x20'\ -b'\x65\x6e\x71\x75\x69\x72\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74'\ -b'\x20\x73\x65\x72\x69\x6f\x75\x73\x6c\x79\x2e\x20\xe2\x80\x9c\x49'\ -b'\x74\xe2\x80\x99\x73\x20\x6f\x6e\x6c\x79\x20\x77\x68\x61\x74\x20'\ -b'\x49\x0d\x0a\x61\x6c\x77\x61\x79\x73\x20\x74\x61\x6b\x65\x20\x6f'\ -b'\x6e\x20\x74\x68\x65\x73\x65\x20\x6c\x69\x74\x74\x6c\x65\x20\x65'\ -b'\x78\x63\x75\x72\x73\x69\x6f\x6e\x73\x3b\x20\x61\x6e\x64\x20\x74'\ -b'\x68\x65\x20\x6f\x74\x68\x65\x72\x20\x61\x6e\x69\x6d\x61\x6c\x73'\ -b'\x20\x61\x72\x65\x0d\x0a\x61\x6c\x77\x61\x79\x73\x20\x74\x65\x6c'\ -b'\x6c\x69\x6e\x67\x20\x6d\x65\x20\x74\x68\x61\x74\x20\x49\xe2\x80'\ -b'\x99\x6d\x20\x61\x20\x6d\x65\x61\x6e\x20\x62\x65\x61\x73\x74\x20'\ -b'\x61\x6e\x64\x20\x63\x75\x74\x20\x69\x74\x20\x5f\x76\x65\x72\x79'\ -b'\x5f\x20\x66\x69\x6e\x65\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68'\ -b'\x65\x20\x4d\x6f\x6c\x65\x20\x6e\x65\x76\x65\x72\x20\x68\x65\x61'\ -b'\x72\x64\x20\x61\x20\x77\x6f\x72\x64\x20\x68\x65\x20\x77\x61\x73'\ -b'\x20\x73\x61\x79\x69\x6e\x67\x2e\x20\x41\x62\x73\x6f\x72\x62\x65'\ -b'\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x6e\x65\x77\x20\x6c\x69\x66'\ -b'\x65\x20\x68\x65\x0d\x0a\x77\x61\x73\x20\x65\x6e\x74\x65\x72\x69'\ -b'\x6e\x67\x20\x75\x70\x6f\x6e\x2c\x20\x69\x6e\x74\x6f\x78\x69\x63'\ -b'\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x70'\ -b'\x61\x72\x6b\x6c\x65\x2c\x20\x74\x68\x65\x20\x72\x69\x70\x70\x6c'\ -b'\x65\x2c\x20\x74\x68\x65\x20\x73\x63\x65\x6e\x74\x73\x0d\x0a\x61'\ -b'\x6e\x64\x20\x74\x68\x65\x20\x73\x6f\x75\x6e\x64\x73\x20\x61\x6e'\ -b'\x64\x20\x74\x68\x65\x20\x73\x75\x6e\x6c\x69\x67\x68\x74\x2c\x20'\ -b'\x68\x65\x20\x74\x72\x61\x69\x6c\x65\x64\x20\x61\x20\x70\x61\x77'\ -b'\x20\x69\x6e\x20\x74\x68\x65\x20\x77\x61\x74\x65\x72\x20\x61\x6e'\ -b'\x64\x0d\x0a\x64\x72\x65\x61\x6d\x65\x64\x20\x6c\x6f\x6e\x67\x20'\ -b'\x77\x61\x6b\x69\x6e\x67\x20\x64\x72\x65\x61\x6d\x73\x2e\x20\x54'\ -b'\x68\x65\x20\x57\x61\x74\x65\x72\x20\x52\x61\x74\x2c\x20\x6c\x69'\ -b'\x6b\x65\x20\x74\x68\x65\x20\x67\x6f\x6f\x64\x20\x6c\x69\x74\x74'\ -b'\x6c\x65\x20\x66\x65\x6c\x6c\x6f\x77\x0d\x0a\x68\x65\x20\x77\x61'\ -b'\x73\x2c\x20\x73\x63\x75\x6c\x6c\x65\x64\x20\x73\x74\x65\x61\x64'\ -b'\x69\x6c\x79\x20\x6f\x6e\x20\x61\x6e\x64\x20\x66\x6f\x72\x65\x62'\ -b'\x6f\x72\x65\x20\x74\x6f\x20\x64\x69\x73\x74\x75\x72\x62\x20\x68'\ -b'\x69\x6d\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x49\x20\x6c\x69\x6b\x65'\ -b'\x20\x79\x6f\x75\x72\x20\x63\x6c\x6f\x74\x68\x65\x73\x20\x61\x77'\ -b'\x66\x75\x6c\x6c\x79\x2c\x20\x6f\x6c\x64\x20\x63\x68\x61\x70\x2c'\ -b'\xe2\x80\x9d\x20\x68\x65\x20\x72\x65\x6d\x61\x72\x6b\x65\x64\x20'\ -b'\x61\x66\x74\x65\x72\x20\x73\x6f\x6d\x65\x20\x68\x61\x6c\x66\x20'\ -b'\x61\x6e\x0d\x0a\x68\x6f\x75\x72\x20\x6f\x72\x20\x73\x6f\x20\x68'\ -b'\x61\x64\x20\x70\x61\x73\x73\x65\x64\x2e\x20\xe2\x80\x9c\x49\xe2'\ -b'\x80\x99\x6d\x20\x67\x6f\x69\x6e\x67\x20\x74\x6f\x20\x67\x65\x74'\ -b'\x20\x61\x20\x62\x6c\x61\x63\x6b\x20\x76\x65\x6c\x76\x65\x74\x20'\ -b'\x73\x6d\x6f\x6b\x69\x6e\x67\x2d\x73\x75\x69\x74\x0d\x0a\x6d\x79'\ -b'\x73\x65\x6c\x66\x20\x73\x6f\x6d\x65\x20\x64\x61\x79\x2c\x20\x61'\ -b'\x73\x20\x73\x6f\x6f\x6e\x20\x61\x73\x20\x49\x20\x63\x61\x6e\x20'\ -b'\x61\x66\x66\x6f\x72\x64\x20\x69\x74\x2e\xe2\x80\x9d\x0d\x0a\x0d'\ -b'\x0a\xe2\x80\x9c\x49\x20\x62\x65\x67\x20\x79\x6f\x75\x72\x20\x70'\ -b'\x61\x72\x64\x6f\x6e\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74'\ -b'\x68\x65\x20\x4d\x6f\x6c\x65\x2c\x20\x70\x75\x6c\x6c\x69\x6e\x67'\ -b'\x20\x68\x69\x6d\x73\x65\x6c\x66\x20\x74\x6f\x67\x65\x74\x68\x65'\ -b'\x72\x20\x77\x69\x74\x68\x20\x61\x6e\x0d\x0a\x65\x66\x66\x6f\x72'\ -b'\x74\x2e\x20\xe2\x80\x9c\x59\x6f\x75\x20\x6d\x75\x73\x74\x20\x74'\ -b'\x68\x69\x6e\x6b\x20\x6d\x65\x20\x76\x65\x72\x79\x20\x72\x75\x64'\ -b'\x65\x3b\x20\x62\x75\x74\x20\x61\x6c\x6c\x20\x74\x68\x69\x73\x20'\ -b'\x69\x73\x20\x73\x6f\x20\x6e\x65\x77\x20\x74\x6f\x20\x6d\x65\x2e'\ -b'\x0d\x0a\x53\x6f\xe2\x80\x94\x74\x68\x69\x73\xe2\x80\x94\x69\x73'\ -b'\xe2\x80\x94\x61\xe2\x80\x94\x52\x69\x76\x65\x72\x21\xe2\x80\x9d'\ -b'\x0d\x0a\x0d\x0a\xe2\x80\x9c\x5f\x54\x68\x65\x5f\x20\x52\x69\x76'\ -b'\x65\x72\x2c\xe2\x80\x9d\x20\x63\x6f\x72\x72\x65\x63\x74\x65\x64'\ -b'\x20\x74\x68\x65\x20\x52\x61\x74\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x41\x6e\x64\x20\x79\x6f\x75\x20\x72\x65\x61\x6c\x6c\x79\x20\x6c'\ -b'\x69\x76\x65\x20\x62\x79\x20\x74\x68\x65\x20\x72\x69\x76\x65\x72'\ -b'\x3f\x20\x57\x68\x61\x74\x20\x61\x20\x6a\x6f\x6c\x6c\x79\x20\x6c'\ -b'\x69\x66\x65\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x42\x79'\ -b'\x20\x69\x74\x20\x61\x6e\x64\x20\x77\x69\x74\x68\x20\x69\x74\x20'\ -b'\x61\x6e\x64\x20\x6f\x6e\x20\x69\x74\x20\x61\x6e\x64\x20\x69\x6e'\ -b'\x20\x69\x74\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68\x65'\ -b'\x20\x52\x61\x74\x2e\x20\xe2\x80\x9c\x49\x74\xe2\x80\x99\x73\x20'\ -b'\x62\x72\x6f\x74\x68\x65\x72\x0d\x0a\x61\x6e\x64\x20\x73\x69\x73'\ -b'\x74\x65\x72\x20\x74\x6f\x20\x6d\x65\x2c\x20\x61\x6e\x64\x20\x61'\ -b'\x75\x6e\x74\x73\x2c\x20\x61\x6e\x64\x20\x63\x6f\x6d\x70\x61\x6e'\ -b'\x79\x2c\x20\x61\x6e\x64\x20\x66\x6f\x6f\x64\x20\x61\x6e\x64\x20'\ -b'\x64\x72\x69\x6e\x6b\x2c\x20\x61\x6e\x64\x0d\x0a\x28\x6e\x61\x74'\ -b'\x75\x72\x61\x6c\x6c\x79\x29\x20\x77\x61\x73\x68\x69\x6e\x67\x2e'\ -b'\x20\x49\x74\xe2\x80\x99\x73\x20\x6d\x79\x20\x77\x6f\x72\x6c\x64'\ -b'\x2c\x20\x61\x6e\x64\x20\x49\x20\x64\x6f\x6e\xe2\x80\x99\x74\x20'\ -b'\x77\x61\x6e\x74\x20\x61\x6e\x79\x20\x6f\x74\x68\x65\x72\x2e\x20'\ -b'\x57\x68\x61\x74\x20\x69\x74\x0d\x0a\x68\x61\x73\x6e\xe2\x80\x99'\ -b'\x74\x20\x67\x6f\x74\x20\x69\x73\x20\x6e\x6f\x74\x20\x77\x6f\x72'\ -b'\x74\x68\x20\x68\x61\x76\x69\x6e\x67\x2c\x20\x61\x6e\x64\x20\x77'\ -b'\x68\x61\x74\x20\x69\x74\x20\x64\x6f\x65\x73\x6e\xe2\x80\x99\x74'\ -b'\x20\x6b\x6e\x6f\x77\x20\x69\x73\x20\x6e\x6f\x74\x20\x77\x6f\x72'\ -b'\x74\x68\x0d\x0a\x6b\x6e\x6f\x77\x69\x6e\x67\x2e\x20\x4c\x6f\x72'\ -b'\x64\x21\x20\x74\x68\x65\x20\x74\x69\x6d\x65\x73\x20\x77\x65\xe2'\ -b'\x80\x99\x76\x65\x20\x68\x61\x64\x20\x74\x6f\x67\x65\x74\x68\x65'\ -b'\x72\x21\x20\x57\x68\x65\x74\x68\x65\x72\x20\x69\x6e\x20\x77\x69'\ -b'\x6e\x74\x65\x72\x20\x6f\x72\x0d\x0a\x73\x75\x6d\x6d\x65\x72\x2c'\ -b'\x20\x73\x70\x72\x69\x6e\x67\x20\x6f\x72\x20\x61\x75\x74\x75\x6d'\ -b'\x6e\x2c\x20\x69\x74\xe2\x80\x99\x73\x20\x61\x6c\x77\x61\x79\x73'\ -b'\x20\x67\x6f\x74\x20\x69\x74\x73\x20\x66\x75\x6e\x20\x61\x6e\x64'\ -b'\x20\x69\x74\x73\x20\x65\x78\x63\x69\x74\x65\x6d\x65\x6e\x74\x73'\ -b'\x2e\x0d\x0a\x57\x68\x65\x6e\x20\x74\x68\x65\x20\x66\x6c\x6f\x6f'\ -b'\x64\x73\x20\x61\x72\x65\x20\x6f\x6e\x20\x69\x6e\x20\x46\x65\x62'\ -b'\x72\x75\x61\x72\x79\x2c\x20\x61\x6e\x64\x20\x6d\x79\x20\x63\x65'\ -b'\x6c\x6c\x61\x72\x73\x20\x61\x6e\x64\x20\x62\x61\x73\x65\x6d\x65'\ -b'\x6e\x74\x20\x61\x72\x65\x0d\x0a\x62\x72\x69\x6d\x6d\x69\x6e\x67'\ -b'\x20\x77\x69\x74\x68\x20\x64\x72\x69\x6e\x6b\x20\x74\x68\x61\x74'\ -b'\xe2\x80\x99\x73\x20\x6e\x6f\x20\x67\x6f\x6f\x64\x20\x74\x6f\x20'\ -b'\x6d\x65\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x62\x72\x6f\x77'\ -b'\x6e\x20\x77\x61\x74\x65\x72\x20\x72\x75\x6e\x73\x20\x62\x79\x0d'\ -b'\x0a\x6d\x79\x20\x62\x65\x73\x74\x20\x62\x65\x64\x72\x6f\x6f\x6d'\ -b'\x20\x77\x69\x6e\x64\x6f\x77\x3b\x20\x6f\x72\x20\x61\x67\x61\x69'\ -b'\x6e\x20\x77\x68\x65\x6e\x20\x69\x74\x20\x61\x6c\x6c\x20\x64\x72'\ -b'\x6f\x70\x73\x20\x61\x77\x61\x79\x20\x61\x6e\x64\x2c\x20\x73\x68'\ -b'\x6f\x77\x73\x0d\x0a\x70\x61\x74\x63\x68\x65\x73\x20\x6f\x66\x20'\ -b'\x6d\x75\x64\x20\x74\x68\x61\x74\x20\x73\x6d\x65\x6c\x6c\x73\x20'\ -b'\x6c\x69\x6b\x65\x20\x70\x6c\x75\x6d\x2d\x63\x61\x6b\x65\x2c\x20'\ -b'\x61\x6e\x64\x20\x74\x68\x65\x20\x72\x75\x73\x68\x65\x73\x20\x61'\ -b'\x6e\x64\x20\x77\x65\x65\x64\x20\x63\x6c\x6f\x67\x0d\x0a\x74\x68'\ -b'\x65\x20\x63\x68\x61\x6e\x6e\x65\x6c\x73\x2c\x20\x61\x6e\x64\x20'\ -b'\x49\x20\x63\x61\x6e\x20\x70\x6f\x74\x74\x65\x72\x20\x61\x62\x6f'\ -b'\x75\x74\x20\x64\x72\x79\x20\x73\x68\x6f\x64\x20\x6f\x76\x65\x72'\ -b'\x20\x6d\x6f\x73\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x65\x64'\ -b'\x20\x6f\x66\x0d\x0a\x69\x74\x20\x61\x6e\x64\x20\x66\x69\x6e\x64'\ -b'\x20\x66\x72\x65\x73\x68\x20\x66\x6f\x6f\x64\x20\x74\x6f\x20\x65'\ -b'\x61\x74\x2c\x20\x61\x6e\x64\x20\x74\x68\x69\x6e\x67\x73\x20\x63'\ -b'\x61\x72\x65\x6c\x65\x73\x73\x20\x70\x65\x6f\x70\x6c\x65\x20\x68'\ -b'\x61\x76\x65\x20\x64\x72\x6f\x70\x70\x65\x64\x0d\x0a\x6f\x75\x74'\ -b'\x20\x6f\x66\x20\x62\x6f\x61\x74\x73\x21\xe2\x80\x9d\x0d\x0a\x0d'\ -b'\x0a\xe2\x80\x9c\x42\x75\x74\x20\x69\x73\x6e\xe2\x80\x99\x74\x20'\ -b'\x69\x74\x20\x61\x20\x62\x69\x74\x20\x64\x75\x6c\x6c\x20\x61\x74'\ -b'\x20\x74\x69\x6d\x65\x73\x3f\xe2\x80\x9d\x20\x74\x68\x65\x20\x4d'\ -b'\x6f\x6c\x65\x20\x76\x65\x6e\x74\x75\x72\x65\x64\x20\x74\x6f\x20'\ -b'\x61\x73\x6b\x2e\x20\xe2\x80\x9c\x4a\x75\x73\x74\x20\x79\x6f\x75'\ -b'\x0d\x0a\x61\x6e\x64\x20\x74\x68\x65\x20\x72\x69\x76\x65\x72\x2c'\ -b'\x20\x61\x6e\x64\x20\x6e\x6f\x20\x6f\x6e\x65\x20\x65\x6c\x73\x65'\ -b'\x20\x74\x6f\x20\x70\x61\x73\x73\x20\x61\x20\x77\x6f\x72\x64\x20'\ -b'\x77\x69\x74\x68\x3f\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4e'\ -b'\x6f\x20\x6f\x6e\x65\x20\x65\x6c\x73\x65\x20\x74\x6f\xe2\x80\x94'\ -b'\x77\x65\x6c\x6c\x2c\x20\x49\x20\x6d\x75\x73\x74\x6e\xe2\x80\x99'\ -b'\x74\x20\x62\x65\x20\x68\x61\x72\x64\x20\x6f\x6e\x20\x79\x6f\x75'\ -b'\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x52\x61'\ -b'\x74\x20\x77\x69\x74\x68\x0d\x0a\x66\x6f\x72\x62\x65\x61\x72\x61'\ -b'\x6e\x63\x65\x2e\x20\xe2\x80\x9c\x59\x6f\x75\xe2\x80\x99\x72\x65'\ -b'\x20\x6e\x65\x77\x20\x74\x6f\x20\x69\x74\x2c\x20\x61\x6e\x64\x20'\ -b'\x6f\x66\x20\x63\x6f\x75\x72\x73\x65\x20\x79\x6f\x75\x20\x64\x6f'\ -b'\x6e\xe2\x80\x99\x74\x20\x6b\x6e\x6f\x77\x2e\x20\x54\x68\x65\x20'\ -b'\x62\x61\x6e\x6b\x0d\x0a\x69\x73\x20\x73\x6f\x20\x63\x72\x6f\x77'\ -b'\x64\x65\x64\x20\x6e\x6f\x77\x61\x64\x61\x79\x73\x20\x74\x68\x61'\ -b'\x74\x20\x6d\x61\x6e\x79\x20\x70\x65\x6f\x70\x6c\x65\x20\x61\x72'\ -b'\x65\x20\x6d\x6f\x76\x69\x6e\x67\x20\x61\x77\x61\x79\x20\x61\x6c'\ -b'\x74\x6f\x67\x65\x74\x68\x65\x72\x3a\x20\x4f\x0d\x0a\x6e\x6f\x2c'\ -b'\x20\x69\x74\x20\x69\x73\x6e\xe2\x80\x99\x74\x20\x77\x68\x61\x74'\ -b'\x20\x69\x74\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x62\x65\x2c\x20'\ -b'\x61\x74\x20\x61\x6c\x6c\x2e\x20\x4f\x74\x74\x65\x72\x73\x2c\x20'\ -b'\x6b\x69\x6e\x67\x66\x69\x73\x68\x65\x72\x73\x2c\x0d\x0a\x64\x61'\ -b'\x62\x63\x68\x69\x63\x6b\x73\x2c\x20\x6d\x6f\x6f\x72\x68\x65\x6e'\ -b'\x73\x2c\x20\x61\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x6d\x20\x61'\ -b'\x62\x6f\x75\x74\x20\x61\x6c\x6c\x20\x64\x61\x79\x20\x6c\x6f\x6e'\ -b'\x67\x20\x61\x6e\x64\x20\x61\x6c\x77\x61\x79\x73\x20\x77\x61\x6e'\ -b'\x74\x69\x6e\x67\x0d\x0a\x79\x6f\x75\x20\x74\x6f\x20\x5f\x64\x6f'\ -b'\x5f\x20\x73\x6f\x6d\x65\x74\x68\x69\x6e\x67\xe2\x80\x94\x61\x73'\ -b'\x20\x69\x66\x20\x61\x20\x66\x65\x6c\x6c\x6f\x77\x20\x68\x61\x64'\ -b'\x20\x6e\x6f\x20\x62\x75\x73\x69\x6e\x65\x73\x73\x20\x6f\x66\x20'\ -b'\x68\x69\x73\x20\x6f\x77\x6e\x20\x74\x6f\x0d\x0a\x61\x74\x74\x65'\ -b'\x6e\x64\x20\x74\x6f\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x57\x68\x61\x74\x20\x6c\x69\x65\x73\x20\x6f\x76\x65\x72\x20\x5f'\ -b'\x74\x68\x65\x72\x65\x3f\x5f\xe2\x80\x9d\x20\x61\x73\x6b\x65\x64'\ -b'\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2c\x20\x77\x61\x76\x69\x6e'\ -b'\x67\x20\x61\x20\x70\x61\x77\x20\x74\x6f\x77\x61\x72\x64\x73\x20'\ -b'\x61\x0d\x0a\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x20\x6f\x66'\ -b'\x20\x77\x6f\x6f\x64\x6c\x61\x6e\x64\x20\x74\x68\x61\x74\x20\x64'\ -b'\x61\x72\x6b\x6c\x79\x20\x66\x72\x61\x6d\x65\x64\x20\x74\x68\x65'\ -b'\x20\x77\x61\x74\x65\x72\x2d\x6d\x65\x61\x64\x6f\x77\x73\x20\x6f'\ -b'\x6e\x20\x6f\x6e\x65\x20\x73\x69\x64\x65\x0d\x0a\x6f\x66\x20\x74'\ -b'\x68\x65\x20\x72\x69\x76\x65\x72\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x54\x68\x61\x74\x3f\x20\x4f\x2c\x20\x74\x68\x61\x74\xe2\x80\x99'\ -b'\x73\x20\x6a\x75\x73\x74\x20\x74\x68\x65\x20\x57\x69\x6c\x64\x20'\ -b'\x57\x6f\x6f\x64\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68'\ -b'\x65\x20\x52\x61\x74\x20\x73\x68\x6f\x72\x74\x6c\x79\x2e\x20\xe2'\ -b'\x80\x9c\x57\x65\x20\x64\x6f\x6e\xe2\x80\x99\x74\x0d\x0a\x67\x6f'\ -b'\x20\x74\x68\x65\x72\x65\x20\x76\x65\x72\x79\x20\x6d\x75\x63\x68'\ -b'\x2c\x20\x77\x65\x20\x72\x69\x76\x65\x72\x2d\x62\x61\x6e\x6b\x65'\ -b'\x72\x73\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x41\x72\x65'\ -b'\x6e\xe2\x80\x99\x74\x20\x74\x68\x65\x79\xe2\x80\x94\x61\x72\x65'\ -b'\x6e\xe2\x80\x99\x74\x20\x74\x68\x65\x79\x20\x76\x65\x72\x79\x20'\ -b'\x5f\x6e\x69\x63\x65\x5f\x20\x70\x65\x6f\x70\x6c\x65\x20\x69\x6e'\ -b'\x20\x74\x68\x65\x72\x65\x3f\xe2\x80\x9d\x20\x73\x61\x69\x64\x20'\ -b'\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2c\x20\x61\x0d\x0a\x74\x72\x69'\ -b'\x66\x6c\x65\x20\x6e\x65\x72\x76\x6f\x75\x73\x6c\x79\x2e\x0d\x0a'\ -b'\x0d\x0a\xe2\x80\x9c\x57\x2d\x65\x2d\x6c\x6c\x2c\xe2\x80\x9d\x20'\ -b'\x72\x65\x70\x6c\x69\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x2c'\ -b'\x20\xe2\x80\x9c\x6c\x65\x74\x20\x6d\x65\x20\x73\x65\x65\x2e\x20'\ -b'\x54\x68\x65\x20\x73\x71\x75\x69\x72\x72\x65\x6c\x73\x20\x61\x72'\ -b'\x65\x20\x61\x6c\x6c\x20\x72\x69\x67\x68\x74\x2e\x0d\x0a\x5f\x41'\ -b'\x6e\x64\x5f\x20\x74\x68\x65\x20\x72\x61\x62\x62\x69\x74\x73\xe2'\ -b'\x80\x94\x73\x6f\x6d\x65\x20\x6f\x66\x20\xe2\x80\x99\x65\x6d\x2c'\ -b'\x20\x62\x75\x74\x20\x72\x61\x62\x62\x69\x74\x73\x20\x61\x72\x65'\ -b'\x20\x61\x20\x6d\x69\x78\x65\x64\x20\x6c\x6f\x74\x2e\x20\x41\x6e'\ -b'\x64\x20\x74\x68\x65\x6e\x0d\x0a\x74\x68\x65\x72\x65\xe2\x80\x99'\ -b'\x73\x20\x42\x61\x64\x67\x65\x72\x2c\x20\x6f\x66\x20\x63\x6f\x75'\ -b'\x72\x73\x65\x2e\x20\x48\x65\x20\x6c\x69\x76\x65\x73\x20\x72\x69'\ -b'\x67\x68\x74\x20\x69\x6e\x20\x74\x68\x65\x20\x68\x65\x61\x72\x74'\ -b'\x20\x6f\x66\x20\x69\x74\x3b\x20\x77\x6f\x75\x6c\x64\x6e\xe2\x80'\ -b'\x99\x74\x0d\x0a\x6c\x69\x76\x65\x20\x61\x6e\x79\x77\x68\x65\x72'\ -b'\x65\x20\x65\x6c\x73\x65\x2c\x20\x65\x69\x74\x68\x65\x72\x2c\x20'\ -b'\x69\x66\x20\x79\x6f\x75\x20\x70\x61\x69\x64\x20\x68\x69\x6d\x20'\ -b'\x74\x6f\x20\x64\x6f\x20\x69\x74\x2e\x20\x44\x65\x61\x72\x20\x6f'\ -b'\x6c\x64\x20\x42\x61\x64\x67\x65\x72\x21\x0d\x0a\x4e\x6f\x62\x6f'\ -b'\x64\x79\x20\x69\x6e\x74\x65\x72\x66\x65\x72\x65\x73\x20\x77\x69'\ -b'\x74\x68\x20\x5f\x68\x69\x6d\x5f\x2e\x20\x54\x68\x65\x79\xe2\x80'\ -b'\x99\x64\x20\x62\x65\x74\x74\x65\x72\x20\x6e\x6f\x74\x2c\xe2\x80'\ -b'\x9d\x20\x68\x65\x20\x61\x64\x64\x65\x64\x0d\x0a\x73\x69\x67\x6e'\ -b'\x69\x66\x69\x63\x61\x6e\x74\x6c\x79\x2e\x0d\x0a\x0d\x0a\xe2\x80'\ -b'\x9c\x57\x68\x79\x2c\x20\x77\x68\x6f\x20\x5f\x73\x68\x6f\x75\x6c'\ -b'\x64\x5f\x20\x69\x6e\x74\x65\x72\x66\x65\x72\x65\x20\x77\x69\x74'\ -b'\x68\x20\x68\x69\x6d\x3f\xe2\x80\x9d\x20\x61\x73\x6b\x65\x64\x20'\ -b'\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x57\x65\x6c\x6c\x2c\x20\x6f\x66\x20\x63\x6f\x75\x72\x73\x65\xe2'\ -b'\x80\x94\x74\x68\x65\x72\x65\xe2\x80\x94\x61\x72\x65\x20\x6f\x74'\ -b'\x68\x65\x72\x73\x2c\xe2\x80\x9d\x20\x65\x78\x70\x6c\x61\x69\x6e'\ -b'\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x69\x6e\x20\x61\x20'\ -b'\x68\x65\x73\x69\x74\x61\x74\x69\x6e\x67\x0d\x0a\x73\x6f\x72\x74'\ -b'\x20\x6f\x66\x20\x77\x61\x79\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x57'\ -b'\x65\x61\x73\x65\x6c\x73\xe2\x80\x94\x61\x6e\x64\x20\x73\x74\x6f'\ -b'\x61\x74\x73\xe2\x80\x94\x61\x6e\x64\x20\x66\x6f\x78\x65\x73\xe2'\ -b'\x80\x94\x61\x6e\x64\x20\x73\x6f\x20\x6f\x6e\x2e\x20\x54\x68\x65'\ -b'\x79\xe2\x80\x99\x72\x65\x20\x61\x6c\x6c\x20\x72\x69\x67\x68\x74'\ -b'\x20\x69\x6e\x20\x61\x20\x77\x61\x79\xe2\x80\x94\x49\xe2\x80\x99'\ -b'\x6d\x0d\x0a\x76\x65\x72\x79\x20\x67\x6f\x6f\x64\x20\x66\x72\x69'\ -b'\x65\x6e\x64\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x6d\xe2\x80'\ -b'\x94\x70\x61\x73\x73\x20\x74\x68\x65\x20\x74\x69\x6d\x65\x20\x6f'\ -b'\x66\x20\x64\x61\x79\x20\x77\x68\x65\x6e\x20\x77\x65\x20\x6d\x65'\ -b'\x65\x74\x2c\x20\x61\x6e\x64\x20\x61\x6c\x6c\x0d\x0a\x74\x68\x61'\ -b'\x74\xe2\x80\x94\x62\x75\x74\x20\x74\x68\x65\x79\x20\x62\x72\x65'\ -b'\x61\x6b\x20\x6f\x75\x74\x20\x73\x6f\x6d\x65\x74\x69\x6d\x65\x73'\ -b'\x2c\x20\x74\x68\x65\x72\x65\xe2\x80\x99\x73\x20\x6e\x6f\x20\x64'\ -b'\x65\x6e\x79\x69\x6e\x67\x20\x69\x74\x2c\x20\x61\x6e\x64\x0d\x0a'\ -b'\x74\x68\x65\x6e\xe2\x80\x94\x77\x65\x6c\x6c\x2c\x20\x79\x6f\x75'\ -b'\x20\x63\x61\x6e\xe2\x80\x99\x74\x20\x72\x65\x61\x6c\x6c\x79\x20'\ -b'\x74\x72\x75\x73\x74\x20\x74\x68\x65\x6d\x2c\x20\x61\x6e\x64\x20'\ -b'\x74\x68\x61\x74\xe2\x80\x99\x73\x20\x74\x68\x65\x20\x66\x61\x63'\ -b'\x74\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x4d\x6f\x6c'\ -b'\x65\x20\x6b\x6e\x65\x77\x20\x77\x65\x6c\x6c\x20\x74\x68\x61\x74'\ -b'\x20\x69\x74\x20\x69\x73\x20\x71\x75\x69\x74\x65\x20\x61\x67\x61'\ -b'\x69\x6e\x73\x74\x20\x61\x6e\x69\x6d\x61\x6c\x2d\x65\x74\x69\x71'\ -b'\x75\x65\x74\x74\x65\x20\x74\x6f\x20\x64\x77\x65\x6c\x6c\x0d\x0a'\ -b'\x6f\x6e\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x20\x74\x72\x6f\x75'\ -b'\x62\x6c\x65\x20\x61\x68\x65\x61\x64\x2c\x20\x6f\x72\x20\x65\x76'\ -b'\x65\x6e\x20\x74\x6f\x20\x61\x6c\x6c\x75\x64\x65\x20\x74\x6f\x20'\ -b'\x69\x74\x3b\x20\x73\x6f\x20\x68\x65\x20\x64\x72\x6f\x70\x70\x65'\ -b'\x64\x20\x74\x68\x65\x0d\x0a\x73\x75\x62\x6a\x65\x63\x74\x2e\x0d'\ -b'\x0a\x0d\x0a\xe2\x80\x9c\x41\x6e\x64\x20\x62\x65\x79\x6f\x6e\x64'\ -b'\x20\x74\x68\x65\x20\x57\x69\x6c\x64\x20\x57\x6f\x6f\x64\x20\x61'\ -b'\x67\x61\x69\x6e\x3f\xe2\x80\x9d\x20\x68\x65\x20\x61\x73\x6b\x65'\ -b'\x64\x3a\x20\xe2\x80\x9c\x57\x68\x65\x72\x65\x20\x69\x74\xe2\x80'\ -b'\x99\x73\x20\x61\x6c\x6c\x20\x62\x6c\x75\x65\x20\x61\x6e\x64\x0d'\ -b'\x0a\x64\x69\x6d\x2c\x20\x61\x6e\x64\x20\x6f\x6e\x65\x20\x73\x65'\ -b'\x65\x73\x20\x77\x68\x61\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x68'\ -b'\x69\x6c\x6c\x73\x20\x6f\x72\x20\x70\x65\x72\x68\x61\x70\x73\x20'\ -b'\x74\x68\x65\x79\x20\x6d\x61\x79\x6e\xe2\x80\x99\x74\x2c\x20\x61'\ -b'\x6e\x64\x0d\x0a\x73\x6f\x6d\x65\x74\x68\x69\x6e\x67\x20\x6c\x69'\ -b'\x6b\x65\x20\x74\x68\x65\x20\x73\x6d\x6f\x6b\x65\x20\x6f\x66\x20'\ -b'\x74\x6f\x77\x6e\x73\x2c\x20\x6f\x72\x20\x69\x73\x20\x69\x74\x20'\ -b'\x6f\x6e\x6c\x79\x20\x63\x6c\x6f\x75\x64\x2d\x64\x72\x69\x66\x74'\ -b'\x3f\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x42\x65\x79\x6f\x6e'\ -b'\x64\x20\x74\x68\x65\x20\x57\x69\x6c\x64\x20\x57\x6f\x6f\x64\x20'\ -b'\x63\x6f\x6d\x65\x73\x20\x74\x68\x65\x20\x57\x69\x64\x65\x20\x57'\ -b'\x6f\x72\x6c\x64\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68'\ -b'\x65\x20\x52\x61\x74\x2e\x20\xe2\x80\x9c\x41\x6e\x64\x20\x74\x68'\ -b'\x61\x74\xe2\x80\x99\x73\x0d\x0a\x73\x6f\x6d\x65\x74\x68\x69\x6e'\ -b'\x67\x20\x74\x68\x61\x74\x20\x64\x6f\x65\x73\x6e\xe2\x80\x99\x74'\ -b'\x20\x6d\x61\x74\x74\x65\x72\x2c\x20\x65\x69\x74\x68\x65\x72\x20'\ -b'\x74\x6f\x20\x79\x6f\x75\x20\x6f\x72\x20\x6d\x65\x2e\x20\x49\xe2'\ -b'\x80\x99\x76\x65\x20\x6e\x65\x76\x65\x72\x20\x62\x65\x65\x6e\x0d'\ -b'\x0a\x74\x68\x65\x72\x65\x2c\x20\x61\x6e\x64\x20\x49\xe2\x80\x99'\ -b'\x6d\x20\x6e\x65\x76\x65\x72\x20\x67\x6f\x69\x6e\x67\x2c\x20\x6e'\ -b'\x6f\x72\x20\x79\x6f\x75\x20\x65\x69\x74\x68\x65\x72\x2c\x20\x69'\ -b'\x66\x20\x79\x6f\x75\xe2\x80\x99\x76\x65\x20\x67\x6f\x74\x20\x61'\ -b'\x6e\x79\x20\x73\x65\x6e\x73\x65\x20\x61\x74\x0d\x0a\x61\x6c\x6c'\ -b'\x2e\x20\x44\x6f\x6e\xe2\x80\x99\x74\x20\x65\x76\x65\x72\x20\x72'\ -b'\x65\x66\x65\x72\x20\x74\x6f\x20\x69\x74\x20\x61\x67\x61\x69\x6e'\ -b'\x2c\x20\x70\x6c\x65\x61\x73\x65\x2e\x20\x4e\x6f\x77\x20\x74\x68'\ -b'\x65\x6e\x21\x20\x48\x65\x72\x65\xe2\x80\x99\x73\x20\x6f\x75\x72'\ -b'\x0d\x0a\x62\x61\x63\x6b\x77\x61\x74\x65\x72\x20\x61\x74\x20\x6c'\ -b'\x61\x73\x74\x2c\x20\x77\x68\x65\x72\x65\x20\x77\x65\xe2\x80\x99'\ -b'\x72\x65\x20\x67\x6f\x69\x6e\x67\x20\x74\x6f\x20\x6c\x75\x6e\x63'\ -b'\x68\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\x4c\x65\x61\x76\x69\x6e\x67'\ -b'\x20\x74\x68\x65\x20\x6d\x61\x69\x6e\x20\x73\x74\x72\x65\x61\x6d'\ -b'\x2c\x20\x74\x68\x65\x79\x20\x6e\x6f\x77\x20\x70\x61\x73\x73\x65'\ -b'\x64\x20\x69\x6e\x74\x6f\x20\x77\x68\x61\x74\x20\x73\x65\x65\x6d'\ -b'\x65\x64\x20\x61\x74\x20\x66\x69\x72\x73\x74\x0d\x0a\x73\x69\x67'\ -b'\x68\x74\x20\x6c\x69\x6b\x65\x20\x61\x20\x6c\x69\x74\x74\x6c\x65'\ -b'\x20\x6c\x61\x6e\x64\x2d\x6c\x6f\x63\x6b\x65\x64\x20\x6c\x61\x6b'\ -b'\x65\x2e\x20\x47\x72\x65\x65\x6e\x20\x74\x75\x72\x66\x20\x73\x6c'\ -b'\x6f\x70\x65\x64\x20\x64\x6f\x77\x6e\x20\x74\x6f\x20\x65\x69\x74'\ -b'\x68\x65\x72\x0d\x0a\x65\x64\x67\x65\x2c\x20\x62\x72\x6f\x77\x6e'\ -b'\x20\x73\x6e\x61\x6b\x79\x20\x74\x72\x65\x65\x2d\x72\x6f\x6f\x74'\ -b'\x73\x20\x67\x6c\x65\x61\x6d\x65\x64\x20\x62\x65\x6c\x6f\x77\x20'\ -b'\x74\x68\x65\x20\x73\x75\x72\x66\x61\x63\x65\x20\x6f\x66\x20\x74'\ -b'\x68\x65\x20\x71\x75\x69\x65\x74\x0d\x0a\x77\x61\x74\x65\x72\x2c'\ -b'\x20\x77\x68\x69\x6c\x65\x20\x61\x68\x65\x61\x64\x20\x6f\x66\x20'\ -b'\x74\x68\x65\x6d\x20\x74\x68\x65\x20\x73\x69\x6c\x76\x65\x72\x79'\ -b'\x20\x73\x68\x6f\x75\x6c\x64\x65\x72\x20\x61\x6e\x64\x20\x66\x6f'\ -b'\x61\x6d\x79\x20\x74\x75\x6d\x62\x6c\x65\x20\x6f\x66\x20\x61\x0d'\ -b'\x0a\x77\x65\x69\x72\x2c\x20\x61\x72\x6d\x2d\x69\x6e\x2d\x61\x72'\ -b'\x6d\x20\x77\x69\x74\x68\x20\x61\x20\x72\x65\x73\x74\x6c\x65\x73'\ -b'\x73\x20\x64\x72\x69\x70\x70\x69\x6e\x67\x20\x6d\x69\x6c\x6c\x2d'\ -b'\x77\x68\x65\x65\x6c\x2c\x20\x74\x68\x61\x74\x20\x68\x65\x6c\x64'\ -b'\x20\x75\x70\x20\x69\x6e\x0d\x0a\x69\x74\x73\x20\x74\x75\x72\x6e'\ -b'\x20\x61\x20\x67\x72\x65\x79\x2d\x67\x61\x62\x6c\x65\x64\x20\x6d'\ -b'\x69\x6c\x6c\x2d\x68\x6f\x75\x73\x65\x2c\x20\x66\x69\x6c\x6c\x65'\ -b'\x64\x20\x74\x68\x65\x20\x61\x69\x72\x20\x77\x69\x74\x68\x20\x61'\ -b'\x20\x73\x6f\x6f\x74\x68\x69\x6e\x67\x0d\x0a\x6d\x75\x72\x6d\x75'\ -b'\x72\x20\x6f\x66\x20\x73\x6f\x75\x6e\x64\x2c\x20\x64\x75\x6c\x6c'\ -b'\x20\x61\x6e\x64\x20\x73\x6d\x6f\x74\x68\x65\x72\x79\x2c\x20\x79'\ -b'\x65\x74\x20\x77\x69\x74\x68\x20\x6c\x69\x74\x74\x6c\x65\x20\x63'\ -b'\x6c\x65\x61\x72\x20\x76\x6f\x69\x63\x65\x73\x0d\x0a\x73\x70\x65'\ -b'\x61\x6b\x69\x6e\x67\x20\x75\x70\x20\x63\x68\x65\x65\x72\x66\x75'\ -b'\x6c\x6c\x79\x20\x6f\x75\x74\x20\x6f\x66\x20\x69\x74\x20\x61\x74'\ -b'\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x2e\x20\x49\x74\x20\x77'\ -b'\x61\x73\x20\x73\x6f\x20\x76\x65\x72\x79\x20\x62\x65\x61\x75\x74'\ -b'\x69\x66\x75\x6c\x0d\x0a\x74\x68\x61\x74\x20\x74\x68\x65\x20\x4d'\ -b'\x6f\x6c\x65\x20\x63\x6f\x75\x6c\x64\x20\x6f\x6e\x6c\x79\x20\x68'\ -b'\x6f\x6c\x64\x20\x75\x70\x20\x62\x6f\x74\x68\x20\x66\x6f\x72\x65'\ -b'\x70\x61\x77\x73\x20\x61\x6e\x64\x20\x67\x61\x73\x70\x2c\x20\xe2'\ -b'\x80\x9c\x4f\x20\x6d\x79\x21\x20\x4f\x20\x6d\x79\x21\x20\x4f\x0d'\ -b'\x0a\x6d\x79\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x52'\ -b'\x61\x74\x20\x62\x72\x6f\x75\x67\x68\x74\x20\x74\x68\x65\x20\x62'\ -b'\x6f\x61\x74\x20\x61\x6c\x6f\x6e\x67\x73\x69\x64\x65\x20\x74\x68'\ -b'\x65\x20\x62\x61\x6e\x6b\x2c\x20\x6d\x61\x64\x65\x20\x68\x65\x72'\ -b'\x20\x66\x61\x73\x74\x2c\x20\x68\x65\x6c\x70\x65\x64\x20\x74\x68'\ -b'\x65\x0d\x0a\x73\x74\x69\x6c\x6c\x20\x61\x77\x6b\x77\x61\x72\x64'\ -b'\x20\x4d\x6f\x6c\x65\x20\x73\x61\x66\x65\x6c\x79\x20\x61\x73\x68'\ -b'\x6f\x72\x65\x2c\x20\x61\x6e\x64\x20\x73\x77\x75\x6e\x67\x20\x6f'\ -b'\x75\x74\x20\x74\x68\x65\x20\x6c\x75\x6e\x63\x68\x65\x6f\x6e\x2d'\ -b'\x62\x61\x73\x6b\x65\x74\x2e\x0d\x0a\x54\x68\x65\x20\x4d\x6f\x6c'\ -b'\x65\x20\x62\x65\x67\x67\x65\x64\x20\x61\x73\x20\x61\x20\x66\x61'\ -b'\x76\x6f\x75\x72\x20\x74\x6f\x20\x62\x65\x20\x61\x6c\x6c\x6f\x77'\ -b'\x65\x64\x20\x74\x6f\x20\x75\x6e\x70\x61\x63\x6b\x20\x69\x74\x20'\ -b'\x61\x6c\x6c\x20\x62\x79\x20\x68\x69\x6d\x73\x65\x6c\x66\x3b\x0d'\ -b'\x0a\x61\x6e\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x77\x61\x73'\ -b'\x20\x76\x65\x72\x79\x20\x70\x6c\x65\x61\x73\x65\x64\x20\x74\x6f'\ -b'\x20\x69\x6e\x64\x75\x6c\x67\x65\x20\x68\x69\x6d\x2c\x20\x61\x6e'\ -b'\x64\x20\x74\x6f\x20\x73\x70\x72\x61\x77\x6c\x20\x61\x74\x20\x66'\ -b'\x75\x6c\x6c\x0d\x0a\x6c\x65\x6e\x67\x74\x68\x20\x6f\x6e\x20\x74'\ -b'\x68\x65\x20\x67\x72\x61\x73\x73\x20\x61\x6e\x64\x20\x72\x65\x73'\ -b'\x74\x2c\x20\x77\x68\x69\x6c\x65\x20\x68\x69\x73\x20\x65\x78\x63'\ -b'\x69\x74\x65\x64\x20\x66\x72\x69\x65\x6e\x64\x20\x73\x68\x6f\x6f'\ -b'\x6b\x20\x6f\x75\x74\x20\x74\x68\x65\x0d\x0a\x74\x61\x62\x6c\x65'\ -b'\x2d\x63\x6c\x6f\x74\x68\x20\x61\x6e\x64\x20\x73\x70\x72\x65\x61'\ -b'\x64\x20\x69\x74\x2c\x20\x74\x6f\x6f\x6b\x20\x6f\x75\x74\x20\x61'\ -b'\x6c\x6c\x20\x74\x68\x65\x20\x6d\x79\x73\x74\x65\x72\x69\x6f\x75'\ -b'\x73\x20\x70\x61\x63\x6b\x65\x74\x73\x20\x6f\x6e\x65\x20\x62\x79'\ -b'\x0d\x0a\x6f\x6e\x65\x20\x61\x6e\x64\x20\x61\x72\x72\x61\x6e\x67'\ -b'\x65\x64\x20\x74\x68\x65\x69\x72\x20\x63\x6f\x6e\x74\x65\x6e\x74'\ -b'\x73\x20\x69\x6e\x20\x64\x75\x65\x20\x6f\x72\x64\x65\x72\x2c\x20'\ -b'\x73\x74\x69\x6c\x6c\x20\x67\x61\x73\x70\x69\x6e\x67\x2c\x20\xe2'\ -b'\x80\x9c\x4f\x20\x6d\x79\x21\x20\x4f\x0d\x0a\x6d\x79\x21\xe2\x80'\ -b'\x9d\x20\x61\x74\x20\x65\x61\x63\x68\x20\x66\x72\x65\x73\x68\x20'\ -b'\x72\x65\x76\x65\x6c\x61\x74\x69\x6f\x6e\x2e\x20\x57\x68\x65\x6e'\ -b'\x20\x61\x6c\x6c\x20\x77\x61\x73\x20\x72\x65\x61\x64\x79\x2c\x20'\ -b'\x74\x68\x65\x20\x52\x61\x74\x20\x73\x61\x69\x64\x2c\x20\xe2\x80'\ -b'\x9c\x4e\x6f\x77\x2c\x0d\x0a\x70\x69\x74\x63\x68\x20\x69\x6e\x2c'\ -b'\x20\x6f\x6c\x64\x20\x66\x65\x6c\x6c\x6f\x77\x21\xe2\x80\x9d\x20'\ -b'\x61\x6e\x64\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x20\x77\x61\x73'\ -b'\x20\x69\x6e\x64\x65\x65\x64\x20\x76\x65\x72\x79\x20\x67\x6c\x61'\ -b'\x64\x20\x74\x6f\x20\x6f\x62\x65\x79\x2c\x20\x66\x6f\x72\x0d\x0a'\ -b'\x68\x65\x20\x68\x61\x64\x20\x73\x74\x61\x72\x74\x65\x64\x20\x68'\ -b'\x69\x73\x20\x73\x70\x72\x69\x6e\x67\x2d\x63\x6c\x65\x61\x6e\x69'\ -b'\x6e\x67\x20\x61\x74\x20\x61\x20\x76\x65\x72\x79\x20\x65\x61\x72'\ -b'\x6c\x79\x20\x68\x6f\x75\x72\x20\x74\x68\x61\x74\x20\x6d\x6f\x72'\ -b'\x6e\x69\x6e\x67\x2c\x0d\x0a\x61\x73\x20\x70\x65\x6f\x70\x6c\x65'\ -b'\x20\x5f\x77\x69\x6c\x6c\x5f\x20\x64\x6f\x2c\x20\x61\x6e\x64\x20'\ -b'\x68\x61\x64\x20\x6e\x6f\x74\x20\x70\x61\x75\x73\x65\x64\x20\x66'\ -b'\x6f\x72\x20\x62\x69\x74\x65\x20\x6f\x72\x20\x73\x75\x70\x3b\x20'\ -b'\x61\x6e\x64\x20\x68\x65\x20\x68\x61\x64\x0d\x0a\x62\x65\x65\x6e'\ -b'\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x61\x20\x76\x65\x72\x79\x20'\ -b'\x67\x72\x65\x61\x74\x20\x64\x65\x61\x6c\x20\x73\x69\x6e\x63\x65'\ -b'\x20\x74\x68\x61\x74\x20\x64\x69\x73\x74\x61\x6e\x74\x20\x74\x69'\ -b'\x6d\x65\x20\x77\x68\x69\x63\x68\x20\x6e\x6f\x77\x20\x73\x65\x65'\ -b'\x6d\x65\x64\x0d\x0a\x73\x6f\x20\x6d\x61\x6e\x79\x20\x64\x61\x79'\ -b'\x73\x20\x61\x67\x6f\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x57\x68\x61'\ -b'\x74\x20\x61\x72\x65\x20\x79\x6f\x75\x20\x6c\x6f\x6f\x6b\x69\x6e'\ -b'\x67\x20\x61\x74\x3f\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68'\ -b'\x65\x20\x52\x61\x74\x20\x70\x72\x65\x73\x65\x6e\x74\x6c\x79\x2c'\ -b'\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x65\x64\x67\x65\x20\x6f'\ -b'\x66\x0d\x0a\x74\x68\x65\x69\x72\x20\x68\x75\x6e\x67\x65\x72\x20'\ -b'\x77\x61\x73\x20\x73\x6f\x6d\x65\x77\x68\x61\x74\x20\x64\x75\x6c'\ -b'\x6c\x65\x64\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x4d\x6f\x6c'\ -b'\x65\xe2\x80\x99\x73\x20\x65\x79\x65\x73\x20\x77\x65\x72\x65\x20'\ -b'\x61\x62\x6c\x65\x20\x74\x6f\x0d\x0a\x77\x61\x6e\x64\x65\x72\x20'\ -b'\x6f\x66\x66\x20\x74\x68\x65\x20\x74\x61\x62\x6c\x65\x2d\x63\x6c'\ -b'\x6f\x74\x68\x20\x61\x20\x6c\x69\x74\x74\x6c\x65\x2e\x0d\x0a\x0d'\ -b'\x0a\xe2\x80\x9c\x49\x20\x61\x6d\x20\x6c\x6f\x6f\x6b\x69\x6e\x67'\ -b'\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x4d\x6f'\ -b'\x6c\x65\x2c\x20\xe2\x80\x9c\x61\x74\x20\x61\x20\x73\x74\x72\x65'\ -b'\x61\x6b\x20\x6f\x66\x20\x62\x75\x62\x62\x6c\x65\x73\x20\x74\x68'\ -b'\x61\x74\x20\x49\x20\x73\x65\x65\x0d\x0a\x74\x72\x61\x76\x65\x6c'\ -b'\x6c\x69\x6e\x67\x20\x61\x6c\x6f\x6e\x67\x20\x74\x68\x65\x20\x73'\ -b'\x75\x72\x66\x61\x63\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x77\x61'\ -b'\x74\x65\x72\x2e\x20\x54\x68\x61\x74\x20\x69\x73\x20\x61\x20\x74'\ -b'\x68\x69\x6e\x67\x20\x74\x68\x61\x74\x20\x73\x74\x72\x69\x6b\x65'\ -b'\x73\x0d\x0a\x6d\x65\x20\x61\x73\x20\x66\x75\x6e\x6e\x79\x2e\xe2'\ -b'\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x42\x75\x62\x62\x6c\x65\x73'\ -b'\x3f\x20\x4f\x68\x6f\x21\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74'\ -b'\x68\x65\x20\x52\x61\x74\x2c\x20\x61\x6e\x64\x20\x63\x68\x69\x72'\ -b'\x72\x75\x70\x65\x64\x20\x63\x68\x65\x65\x72\x69\x6c\x79\x20\x69'\ -b'\x6e\x20\x61\x6e\x20\x69\x6e\x76\x69\x74\x69\x6e\x67\x0d\x0a\x73'\ -b'\x6f\x72\x74\x20\x6f\x66\x20\x77\x61\x79\x2e\x0d\x0a\x0d\x0a\x41'\ -b'\x20\x62\x72\x6f\x61\x64\x20\x67\x6c\x69\x73\x74\x65\x6e\x69\x6e'\ -b'\x67\x20\x6d\x75\x7a\x7a\x6c\x65\x20\x73\x68\x6f\x77\x65\x64\x20'\ -b'\x69\x74\x73\x65\x6c\x66\x20\x61\x62\x6f\x76\x65\x20\x74\x68\x65'\ -b'\x20\x65\x64\x67\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x61\x6e'\ -b'\x6b\x2c\x20\x61\x6e\x64\x0d\x0a\x74\x68\x65\x20\x4f\x74\x74\x65'\ -b'\x72\x20\x68\x61\x75\x6c\x65\x64\x20\x68\x69\x6d\x73\x65\x6c\x66'\ -b'\x20\x6f\x75\x74\x20\x61\x6e\x64\x20\x73\x68\x6f\x6f\x6b\x20\x74'\ -b'\x68\x65\x20\x77\x61\x74\x65\x72\x20\x66\x72\x6f\x6d\x20\x68\x69'\ -b'\x73\x20\x63\x6f\x61\x74\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x47\x72'\ -b'\x65\x65\x64\x79\x20\x62\x65\x67\x67\x61\x72\x73\x21\xe2\x80\x9d'\ -b'\x20\x68\x65\x20\x6f\x62\x73\x65\x72\x76\x65\x64\x2c\x20\x6d\x61'\ -b'\x6b\x69\x6e\x67\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x70\x72\x6f'\ -b'\x76\x65\x6e\x64\x65\x72\x2e\x20\xe2\x80\x9c\x57\x68\x79\x20\x64'\ -b'\x69\x64\x6e\xe2\x80\x99\x74\x0d\x0a\x79\x6f\x75\x20\x69\x6e\x76'\ -b'\x69\x74\x65\x20\x6d\x65\x2c\x20\x52\x61\x74\x74\x79\x3f\xe2\x80'\ -b'\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x54\x68\x69\x73\x20\x77\x61\x73'\ -b'\x20\x61\x6e\x20\x69\x6d\x70\x72\x6f\x6d\x70\x74\x75\x20\x61\x66'\ -b'\x66\x61\x69\x72\x2c\xe2\x80\x9d\x20\x65\x78\x70\x6c\x61\x69\x6e'\ -b'\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x2e\x20\xe2\x80\x9c\x42'\ -b'\x79\x20\x74\x68\x65\x20\x77\x61\x79\xe2\x80\x94\x6d\x79\x0d\x0a'\ -b'\x66\x72\x69\x65\x6e\x64\x20\x4d\x72\x2e\x20\x4d\x6f\x6c\x65\x2e'\ -b'\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x50\x72\x6f\x75\x64\x2c'\ -b'\x20\x49\xe2\x80\x99\x6d\x20\x73\x75\x72\x65\x2c\xe2\x80\x9d\x20'\ -b'\x73\x61\x69\x64\x20\x74\x68\x65\x20\x4f\x74\x74\x65\x72\x2c\x20'\ -b'\x61\x6e\x64\x20\x74\x68\x65\x20\x74\x77\x6f\x20\x61\x6e\x69\x6d'\ -b'\x61\x6c\x73\x20\x77\x65\x72\x65\x20\x66\x72\x69\x65\x6e\x64\x73'\ -b'\x0d\x0a\x66\x6f\x72\x74\x68\x77\x69\x74\x68\x2e\x0d\x0a\x0d\x0a'\ -b'\xe2\x80\x9c\x53\x75\x63\x68\x20\x61\x20\x72\x75\x6d\x70\x75\x73'\ -b'\x20\x65\x76\x65\x72\x79\x77\x68\x65\x72\x65\x21\xe2\x80\x9d\x20'\ -b'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x64\x20\x74\x68\x65\x20\x4f\x74'\ -b'\x74\x65\x72\x2e\x20\xe2\x80\x9c\x41\x6c\x6c\x20\x74\x68\x65\x20'\ -b'\x77\x6f\x72\x6c\x64\x20\x73\x65\x65\x6d\x73\x0d\x0a\x6f\x75\x74'\ -b'\x20\x6f\x6e\x20\x74\x68\x65\x20\x72\x69\x76\x65\x72\x20\x74\x6f'\ -b'\x2d\x64\x61\x79\x2e\x20\x49\x20\x63\x61\x6d\x65\x20\x75\x70\x20'\ -b'\x74\x68\x69\x73\x20\x62\x61\x63\x6b\x77\x61\x74\x65\x72\x20\x74'\ -b'\x6f\x20\x74\x72\x79\x20\x61\x6e\x64\x20\x67\x65\x74\x20\x61\x0d'\ -b'\x0a\x6d\x6f\x6d\x65\x6e\x74\xe2\x80\x99\x73\x20\x70\x65\x61\x63'\ -b'\x65\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x20\x73\x74\x75\x6d'\ -b'\x62\x6c\x65\x20\x75\x70\x6f\x6e\x20\x79\x6f\x75\x20\x66\x65\x6c'\ -b'\x6c\x6f\x77\x73\x21\xe2\x80\x94\x41\x74\x20\x6c\x65\x61\x73\x74'\ -b'\xe2\x80\x94\x49\x20\x62\x65\x67\x0d\x0a\x70\x61\x72\x64\x6f\x6e'\ -b'\xe2\x80\x94\x49\x20\x64\x6f\x6e\xe2\x80\x99\x74\x20\x65\x78\x61'\ -b'\x63\x74\x6c\x79\x20\x6d\x65\x61\x6e\x20\x74\x68\x61\x74\x2c\x20'\ -b'\x79\x6f\x75\x20\x6b\x6e\x6f\x77\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a'\ -b'\x54\x68\x65\x72\x65\x20\x77\x61\x73\x20\x61\x20\x72\x75\x73\x74'\ -b'\x6c\x65\x20\x62\x65\x68\x69\x6e\x64\x20\x74\x68\x65\x6d\x2c\x20'\ -b'\x70\x72\x6f\x63\x65\x65\x64\x69\x6e\x67\x20\x66\x72\x6f\x6d\x20'\ -b'\x61\x20\x68\x65\x64\x67\x65\x20\x77\x68\x65\x72\x65\x69\x6e\x20'\ -b'\x6c\x61\x73\x74\x0d\x0a\x79\x65\x61\x72\xe2\x80\x99\x73\x20\x6c'\ -b'\x65\x61\x76\x65\x73\x20\x73\x74\x69\x6c\x6c\x20\x63\x6c\x75\x6e'\ -b'\x67\x20\x74\x68\x69\x63\x6b\x2c\x20\x61\x6e\x64\x20\x61\x20\x73'\ -b'\x74\x72\x69\x70\x79\x20\x68\x65\x61\x64\x2c\x20\x77\x69\x74\x68'\ -b'\x20\x68\x69\x67\x68\x20\x73\x68\x6f\x75\x6c\x64\x65\x72\x73\x0d'\ -b'\x0a\x62\x65\x68\x69\x6e\x64\x20\x69\x74\x2c\x20\x70\x65\x65\x72'\ -b'\x65\x64\x20\x66\x6f\x72\x74\x68\x20\x6f\x6e\x20\x74\x68\x65\x6d'\ -b'\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x43\x6f\x6d\x65\x20\x6f\x6e\x2c'\ -b'\x20\x6f\x6c\x64\x20\x42\x61\x64\x67\x65\x72\x21\xe2\x80\x9d\x20'\ -b'\x73\x68\x6f\x75\x74\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x2e'\ -b'\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x42\x61\x64\x67\x65\x72\x20\x74'\ -b'\x72\x6f\x74\x74\x65\x64\x20\x66\x6f\x72\x77\x61\x72\x64\x20\x61'\ -b'\x20\x70\x61\x63\x65\x20\x6f\x72\x20\x74\x77\x6f\x3b\x20\x74\x68'\ -b'\x65\x6e\x20\x67\x72\x75\x6e\x74\x65\x64\x2c\x20\xe2\x80\x9c\x48'\ -b'\xe2\x80\x99\x6d\x21\x20\x43\x6f\x6d\x70\x61\x6e\x79\x2c\xe2\x80'\ -b'\x9d\x0d\x0a\x61\x6e\x64\x20\x74\x75\x72\x6e\x65\x64\x20\x68\x69'\ -b'\x73\x20\x62\x61\x63\x6b\x20\x61\x6e\x64\x20\x64\x69\x73\x61\x70'\ -b'\x70\x65\x61\x72\x65\x64\x20\x66\x72\x6f\x6d\x20\x76\x69\x65\x77'\ -b'\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x54\x68\x61\x74\xe2\x80\x99\x73'\ -b'\x20\x5f\x6a\x75\x73\x74\x5f\x20\x74\x68\x65\x20\x73\x6f\x72\x74'\ -b'\x20\x6f\x66\x20\x66\x65\x6c\x6c\x6f\x77\x20\x68\x65\x20\x69\x73'\ -b'\x21\xe2\x80\x9d\x20\x6f\x62\x73\x65\x72\x76\x65\x64\x20\x74\x68'\ -b'\x65\x20\x64\x69\x73\x61\x70\x70\x6f\x69\x6e\x74\x65\x64\x0d\x0a'\ -b'\x52\x61\x74\x2e\x20\xe2\x80\x9c\x53\x69\x6d\x70\x6c\x79\x20\x68'\ -b'\x61\x74\x65\x73\x20\x53\x6f\x63\x69\x65\x74\x79\x21\x20\x4e\x6f'\ -b'\x77\x20\x77\x65\x20\x73\x68\x61\x6e\xe2\x80\x99\x74\x20\x73\x65'\ -b'\x65\x20\x61\x6e\x79\x20\x6d\x6f\x72\x65\x20\x6f\x66\x20\x68\x69'\ -b'\x6d\x20\x74\x6f\x2d\x64\x61\x79\x2e\x0d\x0a\x57\x65\x6c\x6c\x2c'\ -b'\x20\x74\x65\x6c\x6c\x20\x75\x73\x2c\x20\x5f\x77\x68\x6f\xe2\x80'\ -b'\x99\x73\x5f\x20\x6f\x75\x74\x20\x6f\x6e\x20\x74\x68\x65\x20\x72'\ -b'\x69\x76\x65\x72\x3f\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x54'\ -b'\x6f\x61\x64\xe2\x80\x99\x73\x20\x6f\x75\x74\x2c\x20\x66\x6f\x72'\ -b'\x20\x6f\x6e\x65\x2c\xe2\x80\x9d\x20\x72\x65\x70\x6c\x69\x65\x64'\ -b'\x20\x74\x68\x65\x20\x4f\x74\x74\x65\x72\x2e\x20\xe2\x80\x9c\x49'\ -b'\x6e\x20\x68\x69\x73\x20\x62\x72\x61\x6e\x64\x2d\x6e\x65\x77\x20'\ -b'\x77\x61\x67\x65\x72\x2d\x62\x6f\x61\x74\x3b\x0d\x0a\x6e\x65\x77'\ -b'\x20\x74\x6f\x67\x73\x2c\x20\x6e\x65\x77\x20\x65\x76\x65\x72\x79'\ -b'\x74\x68\x69\x6e\x67\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65'\ -b'\x20\x74\x77\x6f\x20\x61\x6e\x69\x6d\x61\x6c\x73\x20\x6c\x6f\x6f'\ -b'\x6b\x65\x64\x20\x61\x74\x20\x65\x61\x63\x68\x20\x6f\x74\x68\x65'\ -b'\x72\x20\x61\x6e\x64\x20\x6c\x61\x75\x67\x68\x65\x64\x2e\x0d\x0a'\ -b'\x0d\x0a\xe2\x80\x9c\x4f\x6e\x63\x65\x2c\x20\x69\x74\x20\x77\x61'\ -b'\x73\x20\x6e\x6f\x74\x68\x69\x6e\x67\x20\x62\x75\x74\x20\x73\x61'\ -b'\x69\x6c\x69\x6e\x67\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74'\ -b'\x68\x65\x20\x52\x61\x74\x2c\x20\xe2\x80\x9c\x54\x68\x65\x6e\x20'\ -b'\x68\x65\x20\x74\x69\x72\x65\x64\x20\x6f\x66\x0d\x0a\x74\x68\x61'\ -b'\x74\x20\x61\x6e\x64\x20\x74\x6f\x6f\x6b\x20\x74\x6f\x20\x70\x75'\ -b'\x6e\x74\x69\x6e\x67\x2e\x20\x4e\x6f\x74\x68\x69\x6e\x67\x20\x77'\ -b'\x6f\x75\x6c\x64\x20\x70\x6c\x65\x61\x73\x65\x20\x68\x69\x6d\x20'\ -b'\x62\x75\x74\x20\x74\x6f\x20\x70\x75\x6e\x74\x20\x61\x6c\x6c\x20'\ -b'\x64\x61\x79\x0d\x0a\x61\x6e\x64\x20\x65\x76\x65\x72\x79\x20\x64'\ -b'\x61\x79\x2c\x20\x61\x6e\x64\x20\x61\x20\x6e\x69\x63\x65\x20\x6d'\ -b'\x65\x73\x73\x20\x68\x65\x20\x6d\x61\x64\x65\x20\x6f\x66\x20\x69'\ -b'\x74\x2e\x20\x4c\x61\x73\x74\x20\x79\x65\x61\x72\x20\x69\x74\x20'\ -b'\x77\x61\x73\x0d\x0a\x68\x6f\x75\x73\x65\x2d\x62\x6f\x61\x74\x69'\ -b'\x6e\x67\x2c\x20\x61\x6e\x64\x20\x77\x65\x20\x61\x6c\x6c\x20\x68'\ -b'\x61\x64\x20\x74\x6f\x20\x67\x6f\x20\x61\x6e\x64\x20\x73\x74\x61'\ -b'\x79\x20\x77\x69\x74\x68\x20\x68\x69\x6d\x20\x69\x6e\x20\x68\x69'\ -b'\x73\x0d\x0a\x68\x6f\x75\x73\x65\x2d\x62\x6f\x61\x74\x2c\x20\x61'\ -b'\x6e\x64\x20\x70\x72\x65\x74\x65\x6e\x64\x20\x77\x65\x20\x6c\x69'\ -b'\x6b\x65\x64\x20\x69\x74\x2e\x20\x48\x65\x20\x77\x61\x73\x20\x67'\ -b'\x6f\x69\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x6e\x64\x20\x74\x68'\ -b'\x65\x20\x72\x65\x73\x74\x20\x6f\x66\x0d\x0a\x68\x69\x73\x20\x6c'\ -b'\x69\x66\x65\x20\x69\x6e\x20\x61\x20\x68\x6f\x75\x73\x65\x2d\x62'\ -b'\x6f\x61\x74\x2e\x20\x49\x74\xe2\x80\x99\x73\x20\x61\x6c\x6c\x20'\ -b'\x74\x68\x65\x20\x73\x61\x6d\x65\x2c\x20\x77\x68\x61\x74\x65\x76'\ -b'\x65\x72\x20\x68\x65\x20\x74\x61\x6b\x65\x73\x20\x75\x70\x3b\x20'\ -b'\x68\x65\x0d\x0a\x67\x65\x74\x73\x20\x74\x69\x72\x65\x64\x20\x6f'\ -b'\x66\x20\x69\x74\x2c\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73'\ -b'\x20\x6f\x6e\x20\x73\x6f\x6d\x65\x74\x68\x69\x6e\x67\x20\x66\x72'\ -b'\x65\x73\x68\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x53\x75'\ -b'\x63\x68\x20\x61\x20\x67\x6f\x6f\x64\x20\x66\x65\x6c\x6c\x6f\x77'\ -b'\x2c\x20\x74\x6f\x6f\x2c\xe2\x80\x9d\x20\x72\x65\x6d\x61\x72\x6b'\ -b'\x65\x64\x20\x74\x68\x65\x20\x4f\x74\x74\x65\x72\x20\x72\x65\x66'\ -b'\x6c\x65\x63\x74\x69\x76\x65\x6c\x79\x3a\x20\xe2\x80\x9c\x42\x75'\ -b'\x74\x20\x6e\x6f\x0d\x0a\x73\x74\x61\x62\x69\x6c\x69\x74\x79\xe2'\ -b'\x80\x94\x65\x73\x70\x65\x63\x69\x61\x6c\x6c\x79\x20\x69\x6e\x20'\ -b'\x61\x20\x62\x6f\x61\x74\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x46\x72'\ -b'\x6f\x6d\x20\x77\x68\x65\x72\x65\x20\x74\x68\x65\x79\x20\x73\x61'\ -b'\x74\x20\x74\x68\x65\x79\x20\x63\x6f\x75\x6c\x64\x20\x67\x65\x74'\ -b'\x20\x61\x20\x67\x6c\x69\x6d\x70\x73\x65\x20\x6f\x66\x20\x74\x68'\ -b'\x65\x20\x6d\x61\x69\x6e\x20\x73\x74\x72\x65\x61\x6d\x20\x61\x63'\ -b'\x72\x6f\x73\x73\x0d\x0a\x74\x68\x65\x20\x69\x73\x6c\x61\x6e\x64'\ -b'\x20\x74\x68\x61\x74\x20\x73\x65\x70\x61\x72\x61\x74\x65\x64\x20'\ -b'\x74\x68\x65\x6d\x3b\x20\x61\x6e\x64\x20\x6a\x75\x73\x74\x20\x74'\ -b'\x68\x65\x6e\x20\x61\x20\x77\x61\x67\x65\x72\x2d\x62\x6f\x61\x74'\ -b'\x20\x66\x6c\x61\x73\x68\x65\x64\x20\x69\x6e\x74\x6f\x0d\x0a\x76'\ -b'\x69\x65\x77\x2c\x20\x74\x68\x65\x20\x72\x6f\x77\x65\x72\xe2\x80'\ -b'\x94\x61\x20\x73\x68\x6f\x72\x74\x2c\x20\x73\x74\x6f\x75\x74\x20'\ -b'\x66\x69\x67\x75\x72\x65\xe2\x80\x94\x73\x70\x6c\x61\x73\x68\x69'\ -b'\x6e\x67\x20\x62\x61\x64\x6c\x79\x20\x61\x6e\x64\x20\x72\x6f\x6c'\ -b'\x6c\x69\x6e\x67\x20\x61\x0d\x0a\x67\x6f\x6f\x64\x20\x64\x65\x61'\ -b'\x6c\x2c\x20\x62\x75\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x68'\ -b'\x69\x73\x20\x68\x61\x72\x64\x65\x73\x74\x2e\x20\x54\x68\x65\x20'\ -b'\x52\x61\x74\x20\x73\x74\x6f\x6f\x64\x20\x75\x70\x20\x61\x6e\x64'\ -b'\x20\x68\x61\x69\x6c\x65\x64\x20\x68\x69\x6d\x2c\x0d\x0a\x62\x75'\ -b'\x74\x20\x54\x6f\x61\x64\xe2\x80\x94\x66\x6f\x72\x20\x69\x74\x20'\ -b'\x77\x61\x73\x20\x68\x65\xe2\x80\x94\x73\x68\x6f\x6f\x6b\x20\x68'\ -b'\x69\x73\x20\x68\x65\x61\x64\x20\x61\x6e\x64\x20\x73\x65\x74\x74'\ -b'\x6c\x65\x64\x20\x73\x74\x65\x72\x6e\x6c\x79\x20\x74\x6f\x20\x68'\ -b'\x69\x73\x20\x77\x6f\x72\x6b\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x48'\ -b'\x65\xe2\x80\x99\x6c\x6c\x20\x62\x65\x20\x6f\x75\x74\x20\x6f\x66'\ -b'\x20\x74\x68\x65\x20\x62\x6f\x61\x74\x20\x69\x6e\x20\x61\x20\x6d'\ -b'\x69\x6e\x75\x74\x65\x20\x69\x66\x20\x68\x65\x20\x72\x6f\x6c\x6c'\ -b'\x73\x20\x6c\x69\x6b\x65\x20\x74\x68\x61\x74\x2c\xe2\x80\x9d\x20'\ -b'\x73\x61\x69\x64\x20\x74\x68\x65\x0d\x0a\x52\x61\x74\x2c\x20\x73'\ -b'\x69\x74\x74\x69\x6e\x67\x20\x64\x6f\x77\x6e\x20\x61\x67\x61\x69'\ -b'\x6e\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4f\x66\x20\x63\x6f\x75\x72'\ -b'\x73\x65\x20\x68\x65\x20\x77\x69\x6c\x6c\x2c\xe2\x80\x9d\x20\x63'\ -b'\x68\x75\x63\x6b\x6c\x65\x64\x20\x74\x68\x65\x20\x4f\x74\x74\x65'\ -b'\x72\x2e\x20\xe2\x80\x9c\x44\x69\x64\x20\x49\x20\x65\x76\x65\x72'\ -b'\x20\x74\x65\x6c\x6c\x20\x79\x6f\x75\x20\x74\x68\x61\x74\x20\x67'\ -b'\x6f\x6f\x64\x0d\x0a\x73\x74\x6f\x72\x79\x20\x61\x62\x6f\x75\x74'\ -b'\x20\x54\x6f\x61\x64\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x6c\x6f'\ -b'\x63\x6b\x2d\x6b\x65\x65\x70\x65\x72\x3f\x20\x49\x74\x20\x68\x61'\ -b'\x70\x70\x65\x6e\x65\x64\x20\x74\x68\x69\x73\x20\x77\x61\x79\x2e'\ -b'\x20\x54\x6f\x61\x64\x2e\x2e\x2e\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a'\ -b'\x41\x6e\x20\x65\x72\x72\x61\x6e\x74\x20\x4d\x61\x79\x2d\x66\x6c'\ -b'\x79\x20\x73\x77\x65\x72\x76\x65\x64\x20\x75\x6e\x73\x74\x65\x61'\ -b'\x64\x69\x6c\x79\x20\x61\x74\x68\x77\x61\x72\x74\x20\x74\x68\x65'\ -b'\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x69\x6e\x20\x74\x68\x65\x0d'\ -b'\x0a\x69\x6e\x74\x6f\x78\x69\x63\x61\x74\x65\x64\x20\x66\x61\x73'\ -b'\x68\x69\x6f\x6e\x20\x61\x66\x66\x65\x63\x74\x65\x64\x20\x62\x79'\ -b'\x20\x79\x6f\x75\x6e\x67\x20\x62\x6c\x6f\x6f\x64\x73\x20\x6f\x66'\ -b'\x20\x4d\x61\x79\x2d\x66\x6c\x69\x65\x73\x20\x73\x65\x65\x69\x6e'\ -b'\x67\x20\x6c\x69\x66\x65\x2e\x0d\x0a\x41\x20\x73\x77\x69\x72\x6c'\ -b'\x20\x6f\x66\x20\x77\x61\x74\x65\x72\x20\x61\x6e\x64\x20\x61\x20'\ -b'\xe2\x80\x9c\x63\x6c\x6f\x6f\x70\x21\xe2\x80\x9d\x20\x61\x6e\x64'\ -b'\x20\x74\x68\x65\x20\x4d\x61\x79\x2d\x66\x6c\x79\x20\x77\x61\x73'\ -b'\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x6e\x6f\x20\x6d\x6f\x72\x65'\ -b'\x2e\x0d\x0a\x0d\x0a\x4e\x65\x69\x74\x68\x65\x72\x20\x77\x61\x73'\ -b'\x20\x74\x68\x65\x20\x4f\x74\x74\x65\x72\x2e\x0d\x0a\x0d\x0a\x54'\ -b'\x68\x65\x20\x4d\x6f\x6c\x65\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x64'\ -b'\x6f\x77\x6e\x2e\x20\x54\x68\x65\x20\x76\x6f\x69\x63\x65\x20\x77'\ -b'\x61\x73\x20\x73\x74\x69\x6c\x6c\x20\x69\x6e\x20\x68\x69\x73\x20'\ -b'\x65\x61\x72\x73\x2c\x20\x62\x75\x74\x20\x74\x68\x65\x20\x74\x75'\ -b'\x72\x66\x0d\x0a\x77\x68\x65\x72\x65\x6f\x6e\x20\x68\x65\x20\x68'\ -b'\x61\x64\x20\x73\x70\x72\x61\x77\x6c\x65\x64\x20\x77\x61\x73\x20'\ -b'\x63\x6c\x65\x61\x72\x6c\x79\x20\x76\x61\x63\x61\x6e\x74\x2e\x20'\ -b'\x4e\x6f\x74\x20\x61\x6e\x20\x4f\x74\x74\x65\x72\x20\x74\x6f\x20'\ -b'\x62\x65\x20\x73\x65\x65\x6e\x2c\x20\x61\x73\x0d\x0a\x66\x61\x72'\ -b'\x20\x61\x73\x20\x74\x68\x65\x20\x64\x69\x73\x74\x61\x6e\x74\x20'\ -b'\x68\x6f\x72\x69\x7a\x6f\x6e\x2e\x0d\x0a\x0d\x0a\x42\x75\x74\x20'\ -b'\x61\x67\x61\x69\x6e\x20\x74\x68\x65\x72\x65\x20\x77\x61\x73\x20'\ -b'\x61\x20\x73\x74\x72\x65\x61\x6b\x20\x6f\x66\x20\x62\x75\x62\x62'\ -b'\x6c\x65\x73\x20\x6f\x6e\x20\x74\x68\x65\x20\x73\x75\x72\x66\x61'\ -b'\x63\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x72\x69\x76\x65\x72\x2e'\ -b'\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x52\x61\x74\x20\x68\x75\x6d\x6d'\ -b'\x65\x64\x20\x61\x20\x74\x75\x6e\x65\x2c\x20\x61\x6e\x64\x20\x74'\ -b'\x68\x65\x20\x4d\x6f\x6c\x65\x20\x72\x65\x63\x6f\x6c\x6c\x65\x63'\ -b'\x74\x65\x64\x20\x74\x68\x61\x74\x20\x61\x6e\x69\x6d\x61\x6c\x2d'\ -b'\x65\x74\x69\x71\x75\x65\x74\x74\x65\x0d\x0a\x66\x6f\x72\x62\x61'\ -b'\x64\x65\x20\x61\x6e\x79\x20\x73\x6f\x72\x74\x20\x6f\x66\x20\x63'\ -b'\x6f\x6d\x6d\x65\x6e\x74\x20\x6f\x6e\x20\x74\x68\x65\x20\x73\x75'\ -b'\x64\x64\x65\x6e\x20\x64\x69\x73\x61\x70\x70\x65\x61\x72\x61\x6e'\ -b'\x63\x65\x20\x6f\x66\x20\x6f\x6e\x65\xe2\x80\x99\x73\x0d\x0a\x66'\ -b'\x72\x69\x65\x6e\x64\x73\x20\x61\x74\x20\x61\x6e\x79\x20\x6d\x6f'\ -b'\x6d\x65\x6e\x74\x2c\x20\x66\x6f\x72\x20\x61\x6e\x79\x20\x72\x65'\ -b'\x61\x73\x6f\x6e\x20\x6f\x72\x20\x6e\x6f\x20\x72\x65\x61\x73\x6f'\ -b'\x6e\x20\x77\x68\x61\x74\x65\x76\x65\x72\x2e\x0d\x0a\x0d\x0a\xe2'\ -b'\x80\x9c\x57\x65\x6c\x6c\x2c\x20\x77\x65\x6c\x6c\x2c\xe2\x80\x9d'\ -b'\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x52\x61\x74\x2c\x20\xe2'\ -b'\x80\x9c\x49\x20\x73\x75\x70\x70\x6f\x73\x65\x20\x77\x65\x20\x6f'\ -b'\x75\x67\x68\x74\x20\x74\x6f\x20\x62\x65\x20\x6d\x6f\x76\x69\x6e'\ -b'\x67\x2e\x20\x49\x20\x77\x6f\x6e\x64\x65\x72\x0d\x0a\x77\x68\x69'\ -b'\x63\x68\x20\x6f\x66\x20\x75\x73\x20\x68\x61\x64\x20\x62\x65\x74'\ -b'\x74\x65\x72\x20\x70\x61\x63\x6b\x20\x74\x68\x65\x20\x6c\x75\x6e'\ -b'\x63\x68\x65\x6f\x6e\x2d\x62\x61\x73\x6b\x65\x74\x3f\xe2\x80\x9d'\ -b'\x20\x48\x65\x20\x64\x69\x64\x20\x6e\x6f\x74\x20\x73\x70\x65\x61'\ -b'\x6b\x20\x61\x73\x0d\x0a\x69\x66\x20\x68\x65\x20\x77\x61\x73\x20'\ -b'\x66\x72\x69\x67\x68\x74\x66\x75\x6c\x6c\x79\x20\x65\x61\x67\x65'\ -b'\x72\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x74\x72\x65\x61\x74\x2e'\ -b'\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4f\x2c\x20\x70\x6c\x65\x61\x73\x65'\ -b'\x20\x6c\x65\x74\x20\x6d\x65\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64'\ -b'\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2e\x20\x53\x6f\x2c\x20\x6f'\ -b'\x66\x20\x63\x6f\x75\x72\x73\x65\x2c\x20\x74\x68\x65\x20\x52\x61'\ -b'\x74\x20\x6c\x65\x74\x20\x68\x69\x6d\x2e\x0d\x0a\x0d\x0a\x50\x61'\ -b'\x63\x6b\x69\x6e\x67\x20\x74\x68\x65\x20\x62\x61\x73\x6b\x65\x74'\ -b'\x20\x77\x61\x73\x20\x6e\x6f\x74\x20\x71\x75\x69\x74\x65\x20\x73'\ -b'\x75\x63\x68\x20\x70\x6c\x65\x61\x73\x61\x6e\x74\x20\x77\x6f\x72'\ -b'\x6b\x20\x61\x73\x20\x75\x6e\x70\x61\x63\x6b\x69\x6e\x67\x20\x74'\ -b'\x68\x65\x0d\x0a\x62\x61\x73\x6b\x65\x74\x2e\x20\x49\x74\x20\x6e'\ -b'\x65\x76\x65\x72\x20\x69\x73\x2e\x20\x42\x75\x74\x20\x74\x68\x65'\ -b'\x20\x4d\x6f\x6c\x65\x20\x77\x61\x73\x20\x62\x65\x6e\x74\x20\x6f'\ -b'\x6e\x20\x65\x6e\x6a\x6f\x79\x69\x6e\x67\x20\x65\x76\x65\x72\x79'\ -b'\x74\x68\x69\x6e\x67\x2c\x20\x61\x6e\x64\x0d\x0a\x61\x6c\x74\x68'\ -b'\x6f\x75\x67\x68\x20\x6a\x75\x73\x74\x20\x77\x68\x65\x6e\x20\x68'\ -b'\x65\x20\x68\x61\x64\x20\x67\x6f\x74\x20\x74\x68\x65\x20\x62\x61'\ -b'\x73\x6b\x65\x74\x20\x70\x61\x63\x6b\x65\x64\x20\x61\x6e\x64\x20'\ -b'\x73\x74\x72\x61\x70\x70\x65\x64\x20\x75\x70\x20\x74\x69\x67\x68'\ -b'\x74\x6c\x79\x0d\x0a\x68\x65\x20\x73\x61\x77\x20\x61\x20\x70\x6c'\ -b'\x61\x74\x65\x20\x73\x74\x61\x72\x69\x6e\x67\x20\x75\x70\x20\x61'\ -b'\x74\x20\x68\x69\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x67'\ -b'\x72\x61\x73\x73\x2c\x20\x61\x6e\x64\x20\x77\x68\x65\x6e\x20\x74'\ -b'\x68\x65\x20\x6a\x6f\x62\x20\x68\x61\x64\x0d\x0a\x62\x65\x65\x6e'\ -b'\x20\x64\x6f\x6e\x65\x20\x61\x67\x61\x69\x6e\x20\x74\x68\x65\x20'\ -b'\x52\x61\x74\x20\x70\x6f\x69\x6e\x74\x65\x64\x20\x6f\x75\x74\x20'\ -b'\x61\x20\x66\x6f\x72\x6b\x20\x77\x68\x69\x63\x68\x20\x61\x6e\x79'\ -b'\x62\x6f\x64\x79\x20\x6f\x75\x67\x68\x74\x20\x74\x6f\x20\x68\x61'\ -b'\x76\x65\x0d\x0a\x73\x65\x65\x6e\x2c\x20\x61\x6e\x64\x20\x6c\x61'\ -b'\x73\x74\x20\x6f\x66\x20\x61\x6c\x6c\x2c\x20\x62\x65\x68\x6f\x6c'\ -b'\x64\x21\x20\x74\x68\x65\x20\x6d\x75\x73\x74\x61\x72\x64\x20\x70'\ -b'\x6f\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x68\x65\x20\x68\x61\x64'\ -b'\x20\x62\x65\x65\x6e\x0d\x0a\x73\x69\x74\x74\x69\x6e\x67\x20\x6f'\ -b'\x6e\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x6b\x6e\x6f\x77\x69\x6e'\ -b'\x67\x20\x69\x74\xe2\x80\x94\x73\x74\x69\x6c\x6c\x2c\x20\x73\x6f'\ -b'\x6d\x65\x68\x6f\x77\x2c\x20\x74\x68\x65\x20\x74\x68\x69\x6e\x67'\ -b'\x20\x67\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x65\x64\x20\x61\x74'\ -b'\x0d\x0a\x6c\x61\x73\x74\x2c\x20\x77\x69\x74\x68\x6f\x75\x74\x20'\ -b'\x6d\x75\x63\x68\x20\x6c\x6f\x73\x73\x20\x6f\x66\x20\x74\x65\x6d'\ -b'\x70\x65\x72\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x61\x66\x74\x65'\ -b'\x72\x6e\x6f\x6f\x6e\x20\x73\x75\x6e\x20\x77\x61\x73\x20\x67\x65'\ -b'\x74\x74\x69\x6e\x67\x20\x6c\x6f\x77\x20\x61\x73\x20\x74\x68\x65'\ -b'\x20\x52\x61\x74\x20\x73\x63\x75\x6c\x6c\x65\x64\x20\x67\x65\x6e'\ -b'\x74\x6c\x79\x20\x68\x6f\x6d\x65\x77\x61\x72\x64\x73\x0d\x0a\x69'\ -b'\x6e\x20\x61\x20\x64\x72\x65\x61\x6d\x79\x20\x6d\x6f\x6f\x64\x2c'\ -b'\x20\x6d\x75\x72\x6d\x75\x72\x69\x6e\x67\x20\x70\x6f\x65\x74\x72'\ -b'\x79\x2d\x74\x68\x69\x6e\x67\x73\x20\x6f\x76\x65\x72\x20\x74\x6f'\ -b'\x20\x68\x69\x6d\x73\x65\x6c\x66\x2c\x20\x61\x6e\x64\x20\x6e\x6f'\ -b'\x74\x0d\x0a\x70\x61\x79\x69\x6e\x67\x20\x6d\x75\x63\x68\x20\x61'\ -b'\x74\x74\x65\x6e\x74\x69\x6f\x6e\x20\x74\x6f\x20\x4d\x6f\x6c\x65'\ -b'\x2e\x20\x42\x75\x74\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x20\x77'\ -b'\x61\x73\x20\x76\x65\x72\x79\x20\x66\x75\x6c\x6c\x20\x6f\x66\x20'\ -b'\x6c\x75\x6e\x63\x68\x2c\x20\x61\x6e\x64\x0d\x0a\x73\x65\x6c\x66'\ -b'\x2d\x73\x61\x74\x69\x73\x66\x61\x63\x74\x69\x6f\x6e\x2c\x20\x61'\ -b'\x6e\x64\x20\x70\x72\x69\x64\x65\x2c\x20\x61\x6e\x64\x20\x61\x6c'\ -b'\x72\x65\x61\x64\x79\x20\x71\x75\x69\x74\x65\x20\x61\x74\x20\x68'\ -b'\x6f\x6d\x65\x20\x69\x6e\x20\x61\x20\x62\x6f\x61\x74\x20\x28\x73'\ -b'\x6f\x0d\x0a\x68\x65\x20\x74\x68\x6f\x75\x67\x68\x74\x29\x20\x61'\ -b'\x6e\x64\x20\x77\x61\x73\x20\x67\x65\x74\x74\x69\x6e\x67\x20\x61'\ -b'\x20\x62\x69\x74\x20\x72\x65\x73\x74\x6c\x65\x73\x73\x20\x62\x65'\ -b'\x73\x69\x64\x65\x73\x3a\x20\x61\x6e\x64\x20\x70\x72\x65\x73\x65'\ -b'\x6e\x74\x6c\x79\x20\x68\x65\x0d\x0a\x73\x61\x69\x64\x2c\x20\xe2'\ -b'\x80\x9c\x52\x61\x74\x74\x79\x21\x20\x50\x6c\x65\x61\x73\x65\x2c'\ -b'\x20\x5f\x49\x5f\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x72\x6f\x77'\ -b'\x2c\x20\x6e\x6f\x77\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65'\ -b'\x20\x52\x61\x74\x20\x73\x68\x6f\x6f\x6b\x20\x68\x69\x73\x20\x68'\ -b'\x65\x61\x64\x20\x77\x69\x74\x68\x20\x61\x20\x73\x6d\x69\x6c\x65'\ -b'\x2e\x20\xe2\x80\x9c\x4e\x6f\x74\x20\x79\x65\x74\x2c\x20\x6d\x79'\ -b'\x20\x79\x6f\x75\x6e\x67\x20\x66\x72\x69\x65\x6e\x64\x2c\xe2\x80'\ -b'\x9d\x20\x68\x65\x0d\x0a\x73\x61\x69\x64\xe2\x80\x94\xe2\x80\x9c'\ -b'\x77\x61\x69\x74\x20\x74\x69\x6c\x6c\x20\x79\x6f\x75\xe2\x80\x99'\ -b'\x76\x65\x20\x68\x61\x64\x20\x61\x20\x66\x65\x77\x20\x6c\x65\x73'\ -b'\x73\x6f\x6e\x73\x2e\x20\x49\x74\xe2\x80\x99\x73\x20\x6e\x6f\x74'\ -b'\x20\x73\x6f\x20\x65\x61\x73\x79\x20\x61\x73\x20\x69\x74\x0d\x0a'\ -b'\x6c\x6f\x6f\x6b\x73\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65'\ -b'\x20\x4d\x6f\x6c\x65\x20\x77\x61\x73\x20\x71\x75\x69\x65\x74\x20'\ -b'\x66\x6f\x72\x20\x61\x20\x6d\x69\x6e\x75\x74\x65\x20\x6f\x72\x20'\ -b'\x74\x77\x6f\x2e\x20\x42\x75\x74\x20\x68\x65\x20\x62\x65\x67\x61'\ -b'\x6e\x20\x74\x6f\x20\x66\x65\x65\x6c\x20\x6d\x6f\x72\x65\x20\x61'\ -b'\x6e\x64\x0d\x0a\x6d\x6f\x72\x65\x20\x6a\x65\x61\x6c\x6f\x75\x73'\ -b'\x20\x6f\x66\x20\x52\x61\x74\x2c\x20\x73\x63\x75\x6c\x6c\x69\x6e'\ -b'\x67\x20\x73\x6f\x20\x73\x74\x72\x6f\x6e\x67\x6c\x79\x20\x61\x6e'\ -b'\x64\x20\x73\x6f\x20\x65\x61\x73\x69\x6c\x79\x20\x61\x6c\x6f\x6e'\ -b'\x67\x2c\x20\x61\x6e\x64\x20\x68\x69\x73\x0d\x0a\x70\x72\x69\x64'\ -b'\x65\x20\x62\x65\x67\x61\x6e\x20\x74\x6f\x20\x77\x68\x69\x73\x70'\ -b'\x65\x72\x20\x74\x68\x61\x74\x20\x68\x65\x20\x63\x6f\x75\x6c\x64'\ -b'\x20\x64\x6f\x20\x69\x74\x20\x65\x76\x65\x72\x79\x20\x62\x69\x74'\ -b'\x20\x61\x73\x20\x77\x65\x6c\x6c\x2e\x20\x48\x65\x20\x6a\x75\x6d'\ -b'\x70\x65\x64\x0d\x0a\x75\x70\x20\x61\x6e\x64\x20\x73\x65\x69\x7a'\ -b'\x65\x64\x20\x74\x68\x65\x20\x73\x63\x75\x6c\x6c\x73\x2c\x20\x73'\ -b'\x6f\x20\x73\x75\x64\x64\x65\x6e\x6c\x79\x2c\x20\x74\x68\x61\x74'\ -b'\x20\x74\x68\x65\x20\x52\x61\x74\x2c\x20\x77\x68\x6f\x20\x77\x61'\ -b'\x73\x20\x67\x61\x7a\x69\x6e\x67\x20\x6f\x75\x74\x0d\x0a\x6f\x76'\ -b'\x65\x72\x20\x74\x68\x65\x20\x77\x61\x74\x65\x72\x20\x61\x6e\x64'\ -b'\x20\x73\x61\x79\x69\x6e\x67\x20\x6d\x6f\x72\x65\x20\x70\x6f\x65'\ -b'\x74\x72\x79\x2d\x74\x68\x69\x6e\x67\x73\x20\x74\x6f\x20\x68\x69'\ -b'\x6d\x73\x65\x6c\x66\x2c\x20\x77\x61\x73\x20\x74\x61\x6b\x65\x6e'\ -b'\x20\x62\x79\x0d\x0a\x73\x75\x72\x70\x72\x69\x73\x65\x20\x61\x6e'\ -b'\x64\x20\x66\x65\x6c\x6c\x20\x62\x61\x63\x6b\x77\x61\x72\x64\x73'\ -b'\x20\x6f\x66\x66\x20\x68\x69\x73\x20\x73\x65\x61\x74\x20\x77\x69'\ -b'\x74\x68\x20\x68\x69\x73\x20\x6c\x65\x67\x73\x20\x69\x6e\x20\x74'\ -b'\x68\x65\x20\x61\x69\x72\x20\x66\x6f\x72\x0d\x0a\x74\x68\x65\x20'\ -b'\x73\x65\x63\x6f\x6e\x64\x20\x74\x69\x6d\x65\x2c\x20\x77\x68\x69'\ -b'\x6c\x65\x20\x74\x68\x65\x20\x74\x72\x69\x75\x6d\x70\x68\x61\x6e'\ -b'\x74\x20\x4d\x6f\x6c\x65\x20\x74\x6f\x6f\x6b\x20\x68\x69\x73\x20'\ -b'\x70\x6c\x61\x63\x65\x20\x61\x6e\x64\x20\x67\x72\x61\x62\x62\x65'\ -b'\x64\x0d\x0a\x74\x68\x65\x20\x73\x63\x75\x6c\x6c\x73\x20\x77\x69'\ -b'\x74\x68\x20\x65\x6e\x74\x69\x72\x65\x20\x63\x6f\x6e\x66\x69\x64'\ -b'\x65\x6e\x63\x65\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x53\x74\x6f\x70'\ -b'\x20\x69\x74\x2c\x20\x79\x6f\x75\x20\x5f\x73\x69\x6c\x6c\x79\x5f'\ -b'\x20\x61\x73\x73\x21\xe2\x80\x9d\x20\x63\x72\x69\x65\x64\x20\x74'\ -b'\x68\x65\x20\x52\x61\x74\x2c\x20\x66\x72\x6f\x6d\x20\x74\x68\x65'\ -b'\x20\x62\x6f\x74\x74\x6f\x6d\x20\x6f\x66\x20\x74\x68\x65\x20\x62'\ -b'\x6f\x61\x74\x2e\x0d\x0a\xe2\x80\x9c\x59\x6f\x75\x20\x63\x61\x6e'\ -b'\xe2\x80\x99\x74\x20\x64\x6f\x20\x69\x74\x21\x20\x59\x6f\x75\xe2'\ -b'\x80\x99\x6c\x6c\x20\x68\x61\x76\x65\x20\x75\x73\x20\x6f\x76\x65'\ -b'\x72\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x4d\x6f\x6c'\ -b'\x65\x20\x66\x6c\x75\x6e\x67\x20\x68\x69\x73\x20\x73\x63\x75\x6c'\ -b'\x6c\x73\x20\x62\x61\x63\x6b\x20\x77\x69\x74\x68\x20\x61\x20\x66'\ -b'\x6c\x6f\x75\x72\x69\x73\x68\x2c\x20\x61\x6e\x64\x20\x6d\x61\x64'\ -b'\x65\x20\x61\x20\x67\x72\x65\x61\x74\x20\x64\x69\x67\x20\x61\x74'\ -b'\x0d\x0a\x74\x68\x65\x20\x77\x61\x74\x65\x72\x2e\x20\x48\x65\x20'\ -b'\x6d\x69\x73\x73\x65\x64\x20\x74\x68\x65\x20\x73\x75\x72\x66\x61'\ -b'\x63\x65\x20\x61\x6c\x74\x6f\x67\x65\x74\x68\x65\x72\x2c\x20\x68'\ -b'\x69\x73\x20\x6c\x65\x67\x73\x20\x66\x6c\x65\x77\x20\x75\x70\x20'\ -b'\x61\x62\x6f\x76\x65\x20\x68\x69\x73\x0d\x0a\x68\x65\x61\x64\x2c'\ -b'\x20\x61\x6e\x64\x20\x68\x65\x20\x66\x6f\x75\x6e\x64\x20\x68\x69'\ -b'\x6d\x73\x65\x6c\x66\x20\x6c\x79\x69\x6e\x67\x20\x6f\x6e\x20\x74'\ -b'\x68\x65\x20\x74\x6f\x70\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72'\ -b'\x6f\x73\x74\x72\x61\x74\x65\x20\x52\x61\x74\x2e\x0d\x0a\x47\x72'\ -b'\x65\x61\x74\x6c\x79\x20\x61\x6c\x61\x72\x6d\x65\x64\x2c\x20\x68'\ -b'\x65\x20\x6d\x61\x64\x65\x20\x61\x20\x67\x72\x61\x62\x20\x61\x74'\ -b'\x20\x74\x68\x65\x20\x73\x69\x64\x65\x20\x6f\x66\x20\x74\x68\x65'\ -b'\x20\x62\x6f\x61\x74\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x6e'\ -b'\x65\x78\x74\x0d\x0a\x6d\x6f\x6d\x65\x6e\x74\xe2\x80\x94\x53\x70'\ -b'\x6c\x6f\x6f\x73\x68\x21\x0d\x0a\x0d\x0a\x4f\x76\x65\x72\x20\x77'\ -b'\x65\x6e\x74\x20\x74\x68\x65\x20\x62\x6f\x61\x74\x2c\x20\x61\x6e'\ -b'\x64\x20\x68\x65\x20\x66\x6f\x75\x6e\x64\x20\x68\x69\x6d\x73\x65'\ -b'\x6c\x66\x20\x73\x74\x72\x75\x67\x67\x6c\x69\x6e\x67\x20\x69\x6e'\ -b'\x20\x74\x68\x65\x20\x72\x69\x76\x65\x72\x2e\x0d\x0a\x0d\x0a\x4f'\ -b'\x20\x6d\x79\x2c\x20\x68\x6f\x77\x20\x63\x6f\x6c\x64\x20\x74\x68'\ -b'\x65\x20\x77\x61\x74\x65\x72\x20\x77\x61\x73\x2c\x20\x61\x6e\x64'\ -b'\x20\x4f\x2c\x20\x68\x6f\x77\x20\x5f\x76\x65\x72\x79\x5f\x20\x77'\ -b'\x65\x74\x20\x69\x74\x20\x66\x65\x6c\x74\x2e\x20\x48\x6f\x77\x20'\ -b'\x69\x74\x0d\x0a\x73\x61\x6e\x67\x20\x69\x6e\x20\x68\x69\x73\x20'\ -b'\x65\x61\x72\x73\x20\x61\x73\x20\x68\x65\x20\x77\x65\x6e\x74\x20'\ -b'\x64\x6f\x77\x6e\x2c\x20\x64\x6f\x77\x6e\x2c\x20\x64\x6f\x77\x6e'\ -b'\x21\x20\x48\x6f\x77\x20\x62\x72\x69\x67\x68\x74\x20\x61\x6e\x64'\ -b'\x20\x77\x65\x6c\x63\x6f\x6d\x65\x0d\x0a\x74\x68\x65\x20\x73\x75'\ -b'\x6e\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x61\x73\x20\x68\x65\x20\x72'\ -b'\x6f\x73\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x75\x72\x66\x61'\ -b'\x63\x65\x20\x63\x6f\x75\x67\x68\x69\x6e\x67\x20\x61\x6e\x64\x20'\ -b'\x73\x70\x6c\x75\x74\x74\x65\x72\x69\x6e\x67\x21\x20\x48\x6f\x77'\ -b'\x0d\x0a\x62\x6c\x61\x63\x6b\x20\x77\x61\x73\x20\x68\x69\x73\x20'\ -b'\x64\x65\x73\x70\x61\x69\x72\x20\x77\x68\x65\x6e\x20\x68\x65\x20'\ -b'\x66\x65\x6c\x74\x20\x68\x69\x6d\x73\x65\x6c\x66\x20\x73\x69\x6e'\ -b'\x6b\x69\x6e\x67\x20\x61\x67\x61\x69\x6e\x21\x20\x54\x68\x65\x6e'\ -b'\x20\x61\x20\x66\x69\x72\x6d\x0d\x0a\x70\x61\x77\x20\x67\x72\x69'\ -b'\x70\x70\x65\x64\x20\x68\x69\x6d\x20\x62\x79\x20\x74\x68\x65\x20'\ -b'\x62\x61\x63\x6b\x20\x6f\x66\x20\x68\x69\x73\x20\x6e\x65\x63\x6b'\ -b'\x2e\x20\x49\x74\x20\x77\x61\x73\x20\x74\x68\x65\x20\x52\x61\x74'\ -b'\x2c\x20\x61\x6e\x64\x20\x68\x65\x20\x77\x61\x73\x0d\x0a\x65\x76'\ -b'\x69\x64\x65\x6e\x74\x6c\x79\x20\x6c\x61\x75\x67\x68\x69\x6e\x67'\ -b'\xe2\x80\x94\x74\x68\x65\x20\x4d\x6f\x6c\x65\x20\x63\x6f\x75\x6c'\ -b'\x64\x20\x5f\x66\x65\x65\x6c\x5f\x20\x68\x69\x6d\x20\x6c\x61\x75'\ -b'\x67\x68\x69\x6e\x67\x2c\x20\x72\x69\x67\x68\x74\x20\x64\x6f\x77'\ -b'\x6e\x20\x68\x69\x73\x0d\x0a\x61\x72\x6d\x20\x61\x6e\x64\x20\x74'\ -b'\x68\x72\x6f\x75\x67\x68\x20\x68\x69\x73\x20\x70\x61\x77\x2c\x20'\ -b'\x61\x6e\x64\x20\x73\x6f\x20\x69\x6e\x74\x6f\x20\x68\x69\x73\xe2'\ -b'\x80\x94\x74\x68\x65\x20\x4d\x6f\x6c\x65\xe2\x80\x99\x73\xe2\x80'\ -b'\x94\x6e\x65\x63\x6b\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x52\x61'\ -b'\x74\x20\x67\x6f\x74\x20\x68\x6f\x6c\x64\x20\x6f\x66\x20\x61\x20'\ -b'\x73\x63\x75\x6c\x6c\x20\x61\x6e\x64\x20\x73\x68\x6f\x76\x65\x64'\ -b'\x20\x69\x74\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x65\x20\x4d\x6f'\ -b'\x6c\x65\xe2\x80\x99\x73\x20\x61\x72\x6d\x3b\x20\x74\x68\x65\x6e'\ -b'\x20\x68\x65\x0d\x0a\x64\x69\x64\x20\x74\x68\x65\x20\x73\x61\x6d'\ -b'\x65\x20\x62\x79\x20\x74\x68\x65\x20\x6f\x74\x68\x65\x72\x20\x73'\ -b'\x69\x64\x65\x20\x6f\x66\x20\x68\x69\x6d\x20\x61\x6e\x64\x2c\x20'\ -b'\x73\x77\x69\x6d\x6d\x69\x6e\x67\x20\x62\x65\x68\x69\x6e\x64\x2c'\ -b'\x20\x70\x72\x6f\x70\x65\x6c\x6c\x65\x64\x0d\x0a\x74\x68\x65\x20'\ -b'\x68\x65\x6c\x70\x6c\x65\x73\x73\x20\x61\x6e\x69\x6d\x61\x6c\x20'\ -b'\x74\x6f\x20\x73\x68\x6f\x72\x65\x2c\x20\x68\x61\x75\x6c\x65\x64'\ -b'\x20\x68\x69\x6d\x20\x6f\x75\x74\x2c\x20\x61\x6e\x64\x20\x73\x65'\ -b'\x74\x20\x68\x69\x6d\x20\x64\x6f\x77\x6e\x20\x6f\x6e\x20\x74\x68'\ -b'\x65\x0d\x0a\x62\x61\x6e\x6b\x2c\x20\x61\x20\x73\x71\x75\x61\x73'\ -b'\x68\x79\x2c\x20\x70\x75\x6c\x70\x79\x20\x6c\x75\x6d\x70\x20\x6f'\ -b'\x66\x20\x6d\x69\x73\x65\x72\x79\x2e\x0d\x0a\x0d\x0a\x57\x68\x65'\ -b'\x6e\x20\x74\x68\x65\x20\x52\x61\x74\x20\x68\x61\x64\x20\x72\x75'\ -b'\x62\x62\x65\x64\x20\x68\x69\x6d\x20\x64\x6f\x77\x6e\x20\x61\x20'\ -b'\x62\x69\x74\x2c\x20\x61\x6e\x64\x20\x77\x72\x75\x6e\x67\x20\x73'\ -b'\x6f\x6d\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x77\x65\x74\x20\x6f'\ -b'\x75\x74\x0d\x0a\x6f\x66\x20\x68\x69\x6d\x2c\x20\x68\x65\x20\x73'\ -b'\x61\x69\x64\x2c\x20\xe2\x80\x9c\x4e\x6f\x77\x2c\x20\x74\x68\x65'\ -b'\x6e\x2c\x20\x6f\x6c\x64\x20\x66\x65\x6c\x6c\x6f\x77\x21\x20\x54'\ -b'\x72\x6f\x74\x20\x75\x70\x20\x61\x6e\x64\x20\x64\x6f\x77\x6e\x20'\ -b'\x74\x68\x65\x0d\x0a\x74\x6f\x77\x69\x6e\x67\x2d\x70\x61\x74\x68'\ -b'\x20\x61\x73\x20\x68\x61\x72\x64\x20\x61\x73\x20\x79\x6f\x75\x20'\ -b'\x63\x61\x6e\x2c\x20\x74\x69\x6c\x6c\x20\x79\x6f\x75\xe2\x80\x99'\ -b'\x72\x65\x20\x77\x61\x72\x6d\x20\x61\x6e\x64\x20\x64\x72\x79\x20'\ -b'\x61\x67\x61\x69\x6e\x2c\x20\x77\x68\x69\x6c\x65\x20\x49\x0d\x0a'\ -b'\x64\x69\x76\x65\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x6c\x75\x6e'\ -b'\x63\x68\x65\x6f\x6e\x2d\x62\x61\x73\x6b\x65\x74\x2e\xe2\x80\x9d'\ -b'\x0d\x0a\x0d\x0a\x53\x6f\x20\x74\x68\x65\x20\x64\x69\x73\x6d\x61'\ -b'\x6c\x20\x4d\x6f\x6c\x65\x2c\x20\x77\x65\x74\x20\x77\x69\x74\x68'\ -b'\x6f\x75\x74\x20\x61\x6e\x64\x20\x61\x73\x68\x61\x6d\x65\x64\x20'\ -b'\x77\x69\x74\x68\x69\x6e\x2c\x20\x74\x72\x6f\x74\x74\x65\x64\x20'\ -b'\x61\x62\x6f\x75\x74\x20\x74\x69\x6c\x6c\x0d\x0a\x68\x65\x20\x77'\ -b'\x61\x73\x20\x66\x61\x69\x72\x6c\x79\x20\x64\x72\x79\x2c\x20\x77'\ -b'\x68\x69\x6c\x65\x20\x74\x68\x65\x20\x52\x61\x74\x20\x70\x6c\x75'\ -b'\x6e\x67\x65\x64\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x77\x61'\ -b'\x74\x65\x72\x20\x61\x67\x61\x69\x6e\x2c\x0d\x0a\x72\x65\x63\x6f'\ -b'\x76\x65\x72\x65\x64\x20\x74\x68\x65\x20\x62\x6f\x61\x74\x2c\x20'\ -b'\x72\x69\x67\x68\x74\x65\x64\x20\x68\x65\x72\x20\x61\x6e\x64\x20'\ -b'\x6d\x61\x64\x65\x20\x68\x65\x72\x20\x66\x61\x73\x74\x2c\x20\x66'\ -b'\x65\x74\x63\x68\x65\x64\x20\x68\x69\x73\x20\x66\x6c\x6f\x61\x74'\ -b'\x69\x6e\x67\x0d\x0a\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x74\x6f'\ -b'\x20\x73\x68\x6f\x72\x65\x20\x62\x79\x20\x64\x65\x67\x72\x65\x65'\ -b'\x73\x2c\x20\x61\x6e\x64\x20\x66\x69\x6e\x61\x6c\x6c\x79\x20\x64'\ -b'\x69\x76\x65\x64\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c'\ -b'\x79\x20\x66\x6f\x72\x20\x74\x68\x65\x0d\x0a\x6c\x75\x6e\x63\x68'\ -b'\x65\x6f\x6e\x2d\x62\x61\x73\x6b\x65\x74\x20\x61\x6e\x64\x20\x73'\ -b'\x74\x72\x75\x67\x67\x6c\x65\x64\x20\x74\x6f\x20\x6c\x61\x6e\x64'\ -b'\x20\x77\x69\x74\x68\x20\x69\x74\x2e\x0d\x0a\x0d\x0a\x57\x68\x65'\ -b'\x6e\x20\x61\x6c\x6c\x20\x77\x61\x73\x20\x72\x65\x61\x64\x79\x20'\ -b'\x66\x6f\x72\x20\x61\x20\x73\x74\x61\x72\x74\x20\x6f\x6e\x63\x65'\ -b'\x20\x6d\x6f\x72\x65\x2c\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2c'\ -b'\x20\x6c\x69\x6d\x70\x20\x61\x6e\x64\x20\x64\x65\x6a\x65\x63\x74'\ -b'\x65\x64\x2c\x0d\x0a\x74\x6f\x6f\x6b\x20\x68\x69\x73\x20\x73\x65'\ -b'\x61\x74\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x74\x65\x72\x6e\x20'\ -b'\x6f\x66\x20\x74\x68\x65\x20\x62\x6f\x61\x74\x3b\x20\x61\x6e\x64'\ -b'\x20\x61\x73\x20\x74\x68\x65\x79\x20\x73\x65\x74\x20\x6f\x66\x66'\ -b'\x2c\x20\x68\x65\x20\x73\x61\x69\x64\x20\x69\x6e\x0d\x0a\x61\x20'\ -b'\x6c\x6f\x77\x20\x76\x6f\x69\x63\x65\x2c\x20\x62\x72\x6f\x6b\x65'\ -b'\x6e\x20\x77\x69\x74\x68\x20\x65\x6d\x6f\x74\x69\x6f\x6e\x2c\x20'\ -b'\xe2\x80\x9c\x52\x61\x74\x74\x79\x2c\x20\x6d\x79\x20\x67\x65\x6e'\ -b'\x65\x72\x6f\x75\x73\x20\x66\x72\x69\x65\x6e\x64\x21\x20\x49\x20'\ -b'\x61\x6d\x20\x76\x65\x72\x79\x0d\x0a\x73\x6f\x72\x72\x79\x20\x69'\ -b'\x6e\x64\x65\x65\x64\x20\x66\x6f\x72\x20\x6d\x79\x20\x66\x6f\x6f'\ -b'\x6c\x69\x73\x68\x20\x61\x6e\x64\x20\x75\x6e\x67\x72\x61\x74\x65'\ -b'\x66\x75\x6c\x20\x63\x6f\x6e\x64\x75\x63\x74\x2e\x20\x4d\x79\x20'\ -b'\x68\x65\x61\x72\x74\x20\x71\x75\x69\x74\x65\x0d\x0a\x66\x61\x69'\ -b'\x6c\x73\x20\x6d\x65\x20\x77\x68\x65\x6e\x20\x49\x20\x74\x68\x69'\ -b'\x6e\x6b\x20\x68\x6f\x77\x20\x49\x20\x6d\x69\x67\x68\x74\x20\x68'\ -b'\x61\x76\x65\x20\x6c\x6f\x73\x74\x20\x74\x68\x61\x74\x20\x62\x65'\ -b'\x61\x75\x74\x69\x66\x75\x6c\x0d\x0a\x6c\x75\x6e\x63\x68\x65\x6f'\ -b'\x6e\x2d\x62\x61\x73\x6b\x65\x74\x2e\x20\x49\x6e\x64\x65\x65\x64'\ -b'\x2c\x20\x49\x20\x68\x61\x76\x65\x20\x62\x65\x65\x6e\x20\x61\x20'\ -b'\x63\x6f\x6d\x70\x6c\x65\x74\x65\x20\x61\x73\x73\x2c\x20\x61\x6e'\ -b'\x64\x20\x49\x20\x6b\x6e\x6f\x77\x20\x69\x74\x2e\x0d\x0a\x57\x69'\ -b'\x6c\x6c\x20\x79\x6f\x75\x20\x6f\x76\x65\x72\x6c\x6f\x6f\x6b\x20'\ -b'\x69\x74\x20\x74\x68\x69\x73\x20\x6f\x6e\x63\x65\x20\x61\x6e\x64'\ -b'\x20\x66\x6f\x72\x67\x69\x76\x65\x20\x6d\x65\x2c\x20\x61\x6e\x64'\ -b'\x20\x6c\x65\x74\x20\x74\x68\x69\x6e\x67\x73\x20\x67\x6f\x20\x6f'\ -b'\x6e\x20\x61\x73\x0d\x0a\x62\x65\x66\x6f\x72\x65\x3f\xe2\x80\x9d'\ -b'\x0d\x0a\x0d\x0a\xe2\x80\x9c\x54\x68\x61\x74\xe2\x80\x99\x73\x20'\ -b'\x61\x6c\x6c\x20\x72\x69\x67\x68\x74\x2c\x20\x62\x6c\x65\x73\x73'\ -b'\x20\x79\x6f\x75\x21\xe2\x80\x9d\x20\x72\x65\x73\x70\x6f\x6e\x64'\ -b'\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x63\x68\x65\x65\x72'\ -b'\x69\x6c\x79\x2e\x20\xe2\x80\x9c\x57\x68\x61\x74\xe2\x80\x99\x73'\ -b'\x20\x61\x0d\x0a\x6c\x69\x74\x74\x6c\x65\x20\x77\x65\x74\x20\x74'\ -b'\x6f\x20\x61\x20\x57\x61\x74\x65\x72\x20\x52\x61\x74\x3f\x20\x49'\ -b'\xe2\x80\x99\x6d\x20\x6d\x6f\x72\x65\x20\x69\x6e\x20\x74\x68\x65'\ -b'\x20\x77\x61\x74\x65\x72\x20\x74\x68\x61\x6e\x20\x6f\x75\x74\x20'\ -b'\x6f\x66\x20\x69\x74\x20\x6d\x6f\x73\x74\x0d\x0a\x64\x61\x79\x73'\ -b'\x2e\x20\x44\x6f\x6e\xe2\x80\x99\x74\x20\x79\x6f\x75\x20\x74\x68'\ -b'\x69\x6e\x6b\x20\x61\x6e\x79\x20\x6d\x6f\x72\x65\x20\x61\x62\x6f'\ -b'\x75\x74\x20\x69\x74\x3b\x20\x61\x6e\x64\x2c\x20\x6c\x6f\x6f\x6b'\ -b'\x20\x68\x65\x72\x65\x21\x20\x49\x20\x72\x65\x61\x6c\x6c\x79\x20'\ -b'\x74\x68\x69\x6e\x6b\x0d\x0a\x79\x6f\x75\x20\x68\x61\x64\x20\x62'\ -b'\x65\x74\x74\x65\x72\x20\x63\x6f\x6d\x65\x20\x61\x6e\x64\x20\x73'\ -b'\x74\x6f\x70\x20\x77\x69\x74\x68\x20\x6d\x65\x20\x66\x6f\x72\x20'\ -b'\x61\x20\x6c\x69\x74\x74\x6c\x65\x20\x74\x69\x6d\x65\x2e\x20\x49'\ -b'\x74\xe2\x80\x99\x73\x20\x76\x65\x72\x79\x20\x70\x6c\x61\x69\x6e'\ -b'\x0d\x0a\x61\x6e\x64\x20\x72\x6f\x75\x67\x68\x2c\x20\x79\x6f\x75'\ -b'\x20\x6b\x6e\x6f\x77\xe2\x80\x94\x6e\x6f\x74\x20\x6c\x69\x6b\x65'\ -b'\x20\x54\x6f\x61\x64\xe2\x80\x99\x73\x20\x68\x6f\x75\x73\x65\x20'\ -b'\x61\x74\x20\x61\x6c\x6c\xe2\x80\x94\x62\x75\x74\x20\x79\x6f\x75'\ -b'\x20\x68\x61\x76\x65\x6e\xe2\x80\x99\x74\x20\x73\x65\x65\x6e\x0d'\ -b'\x0a\x74\x68\x61\x74\x20\x79\x65\x74\x3b\x20\x73\x74\x69\x6c\x6c'\ -b'\x2c\x20\x49\x20\x63\x61\x6e\x20\x6d\x61\x6b\x65\x20\x79\x6f\x75'\ -b'\x20\x63\x6f\x6d\x66\x6f\x72\x74\x61\x62\x6c\x65\x2e\x20\x41\x6e'\ -b'\x64\x20\x49\xe2\x80\x99\x6c\x6c\x20\x74\x65\x61\x63\x68\x20\x79'\ -b'\x6f\x75\x20\x74\x6f\x20\x72\x6f\x77\x2c\x0d\x0a\x61\x6e\x64\x20'\ -b'\x74\x6f\x20\x73\x77\x69\x6d\x2c\x20\x61\x6e\x64\x20\x79\x6f\x75'\ -b'\xe2\x80\x99\x6c\x6c\x20\x73\x6f\x6f\x6e\x20\x62\x65\x20\x61\x73'\ -b'\x20\x68\x61\x6e\x64\x79\x20\x6f\x6e\x20\x74\x68\x65\x20\x77\x61'\ -b'\x74\x65\x72\x20\x61\x73\x20\x61\x6e\x79\x20\x6f\x66\x20\x75\x73'\ -b'\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x4d\x6f\x6c\x65'\ -b'\x20\x77\x61\x73\x20\x73\x6f\x20\x74\x6f\x75\x63\x68\x65\x64\x20'\ -b'\x62\x79\x20\x68\x69\x73\x20\x6b\x69\x6e\x64\x20\x6d\x61\x6e\x6e'\ -b'\x65\x72\x20\x6f\x66\x20\x73\x70\x65\x61\x6b\x69\x6e\x67\x20\x74'\ -b'\x68\x61\x74\x20\x68\x65\x20\x63\x6f\x75\x6c\x64\x0d\x0a\x66\x69'\ -b'\x6e\x64\x20\x6e\x6f\x20\x76\x6f\x69\x63\x65\x20\x74\x6f\x20\x61'\ -b'\x6e\x73\x77\x65\x72\x20\x68\x69\x6d\x3b\x20\x61\x6e\x64\x20\x68'\ -b'\x65\x20\x68\x61\x64\x20\x74\x6f\x20\x62\x72\x75\x73\x68\x20\x61'\ -b'\x77\x61\x79\x20\x61\x20\x74\x65\x61\x72\x20\x6f\x72\x20\x74\x77'\ -b'\x6f\x0d\x0a\x77\x69\x74\x68\x20\x74\x68\x65\x20\x62\x61\x63\x6b'\ -b'\x20\x6f\x66\x20\x68\x69\x73\x20\x70\x61\x77\x2e\x20\x42\x75\x74'\ -b'\x20\x74\x68\x65\x20\x52\x61\x74\x20\x6b\x69\x6e\x64\x6c\x79\x20'\ -b'\x6c\x6f\x6f\x6b\x65\x64\x20\x69\x6e\x20\x61\x6e\x6f\x74\x68\x65'\ -b'\x72\x0d\x0a\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x2c\x20\x61\x6e'\ -b'\x64\x20\x70\x72\x65\x73\x65\x6e\x74\x6c\x79\x20\x74\x68\x65\x20'\ -b'\x4d\x6f\x6c\x65\xe2\x80\x99\x73\x20\x73\x70\x69\x72\x69\x74\x73'\ -b'\x20\x72\x65\x76\x69\x76\x65\x64\x20\x61\x67\x61\x69\x6e\x2c\x20'\ -b'\x61\x6e\x64\x20\x68\x65\x20\x77\x61\x73\x0d\x0a\x65\x76\x65\x6e'\ -b'\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x67\x69\x76\x65\x20\x73\x6f'\ -b'\x6d\x65\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\x62\x61\x63\x6b'\ -b'\x2d\x74\x61\x6c\x6b\x20\x74\x6f\x20\x61\x20\x63\x6f\x75\x70\x6c'\ -b'\x65\x20\x6f\x66\x20\x6d\x6f\x6f\x72\x68\x65\x6e\x73\x20\x77\x68'\ -b'\x6f\x0d\x0a\x77\x65\x72\x65\x20\x73\x6e\x69\x67\x67\x65\x72\x69'\ -b'\x6e\x67\x20\x74\x6f\x20\x65\x61\x63\x68\x20\x6f\x74\x68\x65\x72'\ -b'\x20\x61\x62\x6f\x75\x74\x20\x68\x69\x73\x20\x62\x65\x64\x72\x61'\ -b'\x67\x67\x6c\x65\x64\x20\x61\x70\x70\x65\x61\x72\x61\x6e\x63\x65'\ -b'\x2e\x0d\x0a\x0d\x0a\x57\x68\x65\x6e\x20\x74\x68\x65\x79\x20\x67'\ -b'\x6f\x74\x20\x68\x6f\x6d\x65\x2c\x20\x74\x68\x65\x20\x52\x61\x74'\ -b'\x20\x6d\x61\x64\x65\x20\x61\x20\x62\x72\x69\x67\x68\x74\x20\x66'\ -b'\x69\x72\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x70\x61\x72\x6c\x6f'\ -b'\x75\x72\x2c\x20\x61\x6e\x64\x0d\x0a\x70\x6c\x61\x6e\x74\x65\x64'\ -b'\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x20\x69\x6e\x20\x61\x6e\x20'\ -b'\x61\x72\x6d\x2d\x63\x68\x61\x69\x72\x20\x69\x6e\x20\x66\x72\x6f'\ -b'\x6e\x74\x20\x6f\x66\x20\x69\x74\x2c\x20\x68\x61\x76\x69\x6e\x67'\ -b'\x20\x66\x65\x74\x63\x68\x65\x64\x20\x64\x6f\x77\x6e\x20\x61\x0d'\ -b'\x0a\x64\x72\x65\x73\x73\x69\x6e\x67\x2d\x67\x6f\x77\x6e\x20\x61'\ -b'\x6e\x64\x20\x73\x6c\x69\x70\x70\x65\x72\x73\x20\x66\x6f\x72\x20'\ -b'\x68\x69\x6d\x2c\x20\x61\x6e\x64\x20\x74\x6f\x6c\x64\x20\x68\x69'\ -b'\x6d\x20\x72\x69\x76\x65\x72\x20\x73\x74\x6f\x72\x69\x65\x73\x20'\ -b'\x74\x69\x6c\x6c\x0d\x0a\x73\x75\x70\x70\x65\x72\x2d\x74\x69\x6d'\ -b'\x65\x2e\x20\x56\x65\x72\x79\x20\x74\x68\x72\x69\x6c\x6c\x69\x6e'\ -b'\x67\x20\x73\x74\x6f\x72\x69\x65\x73\x20\x74\x68\x65\x79\x20\x77'\ -b'\x65\x72\x65\x2c\x20\x74\x6f\x6f\x2c\x20\x74\x6f\x20\x61\x6e\x0d'\ -b'\x0a\x65\x61\x72\x74\x68\x2d\x64\x77\x65\x6c\x6c\x69\x6e\x67\x20'\ -b'\x61\x6e\x69\x6d\x61\x6c\x20\x6c\x69\x6b\x65\x20\x4d\x6f\x6c\x65'\ -b'\x2e\x20\x53\x74\x6f\x72\x69\x65\x73\x20\x61\x62\x6f\x75\x74\x20'\ -b'\x77\x65\x69\x72\x73\x2c\x20\x61\x6e\x64\x20\x73\x75\x64\x64\x65'\ -b'\x6e\x0d\x0a\x66\x6c\x6f\x6f\x64\x73\x2c\x20\x61\x6e\x64\x20\x6c'\ -b'\x65\x61\x70\x69\x6e\x67\x20\x70\x69\x6b\x65\x2c\x20\x61\x6e\x64'\ -b'\x20\x73\x74\x65\x61\x6d\x65\x72\x73\x20\x74\x68\x61\x74\x20\x66'\ -b'\x6c\x75\x6e\x67\x20\x68\x61\x72\x64\x20\x62\x6f\x74\x74\x6c\x65'\ -b'\x73\xe2\x80\x94\x61\x74\x20\x6c\x65\x61\x73\x74\x0d\x0a\x62\x6f'\ -b'\x74\x74\x6c\x65\x73\x20\x77\x65\x72\x65\x20\x63\x65\x72\x74\x61'\ -b'\x69\x6e\x6c\x79\x20\x66\x6c\x75\x6e\x67\x2c\x20\x61\x6e\x64\x20'\ -b'\x5f\x66\x72\x6f\x6d\x5f\x20\x73\x74\x65\x61\x6d\x65\x72\x73\x2c'\ -b'\x20\x73\x6f\x20\x70\x72\x65\x73\x75\x6d\x61\x62\x6c\x79\x20\x5f'\ -b'\x62\x79\x5f\x0d\x0a\x74\x68\x65\x6d\x3b\x20\x61\x6e\x64\x20\x61'\ -b'\x62\x6f\x75\x74\x20\x68\x65\x72\x6f\x6e\x73\x2c\x20\x61\x6e\x64'\ -b'\x20\x68\x6f\x77\x20\x70\x61\x72\x74\x69\x63\x75\x6c\x61\x72\x20'\ -b'\x74\x68\x65\x79\x20\x77\x65\x72\x65\x20\x77\x68\x6f\x6d\x20\x74'\ -b'\x68\x65\x79\x20\x73\x70\x6f\x6b\x65\x0d\x0a\x74\x6f\x3b\x20\x61'\ -b'\x6e\x64\x20\x61\x62\x6f\x75\x74\x20\x61\x64\x76\x65\x6e\x74\x75'\ -b'\x72\x65\x73\x20\x64\x6f\x77\x6e\x20\x64\x72\x61\x69\x6e\x73\x2c'\ -b'\x20\x61\x6e\x64\x20\x6e\x69\x67\x68\x74\x2d\x66\x69\x73\x68\x69'\ -b'\x6e\x67\x73\x20\x77\x69\x74\x68\x20\x4f\x74\x74\x65\x72\x2c\x20'\ -b'\x6f\x72\x0d\x0a\x65\x78\x63\x75\x72\x73\x69\x6f\x6e\x73\x20\x66'\ -b'\x61\x72\x20\x61\x2d\x66\x69\x65\x6c\x64\x20\x77\x69\x74\x68\x20'\ -b'\x42\x61\x64\x67\x65\x72\x2e\x20\x53\x75\x70\x70\x65\x72\x20\x77'\ -b'\x61\x73\x20\x61\x20\x6d\x6f\x73\x74\x20\x63\x68\x65\x65\x72\x66'\ -b'\x75\x6c\x20\x6d\x65\x61\x6c\x3b\x0d\x0a\x62\x75\x74\x20\x76\x65'\ -b'\x72\x79\x20\x73\x68\x6f\x72\x74\x6c\x79\x20\x61\x66\x74\x65\x72'\ -b'\x77\x61\x72\x64\x73\x20\x61\x20\x74\x65\x72\x72\x69\x62\x6c\x79'\ -b'\x20\x73\x6c\x65\x65\x70\x79\x20\x4d\x6f\x6c\x65\x20\x68\x61\x64'\ -b'\x20\x74\x6f\x20\x62\x65\x20\x65\x73\x63\x6f\x72\x74\x65\x64\x0d'\ -b'\x0a\x75\x70\x73\x74\x61\x69\x72\x73\x20\x62\x79\x20\x68\x69\x73'\ -b'\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x61\x74\x65\x20\x68\x6f\x73'\ -b'\x74\x2c\x20\x74\x6f\x20\x74\x68\x65\x20\x62\x65\x73\x74\x20\x62'\ -b'\x65\x64\x72\x6f\x6f\x6d\x2c\x20\x77\x68\x65\x72\x65\x20\x68\x65'\ -b'\x20\x73\x6f\x6f\x6e\x0d\x0a\x6c\x61\x69\x64\x20\x68\x69\x73\x20'\ -b'\x68\x65\x61\x64\x20\x6f\x6e\x20\x68\x69\x73\x20\x70\x69\x6c\x6c'\ -b'\x6f\x77\x20\x69\x6e\x20\x67\x72\x65\x61\x74\x20\x70\x65\x61\x63'\ -b'\x65\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x65\x6e\x74\x6d\x65\x6e'\ -b'\x74\x2c\x20\x6b\x6e\x6f\x77\x69\x6e\x67\x0d\x0a\x74\x68\x61\x74'\ -b'\x20\x68\x69\x73\x20\x6e\x65\x77\x2d\x66\x6f\x75\x6e\x64\x20\x66'\ -b'\x72\x69\x65\x6e\x64\x20\x74\x68\x65\x20\x52\x69\x76\x65\x72\x20'\ -b'\x77\x61\x73\x20\x6c\x61\x70\x70\x69\x6e\x67\x20\x74\x68\x65\x20'\ -b'\x73\x69\x6c\x6c\x20\x6f\x66\x20\x68\x69\x73\x20\x77\x69\x6e\x64'\ -b'\x6f\x77\x2e\x0d\x0a\x0d\x0a\x54\x68\x69\x73\x20\x64\x61\x79\x20'\ -b'\x77\x61\x73\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x66\x69\x72'\ -b'\x73\x74\x20\x6f\x66\x20\x6d\x61\x6e\x79\x20\x73\x69\x6d\x69\x6c'\ -b'\x61\x72\x20\x6f\x6e\x65\x73\x20\x66\x6f\x72\x20\x74\x68\x65\x20'\ -b'\x65\x6d\x61\x6e\x63\x69\x70\x61\x74\x65\x64\x0d\x0a\x4d\x6f\x6c'\ -b'\x65\x2c\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x6d\x20'\ -b'\x6c\x6f\x6e\x67\x65\x72\x20\x61\x6e\x64\x20\x66\x75\x6c\x6c\x20'\ -b'\x6f\x66\x20\x69\x6e\x74\x65\x72\x65\x73\x74\x20\x61\x73\x20\x74'\ -b'\x68\x65\x20\x72\x69\x70\x65\x6e\x69\x6e\x67\x20\x73\x75\x6d\x6d'\ -b'\x65\x72\x0d\x0a\x6d\x6f\x76\x65\x64\x20\x6f\x6e\x77\x61\x72\x64'\ -b'\x2e\x20\x48\x65\x20\x6c\x65\x61\x72\x6e\x74\x20\x74\x6f\x20\x73'\ -b'\x77\x69\x6d\x20\x61\x6e\x64\x20\x74\x6f\x20\x72\x6f\x77\x2c\x20'\ -b'\x61\x6e\x64\x20\x65\x6e\x74\x65\x72\x65\x64\x20\x69\x6e\x74\x6f'\ -b'\x20\x74\x68\x65\x20\x6a\x6f\x79\x20\x6f\x66\x0d\x0a\x72\x75\x6e'\ -b'\x6e\x69\x6e\x67\x20\x77\x61\x74\x65\x72\x3b\x20\x61\x6e\x64\x20'\ -b'\x77\x69\x74\x68\x20\x68\x69\x73\x20\x65\x61\x72\x20\x74\x6f\x20'\ -b'\x74\x68\x65\x20\x72\x65\x65\x64\x2d\x73\x74\x65\x6d\x73\x20\x68'\ -b'\x65\x20\x63\x61\x75\x67\x68\x74\x2c\x20\x61\x74\x0d\x0a\x69\x6e'\ -b'\x74\x65\x72\x76\x61\x6c\x73\x2c\x20\x73\x6f\x6d\x65\x74\x68\x69'\ -b'\x6e\x67\x20\x6f\x66\x20\x77\x68\x61\x74\x20\x74\x68\x65\x20\x77'\ -b'\x69\x6e\x64\x20\x77\x65\x6e\x74\x20\x77\x68\x69\x73\x70\x65\x72'\ -b'\x69\x6e\x67\x20\x73\x6f\x20\x63\x6f\x6e\x73\x74\x61\x6e\x74\x6c'\ -b'\x79\x0d\x0a\x61\x6d\x6f\x6e\x67\x20\x74\x68\x65\x6d\x2e\x0d\x0a'\ -b'\x0d\x0a\x0d\x0a\x0d\x0a\x0d\x0a\x49\x49\x2e\x0d\x0a\x54\x48\x45'\ -b'\x20\x4f\x50\x45\x4e\x20\x52\x4f\x41\x44\x0d\x0a\x0d\x0a\x0d\x0a'\ -b'\xe2\x80\x9c\x52\x61\x74\x74\x79\x2c\xe2\x80\x9d\x20\x73\x61\x69'\ -b'\x64\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x20\x73\x75\x64\x64\x65'\ -b'\x6e\x6c\x79\x2c\x20\x6f\x6e\x65\x20\x62\x72\x69\x67\x68\x74\x20'\ -b'\x73\x75\x6d\x6d\x65\x72\x20\x6d\x6f\x72\x6e\x69\x6e\x67\x2c\x20'\ -b'\xe2\x80\x9c\x69\x66\x20\x79\x6f\x75\x0d\x0a\x70\x6c\x65\x61\x73'\ -b'\x65\x2c\x20\x49\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x61\x73\x6b'\ -b'\x20\x79\x6f\x75\x20\x61\x20\x66\x61\x76\x6f\x75\x72\x2e\xe2\x80'\ -b'\x9d\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x52\x61\x74\x20\x77\x61\x73'\ -b'\x20\x73\x69\x74\x74\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68\x65\x20'\ -b'\x72\x69\x76\x65\x72\x20\x62\x61\x6e\x6b\x2c\x20\x73\x69\x6e\x67'\ -b'\x69\x6e\x67\x20\x61\x20\x6c\x69\x74\x74\x6c\x65\x20\x73\x6f\x6e'\ -b'\x67\x2e\x20\x48\x65\x20\x68\x61\x64\x0d\x0a\x6a\x75\x73\x74\x20'\ -b'\x63\x6f\x6d\x70\x6f\x73\x65\x64\x20\x69\x74\x20\x68\x69\x6d\x73'\ -b'\x65\x6c\x66\x2c\x20\x73\x6f\x20\x68\x65\x20\x77\x61\x73\x20\x76'\ -b'\x65\x72\x79\x20\x74\x61\x6b\x65\x6e\x20\x75\x70\x20\x77\x69\x74'\ -b'\x68\x20\x69\x74\x2c\x20\x61\x6e\x64\x20\x77\x6f\x75\x6c\x64\x0d'\ -b'\x0a\x6e\x6f\x74\x20\x70\x61\x79\x20\x70\x72\x6f\x70\x65\x72\x20'\ -b'\x61\x74\x74\x65\x6e\x74\x69\x6f\x6e\x20\x74\x6f\x20\x4d\x6f\x6c'\ -b'\x65\x20\x6f\x72\x20\x61\x6e\x79\x74\x68\x69\x6e\x67\x20\x65\x6c'\ -b'\x73\x65\x2e\x20\x53\x69\x6e\x63\x65\x20\x65\x61\x72\x6c\x79\x20'\ -b'\x6d\x6f\x72\x6e\x69\x6e\x67\x0d\x0a\x68\x65\x20\x68\x61\x64\x20'\ -b'\x62\x65\x65\x6e\x20\x73\x77\x69\x6d\x6d\x69\x6e\x67\x20\x69\x6e'\ -b'\x20\x74\x68\x65\x20\x72\x69\x76\x65\x72\x2c\x20\x69\x6e\x20\x63'\ -b'\x6f\x6d\x70\x61\x6e\x79\x20\x77\x69\x74\x68\x20\x68\x69\x73\x20'\ -b'\x66\x72\x69\x65\x6e\x64\x73\x20\x74\x68\x65\x0d\x0a\x64\x75\x63'\ -b'\x6b\x73\x2e\x20\x41\x6e\x64\x20\x77\x68\x65\x6e\x20\x74\x68\x65'\ -b'\x20\x64\x75\x63\x6b\x73\x20\x73\x74\x6f\x6f\x64\x20\x6f\x6e\x20'\ -b'\x74\x68\x65\x69\x72\x20\x68\x65\x61\x64\x73\x20\x73\x75\x64\x64'\ -b'\x65\x6e\x6c\x79\x2c\x20\x61\x73\x20\x64\x75\x63\x6b\x73\x20\x77'\ -b'\x69\x6c\x6c\x2c\x0d\x0a\x68\x65\x20\x77\x6f\x75\x6c\x64\x20\x64'\ -b'\x69\x76\x65\x20\x64\x6f\x77\x6e\x20\x61\x6e\x64\x20\x74\x69\x63'\ -b'\x6b\x6c\x65\x20\x74\x68\x65\x69\x72\x20\x6e\x65\x63\x6b\x73\x2c'\ -b'\x20\x6a\x75\x73\x74\x20\x75\x6e\x64\x65\x72\x20\x77\x68\x65\x72'\ -b'\x65\x20\x74\x68\x65\x69\x72\x20\x63\x68\x69\x6e\x73\x0d\x0a\x77'\ -b'\x6f\x75\x6c\x64\x20\x62\x65\x20\x69\x66\x20\x64\x75\x63\x6b\x73'\ -b'\x20\x68\x61\x64\x20\x63\x68\x69\x6e\x73\x2c\x20\x74\x69\x6c\x6c'\ -b'\x20\x74\x68\x65\x79\x20\x77\x65\x72\x65\x20\x66\x6f\x72\x63\x65'\ -b'\x64\x20\x74\x6f\x20\x63\x6f\x6d\x65\x20\x74\x6f\x20\x74\x68\x65'\ -b'\x0d\x0a\x73\x75\x72\x66\x61\x63\x65\x20\x61\x67\x61\x69\x6e\x20'\ -b'\x69\x6e\x20\x61\x20\x68\x75\x72\x72\x79\x2c\x20\x73\x70\x6c\x75'\ -b'\x74\x74\x65\x72\x69\x6e\x67\x20\x61\x6e\x64\x20\x61\x6e\x67\x72'\ -b'\x79\x20\x61\x6e\x64\x20\x73\x68\x61\x6b\x69\x6e\x67\x20\x74\x68'\ -b'\x65\x69\x72\x0d\x0a\x66\x65\x61\x74\x68\x65\x72\x73\x20\x61\x74'\ -b'\x20\x68\x69\x6d\x2c\x20\x66\x6f\x72\x20\x69\x74\x20\x69\x73\x20'\ -b'\x69\x6d\x70\x6f\x73\x73\x69\x62\x6c\x65\x20\x74\x6f\x20\x73\x61'\ -b'\x79\x20\x71\x75\x69\x74\x65\x20\x5f\x61\x6c\x6c\x5f\x20\x79\x6f'\ -b'\x75\x20\x66\x65\x65\x6c\x20\x77\x68\x65\x6e\x0d\x0a\x79\x6f\x75'\ -b'\x72\x20\x68\x65\x61\x64\x20\x69\x73\x20\x75\x6e\x64\x65\x72\x20'\ -b'\x77\x61\x74\x65\x72\x2e\x20\x41\x74\x20\x6c\x61\x73\x74\x20\x74'\ -b'\x68\x65\x79\x20\x69\x6d\x70\x6c\x6f\x72\x65\x64\x20\x68\x69\x6d'\ -b'\x20\x74\x6f\x20\x67\x6f\x20\x61\x77\x61\x79\x20\x61\x6e\x64\x0d'\ -b'\x0a\x61\x74\x74\x65\x6e\x64\x20\x74\x6f\x20\x68\x69\x73\x20\x6f'\ -b'\x77\x6e\x20\x61\x66\x66\x61\x69\x72\x73\x20\x61\x6e\x64\x20\x6c'\ -b'\x65\x61\x76\x65\x20\x74\x68\x65\x6d\x20\x74\x6f\x20\x6d\x69\x6e'\ -b'\x64\x20\x74\x68\x65\x69\x72\x73\x2e\x20\x53\x6f\x20\x74\x68\x65'\ -b'\x20\x52\x61\x74\x0d\x0a\x77\x65\x6e\x74\x20\x61\x77\x61\x79\x2c'\ -b'\x20\x61\x6e\x64\x20\x73\x61\x74\x20\x6f\x6e\x20\x74\x68\x65\x20'\ -b'\x72\x69\x76\x65\x72\x20\x62\x61\x6e\x6b\x20\x69\x6e\x20\x74\x68'\ -b'\x65\x20\x73\x75\x6e\x2c\x20\x61\x6e\x64\x20\x6d\x61\x64\x65\x20'\ -b'\x75\x70\x20\x61\x20\x73\x6f\x6e\x67\x0d\x0a\x61\x62\x6f\x75\x74'\ -b'\x20\x74\x68\x65\x6d\x2c\x20\x77\x68\x69\x63\x68\x20\x68\x65\x20'\ -b'\x63\x61\x6c\x6c\x65\x64\x0d\x0a\x0d\x0a\xe2\x80\x9c\x44\x55\x43'\ -b'\x4b\x53\xe2\x80\x99\x20\x44\x49\x54\x54\x59\x2e\xe2\x80\x9d\x0d'\ -b'\x0a\x0d\x0a\x41\x6c\x6c\x20\x61\x6c\x6f\x6e\x67\x20\x74\x68\x65'\ -b'\x20\x62\x61\x63\x6b\x77\x61\x74\x65\x72\x2c\x0d\x0a\x54\x68\x72'\ -b'\x6f\x75\x67\x68\x20\x74\x68\x65\x20\x72\x75\x73\x68\x65\x73\x20'\ -b'\x74\x61\x6c\x6c\x2c\x0d\x0a\x44\x75\x63\x6b\x73\x20\x61\x72\x65'\ -b'\x20\x61\x2d\x64\x61\x62\x62\x6c\x69\x6e\x67\x2c\x0d\x0a\x55\x70'\ -b'\x20\x74\x61\x69\x6c\x73\x20\x61\x6c\x6c\x21\x0d\x0a\x44\x75\x63'\ -b'\x6b\x73\xe2\x80\x99\x20\x74\x61\x69\x6c\x73\x2c\x20\x64\x72\x61'\ -b'\x6b\x65\x73\xe2\x80\x99\x20\x74\x61\x69\x6c\x73\x2c\x0d\x0a\x59'\ -b'\x65\x6c\x6c\x6f\x77\x20\x66\x65\x65\x74\x20\x61\x2d\x71\x75\x69'\ -b'\x76\x65\x72\x2c\x0d\x0a\x59\x65\x6c\x6c\x6f\x77\x20\x62\x69\x6c'\ -b'\x6c\x73\x20\x61\x6c\x6c\x20\x6f\x75\x74\x20\x6f\x66\x20\x73\x69'\ -b'\x67\x68\x74\x0d\x0a\x42\x75\x73\x79\x20\x69\x6e\x20\x74\x68\x65'\ -b'\x20\x72\x69\x76\x65\x72\x21\x0d\x0a\x0d\x0a\x53\x6c\x75\x73\x68'\ -b'\x79\x20\x67\x72\x65\x65\x6e\x20\x75\x6e\x64\x65\x72\x67\x72\x6f'\ -b'\x77\x74\x68\x0d\x0a\x57\x68\x65\x72\x65\x20\x74\x68\x65\x20\x72'\ -b'\x6f\x61\x63\x68\x20\x73\x77\x69\x6d\xe2\x80\x94\x0d\x0a\x48\x65'\ -b'\x72\x65\x20\x77\x65\x20\x6b\x65\x65\x70\x20\x6f\x75\x72\x20\x6c'\ -b'\x61\x72\x64\x65\x72\x2c\x0d\x0a\x43\x6f\x6f\x6c\x20\x61\x6e\x64'\ -b'\x20\x66\x75\x6c\x6c\x20\x61\x6e\x64\x20\x64\x69\x6d\x2e\x0d\x0a'\ -b'\x0d\x0a\x45\x76\x65\x72\x79\x6f\x6e\x65\x20\x66\x6f\x72\x20\x77'\ -b'\x68\x61\x74\x20\x68\x65\x20\x6c\x69\x6b\x65\x73\x21\x0d\x0a\x5f'\ -b'\x57\x65\x5f\x20\x6c\x69\x6b\x65\x20\x74\x6f\x20\x62\x65\x0d\x0a'\ -b'\x48\x65\x61\x64\x73\x20\x64\x6f\x77\x6e\x2c\x20\x74\x61\x69\x6c'\ -b'\x73\x20\x75\x70\x2c\x0d\x0a\x44\x61\x62\x62\x6c\x69\x6e\x67\x20'\ -b'\x66\x72\x65\x65\x21\x0d\x0a\x0d\x0a\x48\x69\x67\x68\x20\x69\x6e'\ -b'\x20\x74\x68\x65\x20\x62\x6c\x75\x65\x20\x61\x62\x6f\x76\x65\x0d'\ -b'\x0a\x53\x77\x69\x66\x74\x73\x20\x77\x68\x69\x72\x6c\x20\x61\x6e'\ -b'\x64\x20\x63\x61\x6c\x6c\xe2\x80\x94\x0d\x0a\x5f\x57\x65\x5f\x20'\ -b'\x61\x72\x65\x20\x64\x6f\x77\x6e\x20\x61\x2d\x64\x61\x62\x62\x6c'\ -b'\x69\x6e\x67\x0d\x0a\x55\x70\x74\x61\x69\x6c\x73\x20\x61\x6c\x6c'\ -b'\x21\x0d\x0a\x0d\x0a\x0d\x0a\xe2\x80\x9c\x49\x20\x64\x6f\x6e\xe2'\ -b'\x80\x99\x74\x20\x6b\x6e\x6f\x77\x20\x74\x68\x61\x74\x20\x49\x20'\ -b'\x74\x68\x69\x6e\x6b\x20\x73\x6f\x20\x5f\x76\x65\x72\x79\x5f\x20'\ -b'\x6d\x75\x63\x68\x20\x6f\x66\x20\x74\x68\x61\x74\x20\x6c\x69\x74'\ -b'\x74\x6c\x65\x20\x73\x6f\x6e\x67\x2c\x20\x52\x61\x74\x2c\xe2\x80'\ -b'\x9d\x0d\x0a\x6f\x62\x73\x65\x72\x76\x65\x64\x20\x74\x68\x65\x20'\ -b'\x4d\x6f\x6c\x65\x20\x63\x61\x75\x74\x69\x6f\x75\x73\x6c\x79\x2e'\ -b'\x20\x48\x65\x20\x77\x61\x73\x20\x6e\x6f\x20\x70\x6f\x65\x74\x20'\ -b'\x68\x69\x6d\x73\x65\x6c\x66\x20\x61\x6e\x64\x20\x64\x69\x64\x6e'\ -b'\xe2\x80\x99\x74\x20\x63\x61\x72\x65\x0d\x0a\x77\x68\x6f\x20\x6b'\ -b'\x6e\x65\x77\x20\x69\x74\x3b\x20\x61\x6e\x64\x20\x68\x65\x20\x68'\ -b'\x61\x64\x20\x61\x20\x63\x61\x6e\x64\x69\x64\x20\x6e\x61\x74\x75'\ -b'\x72\x65\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4e\x6f\x72\x20\x64\x6f'\ -b'\x6e\xe2\x80\x99\x74\x20\x74\x68\x65\x20\x64\x75\x63\x6b\x73\x20'\ -b'\x6e\x65\x69\x74\x68\x65\x72\x2c\xe2\x80\x9d\x20\x72\x65\x70\x6c'\ -b'\x69\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x63\x68\x65\x65'\ -b'\x72\x66\x75\x6c\x6c\x79\x2e\x20\xe2\x80\x9c\x54\x68\x65\x79\x20'\ -b'\x73\x61\x79\x2c\x0d\x0a\xe2\x80\x98\x5f\x57\x68\x79\x5f\x20\x63'\ -b'\x61\x6e\xe2\x80\x99\x74\x20\x66\x65\x6c\x6c\x6f\x77\x73\x20\x62'\ -b'\x65\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x74\x6f\x20\x64\x6f\x20'\ -b'\x77\x68\x61\x74\x20\x74\x68\x65\x79\x20\x6c\x69\x6b\x65\x20\x5f'\ -b'\x77\x68\x65\x6e\x5f\x20\x74\x68\x65\x79\x20\x6c\x69\x6b\x65\x0d'\ -b'\x0a\x61\x6e\x64\x20\x5f\x61\x73\x5f\x20\x74\x68\x65\x79\x20\x6c'\ -b'\x69\x6b\x65\x2c\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20'\ -b'\x6f\x74\x68\x65\x72\x20\x66\x65\x6c\x6c\x6f\x77\x73\x20\x73\x69'\ -b'\x74\x74\x69\x6e\x67\x20\x6f\x6e\x20\x62\x61\x6e\x6b\x73\x20\x61'\ -b'\x6e\x64\x0d\x0a\x77\x61\x74\x63\x68\x69\x6e\x67\x20\x74\x68\x65'\ -b'\x6d\x20\x61\x6c\x6c\x20\x74\x68\x65\x20\x74\x69\x6d\x65\x20\x61'\ -b'\x6e\x64\x20\x6d\x61\x6b\x69\x6e\x67\x20\x72\x65\x6d\x61\x72\x6b'\ -b'\x73\x20\x61\x6e\x64\x20\x70\x6f\x65\x74\x72\x79\x20\x61\x6e\x64'\ -b'\x20\x74\x68\x69\x6e\x67\x73\x0d\x0a\x61\x62\x6f\x75\x74\x20\x74'\ -b'\x68\x65\x6d\x3f\x20\x57\x68\x61\x74\x20\x5f\x6e\x6f\x6e\x73\x65'\ -b'\x6e\x73\x65\x5f\x20\x69\x74\x20\x61\x6c\x6c\x20\x69\x73\x21\xe2'\ -b'\x80\x99\x20\x54\x68\x61\x74\xe2\x80\x99\x73\x20\x77\x68\x61\x74'\ -b'\x20\x74\x68\x65\x20\x64\x75\x63\x6b\x73\x20\x73\x61\x79\x2e\xe2'\ -b'\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x53\x6f\x20\x69\x74\x20\x69'\ -b'\x73\x2c\x20\x73\x6f\x20\x69\x74\x20\x69\x73\x2c\xe2\x80\x9d\x20'\ -b'\x73\x61\x69\x64\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2c\x20\x77'\ -b'\x69\x74\x68\x20\x67\x72\x65\x61\x74\x20\x68\x65\x61\x72\x74\x69'\ -b'\x6e\x65\x73\x73\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4e\x6f\x2c\x20'\ -b'\x69\x74\x20\x69\x73\x6e\xe2\x80\x99\x74\x21\xe2\x80\x9d\x20\x63'\ -b'\x72\x69\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x69\x6e\x64'\ -b'\x69\x67\x6e\x61\x6e\x74\x6c\x79\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x57\x65\x6c\x6c\x20\x74\x68\x65\x6e\x2c\x20\x69\x74\x20\x69\x73'\ -b'\x6e\xe2\x80\x99\x74\x2c\x20\x69\x74\x20\x69\x73\x6e\xe2\x80\x99'\ -b'\x74\x2c\xe2\x80\x9d\x20\x72\x65\x70\x6c\x69\x65\x64\x20\x74\x68'\ -b'\x65\x20\x4d\x6f\x6c\x65\x20\x73\x6f\x6f\x74\x68\x69\x6e\x67\x6c'\ -b'\x79\x2e\x20\xe2\x80\x9c\x42\x75\x74\x20\x77\x68\x61\x74\x0d\x0a'\ -b'\x49\x20\x77\x61\x6e\x74\x65\x64\x20\x74\x6f\x20\x61\x73\x6b\x20'\ -b'\x79\x6f\x75\x20\x77\x61\x73\x2c\x20\x77\x6f\x6e\xe2\x80\x99\x74'\ -b'\x20\x79\x6f\x75\x20\x74\x61\x6b\x65\x20\x6d\x65\x20\x74\x6f\x20'\ -b'\x63\x61\x6c\x6c\x20\x6f\x6e\x20\x4d\x72\x2e\x20\x54\x6f\x61\x64'\ -b'\x3f\x20\x49\xe2\x80\x99\x76\x65\x0d\x0a\x68\x65\x61\x72\x64\x20'\ -b'\x73\x6f\x20\x6d\x75\x63\x68\x20\x61\x62\x6f\x75\x74\x20\x68\x69'\ -b'\x6d\x2c\x20\x61\x6e\x64\x20\x49\x20\x64\x6f\x20\x73\x6f\x20\x77'\ -b'\x61\x6e\x74\x20\x74\x6f\x20\x6d\x61\x6b\x65\x20\x68\x69\x73\x20'\ -b'\x61\x63\x71\x75\x61\x69\x6e\x74\x61\x6e\x63\x65\x2e\xe2\x80\x9d'\ -b'\x0d\x0a\x0d\x0a\xe2\x80\x9c\x57\x68\x79\x2c\x20\x63\x65\x72\x74'\ -b'\x61\x69\x6e\x6c\x79\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74'\ -b'\x68\x65\x20\x67\x6f\x6f\x64\x2d\x6e\x61\x74\x75\x72\x65\x64\x20'\ -b'\x52\x61\x74\x2c\x20\x6a\x75\x6d\x70\x69\x6e\x67\x20\x74\x6f\x20'\ -b'\x68\x69\x73\x20\x66\x65\x65\x74\x20\x61\x6e\x64\x0d\x0a\x64\x69'\ -b'\x73\x6d\x69\x73\x73\x69\x6e\x67\x20\x70\x6f\x65\x74\x72\x79\x20'\ -b'\x66\x72\x6f\x6d\x20\x68\x69\x73\x20\x6d\x69\x6e\x64\x20\x66\x6f'\ -b'\x72\x20\x74\x68\x65\x20\x64\x61\x79\x2e\x20\xe2\x80\x9c\x47\x65'\ -b'\x74\x20\x74\x68\x65\x20\x62\x6f\x61\x74\x20\x6f\x75\x74\x2c\x20'\ -b'\x61\x6e\x64\x0d\x0a\x77\x65\xe2\x80\x99\x6c\x6c\x20\x70\x61\x64'\ -b'\x64\x6c\x65\x20\x75\x70\x20\x74\x68\x65\x72\x65\x20\x61\x74\x20'\ -b'\x6f\x6e\x63\x65\x2e\x20\x49\x74\xe2\x80\x99\x73\x20\x6e\x65\x76'\ -b'\x65\x72\x20\x74\x68\x65\x20\x77\x72\x6f\x6e\x67\x20\x74\x69\x6d'\ -b'\x65\x20\x74\x6f\x20\x63\x61\x6c\x6c\x20\x6f\x6e\x0d\x0a\x54\x6f'\ -b'\x61\x64\x2e\x20\x45\x61\x72\x6c\x79\x20\x6f\x72\x20\x6c\x61\x74'\ -b'\x65\x20\x68\x65\xe2\x80\x99\x73\x20\x61\x6c\x77\x61\x79\x73\x20'\ -b'\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x66\x65\x6c\x6c\x6f\x77\x2e'\ -b'\x20\x41\x6c\x77\x61\x79\x73\x20\x67\x6f\x6f\x64\x2d\x74\x65\x6d'\ -b'\x70\x65\x72\x65\x64\x2c\x0d\x0a\x61\x6c\x77\x61\x79\x73\x20\x67'\ -b'\x6c\x61\x64\x20\x74\x6f\x20\x73\x65\x65\x20\x79\x6f\x75\x2c\x20'\ -b'\x61\x6c\x77\x61\x79\x73\x20\x73\x6f\x72\x72\x79\x20\x77\x68\x65'\ -b'\x6e\x20\x79\x6f\x75\x20\x67\x6f\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a'\ -b'\xe2\x80\x9c\x48\x65\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20'\ -b'\x76\x65\x72\x79\x20\x6e\x69\x63\x65\x20\x61\x6e\x69\x6d\x61\x6c'\ -b'\x2c\xe2\x80\x9d\x20\x6f\x62\x73\x65\x72\x76\x65\x64\x20\x74\x68'\ -b'\x65\x20\x4d\x6f\x6c\x65\x2c\x20\x61\x73\x20\x68\x65\x20\x67\x6f'\ -b'\x74\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x0d\x0a\x62\x6f\x61\x74'\ -b'\x20\x61\x6e\x64\x20\x74\x6f\x6f\x6b\x20\x74\x68\x65\x20\x73\x63'\ -b'\x75\x6c\x6c\x73\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x68\x65\x20'\ -b'\x52\x61\x74\x20\x73\x65\x74\x74\x6c\x65\x64\x20\x68\x69\x6d\x73'\ -b'\x65\x6c\x66\x20\x63\x6f\x6d\x66\x6f\x72\x74\x61\x62\x6c\x79\x20'\ -b'\x69\x6e\x0d\x0a\x74\x68\x65\x20\x73\x74\x65\x72\x6e\x2e\x0d\x0a'\ -b'\x0d\x0a\xe2\x80\x9c\x48\x65\x20\x69\x73\x20\x69\x6e\x64\x65\x65'\ -b'\x64\x20\x74\x68\x65\x20\x62\x65\x73\x74\x20\x6f\x66\x20\x61\x6e'\ -b'\x69\x6d\x61\x6c\x73\x2c\xe2\x80\x9d\x20\x72\x65\x70\x6c\x69\x65'\ -b'\x64\x20\x52\x61\x74\x2e\x20\xe2\x80\x9c\x53\x6f\x20\x73\x69\x6d'\ -b'\x70\x6c\x65\x2c\x20\x73\x6f\x0d\x0a\x67\x6f\x6f\x64\x2d\x6e\x61'\ -b'\x74\x75\x72\x65\x64\x2c\x20\x61\x6e\x64\x20\x73\x6f\x20\x61\x66'\ -b'\x66\x65\x63\x74\x69\x6f\x6e\x61\x74\x65\x2e\x20\x50\x65\x72\x68'\ -b'\x61\x70\x73\x20\x68\x65\xe2\x80\x99\x73\x20\x6e\x6f\x74\x20\x76'\ -b'\x65\x72\x79\x20\x63\x6c\x65\x76\x65\x72\xe2\x80\x94\x77\x65\x0d'\ -b'\x0a\x63\x61\x6e\xe2\x80\x99\x74\x20\x61\x6c\x6c\x20\x62\x65\x20'\ -b'\x67\x65\x6e\x69\x75\x73\x65\x73\x3b\x20\x61\x6e\x64\x20\x69\x74'\ -b'\x20\x6d\x61\x79\x20\x62\x65\x20\x74\x68\x61\x74\x20\x68\x65\x20'\ -b'\x69\x73\x20\x62\x6f\x74\x68\x20\x62\x6f\x61\x73\x74\x66\x75\x6c'\ -b'\x20\x61\x6e\x64\x0d\x0a\x63\x6f\x6e\x63\x65\x69\x74\x65\x64\x2e'\ -b'\x20\x42\x75\x74\x20\x68\x65\x20\x68\x61\x73\x20\x67\x6f\x74\x20'\ -b'\x73\x6f\x6d\x65\x20\x67\x72\x65\x61\x74\x20\x71\x75\x61\x6c\x69'\ -b'\x74\x69\x65\x73\x2c\x20\x68\x61\x73\x20\x54\x6f\x61\x64\x79\x2e'\ -b'\xe2\x80\x9d\x0d\x0a\x0d\x0a\x52\x6f\x75\x6e\x64\x69\x6e\x67\x20'\ -b'\x61\x20\x62\x65\x6e\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x72\x69'\ -b'\x76\x65\x72\x2c\x20\x74\x68\x65\x79\x20\x63\x61\x6d\x65\x20\x69'\ -b'\x6e\x20\x73\x69\x67\x68\x74\x20\x6f\x66\x20\x61\x20\x68\x61\x6e'\ -b'\x64\x73\x6f\x6d\x65\x2c\x0d\x0a\x64\x69\x67\x6e\x69\x66\x69\x65'\ -b'\x64\x20\x6f\x6c\x64\x20\x68\x6f\x75\x73\x65\x20\x6f\x66\x20\x6d'\ -b'\x65\x6c\x6c\x6f\x77\x65\x64\x20\x72\x65\x64\x20\x62\x72\x69\x63'\ -b'\x6b\x2c\x20\x77\x69\x74\x68\x20\x77\x65\x6c\x6c\x2d\x6b\x65\x70'\ -b'\x74\x20\x6c\x61\x77\x6e\x73\x0d\x0a\x72\x65\x61\x63\x68\x69\x6e'\ -b'\x67\x20\x64\x6f\x77\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x77\x61'\ -b'\x74\x65\x72\xe2\x80\x99\x73\x20\x65\x64\x67\x65\x2e\x0d\x0a\x0d'\ -b'\x0a\xe2\x80\x9c\x54\x68\x65\x72\x65\xe2\x80\x99\x73\x20\x54\x6f'\ -b'\x61\x64\x20\x48\x61\x6c\x6c\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64'\ -b'\x20\x74\x68\x65\x20\x52\x61\x74\x3b\x20\xe2\x80\x9c\x61\x6e\x64'\ -b'\x20\x74\x68\x61\x74\x20\x63\x72\x65\x65\x6b\x20\x6f\x6e\x20\x74'\ -b'\x68\x65\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x65\x72\x65\x0d\x0a'\ -b'\x74\x68\x65\x20\x6e\x6f\x74\x69\x63\x65\x2d\x62\x6f\x61\x72\x64'\ -b'\x20\x73\x61\x79\x73\x2c\x20\xe2\x80\x98\x50\x72\x69\x76\x61\x74'\ -b'\x65\x2e\x20\x4e\x6f\x20\x6c\x61\x6e\x64\x69\x6e\x67\x20\x61\x6c'\ -b'\x6c\x6f\x77\x65\x64\x2c\xe2\x80\x99\x20\x6c\x65\x61\x64\x73\x20'\ -b'\x74\x6f\x20\x68\x69\x73\x0d\x0a\x62\x6f\x61\x74\x2d\x68\x6f\x75'\ -b'\x73\x65\x2c\x20\x77\x68\x65\x72\x65\x20\x77\x65\xe2\x80\x99\x6c'\ -b'\x6c\x20\x6c\x65\x61\x76\x65\x20\x74\x68\x65\x20\x62\x6f\x61\x74'\ -b'\x2e\x20\x54\x68\x65\x20\x73\x74\x61\x62\x6c\x65\x73\x20\x61\x72'\ -b'\x65\x20\x6f\x76\x65\x72\x20\x74\x68\x65\x72\x65\x20\x74\x6f\x0d'\ -b'\x0a\x74\x68\x65\x20\x72\x69\x67\x68\x74\x2e\x20\x54\x68\x61\x74'\ -b'\xe2\x80\x99\x73\x20\x74\x68\x65\x20\x62\x61\x6e\x71\x75\x65\x74'\ -b'\x69\x6e\x67\x2d\x68\x61\x6c\x6c\x20\x79\x6f\x75\xe2\x80\x99\x72'\ -b'\x65\x20\x6c\x6f\x6f\x6b\x69\x6e\x67\x20\x61\x74\x20\x6e\x6f\x77'\ -b'\xe2\x80\x94\x76\x65\x72\x79\x20\x6f\x6c\x64\x2c\x0d\x0a\x74\x68'\ -b'\x61\x74\x20\x69\x73\x2e\x20\x54\x6f\x61\x64\x20\x69\x73\x20\x72'\ -b'\x61\x74\x68\x65\x72\x20\x72\x69\x63\x68\x2c\x20\x79\x6f\x75\x20'\ -b'\x6b\x6e\x6f\x77\x2c\x20\x61\x6e\x64\x20\x74\x68\x69\x73\x20\x69'\ -b'\x73\x20\x72\x65\x61\x6c\x6c\x79\x20\x6f\x6e\x65\x20\x6f\x66\x20'\ -b'\x74\x68\x65\x0d\x0a\x6e\x69\x63\x65\x73\x74\x20\x68\x6f\x75\x73'\ -b'\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x73\x65\x20\x70\x61\x72\x74'\ -b'\x73\x2c\x20\x74\x68\x6f\x75\x67\x68\x20\x77\x65\x20\x6e\x65\x76'\ -b'\x65\x72\x20\x61\x64\x6d\x69\x74\x20\x61\x73\x20\x6d\x75\x63\x68'\ -b'\x20\x74\x6f\x20\x54\x6f\x61\x64\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a'\ -b'\x54\x68\x65\x79\x20\x67\x6c\x69\x64\x65\x64\x20\x75\x70\x20\x74'\ -b'\x68\x65\x20\x63\x72\x65\x65\x6b\x2c\x20\x61\x6e\x64\x20\x74\x68'\ -b'\x65\x20\x4d\x6f\x6c\x65\x20\x73\x68\x69\x70\x70\x65\x64\x20\x68'\ -b'\x69\x73\x20\x73\x63\x75\x6c\x6c\x73\x20\x61\x73\x20\x74\x68\x65'\ -b'\x79\x0d\x0a\x70\x61\x73\x73\x65\x64\x20\x69\x6e\x74\x6f\x20\x74'\ -b'\x68\x65\x20\x73\x68\x61\x64\x6f\x77\x20\x6f\x66\x20\x61\x20\x6c'\ -b'\x61\x72\x67\x65\x20\x62\x6f\x61\x74\x2d\x68\x6f\x75\x73\x65\x2e'\ -b'\x20\x48\x65\x72\x65\x20\x74\x68\x65\x79\x20\x73\x61\x77\x20\x6d'\ -b'\x61\x6e\x79\x0d\x0a\x68\x61\x6e\x64\x73\x6f\x6d\x65\x20\x62\x6f'\ -b'\x61\x74\x73\x2c\x20\x73\x6c\x75\x6e\x67\x20\x66\x72\x6f\x6d\x20'\ -b'\x74\x68\x65\x20\x63\x72\x6f\x73\x73\x20\x62\x65\x61\x6d\x73\x20'\ -b'\x6f\x72\x20\x68\x61\x75\x6c\x65\x64\x20\x75\x70\x20\x6f\x6e\x20'\ -b'\x61\x20\x73\x6c\x69\x70\x2c\x20\x62\x75\x74\x0d\x0a\x6e\x6f\x6e'\ -b'\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x77\x61\x74\x65\x72\x3b\x20'\ -b'\x61\x6e\x64\x20\x74\x68\x65\x20\x70\x6c\x61\x63\x65\x20\x68\x61'\ -b'\x64\x20\x61\x6e\x20\x75\x6e\x75\x73\x65\x64\x20\x61\x6e\x64\x20'\ -b'\x61\x20\x64\x65\x73\x65\x72\x74\x65\x64\x20\x61\x69\x72\x2e\x0d'\ -b'\x0a\x0d\x0a\x54\x68\x65\x20\x52\x61\x74\x20\x6c\x6f\x6f\x6b\x65'\ -b'\x64\x20\x61\x72\x6f\x75\x6e\x64\x20\x68\x69\x6d\x2e\x20\xe2\x80'\ -b'\x9c\x49\x20\x75\x6e\x64\x65\x72\x73\x74\x61\x6e\x64\x2c\xe2\x80'\ -b'\x9d\x20\x73\x61\x69\x64\x20\x68\x65\x2e\x20\xe2\x80\x9c\x42\x6f'\ -b'\x61\x74\x69\x6e\x67\x20\x69\x73\x20\x70\x6c\x61\x79\x65\x64\x0d'\ -b'\x0a\x6f\x75\x74\x2e\x20\x48\x65\xe2\x80\x99\x73\x20\x74\x69\x72'\ -b'\x65\x64\x20\x6f\x66\x20\x69\x74\x2c\x20\x61\x6e\x64\x20\x64\x6f'\ -b'\x6e\x65\x20\x77\x69\x74\x68\x20\x69\x74\x2e\x20\x49\x20\x77\x6f'\ -b'\x6e\x64\x65\x72\x20\x77\x68\x61\x74\x20\x6e\x65\x77\x20\x66\x61'\ -b'\x64\x20\x68\x65\x20\x68\x61\x73\x0d\x0a\x74\x61\x6b\x65\x6e\x20'\ -b'\x75\x70\x20\x6e\x6f\x77\x3f\x20\x43\x6f\x6d\x65\x20\x61\x6c\x6f'\ -b'\x6e\x67\x20\x61\x6e\x64\x20\x6c\x65\x74\xe2\x80\x99\x73\x20\x6c'\ -b'\x6f\x6f\x6b\x20\x68\x69\x6d\x20\x75\x70\x2e\x20\x57\x65\x20\x73'\ -b'\x68\x61\x6c\x6c\x20\x68\x65\x61\x72\x20\x61\x6c\x6c\x20\x61\x62'\ -b'\x6f\x75\x74\x0d\x0a\x69\x74\x20\x71\x75\x69\x74\x65\x20\x73\x6f'\ -b'\x6f\x6e\x20\x65\x6e\x6f\x75\x67\x68\x2e\xe2\x80\x9d\x0d\x0a\x0d'\ -b'\x0a\x54\x68\x65\x79\x20\x64\x69\x73\x65\x6d\x62\x61\x72\x6b\x65'\ -b'\x64\x2c\x20\x61\x6e\x64\x20\x73\x74\x72\x6f\x6c\x6c\x65\x64\x20'\ -b'\x61\x63\x72\x6f\x73\x73\x20\x74\x68\x65\x20\x67\x61\x79\x20\x66'\ -b'\x6c\x6f\x77\x65\x72\x2d\x64\x65\x63\x6b\x65\x64\x20\x6c\x61\x77'\ -b'\x6e\x73\x20\x69\x6e\x0d\x0a\x73\x65\x61\x72\x63\x68\x20\x6f\x66'\ -b'\x20\x54\x6f\x61\x64\x2c\x20\x77\x68\x6f\x6d\x20\x74\x68\x65\x79'\ -b'\x20\x70\x72\x65\x73\x65\x6e\x74\x6c\x79\x20\x68\x61\x70\x70\x65'\ -b'\x6e\x65\x64\x20\x75\x70\x6f\x6e\x20\x72\x65\x73\x74\x69\x6e\x67'\ -b'\x20\x69\x6e\x20\x61\x20\x77\x69\x63\x6b\x65\x72\x0d\x0a\x67\x61'\ -b'\x72\x64\x65\x6e\x2d\x63\x68\x61\x69\x72\x2c\x20\x77\x69\x74\x68'\ -b'\x20\x61\x20\x70\x72\x65\x2d\x6f\x63\x63\x75\x70\x69\x65\x64\x20'\ -b'\x65\x78\x70\x72\x65\x73\x73\x69\x6f\x6e\x20\x6f\x66\x20\x66\x61'\ -b'\x63\x65\x2c\x20\x61\x6e\x64\x20\x61\x20\x6c\x61\x72\x67\x65\x20'\ -b'\x6d\x61\x70\x0d\x0a\x73\x70\x72\x65\x61\x64\x20\x6f\x75\x74\x20'\ -b'\x6f\x6e\x20\x68\x69\x73\x20\x6b\x6e\x65\x65\x73\x2e\x0d\x0a\x0d'\ -b'\x0a\xe2\x80\x9c\x48\x6f\x6f\x72\x61\x79\x21\xe2\x80\x9d\x20\x68'\ -b'\x65\x20\x63\x72\x69\x65\x64\x2c\x20\x6a\x75\x6d\x70\x69\x6e\x67'\ -b'\x20\x75\x70\x20\x6f\x6e\x20\x73\x65\x65\x69\x6e\x67\x20\x74\x68'\ -b'\x65\x6d\x2c\x20\xe2\x80\x9c\x74\x68\x69\x73\x20\x69\x73\x20\x73'\ -b'\x70\x6c\x65\x6e\x64\x69\x64\x21\xe2\x80\x9d\x20\x48\x65\x0d\x0a'\ -b'\x73\x68\x6f\x6f\x6b\x20\x74\x68\x65\x20\x70\x61\x77\x73\x20\x6f'\ -b'\x66\x20\x62\x6f\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x6d\x20\x77'\ -b'\x61\x72\x6d\x6c\x79\x2c\x20\x6e\x65\x76\x65\x72\x20\x77\x61\x69'\ -b'\x74\x69\x6e\x67\x20\x66\x6f\x72\x20\x61\x6e\x0d\x0a\x69\x6e\x74'\ -b'\x72\x6f\x64\x75\x63\x74\x69\x6f\x6e\x20\x74\x6f\x20\x74\x68\x65'\ -b'\x20\x4d\x6f\x6c\x65\x2e\x20\xe2\x80\x9c\x48\x6f\x77\x20\x5f\x6b'\ -b'\x69\x6e\x64\x5f\x20\x6f\x66\x20\x79\x6f\x75\x21\xe2\x80\x9d\x20'\ -b'\x68\x65\x20\x77\x65\x6e\x74\x20\x6f\x6e\x2c\x20\x64\x61\x6e\x63'\ -b'\x69\x6e\x67\x0d\x0a\x72\x6f\x75\x6e\x64\x20\x74\x68\x65\x6d\x2e'\ -b'\x20\xe2\x80\x9c\x49\x20\x77\x61\x73\x20\x6a\x75\x73\x74\x20\x67'\ -b'\x6f\x69\x6e\x67\x20\x74\x6f\x20\x73\x65\x6e\x64\x20\x61\x20\x62'\ -b'\x6f\x61\x74\x20\x64\x6f\x77\x6e\x20\x74\x68\x65\x20\x72\x69\x76'\ -b'\x65\x72\x20\x66\x6f\x72\x20\x79\x6f\x75\x2c\x0d\x0a\x52\x61\x74'\ -b'\x74\x79\x2c\x20\x77\x69\x74\x68\x20\x73\x74\x72\x69\x63\x74\x20'\ -b'\x6f\x72\x64\x65\x72\x73\x20\x74\x68\x61\x74\x20\x79\x6f\x75\x20'\ -b'\x77\x65\x72\x65\x20\x74\x6f\x20\x62\x65\x20\x66\x65\x74\x63\x68'\ -b'\x65\x64\x20\x75\x70\x20\x68\x65\x72\x65\x20\x61\x74\x20\x6f\x6e'\ -b'\x63\x65\x2c\x0d\x0a\x77\x68\x61\x74\x65\x76\x65\x72\x20\x79\x6f'\ -b'\x75\x20\x77\x65\x72\x65\x20\x64\x6f\x69\x6e\x67\x2e\x20\x49\x20'\ -b'\x77\x61\x6e\x74\x20\x79\x6f\x75\x20\x62\x61\x64\x6c\x79\xe2\x80'\ -b'\x94\x62\x6f\x74\x68\x20\x6f\x66\x20\x79\x6f\x75\x2e\x20\x4e\x6f'\ -b'\x77\x20\x77\x68\x61\x74\x20\x77\x69\x6c\x6c\x0d\x0a\x79\x6f\x75'\ -b'\x20\x74\x61\x6b\x65\x3f\x20\x43\x6f\x6d\x65\x20\x69\x6e\x73\x69'\ -b'\x64\x65\x20\x61\x6e\x64\x20\x68\x61\x76\x65\x20\x73\x6f\x6d\x65'\ -b'\x74\x68\x69\x6e\x67\x21\x20\x59\x6f\x75\x20\x64\x6f\x6e\xe2\x80'\ -b'\x99\x74\x20\x6b\x6e\x6f\x77\x20\x68\x6f\x77\x20\x6c\x75\x63\x6b'\ -b'\x79\x20\x69\x74\x0d\x0a\x69\x73\x2c\x20\x79\x6f\x75\x72\x20\x74'\ -b'\x75\x72\x6e\x69\x6e\x67\x20\x75\x70\x20\x6a\x75\x73\x74\x20\x6e'\ -b'\x6f\x77\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4c\x65\x74'\ -b'\xe2\x80\x99\x73\x20\x73\x69\x74\x20\x71\x75\x69\x65\x74\x20\x61'\ -b'\x20\x62\x69\x74\x2c\x20\x54\x6f\x61\x64\x79\x21\xe2\x80\x9d\x20'\ -b'\x73\x61\x69\x64\x20\x74\x68\x65\x20\x52\x61\x74\x2c\x20\x74\x68'\ -b'\x72\x6f\x77\x69\x6e\x67\x20\x68\x69\x6d\x73\x65\x6c\x66\x20\x69'\ -b'\x6e\x74\x6f\x20\x61\x6e\x0d\x0a\x65\x61\x73\x79\x20\x63\x68\x61'\ -b'\x69\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x68\x65\x20\x4d\x6f'\ -b'\x6c\x65\x20\x74\x6f\x6f\x6b\x20\x61\x6e\x6f\x74\x68\x65\x72\x20'\ -b'\x62\x79\x20\x74\x68\x65\x20\x73\x69\x64\x65\x20\x6f\x66\x20\x68'\ -b'\x69\x6d\x20\x61\x6e\x64\x20\x6d\x61\x64\x65\x0d\x0a\x73\x6f\x6d'\ -b'\x65\x20\x63\x69\x76\x69\x6c\x20\x72\x65\x6d\x61\x72\x6b\x20\x61'\ -b'\x62\x6f\x75\x74\x20\x54\x6f\x61\x64\xe2\x80\x99\x73\x20\xe2\x80'\ -b'\x9c\x64\x65\x6c\x69\x67\x68\x74\x66\x75\x6c\x20\x72\x65\x73\x69'\ -b'\x64\x65\x6e\x63\x65\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x46\x69\x6e\x65\x73\x74\x20\x68\x6f\x75\x73\x65\x20\x6f\x6e\x20'\ -b'\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x72\x69\x76\x65\x72\x2c'\ -b'\xe2\x80\x9d\x20\x63\x72\x69\x65\x64\x20\x54\x6f\x61\x64\x20\x62'\ -b'\x6f\x69\x73\x74\x65\x72\x6f\x75\x73\x6c\x79\x2e\x20\xe2\x80\x9c'\ -b'\x4f\x72\x0d\x0a\x61\x6e\x79\x77\x68\x65\x72\x65\x20\x65\x6c\x73'\ -b'\x65\x2c\x20\x66\x6f\x72\x20\x74\x68\x61\x74\x20\x6d\x61\x74\x74'\ -b'\x65\x72\x2c\xe2\x80\x9d\x20\x68\x65\x20\x63\x6f\x75\x6c\x64\x20'\ -b'\x6e\x6f\x74\x20\x68\x65\x6c\x70\x20\x61\x64\x64\x69\x6e\x67\x2e'\ -b'\x0d\x0a\x0d\x0a\x48\x65\x72\x65\x20\x74\x68\x65\x20\x52\x61\x74'\ -b'\x20\x6e\x75\x64\x67\x65\x64\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65'\ -b'\x2e\x20\x55\x6e\x66\x6f\x72\x74\x75\x6e\x61\x74\x65\x6c\x79\x20'\ -b'\x74\x68\x65\x20\x54\x6f\x61\x64\x20\x73\x61\x77\x20\x68\x69\x6d'\ -b'\x20\x64\x6f\x20\x69\x74\x2c\x20\x61\x6e\x64\x0d\x0a\x74\x75\x72'\ -b'\x6e\x65\x64\x20\x76\x65\x72\x79\x20\x72\x65\x64\x2e\x20\x54\x68'\ -b'\x65\x72\x65\x20\x77\x61\x73\x20\x61\x20\x6d\x6f\x6d\x65\x6e\x74'\ -b'\xe2\x80\x99\x73\x20\x70\x61\x69\x6e\x66\x75\x6c\x20\x73\x69\x6c'\ -b'\x65\x6e\x63\x65\x2e\x20\x54\x68\x65\x6e\x20\x54\x6f\x61\x64\x20'\ -b'\x62\x75\x72\x73\x74\x0d\x0a\x6f\x75\x74\x20\x6c\x61\x75\x67\x68'\ -b'\x69\x6e\x67\x2e\x20\xe2\x80\x9c\x41\x6c\x6c\x20\x72\x69\x67\x68'\ -b'\x74\x2c\x20\x52\x61\x74\x74\x79\x2c\xe2\x80\x9d\x20\x68\x65\x20'\ -b'\x73\x61\x69\x64\x2e\x20\xe2\x80\x9c\x49\x74\xe2\x80\x99\x73\x20'\ -b'\x6f\x6e\x6c\x79\x20\x6d\x79\x20\x77\x61\x79\x2c\x20\x79\x6f\x75'\ -b'\x20\x6b\x6e\x6f\x77\x2e\x0d\x0a\x41\x6e\x64\x20\x69\x74\xe2\x80'\ -b'\x99\x73\x20\x6e\x6f\x74\x20\x73\x75\x63\x68\x20\x61\x20\x76\x65'\ -b'\x72\x79\x20\x62\x61\x64\x20\x68\x6f\x75\x73\x65\x2c\x20\x69\x73'\ -b'\x20\x69\x74\x3f\x20\x59\x6f\x75\x20\x6b\x6e\x6f\x77\x20\x79\x6f'\ -b'\x75\x20\x72\x61\x74\x68\x65\x72\x20\x6c\x69\x6b\x65\x20\x69\x74'\ -b'\x0d\x0a\x79\x6f\x75\x72\x73\x65\x6c\x66\x2e\x20\x4e\x6f\x77\x2c'\ -b'\x20\x6c\x6f\x6f\x6b\x20\x68\x65\x72\x65\x2e\x20\x4c\x65\x74\xe2'\ -b'\x80\x99\x73\x20\x62\x65\x20\x73\x65\x6e\x73\x69\x62\x6c\x65\x2e'\ -b'\x20\x59\x6f\x75\x20\x61\x72\x65\x20\x74\x68\x65\x20\x76\x65\x72'\ -b'\x79\x20\x61\x6e\x69\x6d\x61\x6c\x73\x20\x49\x0d\x0a\x77\x61\x6e'\ -b'\x74\x65\x64\x2e\x20\x59\x6f\x75\xe2\x80\x99\x76\x65\x20\x67\x6f'\ -b'\x74\x20\x74\x6f\x20\x68\x65\x6c\x70\x20\x6d\x65\x2e\x20\x49\x74'\ -b'\xe2\x80\x99\x73\x20\x6d\x6f\x73\x74\x20\x69\x6d\x70\x6f\x72\x74'\ -b'\x61\x6e\x74\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x49\x74'\ -b'\xe2\x80\x99\x73\x20\x61\x62\x6f\x75\x74\x20\x79\x6f\x75\x72\x20'\ -b'\x72\x6f\x77\x69\x6e\x67\x2c\x20\x49\x20\x73\x75\x70\x70\x6f\x73'\ -b'\x65\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x52'\ -b'\x61\x74\x2c\x20\x77\x69\x74\x68\x20\x61\x6e\x20\x69\x6e\x6e\x6f'\ -b'\x63\x65\x6e\x74\x0d\x0a\x61\x69\x72\x2e\x20\xe2\x80\x9c\x59\x6f'\ -b'\x75\xe2\x80\x99\x72\x65\x20\x67\x65\x74\x74\x69\x6e\x67\x20\x6f'\ -b'\x6e\x20\x66\x61\x69\x72\x6c\x79\x20\x77\x65\x6c\x6c\x2c\x20\x74'\ -b'\x68\x6f\x75\x67\x68\x20\x79\x6f\x75\x20\x73\x70\x6c\x61\x73\x68'\ -b'\x20\x61\x20\x67\x6f\x6f\x64\x20\x62\x69\x74\x0d\x0a\x73\x74\x69'\ -b'\x6c\x6c\x2e\x20\x57\x69\x74\x68\x20\x61\x20\x67\x72\x65\x61\x74'\ -b'\x20\x64\x65\x61\x6c\x20\x6f\x66\x20\x70\x61\x74\x69\x65\x6e\x63'\ -b'\x65\x2c\x20\x61\x6e\x64\x20\x61\x6e\x79\x20\x71\x75\x61\x6e\x74'\ -b'\x69\x74\x79\x20\x6f\x66\x20\x63\x6f\x61\x63\x68\x69\x6e\x67\x2c'\ -b'\x20\x79\x6f\x75\x0d\x0a\x6d\x61\x79\xe2\x80\x94\xe2\x80\x94\xe2'\ -b'\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4f\x2c\x20\x70\x6f\x6f\x68'\ -b'\x21\x20\x62\x6f\x61\x74\x69\x6e\x67\x21\xe2\x80\x9d\x20\x69\x6e'\ -b'\x74\x65\x72\x72\x75\x70\x74\x65\x64\x20\x74\x68\x65\x20\x54\x6f'\ -b'\x61\x64\x2c\x20\x69\x6e\x20\x67\x72\x65\x61\x74\x20\x64\x69\x73'\ -b'\x67\x75\x73\x74\x2e\x20\xe2\x80\x9c\x53\x69\x6c\x6c\x79\x0d\x0a'\ -b'\x62\x6f\x79\x69\x73\x68\x20\x61\x6d\x75\x73\x65\x6d\x65\x6e\x74'\ -b'\x2e\x20\x49\xe2\x80\x99\x76\x65\x20\x67\x69\x76\x65\x6e\x20\x74'\ -b'\x68\x61\x74\x20\x75\x70\x20\x5f\x6c\x6f\x6e\x67\x5f\x20\x61\x67'\ -b'\x6f\x2e\x20\x53\x68\x65\x65\x72\x20\x77\x61\x73\x74\x65\x20\x6f'\ -b'\x66\x20\x74\x69\x6d\x65\x2c\x0d\x0a\x74\x68\x61\x74\xe2\x80\x99'\ -b'\x73\x20\x77\x68\x61\x74\x20\x69\x74\x20\x69\x73\x2e\x20\x49\x74'\ -b'\x20\x6d\x61\x6b\x65\x73\x20\x6d\x65\x20\x64\x6f\x77\x6e\x72\x69'\ -b'\x67\x68\x74\x20\x73\x6f\x72\x72\x79\x20\x74\x6f\x20\x73\x65\x65'\ -b'\x20\x79\x6f\x75\x20\x66\x65\x6c\x6c\x6f\x77\x73\x2c\x20\x77\x68'\ -b'\x6f\x0d\x0a\x6f\x75\x67\x68\x74\x20\x74\x6f\x20\x6b\x6e\x6f\x77'\ -b'\x20\x62\x65\x74\x74\x65\x72\x2c\x20\x73\x70\x65\x6e\x64\x69\x6e'\ -b'\x67\x20\x61\x6c\x6c\x20\x79\x6f\x75\x72\x20\x65\x6e\x65\x72\x67'\ -b'\x69\x65\x73\x20\x69\x6e\x20\x74\x68\x61\x74\x20\x61\x69\x6d\x6c'\ -b'\x65\x73\x73\x0d\x0a\x6d\x61\x6e\x6e\x65\x72\x2e\x20\x4e\x6f\x2c'\ -b'\x20\x49\xe2\x80\x99\x76\x65\x20\x64\x69\x73\x63\x6f\x76\x65\x72'\ -b'\x65\x64\x20\x74\x68\x65\x20\x72\x65\x61\x6c\x20\x74\x68\x69\x6e'\ -b'\x67\x2c\x20\x74\x68\x65\x20\x6f\x6e\x6c\x79\x20\x67\x65\x6e\x75'\ -b'\x69\x6e\x65\x20\x6f\x63\x63\x75\x70\x61\x74\x69\x6f\x6e\x0d\x0a'\ -b'\x66\x6f\x72\x20\x61\x20\x6c\x69\x66\x65\x20\x74\x69\x6d\x65\x2e'\ -b'\x20\x49\x20\x70\x72\x6f\x70\x6f\x73\x65\x20\x74\x6f\x20\x64\x65'\ -b'\x76\x6f\x74\x65\x20\x74\x68\x65\x20\x72\x65\x6d\x61\x69\x6e\x64'\ -b'\x65\x72\x20\x6f\x66\x20\x6d\x69\x6e\x65\x20\x74\x6f\x20\x69\x74'\ -b'\x2c\x20\x61\x6e\x64\x0d\x0a\x63\x61\x6e\x20\x6f\x6e\x6c\x79\x20'\ -b'\x72\x65\x67\x72\x65\x74\x20\x74\x68\x65\x20\x77\x61\x73\x74\x65'\ -b'\x64\x20\x79\x65\x61\x72\x73\x20\x74\x68\x61\x74\x20\x6c\x69\x65'\ -b'\x20\x62\x65\x68\x69\x6e\x64\x20\x6d\x65\x2c\x20\x73\x71\x75\x61'\ -b'\x6e\x64\x65\x72\x65\x64\x20\x69\x6e\x0d\x0a\x74\x72\x69\x76\x69'\ -b'\x61\x6c\x69\x74\x69\x65\x73\x2e\x20\x43\x6f\x6d\x65\x20\x77\x69'\ -b'\x74\x68\x20\x6d\x65\x2c\x20\x64\x65\x61\x72\x20\x52\x61\x74\x74'\ -b'\x79\x2c\x20\x61\x6e\x64\x20\x79\x6f\x75\x72\x20\x61\x6d\x69\x61'\ -b'\x62\x6c\x65\x20\x66\x72\x69\x65\x6e\x64\x20\x61\x6c\x73\x6f\x2c'\ -b'\x0d\x0a\x69\x66\x20\x68\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20'\ -b'\x73\x6f\x20\x76\x65\x72\x79\x20\x67\x6f\x6f\x64\x2c\x20\x6a\x75'\ -b'\x73\x74\x20\x61\x73\x20\x66\x61\x72\x20\x61\x73\x20\x74\x68\x65'\ -b'\x20\x73\x74\x61\x62\x6c\x65\x2d\x79\x61\x72\x64\x2c\x20\x61\x6e'\ -b'\x64\x20\x79\x6f\x75\x0d\x0a\x73\x68\x61\x6c\x6c\x20\x73\x65\x65'\ -b'\x20\x77\x68\x61\x74\x20\x79\x6f\x75\x20\x73\x68\x61\x6c\x6c\x20'\ -b'\x73\x65\x65\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x48\x65\x20\x6c\x65'\ -b'\x64\x20\x74\x68\x65\x20\x77\x61\x79\x20\x74\x6f\x20\x74\x68\x65'\ -b'\x20\x73\x74\x61\x62\x6c\x65\x2d\x79\x61\x72\x64\x20\x61\x63\x63'\ -b'\x6f\x72\x64\x69\x6e\x67\x6c\x79\x2c\x20\x74\x68\x65\x20\x52\x61'\ -b'\x74\x20\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x77\x69\x74\x68'\ -b'\x20\x61\x0d\x0a\x6d\x6f\x73\x74\x20\x6d\x69\x73\x74\x72\x75\x73'\ -b'\x74\x66\x75\x6c\x20\x65\x78\x70\x72\x65\x73\x73\x69\x6f\x6e\x3b'\ -b'\x20\x61\x6e\x64\x20\x74\x68\x65\x72\x65\x2c\x20\x64\x72\x61\x77'\ -b'\x6e\x20\x6f\x75\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6f\x61'\ -b'\x63\x68\x20\x68\x6f\x75\x73\x65\x0d\x0a\x69\x6e\x74\x6f\x20\x74'\ -b'\x68\x65\x20\x6f\x70\x65\x6e\x2c\x20\x74\x68\x65\x79\x20\x73\x61'\ -b'\x77\x20\x61\x20\x67\x69\x70\x73\x79\x20\x63\x61\x72\x61\x76\x61'\ -b'\x6e\x2c\x20\x73\x68\x69\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20'\ -b'\x6e\x65\x77\x6e\x65\x73\x73\x2c\x20\x70\x61\x69\x6e\x74\x65\x64'\ -b'\x0d\x0a\x61\x20\x63\x61\x6e\x61\x72\x79\x2d\x79\x65\x6c\x6c\x6f'\ -b'\x77\x20\x70\x69\x63\x6b\x65\x64\x20\x6f\x75\x74\x20\x77\x69\x74'\ -b'\x68\x20\x67\x72\x65\x65\x6e\x2c\x20\x61\x6e\x64\x20\x72\x65\x64'\ -b'\x20\x77\x68\x65\x65\x6c\x73\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x54'\ -b'\x68\x65\x72\x65\x20\x79\x6f\x75\x20\x61\x72\x65\x21\xe2\x80\x9d'\ -b'\x20\x63\x72\x69\x65\x64\x20\x74\x68\x65\x20\x54\x6f\x61\x64\x2c'\ -b'\x20\x73\x74\x72\x61\x64\x64\x6c\x69\x6e\x67\x20\x61\x6e\x64\x20'\ -b'\x65\x78\x70\x61\x6e\x64\x69\x6e\x67\x20\x68\x69\x6d\x73\x65\x6c'\ -b'\x66\x2e\x0d\x0a\xe2\x80\x9c\x54\x68\x65\x72\x65\xe2\x80\x99\x73'\ -b'\x20\x72\x65\x61\x6c\x20\x6c\x69\x66\x65\x20\x66\x6f\x72\x20\x79'\ -b'\x6f\x75\x2c\x20\x65\x6d\x62\x6f\x64\x69\x65\x64\x20\x69\x6e\x20'\ -b'\x74\x68\x61\x74\x20\x6c\x69\x74\x74\x6c\x65\x20\x63\x61\x72\x74'\ -b'\x2e\x20\x54\x68\x65\x20\x6f\x70\x65\x6e\x0d\x0a\x72\x6f\x61\x64'\ -b'\x2c\x20\x74\x68\x65\x20\x64\x75\x73\x74\x79\x20\x68\x69\x67\x68'\ -b'\x77\x61\x79\x2c\x20\x74\x68\x65\x20\x68\x65\x61\x74\x68\x2c\x20'\ -b'\x74\x68\x65\x20\x63\x6f\x6d\x6d\x6f\x6e\x2c\x20\x74\x68\x65\x20'\ -b'\x68\x65\x64\x67\x65\x72\x6f\x77\x73\x2c\x20\x74\x68\x65\x0d\x0a'\ -b'\x72\x6f\x6c\x6c\x69\x6e\x67\x20\x64\x6f\x77\x6e\x73\x21\x20\x43'\ -b'\x61\x6d\x70\x73\x2c\x20\x76\x69\x6c\x6c\x61\x67\x65\x73\x2c\x20'\ -b'\x74\x6f\x77\x6e\x73\x2c\x20\x63\x69\x74\x69\x65\x73\x21\x20\x48'\ -b'\x65\x72\x65\x20\x74\x6f\x2d\x64\x61\x79\x2c\x20\x75\x70\x20\x61'\ -b'\x6e\x64\x20\x6f\x66\x66\x0d\x0a\x74\x6f\x20\x73\x6f\x6d\x65\x77'\ -b'\x68\x65\x72\x65\x20\x65\x6c\x73\x65\x20\x74\x6f\x2d\x6d\x6f\x72'\ -b'\x72\x6f\x77\x21\x20\x54\x72\x61\x76\x65\x6c\x2c\x20\x63\x68\x61'\ -b'\x6e\x67\x65\x2c\x20\x69\x6e\x74\x65\x72\x65\x73\x74\x2c\x20\x65'\ -b'\x78\x63\x69\x74\x65\x6d\x65\x6e\x74\x21\x20\x54\x68\x65\x0d\x0a'\ -b'\x77\x68\x6f\x6c\x65\x20\x77\x6f\x72\x6c\x64\x20\x62\x65\x66\x6f'\ -b'\x72\x65\x20\x79\x6f\x75\x2c\x20\x61\x6e\x64\x20\x61\x20\x68\x6f'\ -b'\x72\x69\x7a\x6f\x6e\x20\x74\x68\x61\x74\xe2\x80\x99\x73\x20\x61'\ -b'\x6c\x77\x61\x79\x73\x20\x63\x68\x61\x6e\x67\x69\x6e\x67\x21\x20'\ -b'\x41\x6e\x64\x20\x6d\x69\x6e\x64\x21\x0d\x0a\x74\x68\x69\x73\x20'\ -b'\x69\x73\x20\x74\x68\x65\x20\x76\x65\x72\x79\x20\x66\x69\x6e\x65'\ -b'\x73\x74\x20\x63\x61\x72\x74\x20\x6f\x66\x20\x69\x74\x73\x20\x73'\ -b'\x6f\x72\x74\x20\x74\x68\x61\x74\x20\x77\x61\x73\x20\x65\x76\x65'\ -b'\x72\x20\x62\x75\x69\x6c\x74\x2c\x20\x77\x69\x74\x68\x6f\x75\x74'\ -b'\x0d\x0a\x61\x6e\x79\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x2e'\ -b'\x20\x43\x6f\x6d\x65\x20\x69\x6e\x73\x69\x64\x65\x20\x61\x6e\x64'\ -b'\x20\x6c\x6f\x6f\x6b\x20\x61\x74\x20\x74\x68\x65\x20\x61\x72\x72'\ -b'\x61\x6e\x67\x65\x6d\x65\x6e\x74\x73\x2e\x20\x50\x6c\x61\x6e\x6e'\ -b'\x65\x64\x20\xe2\x80\x99\x65\x6d\x0d\x0a\x61\x6c\x6c\x20\x6d\x79'\ -b'\x73\x65\x6c\x66\x2c\x20\x49\x20\x64\x69\x64\x21\xe2\x80\x9d\x0d'\ -b'\x0a\x0d\x0a\x54\x68\x65\x20\x4d\x6f\x6c\x65\x20\x77\x61\x73\x20'\ -b'\x74\x72\x65\x6d\x65\x6e\x64\x6f\x75\x73\x6c\x79\x20\x69\x6e\x74'\ -b'\x65\x72\x65\x73\x74\x65\x64\x20\x61\x6e\x64\x20\x65\x78\x63\x69'\ -b'\x74\x65\x64\x2c\x20\x61\x6e\x64\x20\x66\x6f\x6c\x6c\x6f\x77\x65'\ -b'\x64\x20\x68\x69\x6d\x0d\x0a\x65\x61\x67\x65\x72\x6c\x79\x20\x75'\ -b'\x70\x20\x74\x68\x65\x20\x73\x74\x65\x70\x73\x20\x61\x6e\x64\x20'\ -b'\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x69\x6e\x74\x65\x72\x69\x6f'\ -b'\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x61\x72\x61\x76\x61\x6e'\ -b'\x2e\x20\x54\x68\x65\x20\x52\x61\x74\x20\x6f\x6e\x6c\x79\x0d\x0a'\ -b'\x73\x6e\x6f\x72\x74\x65\x64\x20\x61\x6e\x64\x20\x74\x68\x72\x75'\ -b'\x73\x74\x20\x68\x69\x73\x20\x68\x61\x6e\x64\x73\x20\x64\x65\x65'\ -b'\x70\x20\x69\x6e\x74\x6f\x20\x68\x69\x73\x20\x70\x6f\x63\x6b\x65'\ -b'\x74\x73\x2c\x20\x72\x65\x6d\x61\x69\x6e\x69\x6e\x67\x20\x77\x68'\ -b'\x65\x72\x65\x20\x68\x65\x0d\x0a\x77\x61\x73\x2e\x0d\x0a\x0d\x0a'\ -b'\x49\x74\x20\x77\x61\x73\x20\x69\x6e\x64\x65\x65\x64\x20\x76\x65'\ -b'\x72\x79\x20\x63\x6f\x6d\x70\x61\x63\x74\x20\x61\x6e\x64\x20\x63'\ -b'\x6f\x6d\x66\x6f\x72\x74\x61\x62\x6c\x65\x2e\x20\x4c\x69\x74\x74'\ -b'\x6c\x65\x20\x73\x6c\x65\x65\x70\x69\x6e\x67\x20\x62\x75\x6e\x6b'\ -b'\x73\xe2\x80\x94\x61\x0d\x0a\x6c\x69\x74\x74\x6c\x65\x20\x74\x61'\ -b'\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x66\x6f\x6c\x64\x65\x64\x20'\ -b'\x75\x70\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x74\x68\x65\x20\x77'\ -b'\x61\x6c\x6c\xe2\x80\x94\x61\x20\x63\x6f\x6f\x6b\x69\x6e\x67\x2d'\ -b'\x73\x74\x6f\x76\x65\x2c\x20\x6c\x6f\x63\x6b\x65\x72\x73\x2c\x0d'\ -b'\x0a\x62\x6f\x6f\x6b\x73\x68\x65\x6c\x76\x65\x73\x2c\x20\x61\x20'\ -b'\x62\x69\x72\x64\x2d\x63\x61\x67\x65\x20\x77\x69\x74\x68\x20\x61'\ -b'\x20\x62\x69\x72\x64\x20\x69\x6e\x20\x69\x74\x3b\x20\x61\x6e\x64'\ -b'\x20\x70\x6f\x74\x73\x2c\x20\x70\x61\x6e\x73\x2c\x20\x6a\x75\x67'\ -b'\x73\x20\x61\x6e\x64\x0d\x0a\x6b\x65\x74\x74\x6c\x65\x73\x20\x6f'\ -b'\x66\x20\x65\x76\x65\x72\x79\x20\x73\x69\x7a\x65\x20\x61\x6e\x64'\ -b'\x20\x76\x61\x72\x69\x65\x74\x79\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x41\x6c\x6c\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x21\xe2\x80\x9d'\ -b'\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x54\x6f\x61\x64\x20\x74'\ -b'\x72\x69\x75\x6d\x70\x68\x61\x6e\x74\x6c\x79\x2c\x20\x70\x75\x6c'\ -b'\x6c\x69\x6e\x67\x20\x6f\x70\x65\x6e\x20\x61\x20\x6c\x6f\x63\x6b'\ -b'\x65\x72\x2e\x20\xe2\x80\x9c\x59\x6f\x75\x0d\x0a\x73\x65\x65\xe2'\ -b'\x80\x94\x62\x69\x73\x63\x75\x69\x74\x73\x2c\x20\x70\x6f\x74\x74'\ -b'\x65\x64\x20\x6c\x6f\x62\x73\x74\x65\x72\x2c\x20\x73\x61\x72\x64'\ -b'\x69\x6e\x65\x73\xe2\x80\x94\x65\x76\x65\x72\x79\x74\x68\x69\x6e'\ -b'\x67\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x70\x6f\x73\x73\x69\x62'\ -b'\x6c\x79\x0d\x0a\x77\x61\x6e\x74\x2e\x20\x53\x6f\x64\x61\x2d\x77'\ -b'\x61\x74\x65\x72\x20\x68\x65\x72\x65\xe2\x80\x94\x62\x61\x63\x63'\ -b'\x79\x20\x74\x68\x65\x72\x65\xe2\x80\x94\x6c\x65\x74\x74\x65\x72'\ -b'\x2d\x70\x61\x70\x65\x72\x2c\x20\x62\x61\x63\x6f\x6e\x2c\x20\x6a'\ -b'\x61\x6d\x2c\x20\x63\x61\x72\x64\x73\x20\x61\x6e\x64\x0d\x0a\x64'\ -b'\x6f\x6d\x69\x6e\x6f\x65\x73\xe2\x80\x94\x79\x6f\x75\xe2\x80\x99'\ -b'\x6c\x6c\x20\x66\x69\x6e\x64\x2c\xe2\x80\x9d\x20\x68\x65\x20\x63'\ -b'\x6f\x6e\x74\x69\x6e\x75\x65\x64\x2c\x20\x61\x73\x20\x74\x68\x65'\ -b'\x79\x20\x64\x65\x73\x63\x65\x6e\x64\x65\x64\x20\x74\x68\x65\x20'\ -b'\x73\x74\x65\x70\x73\x20\x61\x67\x61\x69\x6e\x2c\x0d\x0a\xe2\x80'\ -b'\x9c\x79\x6f\x75\xe2\x80\x99\x6c\x6c\x20\x66\x69\x6e\x64\x20\x74'\ -b'\x68\x61\x74\x20\x6e\x6f\x74\x68\x69\x6e\x67\x20\x77\x68\x61\x74'\ -b'\x20\x65\x76\x65\x72\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x66'\ -b'\x6f\x72\x67\x6f\x74\x74\x65\x6e\x2c\x20\x77\x68\x65\x6e\x20\x77'\ -b'\x65\x20\x6d\x61\x6b\x65\x0d\x0a\x6f\x75\x72\x20\x73\x74\x61\x72'\ -b'\x74\x20\x74\x68\x69\x73\x20\x61\x66\x74\x65\x72\x6e\x6f\x6f\x6e'\ -b'\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x49\x20\x62\x65\x67'\ -b'\x20\x79\x6f\x75\x72\x20\x70\x61\x72\x64\x6f\x6e\x2c\xe2\x80\x9d'\ -b'\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x73\x6c'\ -b'\x6f\x77\x6c\x79\x2c\x20\x61\x73\x20\x68\x65\x20\x63\x68\x65\x77'\ -b'\x65\x64\x20\x61\x20\x73\x74\x72\x61\x77\x2c\x20\xe2\x80\x9c\x62'\ -b'\x75\x74\x0d\x0a\x64\x69\x64\x20\x49\x20\x6f\x76\x65\x72\x68\x65'\ -b'\x61\x72\x20\x79\x6f\x75\x20\x73\x61\x79\x20\x73\x6f\x6d\x65\x74'\ -b'\x68\x69\x6e\x67\x20\x61\x62\x6f\x75\x74\x20\xe2\x80\x98\x5f\x77'\ -b'\x65\x5f\x2c\xe2\x80\x99\x20\x61\x6e\x64\x20\xe2\x80\x98\x5f\x73'\ -b'\x74\x61\x72\x74\x5f\x2c\xe2\x80\x99\x20\x61\x6e\x64\x0d\x0a\xe2'\ -b'\x80\x98\x5f\x74\x68\x69\x73\x20\x61\x66\x74\x65\x72\x6e\x6f\x6f'\ -b'\x6e\x3f\x5f\xe2\x80\x99\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c'\ -b'\x4e\x6f\x77\x2c\x20\x79\x6f\x75\x20\x64\x65\x61\x72\x20\x67\x6f'\ -b'\x6f\x64\x20\x6f\x6c\x64\x20\x52\x61\x74\x74\x79\x2c\xe2\x80\x9d'\ -b'\x20\x73\x61\x69\x64\x20\x54\x6f\x61\x64\x2c\x20\x69\x6d\x70\x6c'\ -b'\x6f\x72\x69\x6e\x67\x6c\x79\x2c\x20\xe2\x80\x9c\x64\x6f\x6e\xe2'\ -b'\x80\x99\x74\x20\x62\x65\x67\x69\x6e\x0d\x0a\x74\x61\x6c\x6b\x69'\ -b'\x6e\x67\x20\x69\x6e\x20\x74\x68\x61\x74\x20\x73\x74\x69\x66\x66'\ -b'\x20\x61\x6e\x64\x20\x73\x6e\x69\x66\x66\x79\x20\x73\x6f\x72\x74'\ -b'\x20\x6f\x66\x20\x77\x61\x79\x2c\x20\x62\x65\x63\x61\x75\x73\x65'\ -b'\x20\x79\x6f\x75\x20\x6b\x6e\x6f\x77\x20\x79\x6f\x75\xe2\x80\x99'\ -b'\x76\x65\x0d\x0a\x5f\x67\x6f\x74\x5f\x20\x74\x6f\x20\x63\x6f\x6d'\ -b'\x65\x2e\x20\x49\x20\x63\x61\x6e\xe2\x80\x99\x74\x20\x70\x6f\x73'\ -b'\x73\x69\x62\x6c\x79\x20\x6d\x61\x6e\x61\x67\x65\x20\x77\x69\x74'\ -b'\x68\x6f\x75\x74\x20\x79\x6f\x75\x2c\x20\x73\x6f\x20\x70\x6c\x65'\ -b'\x61\x73\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x0d\x0a\x69\x74'\ -b'\x20\x73\x65\x74\x74\x6c\x65\x64\x2c\x20\x61\x6e\x64\x20\x64\x6f'\ -b'\x6e\xe2\x80\x99\x74\x20\x61\x72\x67\x75\x65\xe2\x80\x94\x69\x74'\ -b'\xe2\x80\x99\x73\x20\x74\x68\x65\x20\x6f\x6e\x65\x20\x74\x68\x69'\ -b'\x6e\x67\x20\x49\x20\x63\x61\x6e\xe2\x80\x99\x74\x20\x73\x74\x61'\ -b'\x6e\x64\x2e\x20\x59\x6f\x75\x0d\x0a\x73\x75\x72\x65\x6c\x79\x20'\ -b'\x64\x6f\x6e\xe2\x80\x99\x74\x20\x6d\x65\x61\x6e\x20\x74\x6f\x20'\ -b'\x73\x74\x69\x63\x6b\x20\x74\x6f\x20\x79\x6f\x75\x72\x20\x64\x75'\ -b'\x6c\x6c\x20\x66\x75\x73\x74\x79\x20\x6f\x6c\x64\x20\x72\x69\x76'\ -b'\x65\x72\x20\x61\x6c\x6c\x20\x79\x6f\x75\x72\x20\x6c\x69\x66\x65'\ -b'\x2c\x0d\x0a\x61\x6e\x64\x20\x6a\x75\x73\x74\x20\x6c\x69\x76\x65'\ -b'\x20\x69\x6e\x20\x61\x20\x68\x6f\x6c\x65\x20\x69\x6e\x20\x61\x20'\ -b'\x62\x61\x6e\x6b\x2c\x20\x61\x6e\x64\x20\x5f\x62\x6f\x61\x74\x3f'\ -b'\x5f\x20\x49\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x73\x68\x6f\x77'\ -b'\x20\x79\x6f\x75\x20\x74\x68\x65\x0d\x0a\x77\x6f\x72\x6c\x64\x21'\ -b'\x20\x49\xe2\x80\x99\x6d\x20\x67\x6f\x69\x6e\x67\x20\x74\x6f\x20'\ -b'\x6d\x61\x6b\x65\x20\x61\x6e\x20\x5f\x61\x6e\x69\x6d\x61\x6c\x5f'\ -b'\x20\x6f\x66\x20\x79\x6f\x75\x2c\x20\x6d\x79\x20\x62\x6f\x79\x21'\ -b'\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x49\x20\x64\x6f\x6e\xe2'\ -b'\x80\x99\x74\x20\x63\x61\x72\x65\x2c\xe2\x80\x9d\x20\x73\x61\x69'\ -b'\x64\x20\x74\x68\x65\x20\x52\x61\x74\x2c\x20\x64\x6f\x67\x67\x65'\ -b'\x64\x6c\x79\x2e\x20\xe2\x80\x9c\x49\xe2\x80\x99\x6d\x20\x6e\x6f'\ -b'\x74\x20\x63\x6f\x6d\x69\x6e\x67\x2c\x20\x61\x6e\x64\x20\x74\x68'\ -b'\x61\x74\xe2\x80\x99\x73\x0d\x0a\x66\x6c\x61\x74\x2e\x20\x41\x6e'\ -b'\x64\x20\x49\x20\x5f\x61\x6d\x5f\x20\x67\x6f\x69\x6e\x67\x20\x74'\ -b'\x6f\x20\x73\x74\x69\x63\x6b\x20\x74\x6f\x20\x6d\x79\x20\x6f\x6c'\ -b'\x64\x20\x72\x69\x76\x65\x72\x2c\x20\x5f\x61\x6e\x64\x5f\x20\x6c'\ -b'\x69\x76\x65\x20\x69\x6e\x20\x61\x20\x68\x6f\x6c\x65\x2c\x0d\x0a'\ -b'\x5f\x61\x6e\x64\x5f\x20\x62\x6f\x61\x74\x2c\x20\x61\x73\x20\x49'\ -b'\xe2\x80\x99\x76\x65\x20\x61\x6c\x77\x61\x79\x73\x20\x64\x6f\x6e'\ -b'\x65\x2e\x20\x41\x6e\x64\x20\x77\x68\x61\x74\xe2\x80\x99\x73\x20'\ -b'\x6d\x6f\x72\x65\x2c\x20\x4d\x6f\x6c\x65\xe2\x80\x99\x73\x20\x67'\ -b'\x6f\x69\x6e\x67\x20\x74\x6f\x20\x73\x74\x69\x63\x6b\x0d\x0a\x74'\ -b'\x6f\x20\x6d\x65\x20\x61\x6e\x64\x20\x64\x6f\x20\x61\x73\x20\x49'\ -b'\x20\x64\x6f\x2c\x20\x61\x72\x65\x6e\xe2\x80\x99\x74\x20\x79\x6f'\ -b'\x75\x2c\x20\x4d\x6f\x6c\x65\x3f\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2'\ -b'\x80\x9c\x4f\x66\x20\x63\x6f\x75\x72\x73\x65\x20\x49\x20\x61\x6d'\ -b'\x2c\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x4d\x6f'\ -b'\x6c\x65\x2c\x20\x6c\x6f\x79\x61\x6c\x6c\x79\x2e\x20\xe2\x80\x9c'\ -b'\x49\xe2\x80\x99\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74'\ -b'\x69\x63\x6b\x20\x74\x6f\x20\x79\x6f\x75\x2c\x0d\x0a\x52\x61\x74'\ -b'\x2c\x20\x61\x6e\x64\x20\x77\x68\x61\x74\x20\x79\x6f\x75\x20\x73'\ -b'\x61\x79\x20\x69\x73\x20\x74\x6f\x20\x62\x65\xe2\x80\x94\x68\x61'\ -b'\x73\x20\x67\x6f\x74\x20\x74\x6f\x20\x62\x65\x2e\x20\x41\x6c\x6c'\ -b'\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x2c\x20\x69\x74\x20\x73\x6f'\ -b'\x75\x6e\x64\x73\x0d\x0a\x61\x73\x20\x69\x66\x20\x69\x74\x20\x6d'\ -b'\x69\x67\x68\x74\x20\x68\x61\x76\x65\x20\x62\x65\x65\x6e\xe2\x80'\ -b'\x94\x77\x65\x6c\x6c\x2c\x20\x72\x61\x74\x68\x65\x72\x20\x66\x75'\ -b'\x6e\x2c\x20\x79\x6f\x75\x20\x6b\x6e\x6f\x77\x21\xe2\x80\x9d\x20'\ -b'\x68\x65\x20\x61\x64\x64\x65\x64\x2c\x0d\x0a\x77\x69\x73\x74\x66'\ -b'\x75\x6c\x6c\x79\x2e\x20\x50\x6f\x6f\x72\x20\x4d\x6f\x6c\x65\x21'\ -b'\x20\x54\x68\x65\x20\x4c\x69\x66\x65\x20\x41\x64\x76\x65\x6e\x74'\ -b'\x75\x72\x6f\x75\x73\x20\x77\x61\x73\x20\x73\x6f\x20\x6e\x65\x77'\ -b'\x20\x61\x20\x74\x68\x69\x6e\x67\x20\x74\x6f\x20\x68\x69\x6d\x2c'\ -b'\x0d\x0a\x61\x6e\x64\x20\x73\x6f\x20\x74\x68\x72\x69\x6c\x6c\x69'\ -b'\x6e\x67\x3b\x20\x61\x6e\x64\x20\x74\x68\x69\x73\x20\x66\x72\x65'\ -b'\x73\x68\x20\x61\x73\x70\x65\x63\x74\x20\x6f\x66\x20\x69\x74\x20'\ -b'\x77\x61\x73\x20\x73\x6f\x20\x74\x65\x6d\x70\x74\x69\x6e\x67\x3b'\ -b'\x20\x61\x6e\x64\x20\x68\x65\x0d\x0a\x68\x61\x64\x20\x66\x61\x6c'\ -b'\x6c\x65\x6e\x20\x69\x6e\x20\x6c\x6f\x76\x65\x20\x61\x74\x20\x66'\ -b'\x69\x72\x73\x74\x20\x73\x69\x67\x68\x74\x20\x77\x69\x74\x68\x20'\ -b'\x74\x68\x65\x20\x63\x61\x6e\x61\x72\x79\x2d\x63\x6f\x6c\x6f\x75'\ -b'\x72\x65\x64\x20\x63\x61\x72\x74\x20\x61\x6e\x64\x20\x61\x6c\x6c'\ -b'\x0d\x0a\x69\x74\x73\x20\x6c\x69\x74\x74\x6c\x65\x20\x66\x69\x74'\ -b'\x6d\x65\x6e\x74\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x52\x61'\ -b'\x74\x20\x73\x61\x77\x20\x77\x68\x61\x74\x20\x77\x61\x73\x20\x70'\ -b'\x61\x73\x73\x69\x6e\x67\x20\x69\x6e\x20\x68\x69\x73\x20\x6d\x69'\ -b'\x6e\x64\x2c\x20\x61\x6e\x64\x20\x77\x61\x76\x65\x72\x65\x64\x2e'\ -b'\x20\x48\x65\x20\x68\x61\x74\x65\x64\x0d\x0a\x64\x69\x73\x61\x70'\ -b'\x70\x6f\x69\x6e\x74\x69\x6e\x67\x20\x70\x65\x6f\x70\x6c\x65\x2c'\ -b'\x20\x61\x6e\x64\x20\x68\x65\x20\x77\x61\x73\x20\x66\x6f\x6e\x64'\ -b'\x20\x6f\x66\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2c\x20\x61\x6e'\ -b'\x64\x20\x77\x6f\x75\x6c\x64\x20\x64\x6f\x20\x61\x6c\x6d\x6f\x73'\ -b'\x74\x0d\x0a\x61\x6e\x79\x74\x68\x69\x6e\x67\x20\x74\x6f\x20\x6f'\ -b'\x62\x6c\x69\x67\x65\x20\x68\x69\x6d\x2e\x20\x54\x6f\x61\x64\x20'\ -b'\x77\x61\x73\x20\x77\x61\x74\x63\x68\x69\x6e\x67\x20\x62\x6f\x74'\ -b'\x68\x20\x6f\x66\x20\x74\x68\x65\x6d\x20\x63\x6c\x6f\x73\x65\x6c'\ -b'\x79\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x43\x6f\x6d\x65\x20\x61\x6c'\ -b'\x6f\x6e\x67\x20\x69\x6e\x2c\x20\x61\x6e\x64\x20\x68\x61\x76\x65'\ -b'\x20\x73\x6f\x6d\x65\x20\x6c\x75\x6e\x63\x68\x2c\xe2\x80\x9d\x20'\ -b'\x68\x65\x20\x73\x61\x69\x64\x2c\x20\x64\x69\x70\x6c\x6f\x6d\x61'\ -b'\x74\x69\x63\x61\x6c\x6c\x79\x2c\x20\xe2\x80\x9c\x61\x6e\x64\x0d'\ -b'\x0a\x77\x65\xe2\x80\x99\x6c\x6c\x20\x74\x61\x6c\x6b\x20\x69\x74'\ -b'\x20\x6f\x76\x65\x72\x2e\x20\x57\x65\x20\x6e\x65\x65\x64\x6e\xe2'\ -b'\x80\x99\x74\x20\x64\x65\x63\x69\x64\x65\x20\x61\x6e\x79\x74\x68'\ -b'\x69\x6e\x67\x20\x69\x6e\x20\x61\x20\x68\x75\x72\x72\x79\x2e\x20'\ -b'\x4f\x66\x20\x63\x6f\x75\x72\x73\x65\x2c\x0d\x0a\x5f\x49\x5f\x20'\ -b'\x64\x6f\x6e\xe2\x80\x99\x74\x20\x72\x65\x61\x6c\x6c\x79\x20\x63'\ -b'\x61\x72\x65\x2e\x20\x49\x20\x6f\x6e\x6c\x79\x20\x77\x61\x6e\x74'\ -b'\x20\x74\x6f\x20\x67\x69\x76\x65\x20\x70\x6c\x65\x61\x73\x75\x72'\ -b'\x65\x20\x74\x6f\x20\x79\x6f\x75\x20\x66\x65\x6c\x6c\x6f\x77\x73'\ -b'\x2e\x0d\x0a\xe2\x80\x98\x4c\x69\x76\x65\x20\x66\x6f\x72\x20\x6f'\ -b'\x74\x68\x65\x72\x73\x21\xe2\x80\x99\x20\x54\x68\x61\x74\xe2\x80'\ -b'\x99\x73\x20\x6d\x79\x20\x6d\x6f\x74\x74\x6f\x20\x69\x6e\x20\x6c'\ -b'\x69\x66\x65\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\x44\x75\x72\x69\x6e'\ -b'\x67\x20\x6c\x75\x6e\x63\x68\x65\x6f\x6e\xe2\x80\x94\x77\x68\x69'\ -b'\x63\x68\x20\x77\x61\x73\x20\x65\x78\x63\x65\x6c\x6c\x65\x6e\x74'\ -b'\x2c\x20\x6f\x66\x20\x63\x6f\x75\x72\x73\x65\x2c\x20\x61\x73\x20'\ -b'\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x20\x61\x74\x20\x54\x6f'\ -b'\x61\x64\x0d\x0a\x48\x61\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20'\ -b'\x77\x61\x73\xe2\x80\x94\x74\x68\x65\x20\x54\x6f\x61\x64\x20\x73'\ -b'\x69\x6d\x70\x6c\x79\x20\x6c\x65\x74\x20\x68\x69\x6d\x73\x65\x6c'\ -b'\x66\x20\x67\x6f\x2e\x20\x44\x69\x73\x72\x65\x67\x61\x72\x64\x69'\ -b'\x6e\x67\x20\x74\x68\x65\x20\x52\x61\x74\x2c\x0d\x0a\x68\x65\x20'\ -b'\x70\x72\x6f\x63\x65\x65\x64\x65\x64\x20\x74\x6f\x20\x70\x6c\x61'\ -b'\x79\x20\x75\x70\x6f\x6e\x20\x74\x68\x65\x20\x69\x6e\x65\x78\x70'\ -b'\x65\x72\x69\x65\x6e\x63\x65\x64\x20\x4d\x6f\x6c\x65\x20\x61\x73'\ -b'\x20\x6f\x6e\x20\x61\x20\x68\x61\x72\x70\x2e\x0d\x0a\x4e\x61\x74'\ -b'\x75\x72\x61\x6c\x6c\x79\x20\x61\x20\x76\x6f\x6c\x75\x62\x6c\x65'\ -b'\x20\x61\x6e\x69\x6d\x61\x6c\x2c\x20\x61\x6e\x64\x20\x61\x6c\x77'\ -b'\x61\x79\x73\x20\x6d\x61\x73\x74\x65\x72\x65\x64\x20\x62\x79\x20'\ -b'\x68\x69\x73\x20\x69\x6d\x61\x67\x69\x6e\x61\x74\x69\x6f\x6e\x2c'\ -b'\x20\x68\x65\x0d\x0a\x70\x61\x69\x6e\x74\x65\x64\x20\x74\x68\x65'\ -b'\x20\x70\x72\x6f\x73\x70\x65\x63\x74\x73\x20\x6f\x66\x20\x74\x68'\ -b'\x65\x20\x74\x72\x69\x70\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x6a'\ -b'\x6f\x79\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x70\x65\x6e\x20'\ -b'\x6c\x69\x66\x65\x20\x61\x6e\x64\x20\x74\x68\x65\x0d\x0a\x72\x6f'\ -b'\x61\x64\x73\x69\x64\x65\x20\x69\x6e\x20\x73\x75\x63\x68\x20\x67'\ -b'\x6c\x6f\x77\x69\x6e\x67\x20\x63\x6f\x6c\x6f\x75\x72\x73\x20\x74'\ -b'\x68\x61\x74\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\x20\x63\x6f\x75'\ -b'\x6c\x64\x20\x68\x61\x72\x64\x6c\x79\x20\x73\x69\x74\x20\x69\x6e'\ -b'\x20\x68\x69\x73\x0d\x0a\x63\x68\x61\x69\x72\x20\x66\x6f\x72\x20'\ -b'\x65\x78\x63\x69\x74\x65\x6d\x65\x6e\x74\x2e\x20\x53\x6f\x6d\x65'\ -b'\x68\x6f\x77\x2c\x20\x69\x74\x20\x73\x6f\x6f\x6e\x20\x73\x65\x65'\ -b'\x6d\x65\x64\x20\x74\x61\x6b\x65\x6e\x20\x66\x6f\x72\x20\x67\x72'\ -b'\x61\x6e\x74\x65\x64\x20\x62\x79\x20\x61\x6c\x6c\x0d\x0a\x74\x68'\ -b'\x72\x65\x65\x20\x6f\x66\x20\x74\x68\x65\x6d\x20\x74\x68\x61\x74'\ -b'\x20\x74\x68\x65\x20\x74\x72\x69\x70\x20\x77\x61\x73\x20\x61\x20'\ -b'\x73\x65\x74\x74\x6c\x65\x64\x20\x74\x68\x69\x6e\x67\x3b\x20\x61'\ -b'\x6e\x64\x20\x74\x68\x65\x20\x52\x61\x74\x2c\x20\x74\x68\x6f\x75'\ -b'\x67\x68\x0d\x0a\x73\x74\x69\x6c\x6c\x20\x75\x6e\x63\x6f\x6e\x76'\ -b'\x69\x6e\x63\x65\x64\x20\x69\x6e\x20\x68\x69\x73\x20\x6d\x69\x6e'\ -b'\x64\x2c\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x68\x69\x73\x20\x67'\ -b'\x6f\x6f\x64\x2d\x6e\x61\x74\x75\x72\x65\x20\x74\x6f\x20\x6f\x76'\ -b'\x65\x72\x2d\x72\x69\x64\x65\x20\x68\x69\x73\x0d\x0a\x70\x65\x72'\ -b'\x73\x6f\x6e\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x69\x6f\x6e\x73'\ -b'\x2e\x20\x48\x65\x20\x63\x6f\x75\x6c\x64\x20\x6e\x6f\x74\x20\x62'\ -b'\x65\x61\x72\x20\x74\x6f\x20\x64\x69\x73\x61\x70\x70\x6f\x69\x6e'\ -b'\x74\x20\x68\x69\x73\x20\x74\x77\x6f\x20\x66\x72\x69\x65\x6e\x64'\ -b'\x73\x2c\x0d\x0a\x77\x68\x6f\x20\x77\x65\x72\x65\x20\x61\x6c\x72'\ -b'\x65\x61\x64\x79\x20\x64\x65\x65\x70\x20\x69\x6e\x20\x73\x63\x68'\ -b'\x65\x6d\x65\x73\x20\x61\x6e\x64\x20\x61\x6e\x74\x69\x63\x69\x70'\ -b'\x61\x74\x69\x6f\x6e\x73\x2c\x20\x70\x6c\x61\x6e\x6e\x69\x6e\x67'\ -b'\x20\x6f\x75\x74\x20\x65\x61\x63\x68\x0d\x0a\x64\x61\x79\xe2\x80'\ -b'\x99\x73\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x6f\x63\x63\x75'\ -b'\x70\x61\x74\x69\x6f\x6e\x20\x66\x6f\x72\x20\x73\x65\x76\x65\x72'\ -b'\x61\x6c\x20\x77\x65\x65\x6b\x73\x20\x61\x68\x65\x61\x64\x2e\x0d'\ -b'\x0a\x0d\x0a\x57\x68\x65\x6e\x20\x74\x68\x65\x79\x20\x77\x65\x72'\ -b'\x65\x20\x71\x75\x69\x74\x65\x20\x72\x65\x61\x64\x79\x2c\x20\x74'\ -b'\x68\x65\x20\x6e\x6f\x77\x20\x74\x72\x69\x75\x6d\x70\x68\x61\x6e'\ -b'\x74\x20\x54\x6f\x61\x64\x20\x6c\x65\x64\x20\x68\x69\x73\x20\x63'\ -b'\x6f\x6d\x70\x61\x6e\x69\x6f\x6e\x73\x0d\x0a\x74\x6f\x20\x74\x68'\ -b'\x65\x20\x70\x61\x64\x64\x6f\x63\x6b\x20\x61\x6e\x64\x20\x73\x65'\ -b'\x74\x20\x74\x68\x65\x6d\x20\x74\x6f\x20\x63\x61\x70\x74\x75\x72'\ -b'\x65\x20\x74\x68\x65\x20\x6f\x6c\x64\x20\x67\x72\x65\x79\x20\x68'\ -b'\x6f\x72\x73\x65\x2c\x20\x77\x68\x6f\x2c\x20\x77\x69\x74\x68\x6f'\ -b'\x75\x74\x0d\x0a\x68\x61\x76\x69\x6e\x67\x20\x62\x65\x65\x6e\x20'\ -b'\x63\x6f\x6e\x73\x75\x6c\x74\x65\x64\x2c\x20\x61\x6e\x64\x20\x74'\ -b'\x6f\x20\x68\x69\x73\x20\x6f\x77\x6e\x20\x65\x78\x74\x72\x65\x6d'\ -b'\x65\x20\x61\x6e\x6e\x6f\x79\x61\x6e\x63\x65\x2c\x20\x68\x61\x64'\ -b'\x20\x62\x65\x65\x6e\x20\x74\x6f\x6c\x64\x0d\x0a\x6f\x66\x66\x20'\ -b'\x62\x79\x20\x54\x6f\x61\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x20'\ -b'\x64\x75\x73\x74\x69\x65\x73\x74\x20\x6a\x6f\x62\x20\x69\x6e\x20'\ -b'\x74\x68\x69\x73\x20\x64\x75\x73\x74\x79\x20\x65\x78\x70\x65\x64'\ -b'\x69\x74\x69\x6f\x6e\x2e\x20\x48\x65\x20\x66\x72\x61\x6e\x6b\x6c'\ -b'\x79\x0d\x0a\x70\x72\x65\x66\x65\x72\x72\x65\x64\x20\x74\x68\x65'\ -b'\x20\x70\x61\x64\x64\x6f\x63\x6b\x2c\x20\x61\x6e\x64\x20\x74\x6f'\ -b'\x6f\x6b\x20\x61\x20\x64\x65\x61\x6c\x20\x6f\x66\x20\x63\x61\x74'\ -b'\x63\x68\x69\x6e\x67\x2e\x20\x4d\x65\x61\x6e\x74\x69\x6d\x65\x20'\ -b'\x54\x6f\x61\x64\x0d\x0a\x70\x61\x63\x6b\x65\x64\x20\x74\x68\x65'\ -b'\x20\x6c\x6f\x63\x6b\x65\x72\x73\x20\x73\x74\x69\x6c\x6c\x20\x74'\ -b'\x69\x67\x68\x74\x65\x72\x20\x77\x69\x74\x68\x20\x6e\x65\x63\x65'\ -b'\x73\x73\x61\x72\x69\x65\x73\x2c\x20\x61\x6e\x64\x20\x68\x75\x6e'\ -b'\x67\x20\x6e\x6f\x73\x65\x62\x61\x67\x73\x2c\x0d\x0a\x6e\x65\x74'\ -b'\x73\x20\x6f\x66\x20\x6f\x6e\x69\x6f\x6e\x73\x2c\x20\x62\x75\x6e'\ -b'\x64\x6c\x65\x73\x20\x6f\x66\x20\x68\x61\x79\x2c\x20\x61\x6e\x64'\ -b'\x20\x62\x61\x73\x6b\x65\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68'\ -b'\x65\x20\x62\x6f\x74\x74\x6f\x6d\x20\x6f\x66\x20\x74\x68\x65\x0d'\ -b'\x0a\x63\x61\x72\x74\x2e\x20\x41\x74\x20\x6c\x61\x73\x74\x20\x74'\ -b'\x68\x65\x20\x68\x6f\x72\x73\x65\x20\x77\x61\x73\x20\x63\x61\x75'\ -b'\x67\x68\x74\x20\x61\x6e\x64\x20\x68\x61\x72\x6e\x65\x73\x73\x65'\ -b'\x64\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x79\x20\x73\x65\x74\x20'\ -b'\x6f\x66\x66\x2c\x20\x61\x6c\x6c\x0d\x0a\x74\x61\x6c\x6b\x69\x6e'\ -b'\x67\x20\x61\x74\x20\x6f\x6e\x63\x65\x2c\x20\x65\x61\x63\x68\x20'\ -b'\x61\x6e\x69\x6d\x61\x6c\x20\x65\x69\x74\x68\x65\x72\x20\x74\x72'\ -b'\x75\x64\x67\x69\x6e\x67\x20\x62\x79\x20\x74\x68\x65\x20\x73\x69'\ -b'\x64\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x61\x72\x74\x20\x6f'\ -b'\x72\x0d\x0a\x73\x69\x74\x74\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68'\ -b'\x65\x20\x73\x68\x61\x66\x74\x2c\x20\x61\x73\x20\x74\x68\x65\x20'\ -b'\x68\x75\x6d\x6f\x75\x72\x20\x74\x6f\x6f\x6b\x20\x68\x69\x6d\x2e'\ -b'\x20\x49\x74\x20\x77\x61\x73\x20\x61\x20\x67\x6f\x6c\x64\x65\x6e'\ -b'\x0d\x0a\x61\x66\x74\x65\x72\x6e\x6f\x6f\x6e\x2e\x20\x54\x68\x65'\ -b'\x20\x73\x6d\x65\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x75'\ -b'\x73\x74\x20\x74\x68\x65\x79\x20\x6b\x69\x63\x6b\x65\x64\x20\x75'\ -b'\x70\x20\x77\x61\x73\x20\x72\x69\x63\x68\x20\x61\x6e\x64\x0d\x0a'\ -b'\x73\x61\x74\x69\x73\x66\x79\x69\x6e\x67\x3b\x20\x6f\x75\x74\x20'\ -b'\x6f\x66\x20\x74\x68\x69\x63\x6b\x20\x6f\x72\x63\x68\x61\x72\x64'\ -b'\x73\x20\x6f\x6e\x20\x65\x69\x74\x68\x65\x72\x20\x73\x69\x64\x65'\ -b'\x20\x74\x68\x65\x20\x72\x6f\x61\x64\x2c\x20\x62\x69\x72\x64\x73'\ -b'\x20\x63\x61\x6c\x6c\x65\x64\x0d\x0a\x61\x6e\x64\x20\x77\x68\x69'\ -b'\x73\x74\x6c\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x6d\x20\x63\x68'\ -b'\x65\x65\x72\x69\x6c\x79\x3b\x20\x67\x6f\x6f\x64\x2d\x6e\x61\x74'\ -b'\x75\x72\x65\x64\x20\x77\x61\x79\x66\x61\x72\x65\x72\x73\x2c\x20'\ -b'\x70\x61\x73\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x2c\x0d\x0a\x67'\ -b'\x61\x76\x65\x20\x74\x68\x65\x6d\x20\xe2\x80\x9c\x47\x6f\x6f\x64'\ -b'\x2d\x64\x61\x79\x2c\xe2\x80\x9d\x20\x6f\x72\x20\x73\x74\x6f\x70'\ -b'\x70\x65\x64\x20\x74\x6f\x20\x73\x61\x79\x20\x6e\x69\x63\x65\x20'\ -b'\x74\x68\x69\x6e\x67\x73\x20\x61\x62\x6f\x75\x74\x20\x74\x68\x65'\ -b'\x69\x72\x0d\x0a\x62\x65\x61\x75\x74\x69\x66\x75\x6c\x20\x63\x61'\ -b'\x72\x74\x3b\x20\x61\x6e\x64\x20\x72\x61\x62\x62\x69\x74\x73\x2c'\ -b'\x20\x73\x69\x74\x74\x69\x6e\x67\x20\x61\x74\x20\x74\x68\x65\x69'\ -b'\x72\x20\x66\x72\x6f\x6e\x74\x20\x64\x6f\x6f\x72\x73\x20\x69\x6e'\ -b'\x20\x74\x68\x65\x0d\x0a\x68\x65\x64\x67\x65\x72\x6f\x77\x73\x2c'\ -b'\x20\x68\x65\x6c\x64\x20\x75\x70\x20\x74\x68\x65\x69\x72\x20\x66'\ -b'\x6f\x72\x65\x2d\x70\x61\x77\x73\x2c\x20\x61\x6e\x64\x20\x73\x61'\ -b'\x69\x64\x2c\x20\xe2\x80\x9c\x4f\x20\x6d\x79\x21\x20\x4f\x20\x6d'\ -b'\x79\x21\x20\x4f\x20\x6d\x79\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x4c'\ -b'\x61\x74\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x65\x76\x65\x6e\x69'\ -b'\x6e\x67\x2c\x20\x74\x69\x72\x65\x64\x20\x61\x6e\x64\x20\x68\x61'\ -b'\x70\x70\x79\x20\x61\x6e\x64\x20\x6d\x69\x6c\x65\x73\x20\x66\x72'\ -b'\x6f\x6d\x20\x68\x6f\x6d\x65\x2c\x20\x74\x68\x65\x79\x20\x64\x72'\ -b'\x65\x77\x20\x75\x70\x0d\x0a\x6f\x6e\x20\x61\x20\x72\x65\x6d\x6f'\ -b'\x74\x65\x20\x63\x6f\x6d\x6d\x6f\x6e\x20\x66\x61\x72\x20\x66\x72'\ -b'\x6f\x6d\x20\x68\x61\x62\x69\x74\x61\x74\x69\x6f\x6e\x73\x2c\x20'\ -b'\x74\x75\x72\x6e\x65\x64\x20\x74\x68\x65\x20\x68\x6f\x72\x73\x65'\ -b'\x20\x6c\x6f\x6f\x73\x65\x20\x74\x6f\x0d\x0a\x67\x72\x61\x7a\x65'\ -b'\x2c\x20\x61\x6e\x64\x20\x61\x74\x65\x20\x74\x68\x65\x69\x72\x20'\ -b'\x73\x69\x6d\x70\x6c\x65\x20\x73\x75\x70\x70\x65\x72\x20\x73\x69'\ -b'\x74\x74\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68\x65\x20\x67\x72\x61'\ -b'\x73\x73\x20\x62\x79\x20\x74\x68\x65\x20\x73\x69\x64\x65\x20\x6f'\ -b'\x66\x0d\x0a\x74\x68\x65\x20\x63\x61\x72\x74\x2e\x20\x54\x6f\x61'\ -b'\x64\x20\x74\x61\x6c\x6b\x65\x64\x20\x62\x69\x67\x20\x61\x62\x6f'\ -b'\x75\x74\x20\x61\x6c\x6c\x20\x68\x65\x20\x77\x61\x73\x20\x67\x6f'\ -b'\x69\x6e\x67\x20\x74\x6f\x20\x64\x6f\x20\x69\x6e\x20\x74\x68\x65'\ -b'\x20\x64\x61\x79\x73\x20\x74\x6f\x0d\x0a\x63\x6f\x6d\x65\x2c\x20'\ -b'\x77\x68\x69\x6c\x65\x20\x73\x74\x61\x72\x73\x20\x67\x72\x65\x77'\ -b'\x20\x66\x75\x6c\x6c\x65\x72\x20\x61\x6e\x64\x20\x6c\x61\x72\x67'\ -b'\x65\x72\x20\x61\x6c\x6c\x20\x61\x72\x6f\x75\x6e\x64\x20\x74\x68'\ -b'\x65\x6d\x2c\x20\x61\x6e\x64\x20\x61\x20\x79\x65\x6c\x6c\x6f\x77'\ -b'\x0d\x0a\x6d\x6f\x6f\x6e\x2c\x20\x61\x70\x70\x65\x61\x72\x69\x6e'\ -b'\x67\x20\x73\x75\x64\x64\x65\x6e\x6c\x79\x20\x61\x6e\x64\x20\x73'\ -b'\x69\x6c\x65\x6e\x74\x6c\x79\x20\x66\x72\x6f\x6d\x20\x6e\x6f\x77'\ -b'\x68\x65\x72\x65\x20\x69\x6e\x20\x70\x61\x72\x74\x69\x63\x75\x6c'\ -b'\x61\x72\x2c\x20\x63\x61\x6d\x65\x0d\x0a\x74\x6f\x20\x6b\x65\x65'\ -b'\x70\x20\x74\x68\x65\x6d\x20\x63\x6f\x6d\x70\x61\x6e\x79\x20\x61'\ -b'\x6e\x64\x20\x6c\x69\x73\x74\x65\x6e\x20\x74\x6f\x20\x74\x68\x65'\ -b'\x69\x72\x20\x74\x61\x6c\x6b\x2e\x20\x41\x74\x20\x6c\x61\x73\x74'\ -b'\x20\x74\x68\x65\x79\x20\x74\x75\x72\x6e\x65\x64\x20\x69\x6e\x0d'\ -b'\x0a\x74\x6f\x20\x74\x68\x65\x69\x72\x20\x6c\x69\x74\x74\x6c\x65'\ -b'\x20\x62\x75\x6e\x6b\x73\x20\x69\x6e\x20\x74\x68\x65\x20\x63\x61'\ -b'\x72\x74\x3b\x20\x61\x6e\x64\x20\x54\x6f\x61\x64\x2c\x20\x6b\x69'\ -b'\x63\x6b\x69\x6e\x67\x20\x6f\x75\x74\x20\x68\x69\x73\x20\x6c\x65'\ -b'\x67\x73\x2c\x0d\x0a\x73\x6c\x65\x65\x70\x69\x6c\x79\x20\x73\x61'\ -b'\x69\x64\x2c\x20\xe2\x80\x9c\x57\x65\x6c\x6c\x2c\x20\x67\x6f\x6f'\ -b'\x64\x20\x6e\x69\x67\x68\x74\x2c\x20\x79\x6f\x75\x20\x66\x65\x6c'\ -b'\x6c\x6f\x77\x73\x21\x20\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68'\ -b'\x65\x20\x72\x65\x61\x6c\x20\x6c\x69\x66\x65\x0d\x0a\x66\x6f\x72'\ -b'\x20\x61\x20\x67\x65\x6e\x74\x6c\x65\x6d\x61\x6e\x21\x20\x54\x61'\ -b'\x6c\x6b\x20\x61\x62\x6f\x75\x74\x20\x79\x6f\x75\x72\x20\x6f\x6c'\ -b'\x64\x20\x72\x69\x76\x65\x72\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2'\ -b'\x80\x9c\x49\x20\x5f\x64\x6f\x6e\xe2\x80\x99\x74\x5f\x20\x74\x61'\ -b'\x6c\x6b\x20\x61\x62\x6f\x75\x74\x20\x6d\x79\x20\x72\x69\x76\x65'\ -b'\x72\x2c\xe2\x80\x9d\x20\x72\x65\x70\x6c\x69\x65\x64\x20\x74\x68'\ -b'\x65\x20\x70\x61\x74\x69\x65\x6e\x74\x20\x52\x61\x74\x2e\x20\xe2'\ -b'\x80\x9c\x59\x6f\x75\x20\x5f\x6b\x6e\x6f\x77\x5f\x20\x49\x0d\x0a'\ -b'\x64\x6f\x6e\xe2\x80\x99\x74\x2c\x20\x54\x6f\x61\x64\x2e\x20\x42'\ -b'\x75\x74\x20\x49\x20\x5f\x74\x68\x69\x6e\x6b\x5f\x20\x61\x62\x6f'\ -b'\x75\x74\x20\x69\x74\x2c\xe2\x80\x9d\x20\x68\x65\x20\x61\x64\x64'\ -b'\x65\x64\x20\x70\x61\x74\x68\x65\x74\x69\x63\x61\x6c\x6c\x79\x2c'\ -b'\x20\x69\x6e\x20\x61\x20\x6c\x6f\x77\x65\x72\x0d\x0a\x74\x6f\x6e'\ -b'\x65\x3a\x20\xe2\x80\x9c\x49\x20\x74\x68\x69\x6e\x6b\x20\x61\x62'\ -b'\x6f\x75\x74\x20\x69\x74\xe2\x80\x94\x61\x6c\x6c\x20\x74\x68\x65'\ -b'\x20\x74\x69\x6d\x65\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65'\ -b'\x20\x4d\x6f\x6c\x65\x20\x72\x65\x61\x63\x68\x65\x64\x20\x6f\x75'\ -b'\x74\x20\x66\x72\x6f\x6d\x20\x75\x6e\x64\x65\x72\x20\x68\x69\x73'\ -b'\x20\x62\x6c\x61\x6e\x6b\x65\x74\x2c\x20\x66\x65\x6c\x74\x20\x66'\ -b'\x6f\x72\x20\x74\x68\x65\x20\x52\x61\x74\xe2\x80\x99\x73\x20\x70'\ -b'\x61\x77\x20\x69\x6e\x0d\x0a\x74\x68\x65\x20\x64\x61\x72\x6b\x6e'\ -b'\x65\x73\x73\x2c\x20\x61\x6e\x64\x20\x67\x61\x76\x65\x20\x69\x74'\ -b'\x20\x61\x20\x73\x71\x75\x65\x65\x7a\x65\x2e\x20\xe2\x80\x9c\x49'\ -b'\xe2\x80\x99\x6c\x6c\x20\x64\x6f\x20\x77\x68\x61\x74\x65\x76\x65'\ -b'\x72\x20\x79\x6f\x75\x20\x6c\x69\x6b\x65\x2c\x0d\x0a\x52\x61\x74'\ -b'\x74\x79\x2c\xe2\x80\x9d\x20\x68\x65\x20\x77\x68\x69\x73\x70\x65'\ -b'\x72\x65\x64\x2e\x20\xe2\x80\x9c\x53\x68\x61\x6c\x6c\x20\x77\x65'\ -b'\x20\x72\x75\x6e\x20\x61\x77\x61\x79\x20\x74\x6f\x2d\x6d\x6f\x72'\ -b'\x72\x6f\x77\x20\x6d\x6f\x72\x6e\x69\x6e\x67\x2c\x20\x71\x75\x69'\ -b'\x74\x65\x0d\x0a\x65\x61\x72\x6c\x79\xe2\x80\x94\x5f\x76\x65\x72'\ -b'\x79\x5f\x20\x65\x61\x72\x6c\x79\xe2\x80\x94\x61\x6e\x64\x20\x67'\ -b'\x6f\x20\x62\x61\x63\x6b\x20\x74\x6f\x20\x6f\x75\x72\x20\x64\x65'\ -b'\x61\x72\x20\x6f\x6c\x64\x20\x68\x6f\x6c\x65\x20\x6f\x6e\x20\x74'\ -b'\x68\x65\x20\x72\x69\x76\x65\x72\x3f\xe2\x80\x9d\x0d\x0a\x0d\x0a'\ -b'\xe2\x80\x9c\x4e\x6f\x2c\x20\x6e\x6f\x2c\x20\x77\x65\xe2\x80\x99'\ -b'\x6c\x6c\x20\x73\x65\x65\x20\x69\x74\x20\x6f\x75\x74\x2c\xe2\x80'\ -b'\x9d\x20\x77\x68\x69\x73\x70\x65\x72\x65\x64\x20\x62\x61\x63\x6b'\ -b'\x20\x74\x68\x65\x20\x52\x61\x74\x2e\x20\xe2\x80\x9c\x54\x68\x61'\ -b'\x6e\x6b\x73\x20\x61\x77\x66\x75\x6c\x6c\x79\x2c\x0d\x0a\x62\x75'\ -b'\x74\x20\x49\x20\x6f\x75\x67\x68\x74\x20\x74\x6f\x20\x73\x74\x69'\ -b'\x63\x6b\x20\x62\x79\x20\x54\x6f\x61\x64\x20\x74\x69\x6c\x6c\x20'\ -b'\x74\x68\x69\x73\x20\x74\x72\x69\x70\x20\x69\x73\x20\x65\x6e\x64'\ -b'\x65\x64\x2e\x20\x49\x74\x20\x77\x6f\x75\x6c\x64\x6e\xe2\x80\x99'\ -b'\x74\x20\x62\x65\x0d\x0a\x73\x61\x66\x65\x20\x66\x6f\x72\x20\x68'\ -b'\x69\x6d\x20\x74\x6f\x20\x62\x65\x20\x6c\x65\x66\x74\x20\x74\x6f'\ -b'\x20\x68\x69\x6d\x73\x65\x6c\x66\x2e\x20\x49\x74\x20\x77\x6f\x6e'\ -b'\xe2\x80\x99\x74\x20\x74\x61\x6b\x65\x20\x76\x65\x72\x79\x20\x6c'\ -b'\x6f\x6e\x67\x2e\x20\x48\x69\x73\x20\x66\x61\x64\x73\x0d\x0a\x6e'\ -b'\x65\x76\x65\x72\x20\x64\x6f\x2e\x20\x47\x6f\x6f\x64\x20\x6e\x69'\ -b'\x67\x68\x74\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x65'\ -b'\x6e\x64\x20\x77\x61\x73\x20\x69\x6e\x64\x65\x65\x64\x20\x6e\x65'\ -b'\x61\x72\x65\x72\x20\x74\x68\x61\x6e\x20\x65\x76\x65\x6e\x20\x74'\ -b'\x68\x65\x20\x52\x61\x74\x20\x73\x75\x73\x70\x65\x63\x74\x65\x64'\ -b'\x2e\x0d\x0a\x0d\x0a\x41\x66\x74\x65\x72\x20\x73\x6f\x20\x6d\x75'\ -b'\x63\x68\x20\x6f\x70\x65\x6e\x20\x61\x69\x72\x20\x61\x6e\x64\x20'\ -b'\x65\x78\x63\x69\x74\x65\x6d\x65\x6e\x74\x20\x74\x68\x65\x20\x54'\ -b'\x6f\x61\x64\x20\x73\x6c\x65\x70\x74\x20\x76\x65\x72\x79\x20\x73'\ -b'\x6f\x75\x6e\x64\x6c\x79\x2c\x20\x61\x6e\x64\x0d\x0a\x6e\x6f\x20'\ -b'\x61\x6d\x6f\x75\x6e\x74\x20\x6f\x66\x20\x73\x68\x61\x6b\x69\x6e'\ -b'\x67\x20\x63\x6f\x75\x6c\x64\x20\x72\x6f\x75\x73\x65\x20\x68\x69'\ -b'\x6d\x20\x6f\x75\x74\x20\x6f\x66\x20\x62\x65\x64\x20\x6e\x65\x78'\ -b'\x74\x20\x6d\x6f\x72\x6e\x69\x6e\x67\x2e\x20\x53\x6f\x20\x74\x68'\ -b'\x65\x0d\x0a\x4d\x6f\x6c\x65\x20\x61\x6e\x64\x20\x52\x61\x74\x20'\ -b'\x74\x75\x72\x6e\x65\x64\x20\x74\x6f\x2c\x20\x71\x75\x69\x65\x74'\ -b'\x6c\x79\x20\x61\x6e\x64\x20\x6d\x61\x6e\x66\x75\x6c\x6c\x79\x2c'\ -b'\x20\x61\x6e\x64\x20\x77\x68\x69\x6c\x65\x20\x74\x68\x65\x20\x52'\ -b'\x61\x74\x20\x73\x61\x77\x20\x74\x6f\x0d\x0a\x74\x68\x65\x20\x68'\ -b'\x6f\x72\x73\x65\x2c\x20\x61\x6e\x64\x20\x6c\x69\x74\x20\x61\x20'\ -b'\x66\x69\x72\x65\x2c\x20\x61\x6e\x64\x20\x63\x6c\x65\x61\x6e\x65'\ -b'\x64\x20\x6c\x61\x73\x74\x20\x6e\x69\x67\x68\x74\xe2\x80\x99\x73'\ -b'\x20\x63\x75\x70\x73\x20\x61\x6e\x64\x20\x70\x6c\x61\x74\x74\x65'\ -b'\x72\x73\x2c\x0d\x0a\x61\x6e\x64\x20\x67\x6f\x74\x20\x74\x68\x69'\ -b'\x6e\x67\x73\x20\x72\x65\x61\x64\x79\x20\x66\x6f\x72\x20\x62\x72'\ -b'\x65\x61\x6b\x66\x61\x73\x74\x2c\x20\x74\x68\x65\x20\x4d\x6f\x6c'\ -b'\x65\x20\x74\x72\x75\x64\x67\x65\x64\x20\x6f\x66\x66\x20\x74\x6f'\ -b'\x20\x74\x68\x65\x20\x6e\x65\x61\x72\x65\x73\x74\x0d\x0a\x76\x69'\ -b'\x6c\x6c\x61\x67\x65\x2c\x20\x61\x20\x6c\x6f\x6e\x67\x20\x77\x61'\ -b'\x79\x20\x6f\x66\x66\x2c\x20\x66\x6f\x72\x20\x6d\x69\x6c\x6b\x20'\ -b'\x61\x6e\x64\x20\x65\x67\x67\x73\x20\x61\x6e\x64\x20\x76\x61\x72'\ -b'\x69\x6f\x75\x73\x20\x6e\x65\x63\x65\x73\x73\x61\x72\x69\x65\x73'\ -b'\x20\x74\x68\x65\x0d\x0a\x54\x6f\x61\x64\x20\x68\x61\x64\x2c\x20'\ -b'\x6f\x66\x20\x63\x6f\x75\x72\x73\x65\x2c\x20\x66\x6f\x72\x67\x6f'\ -b'\x74\x74\x65\x6e\x20\x74\x6f\x20\x70\x72\x6f\x76\x69\x64\x65\x2e'\ -b'\x20\x54\x68\x65\x20\x68\x61\x72\x64\x20\x77\x6f\x72\x6b\x20\x68'\ -b'\x61\x64\x20\x61\x6c\x6c\x20\x62\x65\x65\x6e\x0d\x0a\x64\x6f\x6e'\ -b'\x65\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x74\x77\x6f\x20\x61'\ -b'\x6e\x69\x6d\x61\x6c\x73\x20\x77\x65\x72\x65\x20\x72\x65\x73\x74'\ -b'\x69\x6e\x67\x2c\x20\x74\x68\x6f\x72\x6f\x75\x67\x68\x6c\x79\x20'\ -b'\x65\x78\x68\x61\x75\x73\x74\x65\x64\x2c\x20\x62\x79\x20\x74\x68'\ -b'\x65\x0d\x0a\x74\x69\x6d\x65\x20\x54\x6f\x61\x64\x20\x61\x70\x70'\ -b'\x65\x61\x72\x65\x64\x20\x6f\x6e\x20\x74\x68\x65\x20\x73\x63\x65'\ -b'\x6e\x65\x2c\x20\x66\x72\x65\x73\x68\x20\x61\x6e\x64\x20\x67\x61'\ -b'\x79\x2c\x20\x72\x65\x6d\x61\x72\x6b\x69\x6e\x67\x20\x77\x68\x61'\ -b'\x74\x20\x61\x0d\x0a\x70\x6c\x65\x61\x73\x61\x6e\x74\x20\x65\x61'\ -b'\x73\x79\x20\x6c\x69\x66\x65\x20\x69\x74\x20\x77\x61\x73\x20\x74'\ -b'\x68\x65\x79\x20\x77\x65\x72\x65\x20\x61\x6c\x6c\x20\x6c\x65\x61'\ -b'\x64\x69\x6e\x67\x20\x6e\x6f\x77\x2c\x20\x61\x66\x74\x65\x72\x20'\ -b'\x74\x68\x65\x20\x63\x61\x72\x65\x73\x0d\x0a\x61\x6e\x64\x20\x77'\ -b'\x6f\x72\x72\x69\x65\x73\x20\x61\x6e\x64\x20\x66\x61\x74\x69\x67'\ -b'\x75\x65\x73\x20\x6f\x66\x20\x68\x6f\x75\x73\x65\x6b\x65\x65\x70'\ -b'\x69\x6e\x67\x20\x61\x74\x20\x68\x6f\x6d\x65\x2e\x0d\x0a\x0d\x0a'\ -b'\x54\x68\x65\x79\x20\x68\x61\x64\x20\x61\x20\x70\x6c\x65\x61\x73'\ -b'\x61\x6e\x74\x20\x72\x61\x6d\x62\x6c\x65\x20\x74\x68\x61\x74\x20'\ -b'\x64\x61\x79\x20\x6f\x76\x65\x72\x20\x67\x72\x61\x73\x73\x79\x20'\ -b'\x64\x6f\x77\x6e\x73\x20\x61\x6e\x64\x20\x61\x6c\x6f\x6e\x67\x20'\ -b'\x6e\x61\x72\x72\x6f\x77\x0d\x0a\x62\x79\x2d\x6c\x61\x6e\x65\x73'\ -b'\x2c\x20\x61\x6e\x64\x20\x63\x61\x6d\x70\x65\x64\x20\x61\x73\x20'\ -b'\x62\x65\x66\x6f\x72\x65\x2c\x20\x6f\x6e\x20\x61\x20\x63\x6f\x6d'\ -b'\x6d\x6f\x6e\x2c\x20\x6f\x6e\x6c\x79\x20\x74\x68\x69\x73\x20\x74'\ -b'\x69\x6d\x65\x20\x74\x68\x65\x20\x74\x77\x6f\x0d\x0a\x67\x75\x65'\ -b'\x73\x74\x73\x20\x74\x6f\x6f\x6b\x20\x63\x61\x72\x65\x20\x74\x68'\ -b'\x61\x74\x20\x54\x6f\x61\x64\x20\x73\x68\x6f\x75\x6c\x64\x20\x64'\ -b'\x6f\x20\x68\x69\x73\x20\x66\x61\x69\x72\x20\x73\x68\x61\x72\x65'\ -b'\x20\x6f\x66\x20\x77\x6f\x72\x6b\x2e\x20\x49\x6e\x0d\x0a\x63\x6f'\ -b'\x6e\x73\x65\x71\x75\x65\x6e\x63\x65\x2c\x20\x77\x68\x65\x6e\x20'\ -b'\x74\x68\x65\x20\x74\x69\x6d\x65\x20\x63\x61\x6d\x65\x20\x66\x6f'\ -b'\x72\x20\x73\x74\x61\x72\x74\x69\x6e\x67\x20\x6e\x65\x78\x74\x20'\ -b'\x6d\x6f\x72\x6e\x69\x6e\x67\x2c\x20\x54\x6f\x61\x64\x20\x77\x61'\ -b'\x73\x20\x62\x79\x0d\x0a\x6e\x6f\x20\x6d\x65\x61\x6e\x73\x20\x73'\ -b'\x6f\x20\x72\x61\x70\x74\x75\x72\x6f\x75\x73\x20\x61\x62\x6f\x75'\ -b'\x74\x20\x74\x68\x65\x20\x73\x69\x6d\x70\x6c\x69\x63\x69\x74\x79'\ -b'\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x69\x6d\x69\x74\x69\x76'\ -b'\x65\x20\x6c\x69\x66\x65\x2c\x20\x61\x6e\x64\x0d\x0a\x69\x6e\x64'\ -b'\x65\x65\x64\x20\x61\x74\x74\x65\x6d\x70\x74\x65\x64\x20\x74\x6f'\ -b'\x20\x72\x65\x73\x75\x6d\x65\x20\x68\x69\x73\x20\x70\x6c\x61\x63'\ -b'\x65\x20\x69\x6e\x20\x68\x69\x73\x20\x62\x75\x6e\x6b\x2c\x20\x77'\ -b'\x68\x65\x6e\x63\x65\x20\x68\x65\x20\x77\x61\x73\x20\x68\x61\x75'\ -b'\x6c\x65\x64\x0d\x0a\x62\x79\x20\x66\x6f\x72\x63\x65\x2e\x20\x54'\ -b'\x68\x65\x69\x72\x20\x77\x61\x79\x20\x6c\x61\x79\x2c\x20\x61\x73'\ -b'\x20\x62\x65\x66\x6f\x72\x65\x2c\x20\x61\x63\x72\x6f\x73\x73\x20'\ -b'\x63\x6f\x75\x6e\x74\x72\x79\x20\x62\x79\x20\x6e\x61\x72\x72\x6f'\ -b'\x77\x20\x6c\x61\x6e\x65\x73\x2c\x20\x61\x6e\x64\x0d\x0a\x69\x74'\ -b'\x20\x77\x61\x73\x20\x6e\x6f\x74\x20\x74\x69\x6c\x6c\x20\x74\x68'\ -b'\x65\x20\x61\x66\x74\x65\x72\x6e\x6f\x6f\x6e\x20\x74\x68\x61\x74'\ -b'\x20\x74\x68\x65\x79\x20\x63\x61\x6d\x65\x20\x6f\x75\x74\x20\x6f'\ -b'\x6e\x20\x74\x68\x65\x20\x68\x69\x67\x68\x2d\x72\x6f\x61\x64\x2c'\ -b'\x0d\x0a\x74\x68\x65\x69\x72\x20\x66\x69\x72\x73\x74\x20\x68\x69'\ -b'\x67\x68\x2d\x72\x6f\x61\x64\x3b\x20\x61\x6e\x64\x20\x74\x68\x65'\ -b'\x72\x65\x20\x64\x69\x73\x61\x73\x74\x65\x72\x2c\x20\x66\x6c\x65'\ -b'\x65\x74\x20\x61\x6e\x64\x20\x75\x6e\x66\x6f\x72\x65\x73\x65\x65'\ -b'\x6e\x2c\x20\x73\x70\x72\x61\x6e\x67\x0d\x0a\x6f\x75\x74\x20\x6f'\ -b'\x6e\x20\x74\x68\x65\x6d\xe2\x80\x94\x64\x69\x73\x61\x73\x74\x65'\ -b'\x72\x20\x6d\x6f\x6d\x65\x6e\x74\x6f\x75\x73\x20\x69\x6e\x64\x65'\ -b'\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x69\x72\x20\x65\x78\x70\x65'\ -b'\x64\x69\x74\x69\x6f\x6e\x2c\x20\x62\x75\x74\x20\x73\x69\x6d\x70'\ -b'\x6c\x79\x0d\x0a\x6f\x76\x65\x72\x77\x68\x65\x6c\x6d\x69\x6e\x67'\ -b'\x20\x69\x6e\x20\x69\x74\x73\x20\x65\x66\x66\x65\x63\x74\x20\x6f'\ -b'\x6e\x20\x74\x68\x65\x20\x61\x66\x74\x65\x72\x2d\x63\x61\x72\x65'\ -b'\x65\x72\x20\x6f\x66\x20\x54\x6f\x61\x64\x2e\x0d\x0a\x0d\x0a\x54'\ -b'\x68\x65\x79\x20\x77\x65\x72\x65\x20\x73\x74\x72\x6f\x6c\x6c\x69'\ -b'\x6e\x67\x20\x61\x6c\x6f\x6e\x67\x20\x74\x68\x65\x20\x68\x69\x67'\ -b'\x68\x2d\x72\x6f\x61\x64\x20\x65\x61\x73\x69\x6c\x79\x2c\x20\x74'\ -b'\x68\x65\x20\x4d\x6f\x6c\x65\x20\x62\x79\x20\x74\x68\x65\x20\x68'\ -b'\x6f\x72\x73\x65\xe2\x80\x99\x73\x0d\x0a\x68\x65\x61\x64\x2c\x20'\ -b'\x74\x61\x6c\x6b\x69\x6e\x67\x20\x74\x6f\x20\x68\x69\x6d\x2c\x20'\ -b'\x73\x69\x6e\x63\x65\x20\x74\x68\x65\x20\x68\x6f\x72\x73\x65\x20'\ -b'\x68\x61\x64\x20\x63\x6f\x6d\x70\x6c\x61\x69\x6e\x65\x64\x20\x74'\ -b'\x68\x61\x74\x20\x68\x65\x20\x77\x61\x73\x20\x62\x65\x69\x6e\x67'\ -b'\x0d\x0a\x66\x72\x69\x67\x68\x74\x66\x75\x6c\x6c\x79\x20\x6c\x65'\ -b'\x66\x74\x20\x6f\x75\x74\x20\x6f\x66\x20\x69\x74\x2c\x20\x61\x6e'\ -b'\x64\x20\x6e\x6f\x62\x6f\x64\x79\x20\x63\x6f\x6e\x73\x69\x64\x65'\ -b'\x72\x65\x64\x20\x68\x69\x6d\x20\x69\x6e\x20\x74\x68\x65\x20\x6c'\ -b'\x65\x61\x73\x74\x3b\x20\x74\x68\x65\x0d\x0a\x54\x6f\x61\x64\x20'\ -b'\x61\x6e\x64\x20\x74\x68\x65\x20\x57\x61\x74\x65\x72\x20\x52\x61'\ -b'\x74\x20\x77\x61\x6c\x6b\x69\x6e\x67\x20\x62\x65\x68\x69\x6e\x64'\ -b'\x20\x74\x68\x65\x20\x63\x61\x72\x74\x20\x74\x61\x6c\x6b\x69\x6e'\ -b'\x67\x20\x74\x6f\x67\x65\x74\x68\x65\x72\xe2\x80\x94\x61\x74\x0d'\ -b'\x0a\x6c\x65\x61\x73\x74\x20\x54\x6f\x61\x64\x20\x77\x61\x73\x20'\ -b'\x74\x61\x6c\x6b\x69\x6e\x67\x2c\x20\x61\x6e\x64\x20\x52\x61\x74'\ -b'\x20\x77\x61\x73\x20\x73\x61\x79\x69\x6e\x67\x20\x61\x74\x20\x69'\ -b'\x6e\x74\x65\x72\x76\x61\x6c\x73\x2c\x20\xe2\x80\x9c\x59\x65\x73'\ -b'\x2c\x0d\x0a\x70\x72\x65\x63\x69\x73\x65\x6c\x79\x3b\x20\x61\x6e'\ -b'\x64\x20\x77\x68\x61\x74\x20\x64\x69\x64\x20\x5f\x79\x6f\x75\x5f'\ -b'\x20\x73\x61\x79\x20\x74\x6f\x20\x5f\x68\x69\x6d\x3f\x5f\xe2\x80'\ -b'\x9d\xe2\x80\x94\x61\x6e\x64\x20\x74\x68\x69\x6e\x6b\x69\x6e\x67'\ -b'\x20\x61\x6c\x6c\x20\x74\x68\x65\x20\x74\x69\x6d\x65\x0d\x0a\x6f'\ -b'\x66\x20\x73\x6f\x6d\x65\x74\x68\x69\x6e\x67\x20\x76\x65\x72\x79'\ -b'\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x2c\x20\x77\x68\x65\x6e'\ -b'\x20\x66\x61\x72\x20\x62\x65\x68\x69\x6e\x64\x20\x74\x68\x65\x6d'\ -b'\x20\x74\x68\x65\x79\x20\x68\x65\x61\x72\x64\x20\x61\x20\x66\x61'\ -b'\x69\x6e\x74\x0d\x0a\x77\x61\x72\x6e\x69\x6e\x67\x20\x68\x75\x6d'\ -b'\x3b\x20\x6c\x69\x6b\x65\x20\x74\x68\x65\x20\x64\x72\x6f\x6e\x65'\ -b'\x20\x6f\x66\x20\x61\x20\x64\x69\x73\x74\x61\x6e\x74\x20\x62\x65'\ -b'\x65\x2e\x20\x47\x6c\x61\x6e\x63\x69\x6e\x67\x20\x62\x61\x63\x6b'\ -b'\x2c\x20\x74\x68\x65\x79\x20\x73\x61\x77\x20\x61\x0d\x0a\x73\x6d'\ -b'\x61\x6c\x6c\x20\x63\x6c\x6f\x75\x64\x20\x6f\x66\x20\x64\x75\x73'\ -b'\x74\x2c\x20\x77\x69\x74\x68\x20\x61\x20\x64\x61\x72\x6b\x20\x63'\ -b'\x65\x6e\x74\x72\x65\x20\x6f\x66\x20\x65\x6e\x65\x72\x67\x79\x2c'\ -b'\x20\x61\x64\x76\x61\x6e\x63\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68'\ -b'\x65\x6d\x20\x61\x74\x0d\x0a\x69\x6e\x63\x72\x65\x64\x69\x62\x6c'\ -b'\x65\x20\x73\x70\x65\x65\x64\x2c\x20\x77\x68\x69\x6c\x65\x20\x66'\ -b'\x72\x6f\x6d\x20\x6f\x75\x74\x20\x74\x68\x65\x20\x64\x75\x73\x74'\ -b'\x20\x61\x20\x66\x61\x69\x6e\x74\x20\xe2\x80\x9c\x50\x6f\x6f\x70'\ -b'\x2d\x70\x6f\x6f\x70\x21\xe2\x80\x9d\x20\x77\x61\x69\x6c\x65\x64'\ -b'\x0d\x0a\x6c\x69\x6b\x65\x20\x61\x6e\x20\x75\x6e\x65\x61\x73\x79'\ -b'\x20\x61\x6e\x69\x6d\x61\x6c\x20\x69\x6e\x20\x70\x61\x69\x6e\x2e'\ -b'\x20\x48\x61\x72\x64\x6c\x79\x20\x72\x65\x67\x61\x72\x64\x69\x6e'\ -b'\x67\x20\x69\x74\x2c\x20\x74\x68\x65\x79\x20\x74\x75\x72\x6e\x65'\ -b'\x64\x20\x74\x6f\x0d\x0a\x72\x65\x73\x75\x6d\x65\x20\x74\x68\x65'\ -b'\x69\x72\x20\x63\x6f\x6e\x76\x65\x72\x73\x61\x74\x69\x6f\x6e\x2c'\ -b'\x20\x77\x68\x65\x6e\x20\x69\x6e\x20\x61\x6e\x20\x69\x6e\x73\x74'\ -b'\x61\x6e\x74\x20\x28\x61\x73\x20\x69\x74\x20\x73\x65\x65\x6d\x65'\ -b'\x64\x29\x20\x74\x68\x65\x0d\x0a\x70\x65\x61\x63\x65\x66\x75\x6c'\ -b'\x20\x73\x63\x65\x6e\x65\x20\x77\x61\x73\x20\x63\x68\x61\x6e\x67'\ -b'\x65\x64\x2c\x20\x61\x6e\x64\x20\x77\x69\x74\x68\x20\x61\x20\x62'\ -b'\x6c\x61\x73\x74\x20\x6f\x66\x20\x77\x69\x6e\x64\x20\x61\x6e\x64'\ -b'\x20\x61\x20\x77\x68\x69\x72\x6c\x20\x6f\x66\x0d\x0a\x73\x6f\x75'\ -b'\x6e\x64\x20\x74\x68\x61\x74\x20\x6d\x61\x64\x65\x20\x74\x68\x65'\ -b'\x6d\x20\x6a\x75\x6d\x70\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x6e'\ -b'\x65\x61\x72\x65\x73\x74\x20\x64\x69\x74\x63\x68\x2c\x20\x49\x74'\ -b'\x20\x77\x61\x73\x20\x6f\x6e\x20\x74\x68\x65\x6d\x21\x20\x54\x68'\ -b'\x65\x0d\x0a\xe2\x80\x9c\x50\x6f\x6f\x70\x2d\x70\x6f\x6f\x70\xe2'\ -b'\x80\x9d\x20\x72\x61\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\x62'\ -b'\x72\x61\x7a\x65\x6e\x20\x73\x68\x6f\x75\x74\x20\x69\x6e\x20\x74'\ -b'\x68\x65\x69\x72\x20\x65\x61\x72\x73\x2c\x20\x74\x68\x65\x79\x20'\ -b'\x68\x61\x64\x20\x61\x20\x6d\x6f\x6d\x65\x6e\x74\xe2\x80\x99\x73'\ -b'\x0d\x0a\x67\x6c\x69\x6d\x70\x73\x65\x20\x6f\x66\x20\x61\x6e\x20'\ -b'\x69\x6e\x74\x65\x72\x69\x6f\x72\x20\x6f\x66\x20\x67\x6c\x69\x74'\ -b'\x74\x65\x72\x69\x6e\x67\x20\x70\x6c\x61\x74\x65\x2d\x67\x6c\x61'\ -b'\x73\x73\x20\x61\x6e\x64\x20\x72\x69\x63\x68\x20\x6d\x6f\x72\x6f'\ -b'\x63\x63\x6f\x2c\x20\x61\x6e\x64\x0d\x0a\x74\x68\x65\x20\x6d\x61'\ -b'\x67\x6e\x69\x66\x69\x63\x65\x6e\x74\x20\x6d\x6f\x74\x6f\x72\x2d'\ -b'\x63\x61\x72\x2c\x20\x69\x6d\x6d\x65\x6e\x73\x65\x2c\x20\x62\x72'\ -b'\x65\x61\x74\x68\x2d\x73\x6e\x61\x74\x63\x68\x69\x6e\x67\x2c\x20'\ -b'\x70\x61\x73\x73\x69\x6f\x6e\x61\x74\x65\x2c\x20\x77\x69\x74\x68'\ -b'\x0d\x0a\x69\x74\x73\x20\x70\x69\x6c\x6f\x74\x20\x74\x65\x6e\x73'\ -b'\x65\x20\x61\x6e\x64\x20\x68\x75\x67\x67\x69\x6e\x67\x20\x68\x69'\ -b'\x73\x20\x77\x68\x65\x65\x6c\x2c\x20\x70\x6f\x73\x73\x65\x73\x73'\ -b'\x65\x64\x20\x61\x6c\x6c\x20\x65\x61\x72\x74\x68\x20\x61\x6e\x64'\ -b'\x20\x61\x69\x72\x20\x66\x6f\x72\x0d\x0a\x74\x68\x65\x20\x66\x72'\ -b'\x61\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x61\x20\x73\x65\x63\x6f'\ -b'\x6e\x64\x2c\x20\x66\x6c\x75\x6e\x67\x20\x61\x6e\x20\x65\x6e\x76'\ -b'\x65\x6c\x6f\x70\x69\x6e\x67\x20\x63\x6c\x6f\x75\x64\x20\x6f\x66'\ -b'\x20\x64\x75\x73\x74\x20\x74\x68\x61\x74\x0d\x0a\x62\x6c\x69\x6e'\ -b'\x64\x65\x64\x20\x61\x6e\x64\x20\x65\x6e\x77\x72\x61\x70\x70\x65'\ -b'\x64\x20\x74\x68\x65\x6d\x20\x75\x74\x74\x65\x72\x6c\x79\x2c\x20'\ -b'\x61\x6e\x64\x20\x74\x68\x65\x6e\x20\x64\x77\x69\x6e\x64\x6c\x65'\ -b'\x64\x20\x74\x6f\x20\x61\x20\x73\x70\x65\x63\x6b\x20\x69\x6e\x20'\ -b'\x74\x68\x65\x0d\x0a\x66\x61\x72\x20\x64\x69\x73\x74\x61\x6e\x63'\ -b'\x65\x2c\x20\x63\x68\x61\x6e\x67\x65\x64\x20\x62\x61\x63\x6b\x20'\ -b'\x69\x6e\x74\x6f\x20\x61\x20\x64\x72\x6f\x6e\x69\x6e\x67\x20\x62'\ -b'\x65\x65\x20\x6f\x6e\x63\x65\x20\x6d\x6f\x72\x65\x2e\x0d\x0a\x0d'\ -b'\x0a\x54\x68\x65\x20\x6f\x6c\x64\x20\x67\x72\x65\x79\x20\x68\x6f'\ -b'\x72\x73\x65\x2c\x20\x64\x72\x65\x61\x6d\x69\x6e\x67\x2c\x20\x61'\ -b'\x73\x20\x68\x65\x20\x70\x6c\x6f\x64\x64\x65\x64\x20\x61\x6c\x6f'\ -b'\x6e\x67\x2c\x20\x6f\x66\x20\x68\x69\x73\x20\x71\x75\x69\x65\x74'\ -b'\x0d\x0a\x70\x61\x64\x64\x6f\x63\x6b\x2c\x20\x69\x6e\x20\x61\x20'\ -b'\x6e\x65\x77\x20\x72\x61\x77\x20\x73\x69\x74\x75\x61\x74\x69\x6f'\ -b'\x6e\x20\x73\x75\x63\x68\x20\x61\x73\x20\x74\x68\x69\x73\x20\x73'\ -b'\x69\x6d\x70\x6c\x79\x20\x61\x62\x61\x6e\x64\x6f\x6e\x65\x64\x20'\ -b'\x68\x69\x6d\x73\x65\x6c\x66\x0d\x0a\x74\x6f\x20\x68\x69\x73\x20'\ -b'\x6e\x61\x74\x75\x72\x61\x6c\x20\x65\x6d\x6f\x74\x69\x6f\x6e\x73'\ -b'\x2e\x20\x52\x65\x61\x72\x69\x6e\x67\x2c\x20\x70\x6c\x75\x6e\x67'\ -b'\x69\x6e\x67\x2c\x20\x62\x61\x63\x6b\x69\x6e\x67\x20\x73\x74\x65'\ -b'\x61\x64\x69\x6c\x79\x2c\x20\x69\x6e\x20\x73\x70\x69\x74\x65\x0d'\ -b'\x0a\x6f\x66\x20\x61\x6c\x6c\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65'\ -b'\xe2\x80\x99\x73\x20\x65\x66\x66\x6f\x72\x74\x73\x20\x61\x74\x20'\ -b'\x68\x69\x73\x20\x68\x65\x61\x64\x2c\x20\x61\x6e\x64\x20\x61\x6c'\ -b'\x6c\x20\x74\x68\x65\x20\x4d\x6f\x6c\x65\xe2\x80\x99\x73\x20\x6c'\ -b'\x69\x76\x65\x6c\x79\x0d\x0a\x6c\x61\x6e\x67\x75\x61\x67\x65\x20'\ -b'\x64\x69\x72\x65\x63\x74\x65\x64\x20\x61\x74\x20\x68\x69\x73\x20'\ -b'\x62\x65\x74\x74\x65\x72\x20\x66\x65\x65\x6c\x69\x6e\x67\x73\x2c'\ -b'\x20\x68\x65\x20\x64\x72\x6f\x76\x65\x20\x74\x68\x65\x20\x63\x61'\ -b'\x72\x74\x20\x62\x61\x63\x6b\x77\x61\x72\x64\x73\x0d\x0a\x74\x6f'\ -b'\x77\x61\x72\x64\x73\x20\x74\x68\x65\x20\x64\x65\x65\x70\x20\x64'\ -b'\x69\x74\x63\x68\x20\x61\x74\x20\x74\x68\x65\x20\x73\x69\x64\x65'\ -b'\x20\x6f\x66\x20\x74\x68\x65\x20\x72\x6f\x61\x64\x2e\x20\x49\x74'\ -b'\x20\x77\x61\x76\x65\x72\x65\x64\x20\x61\x6e\x0d\x0a\x69\x6e\x73'\ -b'\x74\x61\x6e\x74\xe2\x80\x94\x74\x68\x65\x6e\x20\x74\x68\x65\x72'\ -b'\x65\x20\x77\x61\x73\x20\x61\x20\x68\x65\x61\x72\x74\x72\x65\x6e'\ -b'\x64\x69\x6e\x67\x20\x63\x72\x61\x73\x68\xe2\x80\x94\x61\x6e\x64'\ -b'\x20\x74\x68\x65\x20\x63\x61\x6e\x61\x72\x79\x2d\x63\x6f\x6c\x6f'\ -b'\x75\x72\x65\x64\x0d\x0a\x63\x61\x72\x74\x2c\x20\x74\x68\x65\x69'\ -b'\x72\x20\x70\x72\x69\x64\x65\x20\x61\x6e\x64\x20\x74\x68\x65\x69'\ -b'\x72\x20\x6a\x6f\x79\x2c\x20\x6c\x61\x79\x20\x6f\x6e\x20\x69\x74'\ -b'\x73\x20\x73\x69\x64\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x64\x69'\ -b'\x74\x63\x68\x2c\x20\x61\x6e\x0d\x0a\x69\x72\x72\x65\x64\x65\x65'\ -b'\x6d\x61\x62\x6c\x65\x20\x77\x72\x65\x63\x6b\x2e\x0d\x0a\x0d\x0a'\ -b'\x54\x68\x65\x20\x52\x61\x74\x20\x64\x61\x6e\x63\x65\x64\x20\x75'\ -b'\x70\x20\x61\x6e\x64\x20\x64\x6f\x77\x6e\x20\x69\x6e\x20\x74\x68'\ -b'\x65\x20\x72\x6f\x61\x64\x2c\x20\x73\x69\x6d\x70\x6c\x79\x20\x74'\ -b'\x72\x61\x6e\x73\x70\x6f\x72\x74\x65\x64\x20\x77\x69\x74\x68\x0d'\ -b'\x0a\x70\x61\x73\x73\x69\x6f\x6e\x2e\x20\xe2\x80\x9c\x59\x6f\x75'\ -b'\x20\x76\x69\x6c\x6c\x61\x69\x6e\x73\x21\xe2\x80\x9d\x20\x68\x65'\ -b'\x20\x73\x68\x6f\x75\x74\x65\x64\x2c\x20\x73\x68\x61\x6b\x69\x6e'\ -b'\x67\x20\x62\x6f\x74\x68\x20\x66\x69\x73\x74\x73\x2c\x20\xe2\x80'\ -b'\x9c\x59\x6f\x75\x0d\x0a\x73\x63\x6f\x75\x6e\x64\x72\x65\x6c\x73'\ -b'\x2c\x20\x79\x6f\x75\x20\x68\x69\x67\x68\x77\x61\x79\x6d\x65\x6e'\ -b'\x2c\x20\x79\x6f\x75\xe2\x80\x94\x79\x6f\x75\xe2\x80\x94\x72\x6f'\ -b'\x61\x64\x68\x6f\x67\x73\x21\xe2\x80\x94\x49\xe2\x80\x99\x6c\x6c'\ -b'\x20\x68\x61\x76\x65\x20\x74\x68\x65\x20\x6c\x61\x77\x20\x6f\x66'\ -b'\x20\x79\x6f\x75\x21\x0d\x0a\x49\xe2\x80\x99\x6c\x6c\x20\x72\x65'\ -b'\x70\x6f\x72\x74\x20\x79\x6f\x75\x21\x20\x49\xe2\x80\x99\x6c\x6c'\ -b'\x20\x74\x61\x6b\x65\x20\x79\x6f\x75\x20\x74\x68\x72\x6f\x75\x67'\ -b'\x68\x20\x61\x6c\x6c\x20\x74\x68\x65\x20\x43\x6f\x75\x72\x74\x73'\ -b'\x21\xe2\x80\x9d\x20\x48\x69\x73\x0d\x0a\x68\x6f\x6d\x65\x2d\x73'\ -b'\x69\x63\x6b\x6e\x65\x73\x73\x20\x68\x61\x64\x20\x71\x75\x69\x74'\ -b'\x65\x20\x73\x6c\x69\x70\x70\x65\x64\x20\x61\x77\x61\x79\x20\x66'\ -b'\x72\x6f\x6d\x20\x68\x69\x6d\x2c\x20\x61\x6e\x64\x20\x66\x6f\x72'\ -b'\x20\x74\x68\x65\x20\x6d\x6f\x6d\x65\x6e\x74\x20\x68\x65\x0d\x0a'\ -b'\x77\x61\x73\x20\x74\x68\x65\x20\x73\x6b\x69\x70\x70\x65\x72\x20'\ -b'\x6f\x66\x20\x74\x68\x65\x20\x63\x61\x6e\x61\x72\x79\x2d\x63\x6f'\ -b'\x6c\x6f\x75\x72\x65\x64\x20\x76\x65\x73\x73\x65\x6c\x20\x64\x72'\ -b'\x69\x76\x65\x6e\x20\x6f\x6e\x20\x61\x20\x73\x68\x6f\x61\x6c\x20'\ -b'\x62\x79\x20\x74\x68\x65\x0d\x0a\x72\x65\x63\x6b\x6c\x65\x73\x73'\ -b'\x20\x6a\x6f\x63\x6b\x65\x79\x69\x6e\x67\x20\x6f\x66\x20\x72\x69'\ -b'\x76\x61\x6c\x20\x6d\x61\x72\x69\x6e\x65\x72\x73\x2c\x20\x61\x6e'\ -b'\x64\x20\x68\x65\x20\x77\x61\x73\x20\x74\x72\x79\x69\x6e\x67\x20'\ -b'\x74\x6f\x20\x72\x65\x63\x6f\x6c\x6c\x65\x63\x74\x0d\x0a\x61\x6c'\ -b'\x6c\x20\x74\x68\x65\x20\x66\x69\x6e\x65\x20\x61\x6e\x64\x20\x62'\ -b'\x69\x74\x69\x6e\x67\x20\x74\x68\x69\x6e\x67\x73\x20\x68\x65\x20'\ -b'\x75\x73\x65\x64\x20\x74\x6f\x20\x73\x61\x79\x20\x74\x6f\x20\x6d'\ -b'\x61\x73\x74\x65\x72\x73\x20\x6f\x66\x0d\x0a\x73\x74\x65\x61\x6d'\ -b'\x2d\x6c\x61\x75\x6e\x63\x68\x65\x73\x20\x77\x68\x65\x6e\x20\x74'\ -b'\x68\x65\x69\x72\x20\x77\x61\x73\x68\x2c\x20\x61\x73\x20\x74\x68'\ -b'\x65\x79\x20\x64\x72\x6f\x76\x65\x20\x74\x6f\x6f\x20\x6e\x65\x61'\ -b'\x72\x20\x74\x68\x65\x20\x62\x61\x6e\x6b\x2c\x20\x75\x73\x65\x64'\ -b'\x0d\x0a\x74\x6f\x20\x66\x6c\x6f\x6f\x64\x20\x68\x69\x73\x20\x70'\ -b'\x61\x72\x6c\x6f\x75\x72\x2d\x63\x61\x72\x70\x65\x74\x20\x61\x74'\ -b'\x20\x68\x6f\x6d\x65\x2e\x0d\x0a\x0d\x0a\x54\x6f\x61\x64\x20\x73'\ -b'\x61\x74\x20\x73\x74\x72\x61\x69\x67\x68\x74\x20\x64\x6f\x77\x6e'\ -b'\x20\x69\x6e\x20\x74\x68\x65\x20\x6d\x69\x64\x64\x6c\x65\x20\x6f'\ -b'\x66\x20\x74\x68\x65\x20\x64\x75\x73\x74\x79\x20\x72\x6f\x61\x64'\ -b'\x2c\x20\x68\x69\x73\x20\x6c\x65\x67\x73\x0d\x0a\x73\x74\x72\x65'\ -b'\x74\x63\x68\x65\x64\x20\x6f\x75\x74\x20\x62\x65\x66\x6f\x72\x65'\ -b'\x20\x68\x69\x6d\x2c\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x65\x64'\ -b'\x20\x66\x69\x78\x65\x64\x6c\x79\x20\x69\x6e\x20\x74\x68\x65\x20'\ -b'\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65'\ -b'\x0d\x0a\x64\x69\x73\x61\x70\x70\x65\x61\x72\x69\x6e\x67\x20\x6d'\ -b'\x6f\x74\x6f\x72\x2d\x63\x61\x72\x2e\x20\x48\x65\x20\x62\x72\x65'\ -b'\x61\x74\x68\x65\x64\x20\x73\x68\x6f\x72\x74\x2c\x20\x68\x69\x73'\ -b'\x20\x66\x61\x63\x65\x20\x77\x6f\x72\x65\x20\x61\x20\x70\x6c\x61'\ -b'\x63\x69\x64\x0d\x0a\x73\x61\x74\x69\x73\x66\x69\x65\x64\x20\x65'\ -b'\x78\x70\x72\x65\x73\x73\x69\x6f\x6e\x2c\x20\x61\x6e\x64\x20\x61'\ -b'\x74\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x68\x65\x20\x66'\ -b'\x61\x69\x6e\x74\x6c\x79\x20\x6d\x75\x72\x6d\x75\x72\x65\x64\x20'\ -b'\xe2\x80\x9c\x50\x6f\x6f\x70\x2d\x70\x6f\x6f\x70\x21\xe2\x80\x9d'\ -b'\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x4d\x6f\x6c\x65\x20\x77\x61\x73'\ -b'\x20\x62\x75\x73\x79\x20\x74\x72\x79\x69\x6e\x67\x20\x74\x6f\x20'\ -b'\x71\x75\x69\x65\x74\x20\x74\x68\x65\x20\x68\x6f\x72\x73\x65\x2c'\ -b'\x20\x77\x68\x69\x63\x68\x20\x68\x65\x20\x73\x75\x63\x63\x65\x65'\ -b'\x64\x65\x64\x20\x69\x6e\x0d\x0a\x64\x6f\x69\x6e\x67\x20\x61\x66'\ -b'\x74\x65\x72\x20\x61\x20\x74\x69\x6d\x65\x2e\x20\x54\x68\x65\x6e'\ -b'\x20\x68\x65\x20\x77\x65\x6e\x74\x20\x74\x6f\x20\x6c\x6f\x6f\x6b'\ -b'\x20\x61\x74\x20\x74\x68\x65\x20\x63\x61\x72\x74\x2c\x20\x6f\x6e'\ -b'\x20\x69\x74\x73\x20\x73\x69\x64\x65\x20\x69\x6e\x0d\x0a\x74\x68'\ -b'\x65\x20\x64\x69\x74\x63\x68\x2e\x20\x49\x74\x20\x77\x61\x73\x20'\ -b'\x69\x6e\x64\x65\x65\x64\x20\x61\x20\x73\x6f\x72\x72\x79\x20\x73'\ -b'\x69\x67\x68\x74\x2e\x20\x50\x61\x6e\x65\x6c\x73\x20\x61\x6e\x64'\ -b'\x20\x77\x69\x6e\x64\x6f\x77\x73\x20\x73\x6d\x61\x73\x68\x65\x64'\ -b'\x2c\x0d\x0a\x61\x78\x6c\x65\x73\x20\x68\x6f\x70\x65\x6c\x65\x73'\ -b'\x73\x6c\x79\x20\x62\x65\x6e\x74\x2c\x20\x6f\x6e\x65\x20\x77\x68'\ -b'\x65\x65\x6c\x20\x6f\x66\x66\x2c\x20\x73\x61\x72\x64\x69\x6e\x65'\ -b'\x2d\x74\x69\x6e\x73\x20\x73\x63\x61\x74\x74\x65\x72\x65\x64\x20'\ -b'\x6f\x76\x65\x72\x20\x74\x68\x65\x0d\x0a\x77\x69\x64\x65\x20\x77'\ -b'\x6f\x72\x6c\x64\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x62\x69'\ -b'\x72\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x62\x69\x72\x64\x2d\x63'\ -b'\x61\x67\x65\x20\x73\x6f\x62\x62\x69\x6e\x67\x20\x70\x69\x74\x69'\ -b'\x66\x75\x6c\x6c\x79\x20\x61\x6e\x64\x20\x63\x61\x6c\x6c\x69\x6e'\ -b'\x67\x0d\x0a\x74\x6f\x20\x62\x65\x20\x6c\x65\x74\x20\x6f\x75\x74'\ -b'\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x52\x61\x74\x20\x63\x61\x6d'\ -b'\x65\x20\x74\x6f\x20\x68\x65\x6c\x70\x20\x68\x69\x6d\x2c\x20\x62'\ -b'\x75\x74\x20\x74\x68\x65\x69\x72\x20\x75\x6e\x69\x74\x65\x64\x20'\ -b'\x65\x66\x66\x6f\x72\x74\x73\x20\x77\x65\x72\x65\x20\x6e\x6f\x74'\ -b'\x20\x73\x75\x66\x66\x69\x63\x69\x65\x6e\x74\x0d\x0a\x74\x6f\x20'\ -b'\x72\x69\x67\x68\x74\x20\x74\x68\x65\x20\x63\x61\x72\x74\x2e\x20'\ -b'\xe2\x80\x9c\x48\x69\x21\x20\x54\x6f\x61\x64\x21\xe2\x80\x9d\x20'\ -b'\x74\x68\x65\x79\x20\x63\x72\x69\x65\x64\x2e\x20\xe2\x80\x9c\x43'\ -b'\x6f\x6d\x65\x20\x61\x6e\x64\x20\x62\x65\x61\x72\x20\x61\x20\x68'\ -b'\x61\x6e\x64\x2c\x20\x63\x61\x6e\xe2\x80\x99\x74\x0d\x0a\x79\x6f'\ -b'\x75\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x54\x6f\x61'\ -b'\x64\x20\x6e\x65\x76\x65\x72\x20\x61\x6e\x73\x77\x65\x72\x65\x64'\ -b'\x20\x61\x20\x77\x6f\x72\x64\x2c\x20\x6f\x72\x20\x62\x75\x64\x67'\ -b'\x65\x64\x20\x66\x72\x6f\x6d\x20\x68\x69\x73\x20\x73\x65\x61\x74'\ -b'\x20\x69\x6e\x20\x74\x68\x65\x20\x72\x6f\x61\x64\x3b\x20\x73\x6f'\ -b'\x0d\x0a\x74\x68\x65\x79\x20\x77\x65\x6e\x74\x20\x74\x6f\x20\x73'\ -b'\x65\x65\x20\x77\x68\x61\x74\x20\x77\x61\x73\x20\x74\x68\x65\x20'\ -b'\x6d\x61\x74\x74\x65\x72\x20\x77\x69\x74\x68\x20\x68\x69\x6d\x2e'\ -b'\x20\x54\x68\x65\x79\x20\x66\x6f\x75\x6e\x64\x20\x68\x69\x6d\x20'\ -b'\x69\x6e\x20\x61\x20\x73\x6f\x72\x74\x0d\x0a\x6f\x66\x20\x61\x20'\ -b'\x74\x72\x61\x6e\x63\x65\x2c\x20\x61\x20\x68\x61\x70\x70\x79\x20'\ -b'\x73\x6d\x69\x6c\x65\x20\x6f\x6e\x20\x68\x69\x73\x20\x66\x61\x63'\ -b'\x65\x2c\x20\x68\x69\x73\x20\x65\x79\x65\x73\x20\x73\x74\x69\x6c'\ -b'\x6c\x20\x66\x69\x78\x65\x64\x20\x6f\x6e\x20\x74\x68\x65\x0d\x0a'\ -b'\x64\x75\x73\x74\x79\x20\x77\x61\x6b\x65\x20\x6f\x66\x20\x74\x68'\ -b'\x65\x69\x72\x20\x64\x65\x73\x74\x72\x6f\x79\x65\x72\x2e\x20\x41'\ -b'\x74\x20\x69\x6e\x74\x65\x72\x76\x61\x6c\x73\x20\x68\x65\x20\x77'\ -b'\x61\x73\x20\x73\x74\x69\x6c\x6c\x20\x68\x65\x61\x72\x64\x20\x74'\ -b'\x6f\x0d\x0a\x6d\x75\x72\x6d\x75\x72\x20\xe2\x80\x9c\x50\x6f\x6f'\ -b'\x70\x2d\x70\x6f\x6f\x70\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68'\ -b'\x65\x20\x52\x61\x74\x20\x73\x68\x6f\x6f\x6b\x20\x68\x69\x6d\x20'\ -b'\x62\x79\x20\x74\x68\x65\x20\x73\x68\x6f\x75\x6c\x64\x65\x72\x2e'\ -b'\x20\xe2\x80\x9c\x41\x72\x65\x20\x79\x6f\x75\x20\x63\x6f\x6d\x69'\ -b'\x6e\x67\x20\x74\x6f\x20\x68\x65\x6c\x70\x20\x75\x73\x2c\x20\x54'\ -b'\x6f\x61\x64\x3f\xe2\x80\x9d\x0d\x0a\x68\x65\x20\x64\x65\x6d\x61'\ -b'\x6e\x64\x65\x64\x20\x73\x74\x65\x72\x6e\x6c\x79\x2e\x0d\x0a\x0d'\ -b'\x0a\xe2\x80\x9c\x47\x6c\x6f\x72\x69\x6f\x75\x73\x2c\x20\x73\x74'\ -b'\x69\x72\x72\x69\x6e\x67\x20\x73\x69\x67\x68\x74\x21\xe2\x80\x9d'\ -b'\x20\x6d\x75\x72\x6d\x75\x72\x65\x64\x20\x54\x6f\x61\x64\x2c\x20'\ -b'\x6e\x65\x76\x65\x72\x20\x6f\x66\x66\x65\x72\x69\x6e\x67\x20\x74'\ -b'\x6f\x20\x6d\x6f\x76\x65\x2e\x20\xe2\x80\x9c\x54\x68\x65\x0d\x0a'\ -b'\x70\x6f\x65\x74\x72\x79\x20\x6f\x66\x20\x6d\x6f\x74\x69\x6f\x6e'\ -b'\x21\x20\x54\x68\x65\x20\x5f\x72\x65\x61\x6c\x5f\x20\x77\x61\x79'\ -b'\x20\x74\x6f\x20\x74\x72\x61\x76\x65\x6c\x21\x20\x54\x68\x65\x20'\ -b'\x5f\x6f\x6e\x6c\x79\x5f\x20\x77\x61\x79\x20\x74\x6f\x20\x74\x72'\ -b'\x61\x76\x65\x6c\x21\x0d\x0a\x48\x65\x72\x65\x20\x74\x6f\x2d\x64'\ -b'\x61\x79\xe2\x80\x94\x69\x6e\x20\x6e\x65\x78\x74\x20\x77\x65\x65'\ -b'\x6b\x20\x74\x6f\x2d\x6d\x6f\x72\x72\x6f\x77\x21\x20\x56\x69\x6c'\ -b'\x6c\x61\x67\x65\x73\x20\x73\x6b\x69\x70\x70\x65\x64\x2c\x20\x74'\ -b'\x6f\x77\x6e\x73\x20\x61\x6e\x64\x20\x63\x69\x74\x69\x65\x73\x0d'\ -b'\x0a\x6a\x75\x6d\x70\x65\x64\xe2\x80\x94\x61\x6c\x77\x61\x79\x73'\ -b'\x20\x73\x6f\x6d\x65\x62\x6f\x64\x79\x20\x65\x6c\x73\x65\xe2\x80'\ -b'\x99\x73\x20\x68\x6f\x72\x69\x7a\x6f\x6e\x21\x20\x4f\x20\x62\x6c'\ -b'\x69\x73\x73\x21\x20\x4f\x20\x70\x6f\x6f\x70\x2d\x70\x6f\x6f\x70'\ -b'\x21\x20\x4f\x20\x6d\x79\x21\x20\x4f\x0d\x0a\x6d\x79\x21\xe2\x80'\ -b'\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4f\x20\x5f\x73\x74\x6f\x70\x5f'\ -b'\x20\x62\x65\x69\x6e\x67\x20\x61\x6e\x20\x61\x73\x73\x2c\x20\x54'\ -b'\x6f\x61\x64\x21\xe2\x80\x9d\x20\x63\x72\x69\x65\x64\x20\x74\x68'\ -b'\x65\x20\x4d\x6f\x6c\x65\x20\x64\x65\x73\x70\x61\x69\x72\x69\x6e'\ -b'\x67\x6c\x79\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x41\x6e\x64\x20\x74'\ -b'\x6f\x20\x74\x68\x69\x6e\x6b\x20\x49\x20\x6e\x65\x76\x65\x72\x20'\ -b'\x5f\x6b\x6e\x65\x77\x21\x5f\xe2\x80\x9d\x20\x77\x65\x6e\x74\x20'\ -b'\x6f\x6e\x20\x74\x68\x65\x20\x54\x6f\x61\x64\x20\x69\x6e\x20\x61'\ -b'\x20\x64\x72\x65\x61\x6d\x79\x20\x6d\x6f\x6e\x6f\x74\x6f\x6e\x65'\ -b'\x2e\x0d\x0a\xe2\x80\x9c\x41\x6c\x6c\x20\x74\x68\x6f\x73\x65\x20'\ -b'\x77\x61\x73\x74\x65\x64\x20\x79\x65\x61\x72\x73\x20\x74\x68\x61'\ -b'\x74\x20\x6c\x69\x65\x20\x62\x65\x68\x69\x6e\x64\x20\x6d\x65\x2c'\ -b'\x20\x49\x20\x6e\x65\x76\x65\x72\x20\x6b\x6e\x65\x77\x2c\x20\x6e'\ -b'\x65\x76\x65\x72\x20\x65\x76\x65\x6e\x0d\x0a\x5f\x64\x72\x65\x61'\ -b'\x6d\x74\x21\x5f\x20\x42\x75\x74\x20\x5f\x6e\x6f\x77\x5f\xe2\x80'\ -b'\x94\x62\x75\x74\x20\x6e\x6f\x77\x20\x74\x68\x61\x74\x20\x49\x20'\ -b'\x6b\x6e\x6f\x77\x2c\x20\x6e\x6f\x77\x20\x74\x68\x61\x74\x20\x49'\ -b'\x20\x66\x75\x6c\x6c\x79\x20\x72\x65\x61\x6c\x69\x73\x65\x21\x20'\ -b'\x4f\x0d\x0a\x77\x68\x61\x74\x20\x61\x20\x66\x6c\x6f\x77\x65\x72'\ -b'\x79\x20\x74\x72\x61\x63\x6b\x20\x6c\x69\x65\x73\x20\x73\x70\x72'\ -b'\x65\x61\x64\x20\x62\x65\x66\x6f\x72\x65\x20\x6d\x65\x2c\x20\x68'\ -b'\x65\x6e\x63\x65\x66\x6f\x72\x74\x68\x21\x20\x57\x68\x61\x74\x0d'\ -b'\x0a\x64\x75\x73\x74\x2d\x63\x6c\x6f\x75\x64\x73\x20\x73\x68\x61'\ -b'\x6c\x6c\x20\x73\x70\x72\x69\x6e\x67\x20\x75\x70\x20\x62\x65\x68'\ -b'\x69\x6e\x64\x20\x6d\x65\x20\x61\x73\x20\x49\x20\x73\x70\x65\x65'\ -b'\x64\x20\x6f\x6e\x20\x6d\x79\x20\x72\x65\x63\x6b\x6c\x65\x73\x73'\ -b'\x20\x77\x61\x79\x21\x0d\x0a\x57\x68\x61\x74\x20\x63\x61\x72\x74'\ -b'\x73\x20\x49\x20\x73\x68\x61\x6c\x6c\x20\x66\x6c\x69\x6e\x67\x20'\ -b'\x63\x61\x72\x65\x6c\x65\x73\x73\x6c\x79\x20\x69\x6e\x74\x6f\x20'\ -b'\x74\x68\x65\x20\x64\x69\x74\x63\x68\x20\x69\x6e\x20\x74\x68\x65'\ -b'\x20\x77\x61\x6b\x65\x20\x6f\x66\x20\x6d\x79\x0d\x0a\x6d\x61\x67'\ -b'\x6e\x69\x66\x69\x63\x65\x6e\x74\x20\x6f\x6e\x73\x65\x74\x21\x20'\ -b'\x48\x6f\x72\x72\x69\x64\x20\x6c\x69\x74\x74\x6c\x65\x20\x63\x61'\ -b'\x72\x74\x73\xe2\x80\x94\x63\x6f\x6d\x6d\x6f\x6e\x20\x63\x61\x72'\ -b'\x74\x73\xe2\x80\x94\x63\x61\x6e\x61\x72\x79\x2d\x63\x6f\x6c\x6f'\ -b'\x75\x72\x65\x64\x0d\x0a\x63\x61\x72\x74\x73\x21\xe2\x80\x9d\x0d'\ -b'\x0a\x0d\x0a\xe2\x80\x9c\x57\x68\x61\x74\x20\x61\x72\x65\x20\x77'\ -b'\x65\x20\x74\x6f\x20\x64\x6f\x20\x77\x69\x74\x68\x20\x68\x69\x6d'\ -b'\x3f\xe2\x80\x9d\x20\x61\x73\x6b\x65\x64\x20\x74\x68\x65\x20\x4d'\ -b'\x6f\x6c\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x57\x61\x74\x65\x72'\ -b'\x20\x52\x61\x74\x2e\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4e\x6f\x74\x68'\ -b'\x69\x6e\x67\x20\x61\x74\x20\x61\x6c\x6c\x2c\xe2\x80\x9d\x20\x72'\ -b'\x65\x70\x6c\x69\x65\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x66'\ -b'\x69\x72\x6d\x6c\x79\x2e\x20\xe2\x80\x9c\x42\x65\x63\x61\x75\x73'\ -b'\x65\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x72\x65\x61\x6c\x6c'\ -b'\x79\x0d\x0a\x6e\x6f\x74\x68\x69\x6e\x67\x20\x74\x6f\x20\x62\x65'\ -b'\x20\x64\x6f\x6e\x65\x2e\x20\x59\x6f\x75\x20\x73\x65\x65\x2c\x20'\ -b'\x49\x20\x6b\x6e\x6f\x77\x20\x68\x69\x6d\x20\x66\x72\x6f\x6d\x20'\ -b'\x6f\x66\x20\x6f\x6c\x64\x2e\x20\x48\x65\x20\x69\x73\x20\x6e\x6f'\ -b'\x77\x0d\x0a\x70\x6f\x73\x73\x65\x73\x73\x65\x64\x2e\x20\x48\x65'\ -b'\x20\x68\x61\x73\x20\x67\x6f\x74\x20\x61\x20\x6e\x65\x77\x20\x63'\ -b'\x72\x61\x7a\x65\x2c\x20\x61\x6e\x64\x20\x69\x74\x20\x61\x6c\x77'\ -b'\x61\x79\x73\x20\x74\x61\x6b\x65\x73\x20\x68\x69\x6d\x20\x74\x68'\ -b'\x61\x74\x20\x77\x61\x79\x2c\x20\x69\x6e\x0d\x0a\x69\x74\x73\x20'\ -b'\x66\x69\x72\x73\x74\x20\x73\x74\x61\x67\x65\x2e\x20\x48\x65\xe2'\ -b'\x80\x99\x6c\x6c\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x6c\x69'\ -b'\x6b\x65\x20\x74\x68\x61\x74\x20\x66\x6f\x72\x20\x64\x61\x79\x73'\ -b'\x20\x6e\x6f\x77\x2c\x20\x6c\x69\x6b\x65\x20\x61\x6e\x20\x61\x6e'\ -b'\x69\x6d\x61\x6c\x0d\x0a\x77\x61\x6c\x6b\x69\x6e\x67\x20\x69\x6e'\ -b'\x20\x61\x20\x68\x61\x70\x70\x79\x20\x64\x72\x65\x61\x6d\x2c\x20'\ -b'\x71\x75\x69\x74\x65\x20\x75\x73\x65\x6c\x65\x73\x73\x20\x66\x6f'\ -b'\x72\x20\x61\x6c\x6c\x20\x70\x72\x61\x63\x74\x69\x63\x61\x6c\x20'\ -b'\x70\x75\x72\x70\x6f\x73\x65\x73\x2e\x0d\x0a\x4e\x65\x76\x65\x72'\ -b'\x20\x6d\x69\x6e\x64\x20\x68\x69\x6d\x2e\x20\x4c\x65\x74\xe2\x80'\ -b'\x99\x73\x20\x67\x6f\x20\x61\x6e\x64\x20\x73\x65\x65\x20\x77\x68'\ -b'\x61\x74\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x74\x6f\x20\x62'\ -b'\x65\x20\x64\x6f\x6e\x65\x20\x61\x62\x6f\x75\x74\x20\x74\x68\x65'\ -b'\x0d\x0a\x63\x61\x72\x74\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\x41\x20'\ -b'\x63\x61\x72\x65\x66\x75\x6c\x20\x69\x6e\x73\x70\x65\x63\x74\x69'\ -b'\x6f\x6e\x20\x73\x68\x6f\x77\x65\x64\x20\x74\x68\x65\x6d\x20\x74'\ -b'\x68\x61\x74\x2c\x20\x65\x76\x65\x6e\x20\x69\x66\x20\x74\x68\x65'\ -b'\x79\x20\x73\x75\x63\x63\x65\x65\x64\x65\x64\x20\x69\x6e\x0d\x0a'\ -b'\x72\x69\x67\x68\x74\x69\x6e\x67\x20\x69\x74\x20\x62\x79\x20\x74'\ -b'\x68\x65\x6d\x73\x65\x6c\x76\x65\x73\x2c\x20\x74\x68\x65\x20\x63'\ -b'\x61\x72\x74\x20\x77\x6f\x75\x6c\x64\x20\x74\x72\x61\x76\x65\x6c'\ -b'\x20\x6e\x6f\x20\x6c\x6f\x6e\x67\x65\x72\x2e\x20\x54\x68\x65\x20'\ -b'\x61\x78\x6c\x65\x73\x0d\x0a\x77\x65\x72\x65\x20\x69\x6e\x20\x61'\ -b'\x20\x68\x6f\x70\x65\x6c\x65\x73\x73\x20\x73\x74\x61\x74\x65\x2c'\ -b'\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x6d\x69\x73\x73\x69\x6e\x67'\ -b'\x20\x77\x68\x65\x65\x6c\x20\x77\x61\x73\x20\x73\x68\x61\x74\x74'\ -b'\x65\x72\x65\x64\x20\x69\x6e\x74\x6f\x0d\x0a\x70\x69\x65\x63\x65'\ -b'\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x52\x61\x74\x20\x6b\x6e'\ -b'\x6f\x74\x74\x65\x64\x20\x74\x68\x65\x20\x68\x6f\x72\x73\x65\xe2'\ -b'\x80\x99\x73\x20\x72\x65\x69\x6e\x73\x20\x6f\x76\x65\x72\x20\x68'\ -b'\x69\x73\x20\x62\x61\x63\x6b\x20\x61\x6e\x64\x20\x74\x6f\x6f\x6b'\ -b'\x20\x68\x69\x6d\x20\x62\x79\x20\x74\x68\x65\x0d\x0a\x68\x65\x61'\ -b'\x64\x2c\x20\x63\x61\x72\x72\x79\x69\x6e\x67\x20\x74\x68\x65\x20'\ -b'\x62\x69\x72\x64\x20\x63\x61\x67\x65\x20\x61\x6e\x64\x20\x69\x74'\ -b'\x73\x20\x68\x79\x73\x74\x65\x72\x69\x63\x61\x6c\x20\x6f\x63\x63'\ -b'\x75\x70\x61\x6e\x74\x20\x69\x6e\x20\x74\x68\x65\x20\x6f\x74\x68'\ -b'\x65\x72\x0d\x0a\x68\x61\x6e\x64\x2e\x20\xe2\x80\x9c\x43\x6f\x6d'\ -b'\x65\x20\x6f\x6e\x21\xe2\x80\x9d\x20\x68\x65\x20\x73\x61\x69\x64'\ -b'\x20\x67\x72\x69\x6d\x6c\x79\x20\x74\x6f\x20\x74\x68\x65\x20\x4d'\ -b'\x6f\x6c\x65\x2e\x20\xe2\x80\x9c\x49\x74\xe2\x80\x99\x73\x20\x66'\ -b'\x69\x76\x65\x20\x6f\x72\x20\x73\x69\x78\x20\x6d\x69\x6c\x65\x73'\ -b'\x20\x74\x6f\x0d\x0a\x74\x68\x65\x20\x6e\x65\x61\x72\x65\x73\x74'\ -b'\x20\x74\x6f\x77\x6e\x2c\x20\x61\x6e\x64\x20\x77\x65\x20\x73\x68'\ -b'\x61\x6c\x6c\x20\x6a\x75\x73\x74\x20\x68\x61\x76\x65\x20\x74\x6f'\ -b'\x20\x77\x61\x6c\x6b\x20\x69\x74\x2e\x20\x54\x68\x65\x20\x73\x6f'\ -b'\x6f\x6e\x65\x72\x20\x77\x65\x20\x6d\x61\x6b\x65\x0d\x0a\x61\x20'\ -b'\x73\x74\x61\x72\x74\x20\x74\x68\x65\x20\x62\x65\x74\x74\x65\x72'\ -b'\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x42\x75\x74\x20\x77'\ -b'\x68\x61\x74\x20\x61\x62\x6f\x75\x74\x20\x54\x6f\x61\x64\x3f\xe2'\ -b'\x80\x9d\x20\x61\x73\x6b\x65\x64\x20\x74\x68\x65\x20\x4d\x6f\x6c'\ -b'\x65\x20\x61\x6e\x78\x69\x6f\x75\x73\x6c\x79\x2c\x20\x61\x73\x20'\ -b'\x74\x68\x65\x79\x20\x73\x65\x74\x20\x6f\x66\x66\x0d\x0a\x74\x6f'\ -b'\x67\x65\x74\x68\x65\x72\x2e\x20\xe2\x80\x9c\x57\x65\x20\x63\x61'\ -b'\x6e\xe2\x80\x99\x74\x20\x6c\x65\x61\x76\x65\x20\x68\x69\x6d\x20'\ -b'\x68\x65\x72\x65\x2c\x20\x73\x69\x74\x74\x69\x6e\x67\x20\x69\x6e'\ -b'\x20\x74\x68\x65\x20\x6d\x69\x64\x64\x6c\x65\x20\x6f\x66\x20\x74'\ -b'\x68\x65\x20\x72\x6f\x61\x64\x0d\x0a\x62\x79\x20\x68\x69\x6d\x73'\ -b'\x65\x6c\x66\x2c\x20\x69\x6e\x20\x74\x68\x65\x20\x64\x69\x73\x74'\ -b'\x72\x61\x63\x74\x65\x64\x20\x73\x74\x61\x74\x65\x20\x68\x65\xe2'\ -b'\x80\x99\x73\x20\x69\x6e\x21\x20\x49\x74\xe2\x80\x99\x73\x20\x6e'\ -b'\x6f\x74\x20\x73\x61\x66\x65\x2e\x20\x53\x75\x70\x70\x6f\x73\x69'\ -b'\x6e\x67\x0d\x0a\x61\x6e\x6f\x74\x68\x65\x72\x20\x54\x68\x69\x6e'\ -b'\x67\x20\x77\x65\x72\x65\x20\x74\x6f\x20\x63\x6f\x6d\x65\x20\x61'\ -b'\x6c\x6f\x6e\x67\x3f\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x4f'\ -b'\x2c\x20\x5f\x62\x6f\x74\x68\x65\x72\x5f\x20\x54\x6f\x61\x64\x2c'\ -b'\xe2\x80\x9d\x20\x73\x61\x69\x64\x20\x74\x68\x65\x20\x52\x61\x74'\ -b'\x20\x73\x61\x76\x61\x67\x65\x6c\x79\x3b\x20\xe2\x80\x9c\x49\xe2'\ -b'\x80\x99\x76\x65\x20\x64\x6f\x6e\x65\x20\x77\x69\x74\x68\x20\x68'\ -b'\x69\x6d\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65\x79\x20\x68'\ -b'\x61\x64\x20\x6e\x6f\x74\x20\x70\x72\x6f\x63\x65\x65\x64\x65\x64'\ -b'\x20\x76\x65\x72\x79\x20\x66\x61\x72\x20\x6f\x6e\x20\x74\x68\x65'\ -b'\x69\x72\x20\x77\x61\x79\x2c\x20\x68\x6f\x77\x65\x76\x65\x72\x2c'\ -b'\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x72\x65\x20\x77\x61\x73\x20'\ -b'\x61\x0d\x0a\x70\x61\x74\x74\x65\x72\x69\x6e\x67\x20\x6f\x66\x20'\ -b'\x66\x65\x65\x74\x20\x62\x65\x68\x69\x6e\x64\x20\x74\x68\x65\x6d'\ -b'\x2c\x20\x61\x6e\x64\x20\x54\x6f\x61\x64\x20\x63\x61\x75\x67\x68'\ -b'\x74\x20\x74\x68\x65\x6d\x20\x75\x70\x20\x61\x6e\x64\x20\x74\x68'\ -b'\x72\x75\x73\x74\x20\x61\x20\x70\x61\x77\x0d\x0a\x69\x6e\x73\x69'\ -b'\x64\x65\x20\x74\x68\x65\x20\x65\x6c\x62\x6f\x77\x20\x6f\x66\x20'\ -b'\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x6d\x3b\x20\x73\x74'\ -b'\x69\x6c\x6c\x20\x62\x72\x65\x61\x74\x68\x69\x6e\x67\x20\x73\x68'\ -b'\x6f\x72\x74\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x69\x6e\x67\x0d'\ -b'\x0a\x69\x6e\x74\x6f\x20\x76\x61\x63\x61\x6e\x63\x79\x2e\x0d\x0a'\ -b'\x0d\x0a\xe2\x80\x9c\x4e\x6f\x77\x2c\x20\x6c\x6f\x6f\x6b\x20\x68'\ -b'\x65\x72\x65\x2c\x20\x54\x6f\x61\x64\x21\xe2\x80\x9d\x20\x73\x61'\ -b'\x69\x64\x20\x74\x68\x65\x20\x52\x61\x74\x20\x73\x68\x61\x72\x70'\ -b'\x6c\x79\x3a\x20\xe2\x80\x9c\x61\x73\x20\x73\x6f\x6f\x6e\x20\x61'\ -b'\x73\x20\x77\x65\x20\x67\x65\x74\x20\x74\x6f\x20\x74\x68\x65\x0d'\ -b'\x0a\x74\x6f\x77\x6e\x2c\x20\x79\x6f\x75\xe2\x80\x99\x6c\x6c\x20'\ -b'\x68\x61\x76\x65\x20\x74\x6f\x20\x67\x6f\x20\x73\x74\x72\x61\x69'\ -b'\x67\x68\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x70\x6f\x6c\x69\x63'\ -b'\x65\x2d\x73\x74\x61\x74\x69\x6f\x6e\x2c\x20\x61\x6e\x64\x20\x73'\ -b'\x65\x65\x20\x69\x66\x20\x74\x68\x65\x79\x0d\x0a\x6b\x6e\x6f\x77'\ -b'\x20\x61\x6e\x79\x74\x68\x69\x6e\x67\x20\x61\x62\x6f\x75\x74\x20'\ -b'\x74\x68\x61\x74\x20\x6d\x6f\x74\x6f\x72\x2d\x63\x61\x72\x20\x61'\ -b'\x6e\x64\x20\x77\x68\x6f\x20\x69\x74\x20\x62\x65\x6c\x6f\x6e\x67'\ -b'\x73\x20\x74\x6f\x2c\x20\x61\x6e\x64\x20\x6c\x6f\x64\x67\x65\x20'\ -b'\x61\x0d\x0a\x63\x6f\x6d\x70\x6c\x61\x69\x6e\x74\x20\x61\x67\x61'\ -b'\x69\x6e\x73\x74\x20\x69\x74\x2e\x20\x41\x6e\x64\x20\x74\x68\x65'\ -b'\x6e\x20\x79\x6f\x75\xe2\x80\x99\x6c\x6c\x20\x68\x61\x76\x65\x20'\ -b'\x74\x6f\x20\x67\x6f\x20\x74\x6f\x20\x61\x20\x62\x6c\x61\x63\x6b'\ -b'\x73\x6d\x69\x74\x68\xe2\x80\x99\x73\x20\x6f\x72\x20\x61\x0d\x0a'\ -b'\x77\x68\x65\x65\x6c\x77\x72\x69\x67\x68\x74\xe2\x80\x99\x73\x20'\ -b'\x61\x6e\x64\x20\x61\x72\x72\x61\x6e\x67\x65\x20\x66\x6f\x72\x20'\ -b'\x74\x68\x65\x20\x63\x61\x72\x74\x20\x74\x6f\x20\x62\x65\x20\x66'\ -b'\x65\x74\x63\x68\x65\x64\x20\x61\x6e\x64\x20\x6d\x65\x6e\x64\x65'\ -b'\x64\x20\x61\x6e\x64\x20\x70\x75\x74\x0d\x0a\x74\x6f\x20\x72\x69'\ -b'\x67\x68\x74\x73\x2e\x20\x49\x74\xe2\x80\x99\x6c\x6c\x20\x74\x61'\ -b'\x6b\x65\x20\x74\x69\x6d\x65\x2c\x20\x62\x75\x74\x20\x69\x74\xe2'\ -b'\x80\x99\x73\x20\x6e\x6f\x74\x20\x71\x75\x69\x74\x65\x20\x61\x20'\ -b'\x68\x6f\x70\x65\x6c\x65\x73\x73\x20\x73\x6d\x61\x73\x68\x2e\x0d'\ -b'\x0a\x4d\x65\x61\x6e\x77\x68\x69\x6c\x65\x2c\x20\x74\x68\x65\x20'\ -b'\x4d\x6f\x6c\x65\x20\x61\x6e\x64\x20\x49\x20\x77\x69\x6c\x6c\x20'\ -b'\x67\x6f\x20\x74\x6f\x20\x61\x6e\x20\x69\x6e\x6e\x20\x61\x6e\x64'\ -b'\x20\x66\x69\x6e\x64\x20\x63\x6f\x6d\x66\x6f\x72\x74\x61\x62\x6c'\ -b'\x65\x20\x72\x6f\x6f\x6d\x73\x0d\x0a\x77\x68\x65\x72\x65\x20\x77'\ -b'\x65\x20\x63\x61\x6e\x20\x73\x74\x61\x79\x20\x74\x69\x6c\x6c\x20'\ -b'\x74\x68\x65\x20\x63\x61\x72\x74\xe2\x80\x99\x73\x20\x72\x65\x61'\ -b'\x64\x79\x2c\x20\x61\x6e\x64\x20\x74\x69\x6c\x6c\x20\x79\x6f\x75'\ -b'\x72\x20\x6e\x65\x72\x76\x65\x73\x20\x68\x61\x76\x65\x0d\x0a\x72'\ -b'\x65\x63\x6f\x76\x65\x72\x65\x64\x20\x74\x68\x65\x69\x72\x20\x73'\ -b'\x68\x6f\x63\x6b\x2e\xe2\x80\x9d\x0d\x0a\x0d\x0a\xe2\x80\x9c\x50'\ -b'\x6f\x6c\x69\x63\x65\x2d\x73\x74\x61\x74\x69\x6f\x6e\x21\x20\x43'\ -b'\x6f\x6d\x70\x6c\x61\x69\x6e\x74\x21\xe2\x80\x9d\x20\x6d\x75\x72'\ -b'\x6d\x75\x72\x65\x64\x20\x54\x6f\x61\x64\x20\x64\x72\x65\x61\x6d'\ -b'\x69\x6c\x79\x2e\x20\xe2\x80\x9c\x4d\x65\x20\x5f\x63\x6f\x6d\x70'\ -b'\x6c\x61\x69\x6e\x5f\x20\x6f\x66\x0d\x0a\x74\x68\x61\x74\x20\x62'\ -b'\x65\x61\x75\x74\x69\x66\x75\x6c\x2c\x20\x74\x68\x61\x74\x20\x68'\ -b'\x65\x61\x76\x65\x6e\x6c\x79\x20\x76\x69\x73\x69\x6f\x6e\x20\x74'\ -b'\x68\x61\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x76\x6f\x75'\ -b'\x63\x68\x73\x61\x66\x65\x64\x20\x6d\x65\x21\x0d\x0a\x5f\x4d\x65'\ -b'\x6e\x64\x5f\x20\x74\x68\x65\x20\x5f\x63\x61\x72\x74\x21\x5f\x20'\ -b'\x49\xe2\x80\x99\x76\x65\x20\x64\x6f\x6e\x65\x20\x77\x69\x74\x68'\ -b'\x20\x63\x61\x72\x74\x73\x20\x66\x6f\x72\x20\x65\x76\x65\x72\x2e'\ -b'\x20\x49\x20\x6e\x65\x76\x65\x72\x20\x77\x61\x6e\x74\x20\x74\x6f'\ -b'\x20\x73\x65\x65\x0d\x0a\x74\x68\x65\x20\x63\x61\x72\x74\x2c\x20'\ -b'\x6f\x72\x20\x74\x6f\x20\x68\x65\x61\x72\x20\x6f\x66\x20\x69\x74'\ -b'\x2c\x20\x61\x67\x61\x69\x6e\x2e\x20\x4f\x2c\x20\x52\x61\x74\x74'\ -b'\x79\x21\x20\x59\x6f\x75\x20\x63\x61\x6e\xe2\x80\x99\x74\x20\x74'\ -b'\x68\x69\x6e\x6b\x20\x68\x6f\x77\x0d\x0a\x6f\x62\x6c\x69\x67\x65'\ -b'\x64\x20\x49\x20\x61\x6d\x20\x74\x6f\x20\x79\x6f\x75\x20\x66\x6f'\ -b'\x72\x20\x63\x6f\x6e\x73\x65\x6e\x74\x69\x6e\x67\x20\x74\x6f\x20'\ -b'\x63\x6f\x6d\x65\x20\x6f\x6e\x20\x74\x68\x69\x73\x20\x74\x72\x69'\ -b'\x70\x21\x20\x49\x20\x77\x6f\x75\x6c\x64\x6e\xe2\x80\x99\x74\x0d'\ -b'\x0a\x68\x61\x76\x65\x20\x67\x6f\x6e\x65\x20\x77\x69\x74\x68\x6f'\ -b'\x75\x74\x20\x79\x6f\x75\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x6e'\ -b'\x20\x49\x20\x6d\x69\x67\x68\x74\x20\x6e\x65\x76\x65\x72\x20\x68'\ -b'\x61\x76\x65\x20\x73\x65\x65\x6e\x20\x74\x68\x61\x74\xe2\x80\x94'\ -b'\x74\x68\x61\x74\x20\x73\x77\x61\x6e\x2c\x0d\x0a\x74\x68\x61\x74'\ -b'\x20\x73\x75\x6e\x62\x65\x61\x6d\x2c\x20\x74\x68\x61\x74\x20\x74'\ -b'\x68\x75\x6e\x64\x65\x72\x62\x6f\x6c\x74\x21\x20\x49\x20\x6d\x69'\ -b'\x67\x68\x74\x20\x6e\x65\x76\x65\x72\x20\x68\x61\x76\x65\x20\x68'\ -b'\x65\x61\x72\x64\x20\x74\x68\x61\x74\x0d\x0a\x65\x6e\x74\x72\x61'\ -b'\x6e\x63\x69\x6e\x67\x20\x73\x6f\x75\x6e\x64\x2c\x20\x6f\x72\x20'\ -b'\x73\x6d\x65\x6c\x74\x20\x74\x68\x61\x74\x20\x62\x65\x77\x69\x74'\ -b'\x63\x68\x69\x6e\x67\x20\x73\x6d\x65\x6c\x6c\x21\x20\x49\x20\x6f'\ -b'\x77\x65\x20\x69\x74\x20\x61\x6c\x6c\x20\x74\x6f\x20\x79\x6f\x75'\ -b'\x2c\x0d\x0a\x6d\x79\x20\x62\x65\x73\x74\x20\x6f\x66\x20\x66\x72'\ -b'\x69\x65\x6e\x64\x73\x21\xe2\x80\x9d\x0d\x0a\x0d\x0a\x54\x68\x65'\ -b'\x20\x52\x61\x74\x20\x74\x75\x72\x6e\x65\x64\x20\x66\x72\x6f\x6d'\ -b'\x20\x68\x69\x6d\x20\x69\x6e\x20\x64\x65\x73\x70\x61\x69\x72\x2e'\ -b'\x20\xe2\x80\x9c\x59\x6f\x75\x20\x73\x65\x65\x20\x77\x68\x61\x74'\ -b'\x20\x69\x74\x20\x69\x73\x3f\xe2\x80\x9d\x20\x68\x65\x20\x73\x61'\ -b'\x69\x64\x20\x74\x6f\x0d\x0a\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2c'\ -b'\x20\x61\x64\x64\x72\x65\x73\x73\x69\x6e\x67\x20\x68\x69\x6d\x20'\ -b'\x61\x63\x72\x6f\x73\x73\x20\x54\x6f\x61\x64\xe2\x80\x99\x73\x20'\ -b'\x68\x65\x61\x64\x3a\x20\xe2\x80\x9c\x48\x65\xe2\x80\x99\x73\x20'\ -b'\x71\x75\x69\x74\x65\x20\x68\x6f\x70\x65\x6c\x65\x73\x73\x2e\x20'\ -b'\x49\x0d\x0a\x67\x69\x76\x65\x20\x69\x74\x20\x75\x70\xe2\x80\x94'\ -b'\x77\x68\x65\x6e\x20\x77\x65\x20\x67\x65\x74\x20\x74\x6f\x20\x74'\ -b'\x68\x65\x20\x74\x6f\x77\x6e\x20\x77\x65\xe2\x80\x99\x6c\x6c\x20'\ -b'\x67\x6f\x20\x74\x6f\x20\x74\x68\x65\x20\x72\x61\x69\x6c\x77\x61'\ -b'\x79\x20\x73\x74\x61\x74\x69\x6f\x6e\x2c\x20\x61\x6e\x64\x0d\x0a'\ -b'\x77\x69\x74\x68\x20\x6c\x75\x63\x6b\x20\x77\x65\x20\x6d\x61\x79'\ -b'\x20\x70\x69\x63\x6b\x20\x75\x70\x20\x61\x20\x74\x72\x61\x69\x6e'\ -b'\x20\x74\x68\x65\x72\x65\x20\x74\x68\x61\x74\xe2\x80\x99\x6c\x6c'\ -b'\x20\x67\x65\x74\x20\x75\x73\x20\x62\x61\x63\x6b\x20\x74\x6f\x20'\ -b'\x72\x69\x76\x65\x72\x62\x61\x6e\x6b\x0d\x0a\x74\x6f\x2d\x6e\x69'\ -b'\x67\x68\x74\x2e\x20\x41\x6e\x64\x20\x69\x66\x20\x65\x76\x65\x72'\ -b'\x20\x79\x6f\x75\x20\x63\x61\x74\x63\x68\x20\x6d\x65\x20\x67\x6f'\ -b'\x69\x6e\x67\x20\x61\x2d\x70\x6c\x65\x61\x73\x75\x72\x69\x6e\x67'\ -b'\x20\x77\x69\x74\x68\x20\x74\x68\x69\x73\x0d\x0a\x70\x72\x6f\x76'\ -b'\x6f\x6b\x69\x6e\x67\x20\x61\x6e\x69\x6d\x61\x6c\x20\x61\x67\x61'\ -b'\x69\x6e\x21\xe2\x80\x9d\xe2\x80\x94\x48\x65\x20\x73\x6e\x6f\x72'\ -b'\x74\x65\x64\x2c\x20\x61\x6e\x64\x20\x64\x75\x72\x69\x6e\x67\x20'\ -b'\x74\x68\x65\x20\x72\x65\x73\x74\x20\x6f\x66\x20\x74\x68\x61\x74'\ -b'\x20\x77\x65\x61\x72\x79\x0d\x0a\x74\x72\x75\x64\x67\x65\x20\x61'\ -b'\x64\x64\x72\x65\x73\x73\x65\x64\x20\x68\x69\x73\x20\x72\x65\x6d'\ -b'\x61\x72\x6b\x73\x20\x65\x78\x63\x6c\x75\x73\x69\x76\x65\x6c\x79'\ -b'\x20\x74\x6f\x20\x4d\x6f\x6c\x65\x2e\x0d\x0a\x0d\x0a\x4f\x6e\x20'\ -b'\x72\x65\x61\x63\x68\x69\x6e\x67\x20\x74\x68\x65\x20\x74\x6f\x77'\ -b'\x6e\x20\x74\x68\x65\x79\x20\x77\x65\x6e\x74\x20\x73\x74\x72\x61'\ -b'\x69\x67\x68\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x61\x74'\ -b'\x69\x6f\x6e\x20\x61\x6e\x64\x20\x64\x65\x70\x6f\x73\x69\x74\x65'\ -b'\x64\x0d\x0a\x54\x6f\x61\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x73'\ -b'\x65\x63\x6f\x6e\x64\x2d\x63\x6c\x61\x73\x73\x20\x77\x61\x69\x74'\ -b'\x69\x6e\x67\x2d\x72\x6f\x6f\x6d\x2c\x20\x67\x69\x76\x69\x6e\x67'\ -b'\x20\x61\x20\x70\x6f\x72\x74\x65\x72\x20\x74\x77\x6f\x70\x65\x6e'\ -b'\x63\x65\x20\x74\x6f\x20\x6b\x65\x65\x70\x0d\x0a\x61\x20\x73\x74'\ -b'\x72\x69\x63\x74\x20\x65\x79\x65\x20\x6f\x6e\x20\x68\x69\x6d\x2e'\ -b'\x20\x54\x68\x65\x79\x20\x74\x68\x65\x6e\x20\x6c\x65\x66\x74\x20'\ -b'\x74\x68\x65\x20\x68\x6f\x72\x73\x65\x20\x61\x74\x20\x61\x6e\x20'\ -b'\x69\x6e\x6e\x20\x73\x74\x61\x62\x6c\x65\x2c\x20\x61\x6e\x64\x0d'\ -b'\x0a\x67\x61\x76\x65\x20\x77\x68\x61\x74\x20\x64\x69\x72\x65\x63'\ -b'\x74\x69\x6f\x6e\x73\x20\x74\x68\x65\x79\x20\x63\x6f\x75\x6c\x64'\ -b'\x20\x61\x62\x6f\x75\x74\x20\x74\x68\x65\x20\x63\x61\x72\x74\x20'\ -b'\x61\x6e\x64\x20\x69\x74\x73\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73'\ -b'\x2e\x0d\x0a\x45\x76\x65\x6e\x74\x75\x61\x6c\x6c\x79\x2c\x20\x61'\ -b'\x20\x73\x6c\x6f\x77\x20\x74\x72\x61\x69\x6e\x20\x68\x61\x76\x69'\ -b'\x6e\x67\x20\x6c\x61\x6e\x64\x65\x64\x20\x74\x68\x65\x6d\x20\x61'\ -b'\x74\x20\x61\x20\x73\x74\x61\x74\x69\x6f\x6e\x20\x6e\x6f\x74\x20'\ -b'\x76\x65\x72\x79\x20\x66\x61\x72\x0d\x0a\x66\x72\x6f\x6d\x20\x54'\ -b'\x6f\x61\x64\x20\x48\x61\x6c\x6c\x2c\x20\x74\x68\x65\x79\x20\x65'\ -b'\x73\x63\x6f\x72\x74\x65\x64\x20\x74\x68\x65\x20\x73\x70\x65\x6c'\ -b'\x6c\x2d\x62\x6f\x75\x6e\x64\x2c\x20\x73\x6c\x65\x65\x70\x2d\x77'\ -b'\x61\x6c\x6b\x69\x6e\x67\x20\x54\x6f\x61\x64\x20\x74\x6f\x0d\x0a'\ -b'\x68\x69\x73\x20\x64\x6f\x6f\x72\x2c\x20\x70\x75\x74\x20\x68\x69'\ -b'\x6d\x20\x69\x6e\x73\x69\x64\x65\x20\x69\x74\x2c\x20\x61\x6e\x64'\ -b'\x20\x69\x6e\x73\x74\x72\x75\x63\x74\x65\x64\x20\x68\x69\x73\x20'\ -b'\x68\x6f\x75\x73\x65\x6b\x65\x65\x70\x65\x72\x20\x74\x6f\x20\x66'\ -b'\x65\x65\x64\x0d\x0a\x68\x69\x6d\x2c\x20\x75\x6e\x64\x72\x65\x73'\ -b'\x73\x20\x68\x69\x6d\x2c\x20\x61\x6e\x64\x20\x70\x75\x74\x20\x68'\ -b'\x69\x6d\x20\x74\x6f\x20\x62\x65\x64\x2e\x20\x54\x68\x65\x6e\x20'\ -b'\x74\x68\x65\x79\x20\x67\x6f\x74\x20\x6f\x75\x74\x20\x74\x68\x65'\ -b'\x69\x72\x20\x62\x6f\x61\x74\x20\x66\x72\x6f\x6d\x0d\x0a\x74\x68'\ -b'\x65\x20\x62\x6f\x61\x74\x2d\x68\x6f\x75\x73\x65\x2c\x20\x73\x63'\ -b'\x75\x6c\x6c\x65\x64\x20\x64\x6f\x77\x6e\x20\x74\x68\x65\x20\x72'\ -b'\x69\x76\x65\x72\x20\x68\x6f\x6d\x65\x2c\x20\x61\x6e\x64\x20\x61'\ -b'\x74\x20\x61\x20\x76\x65\x72\x79\x20\x6c\x61\x74\x65\x20\x68\x6f'\ -b'\x75\x72\x0d\x0a\x73\x61\x74\x20\x64\x6f\x77\x6e\x20\x74\x6f\x20'\ -b'\x73\x75\x70\x70\x65\x72\x20\x69\x6e\x20\x74\x68\x65\x69\x72\x20'\ -b'\x6f\x77\x6e\x20\x63\x6f\x73\x79\x20\x72\x69\x76\x65\x72\x73\x69'\ -b'\x64\x65\x20\x70\x61\x72\x6c\x6f\x75\x72\x2c\x20\x74\x6f\x20\x74'\ -b'\x68\x65\x20\x52\x61\x74\xe2\x80\x99\x73\x0d\x0a\x67\x72\x65\x61'\ -b'\x74\x20\x6a\x6f\x79\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x65\x6e'\ -b'\x74\x6d\x65\x6e\x74\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x66\x6f'\ -b'\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x65\x76\x65\x6e\x69\x6e\x67\x20'\ -b'\x74\x68\x65\x20\x4d\x6f\x6c\x65\x2c\x20\x77\x68\x6f\x20\x68\x61'\ -b'\x64\x20\x72\x69\x73\x65\x6e\x20\x6c\x61\x74\x65\x20\x61\x6e\x64'\ -b'\x20\x74\x61\x6b\x65\x6e\x20\x74\x68\x69\x6e\x67\x73\x0d\x0a\x76'\ -b'\x65\x72\x79\x20\x65\x61\x73\x79\x20\x61\x6c\x6c\x20\x64\x61\x79'\ -b'\x2c\x20\x77\x61\x73\x20\x73\x69\x74\x74\x69\x6e\x67\x20\x6f\x6e'\ -b'\x20\x74\x68\x65\x20\x62\x61\x6e\x6b\x20\x66\x69\x73\x68\x69\x6e'\ -b'\x67\x2c\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x52\x61\x74\x2c'\ -b'\x20\x77\x68\x6f\x0d\x0a\x68\x61\x64\x20\x62\x65\x65\x6e\x20\x6c'\ -b'\x6f\x6f\x6b\x69\x6e\x67\x20\x75\x70\x20\x68\x69\x73\x20\x66\x72'\ -b'\x69\x65\x6e\x64\x73\x20\x61\x6e\x64\x20\x67\x6f\x73\x73\x69\x70'\ -b'\x69\x6e\x67\x2c\x20\x63\x61\x6d\x65\x20\x73\x74\x72\x6f\x6c\x6c'\ -b'\x69\x6e\x67\x20\x61\x6c\x6f\x6e\x67\x20\x74\x6f\x0d\x0a\x66\x69'\ -b'\x6e\x64\x20\x68\x69\x6d\x2e\x20\xe2\x80\x9c\x48\x65\x61\x72\x64'\ -b'\x20\x74\x68\x65\x20\x6e\x65\x77\x73\x3f\xe2\x80\x9d\x20\x68\x65'\ -b'\x20\x73\x61\x69\x64\x2e\x20\xe2\x80\x9c\x54\x68\x65\x72\x65\xe2'\ -b'\x80\x99\x73\x20\x6e\x6f\x74\x68\x69\x6e\x67\x20\x65\x6c\x73\x65'\ -b'\x20\x62\x65\x69\x6e\x67\x20\x74\x61\x6c\x6b\x65\x64\x0d\x0a\x61'\ -b'\x62\x6f\x75\x74\x2c\x20\x61\x6c\x6c\x20\x61\x6c\x6f\x6e\x67\x20'\ -b'\x74\x68\x65\x20\x72\x69\x76\x65\x72\x20\x62\x61\x6e\x6b\x2e\x20'\ -b'\x54\x6f\x61\x64\x20\x77\x65\x6e\x74\x20\x75\x70\x20\x74\x6f\x20'\ -b'\x54\x6f\x77\x6e\x20\x62\x79\x20\x61\x6e\x20\x65\x61\x72\x6c\x79'\ -b'\x20\x74\x72\x61\x69\x6e\x0d\x0a\x74\x68\x69\x73\x20\x6d\x6f\x72'\ -b'\x6e\x69\x6e\x67\x2e\x20\x41\x6e\x64\x20\x68\x65\x20\x68\x61\x73'\ -b'\x20\x6f\x72\x64\x65\x72\x65\x64\x20\x61\x20\x6c\x61\x72\x67\x65'\ -b'\x20\x61\x6e\x64\x20\x76\x65\x72\x79\x20\x65\x78\x70\x65\x6e\x73'\ -b'\x69\x76\x65\x20\x6d\x6f\x74\x6f\x72\x2d\x63\x61\x72\x2e\xe2\x80'\ -b'\x9d\x0d\x0a\x0d\x0a\x0d\x0a\x0d\x0a\x2a\x2a\x2a\x20\x45\x4e\x44'\ -b'\x20\x4f\x46\x20\x54\x48\x45\x20\x50\x52\x4f\x4a\x45\x43\x54\x20'\ -b'\x47\x55\x54\x45\x4e\x42\x45\x52\x47\x20\x45\x42\x4f\x4f\x4b\x20'\ -b'\x54\x48\x45\x20\x57\x49\x4e\x44\x20\x49\x4e\x20\x54\x48\x45\x20'\ -b'\x57\x49\x4c\x4c\x4f\x57\x53\x20\x2a\x2a\x2a\x0d\x0a\x0d\x0a\x2a'\ -b'\x2a\x2a\x2a\x2a\x20\x54\x68\x69\x73\x20\x66\x69\x6c\x65\x20\x73'\ -b'\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x6e\x61\x6d\x65\x64\x20\x32'\ -b'\x38\x39\x2d\x30\x2e\x74\x78\x74\x20\x6f\x72\x20\x32\x38\x39\x2d'\ -b'\x30\x2e\x7a\x69\x70\x20\x2a\x2a\x2a\x2a\x2a\x0d\x0a\x54\x68\x69'\ -b'\x73\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x61\x73\x73\x6f\x63\x69'\ -b'\x61\x74\x65\x64\x20\x66\x69\x6c\x65\x73\x20\x6f\x66\x20\x76\x61'\ -b'\x72\x69\x6f\x75\x73\x20\x66\x6f\x72\x6d\x61\x74\x73\x20\x77\x69'\ -b'\x6c\x6c\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x20\x69\x6e\x3a\x0d'\ -b'\x0a\x20\x20\x20\x20\x68\x74\x74\x70\x73\x3a\x2f\x2f\x77\x77\x77'\ -b'\x2e\x67\x75\x74\x65\x6e\x62\x65\x72\x67\x2e\x6f\x72\x67\x2f\x32'\ -b'\x2f\x38\x2f\x32\x38\x39\x2f\x0d\x0a\x0d\x0a\x55\x70\x64\x61\x74'\ -b'\x65\x64\x20\x65\x64\x69\x74\x69\x6f\x6e\x73\x20\x77\x69\x6c\x6c'\ -b'\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x74\x68\x65\x20\x70\x72\x65'\ -b'\x76\x69\x6f\x75\x73\x20\x6f\x6e\x65\x2d\x2d\x74\x68\x65\x20\x6f'\ -b'\x6c\x64\x20\x65\x64\x69\x74\x69\x6f\x6e\x73\x20\x77\x69\x6c\x6c'\ -b'\x0d\x0a\x62\x65\x20\x72\x65\x6e\x61\x6d\x65\x64\x2e\x0d\x0a\x0d'\ -b'\x0a\x43\x72\x65\x61\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x77\x6f'\ -b'\x72\x6b\x73\x20\x66\x72\x6f\x6d\x20\x70\x72\x69\x6e\x74\x20\x65'\ -b'\x64\x69\x74\x69\x6f\x6e\x73\x20\x6e\x6f\x74\x20\x70\x72\x6f\x74'\ -b'\x65\x63\x74\x65\x64\x20\x62\x79\x20\x55\x2e\x53\x2e\x20\x63\x6f'\ -b'\x70\x79\x72\x69\x67\x68\x74\x0d\x0a\x6c\x61\x77\x20\x6d\x65\x61'\ -b'\x6e\x73\x20\x74\x68\x61\x74\x20\x6e\x6f\x20\x6f\x6e\x65\x20\x6f'\ -b'\x77\x6e\x73\x20\x61\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61'\ -b'\x74\x65\x73\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x69\x6e'\ -b'\x20\x74\x68\x65\x73\x65\x20\x77\x6f\x72\x6b\x73\x2c\x0d\x0a\x73'\ -b'\x6f\x20\x74\x68\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e'\ -b'\x20\x28\x61\x6e\x64\x20\x79\x6f\x75\x21\x29\x20\x63\x61\x6e\x20'\ -b'\x63\x6f\x70\x79\x20\x61\x6e\x64\x20\x64\x69\x73\x74\x72\x69\x62'\ -b'\x75\x74\x65\x20\x69\x74\x20\x69\x6e\x20\x74\x68\x65\x0d\x0a\x55'\ -b'\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73\x20\x77\x69\x74'\ -b'\x68\x6f\x75\x74\x20\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x20'\ -b'\x61\x6e\x64\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x70\x61\x79\x69'\ -b'\x6e\x67\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x0d\x0a\x72\x6f'\ -b'\x79\x61\x6c\x74\x69\x65\x73\x2e\x20\x53\x70\x65\x63\x69\x61\x6c'\ -b'\x20\x72\x75\x6c\x65\x73\x2c\x20\x73\x65\x74\x20\x66\x6f\x72\x74'\ -b'\x68\x20\x69\x6e\x20\x74\x68\x65\x20\x47\x65\x6e\x65\x72\x61\x6c'\ -b'\x20\x54\x65\x72\x6d\x73\x20\x6f\x66\x20\x55\x73\x65\x20\x70\x61'\ -b'\x72\x74\x0d\x0a\x6f\x66\x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65'\ -b'\x6e\x73\x65\x2c\x20\x61\x70\x70\x6c\x79\x20\x74\x6f\x20\x63\x6f'\ -b'\x70\x79\x69\x6e\x67\x20\x61\x6e\x64\x20\x64\x69\x73\x74\x72\x69'\ -b'\x62\x75\x74\x69\x6e\x67\x20\x50\x72\x6f\x6a\x65\x63\x74\x0d\x0a'\ -b'\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x65\x6c\x65'\ -b'\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x73\x20\x74\x6f'\ -b'\x20\x70\x72\x6f\x74\x65\x63\x74\x20\x74\x68\x65\x20\x50\x52\x4f'\ -b'\x4a\x45\x43\x54\x20\x47\x55\x54\x45\x4e\x42\x45\x52\x47\x2d\x74'\ -b'\x6d\x0d\x0a\x63\x6f\x6e\x63\x65\x70\x74\x20\x61\x6e\x64\x20\x74'\ -b'\x72\x61\x64\x65\x6d\x61\x72\x6b\x2e\x20\x50\x72\x6f\x6a\x65\x63'\ -b'\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x69\x73\x20\x61'\ -b'\x20\x72\x65\x67\x69\x73\x74\x65\x72\x65\x64\x20\x74\x72\x61\x64'\ -b'\x65\x6d\x61\x72\x6b\x2c\x0d\x0a\x61\x6e\x64\x20\x6d\x61\x79\x20'\ -b'\x6e\x6f\x74\x20\x62\x65\x20\x75\x73\x65\x64\x20\x69\x66\x20\x79'\ -b'\x6f\x75\x20\x63\x68\x61\x72\x67\x65\x20\x66\x6f\x72\x20\x61\x6e'\ -b'\x20\x65\x42\x6f\x6f\x6b\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x62'\ -b'\x79\x20\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x0d\x0a\x74\x68\x65'\ -b'\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x74\x72'\ -b'\x61\x64\x65\x6d\x61\x72\x6b\x20\x6c\x69\x63\x65\x6e\x73\x65\x2c'\ -b'\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x70\x61\x79\x69\x6e'\ -b'\x67\x20\x72\x6f\x79\x61\x6c\x74\x69\x65\x73\x20\x66\x6f\x72\x20'\ -b'\x75\x73\x65\x0d\x0a\x6f\x66\x20\x74\x68\x65\x20\x50\x72\x6f\x6a'\ -b'\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x74\x72'\ -b'\x61\x64\x65\x6d\x61\x72\x6b\x2e\x20\x49\x66\x20\x79\x6f\x75\x20'\ -b'\x64\x6f\x20\x6e\x6f\x74\x20\x63\x68\x61\x72\x67\x65\x20\x61\x6e'\ -b'\x79\x74\x68\x69\x6e\x67\x20\x66\x6f\x72\x0d\x0a\x63\x6f\x70\x69'\ -b'\x65\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x65\x42\x6f\x6f\x6b'\ -b'\x2c\x20\x63\x6f\x6d\x70\x6c\x79\x69\x6e\x67\x20\x77\x69\x74\x68'\ -b'\x20\x74\x68\x65\x20\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x20\x6c'\ -b'\x69\x63\x65\x6e\x73\x65\x20\x69\x73\x20\x76\x65\x72\x79\x0d\x0a'\ -b'\x65\x61\x73\x79\x2e\x20\x59\x6f\x75\x20\x6d\x61\x79\x20\x75\x73'\ -b'\x65\x20\x74\x68\x69\x73\x20\x65\x42\x6f\x6f\x6b\x20\x66\x6f\x72'\ -b'\x20\x6e\x65\x61\x72\x6c\x79\x20\x61\x6e\x79\x20\x70\x75\x72\x70'\ -b'\x6f\x73\x65\x20\x73\x75\x63\x68\x20\x61\x73\x20\x63\x72\x65\x61'\ -b'\x74\x69\x6f\x6e\x0d\x0a\x6f\x66\x20\x64\x65\x72\x69\x76\x61\x74'\ -b'\x69\x76\x65\x20\x77\x6f\x72\x6b\x73\x2c\x20\x72\x65\x70\x6f\x72'\ -b'\x74\x73\x2c\x20\x70\x65\x72\x66\x6f\x72\x6d\x61\x6e\x63\x65\x73'\ -b'\x20\x61\x6e\x64\x20\x72\x65\x73\x65\x61\x72\x63\x68\x2e\x20\x50'\ -b'\x72\x6f\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74\x65\x6e\x62\x65\x72'\ -b'\x67\x20\x65\x42\x6f\x6f\x6b\x73\x20\x6d\x61\x79\x20\x62\x65\x20'\ -b'\x6d\x6f\x64\x69\x66\x69\x65\x64\x20\x61\x6e\x64\x20\x70\x72\x69'\ -b'\x6e\x74\x65\x64\x20\x61\x6e\x64\x20\x67\x69\x76\x65\x6e\x20\x61'\ -b'\x77\x61\x79\x2d\x2d\x79\x6f\x75\x20\x6d\x61\x79\x0d\x0a\x64\x6f'\ -b'\x20\x70\x72\x61\x63\x74\x69\x63\x61\x6c\x6c\x79\x20\x41\x4e\x59'\ -b'\x54\x48\x49\x4e\x47\x20\x69\x6e\x20\x74\x68\x65\x20\x55\x6e\x69'\ -b'\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73\x20\x77\x69\x74\x68\x20'\ -b'\x65\x42\x6f\x6f\x6b\x73\x20\x6e\x6f\x74\x20\x70\x72\x6f\x74\x65'\ -b'\x63\x74\x65\x64\x0d\x0a\x62\x79\x20\x55\x2e\x53\x2e\x20\x63\x6f'\ -b'\x70\x79\x72\x69\x67\x68\x74\x20\x6c\x61\x77\x2e\x20\x52\x65\x64'\ -b'\x69\x73\x74\x72\x69\x62\x75\x74\x69\x6f\x6e\x20\x69\x73\x20\x73'\ -b'\x75\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x72'\ -b'\x61\x64\x65\x6d\x61\x72\x6b\x0d\x0a\x6c\x69\x63\x65\x6e\x73\x65'\ -b'\x2c\x20\x65\x73\x70\x65\x63\x69\x61\x6c\x6c\x79\x20\x63\x6f\x6d'\ -b'\x6d\x65\x72\x63\x69\x61\x6c\x20\x72\x65\x64\x69\x73\x74\x72\x69'\ -b'\x62\x75\x74\x69\x6f\x6e\x2e\x0d\x0a\x0d\x0a\x53\x54\x41\x52\x54'\ -b'\x3a\x20\x46\x55\x4c\x4c\x20\x4c\x49\x43\x45\x4e\x53\x45\x0d\x0a'\ -b'\x0d\x0a\x54\x48\x45\x20\x46\x55\x4c\x4c\x20\x50\x52\x4f\x4a\x45'\ -b'\x43\x54\x20\x47\x55\x54\x45\x4e\x42\x45\x52\x47\x20\x4c\x49\x43'\ -b'\x45\x4e\x53\x45\x0d\x0a\x50\x4c\x45\x41\x53\x45\x20\x52\x45\x41'\ -b'\x44\x20\x54\x48\x49\x53\x20\x42\x45\x46\x4f\x52\x45\x20\x59\x4f'\ -b'\x55\x20\x44\x49\x53\x54\x52\x49\x42\x55\x54\x45\x20\x4f\x52\x20'\ -b'\x55\x53\x45\x20\x54\x48\x49\x53\x20\x57\x4f\x52\x4b\x0d\x0a\x0d'\ -b'\x0a\x54\x6f\x20\x70\x72\x6f\x74\x65\x63\x74\x20\x74\x68\x65\x20'\ -b'\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72'\ -b'\x67\x2d\x74\x6d\x20\x6d\x69\x73\x73\x69\x6f\x6e\x20\x6f\x66\x20'\ -b'\x70\x72\x6f\x6d\x6f\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x66\x72'\ -b'\x65\x65\x0d\x0a\x64\x69\x73\x74\x72\x69\x62\x75\x74\x69\x6f\x6e'\ -b'\x20\x6f\x66\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77'\ -b'\x6f\x72\x6b\x73\x2c\x20\x62\x79\x20\x75\x73\x69\x6e\x67\x20\x6f'\ -b'\x72\x20\x64\x69\x73\x74\x72\x69\x62\x75\x74\x69\x6e\x67\x20\x74'\ -b'\x68\x69\x73\x20\x77\x6f\x72\x6b\x0d\x0a\x28\x6f\x72\x20\x61\x6e'\ -b'\x79\x20\x6f\x74\x68\x65\x72\x20\x77\x6f\x72\x6b\x20\x61\x73\x73'\ -b'\x6f\x63\x69\x61\x74\x65\x64\x20\x69\x6e\x20\x61\x6e\x79\x20\x77'\ -b'\x61\x79\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x70\x68\x72\x61'\ -b'\x73\x65\x20\x22\x50\x72\x6f\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74'\ -b'\x65\x6e\x62\x65\x72\x67\x22\x29\x2c\x20\x79\x6f\x75\x20\x61\x67'\ -b'\x72\x65\x65\x20\x74\x6f\x20\x63\x6f\x6d\x70\x6c\x79\x20\x77\x69'\ -b'\x74\x68\x20\x61\x6c\x6c\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x73'\ -b'\x20\x6f\x66\x20\x74\x68\x65\x20\x46\x75\x6c\x6c\x0d\x0a\x50\x72'\ -b'\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d'\ -b'\x74\x6d\x20\x4c\x69\x63\x65\x6e\x73\x65\x20\x61\x76\x61\x69\x6c'\ -b'\x61\x62\x6c\x65\x20\x77\x69\x74\x68\x20\x74\x68\x69\x73\x20\x66'\ -b'\x69\x6c\x65\x20\x6f\x72\x20\x6f\x6e\x6c\x69\x6e\x65\x20\x61\x74'\ -b'\x0d\x0a\x77\x77\x77\x2e\x67\x75\x74\x65\x6e\x62\x65\x72\x67\x2e'\ -b'\x6f\x72\x67\x2f\x6c\x69\x63\x65\x6e\x73\x65\x2e\x0d\x0a\x0d\x0a'\ -b'\x53\x65\x63\x74\x69\x6f\x6e\x20\x31\x2e\x20\x47\x65\x6e\x65\x72'\ -b'\x61\x6c\x20\x54\x65\x72\x6d\x73\x20\x6f\x66\x20\x55\x73\x65\x20'\ -b'\x61\x6e\x64\x20\x52\x65\x64\x69\x73\x74\x72\x69\x62\x75\x74\x69'\ -b'\x6e\x67\x20\x50\x72\x6f\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74\x65'\ -b'\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x65\x6c\x65\x63\x74\x72\x6f'\ -b'\x6e\x69\x63\x20\x77\x6f\x72\x6b\x73\x0d\x0a\x0d\x0a\x31\x2e\x41'\ -b'\x2e\x20\x42\x79\x20\x72\x65\x61\x64\x69\x6e\x67\x20\x6f\x72\x20'\ -b'\x75\x73\x69\x6e\x67\x20\x61\x6e\x79\x20\x70\x61\x72\x74\x20\x6f'\ -b'\x66\x20\x74\x68\x69\x73\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47'\ -b'\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x0d\x0a\x65\x6c\x65'\ -b'\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x2c\x20\x79\x6f'\ -b'\x75\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x20\x74\x68\x61\x74\x20'\ -b'\x79\x6f\x75\x20\x68\x61\x76\x65\x20\x72\x65\x61\x64\x2c\x20\x75'\ -b'\x6e\x64\x65\x72\x73\x74\x61\x6e\x64\x2c\x20\x61\x67\x72\x65\x65'\ -b'\x20\x74\x6f\x0d\x0a\x61\x6e\x64\x20\x61\x63\x63\x65\x70\x74\x20'\ -b'\x61\x6c\x6c\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66'\ -b'\x20\x74\x68\x69\x73\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x61\x6e'\ -b'\x64\x20\x69\x6e\x74\x65\x6c\x6c\x65\x63\x74\x75\x61\x6c\x20\x70'\ -b'\x72\x6f\x70\x65\x72\x74\x79\x0d\x0a\x28\x74\x72\x61\x64\x65\x6d'\ -b'\x61\x72\x6b\x2f\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x29\x20\x61'\ -b'\x67\x72\x65\x65\x6d\x65\x6e\x74\x2e\x20\x49\x66\x20\x79\x6f\x75'\ -b'\x20\x64\x6f\x20\x6e\x6f\x74\x20\x61\x67\x72\x65\x65\x20\x74\x6f'\ -b'\x20\x61\x62\x69\x64\x65\x20\x62\x79\x20\x61\x6c\x6c\x0d\x0a\x74'\ -b'\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x69\x73'\ -b'\x20\x61\x67\x72\x65\x65\x6d\x65\x6e\x74\x2c\x20\x79\x6f\x75\x20'\ -b'\x6d\x75\x73\x74\x20\x63\x65\x61\x73\x65\x20\x75\x73\x69\x6e\x67'\ -b'\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x6f\x72\x0d\x0a'\ -b'\x64\x65\x73\x74\x72\x6f\x79\x20\x61\x6c\x6c\x20\x63\x6f\x70\x69'\ -b'\x65\x73\x20\x6f\x66\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75'\ -b'\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x65\x6c\x65\x63\x74'\ -b'\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x73\x20\x69\x6e\x20\x79'\ -b'\x6f\x75\x72\x0d\x0a\x70\x6f\x73\x73\x65\x73\x73\x69\x6f\x6e\x2e'\ -b'\x20\x49\x66\x20\x79\x6f\x75\x20\x70\x61\x69\x64\x20\x61\x20\x66'\ -b'\x65\x65\x20\x66\x6f\x72\x20\x6f\x62\x74\x61\x69\x6e\x69\x6e\x67'\ -b'\x20\x61\x20\x63\x6f\x70\x79\x20\x6f\x66\x20\x6f\x72\x20\x61\x63'\ -b'\x63\x65\x73\x73\x20\x74\x6f\x20\x61\x0d\x0a\x50\x72\x6f\x6a\x65'\ -b'\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20'\ -b'\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x20'\ -b'\x61\x6e\x64\x20\x79\x6f\x75\x20\x64\x6f\x20\x6e\x6f\x74\x20\x61'\ -b'\x67\x72\x65\x65\x20\x74\x6f\x20\x62\x65\x20\x62\x6f\x75\x6e\x64'\ -b'\x0d\x0a\x62\x79\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f'\ -b'\x66\x20\x74\x68\x69\x73\x20\x61\x67\x72\x65\x65\x6d\x65\x6e\x74'\ -b'\x2c\x20\x79\x6f\x75\x20\x6d\x61\x79\x20\x6f\x62\x74\x61\x69\x6e'\ -b'\x20\x61\x20\x72\x65\x66\x75\x6e\x64\x20\x66\x72\x6f\x6d\x20\x74'\ -b'\x68\x65\x0d\x0a\x70\x65\x72\x73\x6f\x6e\x20\x6f\x72\x20\x65\x6e'\ -b'\x74\x69\x74\x79\x20\x74\x6f\x20\x77\x68\x6f\x6d\x20\x79\x6f\x75'\ -b'\x20\x70\x61\x69\x64\x20\x74\x68\x65\x20\x66\x65\x65\x20\x61\x73'\ -b'\x20\x73\x65\x74\x20\x66\x6f\x72\x74\x68\x20\x69\x6e\x20\x70\x61'\ -b'\x72\x61\x67\x72\x61\x70\x68\x0d\x0a\x31\x2e\x45\x2e\x38\x2e\x0d'\ -b'\x0a\x0d\x0a\x31\x2e\x42\x2e\x20\x22\x50\x72\x6f\x6a\x65\x63\x74'\ -b'\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x22\x20\x69\x73\x20\x61'\ -b'\x20\x72\x65\x67\x69\x73\x74\x65\x72\x65\x64\x20\x74\x72\x61\x64'\ -b'\x65\x6d\x61\x72\x6b\x2e\x20\x49\x74\x20\x6d\x61\x79\x20\x6f\x6e'\ -b'\x6c\x79\x20\x62\x65\x0d\x0a\x75\x73\x65\x64\x20\x6f\x6e\x20\x6f'\ -b'\x72\x20\x61\x73\x73\x6f\x63\x69\x61\x74\x65\x64\x20\x69\x6e\x20'\ -b'\x61\x6e\x79\x20\x77\x61\x79\x20\x77\x69\x74\x68\x20\x61\x6e\x20'\ -b'\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x20'\ -b'\x62\x79\x20\x70\x65\x6f\x70\x6c\x65\x20\x77\x68\x6f\x0d\x0a\x61'\ -b'\x67\x72\x65\x65\x20\x74\x6f\x20\x62\x65\x20\x62\x6f\x75\x6e\x64'\ -b'\x20\x62\x79\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66'\ -b'\x20\x74\x68\x69\x73\x20\x61\x67\x72\x65\x65\x6d\x65\x6e\x74\x2e'\ -b'\x20\x54\x68\x65\x72\x65\x20\x61\x72\x65\x20\x61\x20\x66\x65\x77'\ -b'\x0d\x0a\x74\x68\x69\x6e\x67\x73\x20\x74\x68\x61\x74\x20\x79\x6f'\ -b'\x75\x20\x63\x61\x6e\x20\x64\x6f\x20\x77\x69\x74\x68\x20\x6d\x6f'\ -b'\x73\x74\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e'\ -b'\x62\x65\x72\x67\x2d\x74\x6d\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e'\ -b'\x69\x63\x20\x77\x6f\x72\x6b\x73\x0d\x0a\x65\x76\x65\x6e\x20\x77'\ -b'\x69\x74\x68\x6f\x75\x74\x20\x63\x6f\x6d\x70\x6c\x79\x69\x6e\x67'\ -b'\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x66\x75\x6c\x6c\x20\x74'\ -b'\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x61\x67\x72'\ -b'\x65\x65\x6d\x65\x6e\x74\x2e\x20\x53\x65\x65\x0d\x0a\x70\x61\x72'\ -b'\x61\x67\x72\x61\x70\x68\x20\x31\x2e\x43\x20\x62\x65\x6c\x6f\x77'\ -b'\x2e\x20\x54\x68\x65\x72\x65\x20\x61\x72\x65\x20\x61\x20\x6c\x6f'\ -b'\x74\x20\x6f\x66\x20\x74\x68\x69\x6e\x67\x73\x20\x79\x6f\x75\x20'\ -b'\x63\x61\x6e\x20\x64\x6f\x20\x77\x69\x74\x68\x20\x50\x72\x6f\x6a'\ -b'\x65\x63\x74\x0d\x0a\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74'\ -b'\x6d\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72'\ -b'\x6b\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x66\x6f\x6c\x6c\x6f\x77'\ -b'\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68'\ -b'\x69\x73\x0d\x0a\x61\x67\x72\x65\x65\x6d\x65\x6e\x74\x20\x61\x6e'\ -b'\x64\x20\x68\x65\x6c\x70\x20\x70\x72\x65\x73\x65\x72\x76\x65\x20'\ -b'\x66\x72\x65\x65\x20\x66\x75\x74\x75\x72\x65\x20\x61\x63\x63\x65'\ -b'\x73\x73\x20\x74\x6f\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75'\ -b'\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x0d\x0a\x65\x6c\x65\x63'\ -b'\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x73\x2e\x20\x53\x65'\ -b'\x65\x20\x70\x61\x72\x61\x67\x72\x61\x70\x68\x20\x31\x2e\x45\x20'\ -b'\x62\x65\x6c\x6f\x77\x2e\x0d\x0a\x0d\x0a\x31\x2e\x43\x2e\x20\x54'\ -b'\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e'\ -b'\x62\x65\x72\x67\x20\x4c\x69\x74\x65\x72\x61\x72\x79\x20\x41\x72'\ -b'\x63\x68\x69\x76\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e'\ -b'\x20\x28\x22\x74\x68\x65\x0d\x0a\x46\x6f\x75\x6e\x64\x61\x74\x69'\ -b'\x6f\x6e\x22\x20\x6f\x72\x20\x50\x47\x4c\x41\x46\x29\x2c\x20\x6f'\ -b'\x77\x6e\x73\x20\x61\x20\x63\x6f\x6d\x70\x69\x6c\x61\x74\x69\x6f'\ -b'\x6e\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x69\x6e\x20\x74'\ -b'\x68\x65\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x0d\x0a\x6f'\ -b'\x66\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62'\ -b'\x65\x72\x67\x2d\x74\x6d\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69'\ -b'\x63\x20\x77\x6f\x72\x6b\x73\x2e\x20\x4e\x65\x61\x72\x6c\x79\x20'\ -b'\x61\x6c\x6c\x20\x74\x68\x65\x20\x69\x6e\x64\x69\x76\x69\x64\x75'\ -b'\x61\x6c\x0d\x0a\x77\x6f\x72\x6b\x73\x20\x69\x6e\x20\x74\x68\x65'\ -b'\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x20\x61\x72\x65\x20'\ -b'\x69\x6e\x20\x74\x68\x65\x20\x70\x75\x62\x6c\x69\x63\x20\x64\x6f'\ -b'\x6d\x61\x69\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x55\x6e\x69\x74'\ -b'\x65\x64\x0d\x0a\x53\x74\x61\x74\x65\x73\x2e\x20\x49\x66\x20\x61'\ -b'\x6e\x20\x69\x6e\x64\x69\x76\x69\x64\x75\x61\x6c\x20\x77\x6f\x72'\ -b'\x6b\x20\x69\x73\x20\x75\x6e\x70\x72\x6f\x74\x65\x63\x74\x65\x64'\ -b'\x20\x62\x79\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6c\x61'\ -b'\x77\x20\x69\x6e\x20\x74\x68\x65\x0d\x0a\x55\x6e\x69\x74\x65\x64'\ -b'\x20\x53\x74\x61\x74\x65\x73\x20\x61\x6e\x64\x20\x79\x6f\x75\x20'\ -b'\x61\x72\x65\x20\x6c\x6f\x63\x61\x74\x65\x64\x20\x69\x6e\x20\x74'\ -b'\x68\x65\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73'\ -b'\x2c\x20\x77\x65\x20\x64\x6f\x20\x6e\x6f\x74\x0d\x0a\x63\x6c\x61'\ -b'\x69\x6d\x20\x61\x20\x72\x69\x67\x68\x74\x20\x74\x6f\x20\x70\x72'\ -b'\x65\x76\x65\x6e\x74\x20\x79\x6f\x75\x20\x66\x72\x6f\x6d\x20\x63'\ -b'\x6f\x70\x79\x69\x6e\x67\x2c\x20\x64\x69\x73\x74\x72\x69\x62\x75'\ -b'\x74\x69\x6e\x67\x2c\x20\x70\x65\x72\x66\x6f\x72\x6d\x69\x6e\x67'\ -b'\x2c\x0d\x0a\x64\x69\x73\x70\x6c\x61\x79\x69\x6e\x67\x20\x6f\x72'\ -b'\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x64\x65\x72\x69\x76\x61'\ -b'\x74\x69\x76\x65\x20\x77\x6f\x72\x6b\x73\x20\x62\x61\x73\x65\x64'\ -b'\x20\x6f\x6e\x20\x74\x68\x65\x20\x77\x6f\x72\x6b\x20\x61\x73\x20'\ -b'\x6c\x6f\x6e\x67\x20\x61\x73\x0d\x0a\x61\x6c\x6c\x20\x72\x65\x66'\ -b'\x65\x72\x65\x6e\x63\x65\x73\x20\x74\x6f\x20\x50\x72\x6f\x6a\x65'\ -b'\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x61\x72\x65'\ -b'\x20\x72\x65\x6d\x6f\x76\x65\x64\x2e\x20\x4f\x66\x20\x63\x6f\x75'\ -b'\x72\x73\x65\x2c\x20\x77\x65\x20\x68\x6f\x70\x65\x0d\x0a\x74\x68'\ -b'\x61\x74\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x73\x75\x70\x70'\ -b'\x6f\x72\x74\x20\x74\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x20'\ -b'\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x6d\x69\x73'\ -b'\x73\x69\x6f\x6e\x20\x6f\x66\x20\x70\x72\x6f\x6d\x6f\x74\x69\x6e'\ -b'\x67\x0d\x0a\x66\x72\x65\x65\x20\x61\x63\x63\x65\x73\x73\x20\x74'\ -b'\x6f\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72'\ -b'\x6b\x73\x20\x62\x79\x20\x66\x72\x65\x65\x6c\x79\x20\x73\x68\x61'\ -b'\x72\x69\x6e\x67\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74'\ -b'\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x0d\x0a\x77\x6f\x72\x6b\x73'\ -b'\x20\x69\x6e\x20\x63\x6f\x6d\x70\x6c\x69\x61\x6e\x63\x65\x20\x77'\ -b'\x69\x74\x68\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66'\ -b'\x20\x74\x68\x69\x73\x20\x61\x67\x72\x65\x65\x6d\x65\x6e\x74\x20'\ -b'\x66\x6f\x72\x20\x6b\x65\x65\x70\x69\x6e\x67\x20\x74\x68\x65\x0d'\ -b'\x0a\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65'\ -b'\x72\x67\x2d\x74\x6d\x20\x6e\x61\x6d\x65\x20\x61\x73\x73\x6f\x63'\ -b'\x69\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x77'\ -b'\x6f\x72\x6b\x2e\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x65\x61\x73'\ -b'\x69\x6c\x79\x0d\x0a\x63\x6f\x6d\x70\x6c\x79\x20\x77\x69\x74\x68'\ -b'\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68'\ -b'\x69\x73\x20\x61\x67\x72\x65\x65\x6d\x65\x6e\x74\x20\x62\x79\x20'\ -b'\x6b\x65\x65\x70\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x77\x6f\x72'\ -b'\x6b\x20\x69\x6e\x20\x74\x68\x65\x0d\x0a\x73\x61\x6d\x65\x20\x66'\ -b'\x6f\x72\x6d\x61\x74\x20\x77\x69\x74\x68\x20\x69\x74\x73\x20\x61'\ -b'\x74\x74\x61\x63\x68\x65\x64\x20\x66\x75\x6c\x6c\x20\x50\x72\x6f'\ -b'\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74'\ -b'\x6d\x20\x4c\x69\x63\x65\x6e\x73\x65\x20\x77\x68\x65\x6e\x0d\x0a'\ -b'\x79\x6f\x75\x20\x73\x68\x61\x72\x65\x20\x69\x74\x20\x77\x69\x74'\ -b'\x68\x6f\x75\x74\x20\x63\x68\x61\x72\x67\x65\x20\x77\x69\x74\x68'\ -b'\x20\x6f\x74\x68\x65\x72\x73\x2e\x0d\x0a\x0d\x0a\x31\x2e\x44\x2e'\ -b'\x20\x54\x68\x65\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6c'\ -b'\x61\x77\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x6c\x61\x63\x65'\ -b'\x20\x77\x68\x65\x72\x65\x20\x79\x6f\x75\x20\x61\x72\x65\x20\x6c'\ -b'\x6f\x63\x61\x74\x65\x64\x20\x61\x6c\x73\x6f\x20\x67\x6f\x76\x65'\ -b'\x72\x6e\x0d\x0a\x77\x68\x61\x74\x20\x79\x6f\x75\x20\x63\x61\x6e'\ -b'\x20\x64\x6f\x20\x77\x69\x74\x68\x20\x74\x68\x69\x73\x20\x77\x6f'\ -b'\x72\x6b\x2e\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6c\x61'\ -b'\x77\x73\x20\x69\x6e\x20\x6d\x6f\x73\x74\x20\x63\x6f\x75\x6e\x74'\ -b'\x72\x69\x65\x73\x20\x61\x72\x65\x0d\x0a\x69\x6e\x20\x61\x20\x63'\ -b'\x6f\x6e\x73\x74\x61\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66'\ -b'\x20\x63\x68\x61\x6e\x67\x65\x2e\x20\x49\x66\x20\x79\x6f\x75\x20'\ -b'\x61\x72\x65\x20\x6f\x75\x74\x73\x69\x64\x65\x20\x74\x68\x65\x20'\ -b'\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65\x73\x2c\x0d\x0a'\ -b'\x63\x68\x65\x63\x6b\x20\x74\x68\x65\x20\x6c\x61\x77\x73\x20\x6f'\ -b'\x66\x20\x79\x6f\x75\x72\x20\x63\x6f\x75\x6e\x74\x72\x79\x20\x69'\ -b'\x6e\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x20\x74\x6f\x20\x74\x68'\ -b'\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x0d'\ -b'\x0a\x61\x67\x72\x65\x65\x6d\x65\x6e\x74\x20\x62\x65\x66\x6f\x72'\ -b'\x65\x20\x64\x6f\x77\x6e\x6c\x6f\x61\x64\x69\x6e\x67\x2c\x20\x63'\ -b'\x6f\x70\x79\x69\x6e\x67\x2c\x20\x64\x69\x73\x70\x6c\x61\x79\x69'\ -b'\x6e\x67\x2c\x20\x70\x65\x72\x66\x6f\x72\x6d\x69\x6e\x67\x2c\x0d'\ -b'\x0a\x64\x69\x73\x74\x72\x69\x62\x75\x74\x69\x6e\x67\x20\x6f\x72'\ -b'\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x64\x65\x72\x69\x76\x61'\ -b'\x74\x69\x76\x65\x20\x77\x6f\x72\x6b\x73\x20\x62\x61\x73\x65\x64'\ -b'\x20\x6f\x6e\x20\x74\x68\x69\x73\x20\x77\x6f\x72\x6b\x20\x6f\x72'\ -b'\x20\x61\x6e\x79\x0d\x0a\x6f\x74\x68\x65\x72\x20\x50\x72\x6f\x6a'\ -b'\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d'\ -b'\x20\x77\x6f\x72\x6b\x2e\x20\x54\x68\x65\x20\x46\x6f\x75\x6e\x64'\ -b'\x61\x74\x69\x6f\x6e\x20\x6d\x61\x6b\x65\x73\x20\x6e\x6f\x0d\x0a'\ -b'\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20'\ -b'\x63\x6f\x6e\x63\x65\x72\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x63'\ -b'\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x73\x74\x61\x74\x75\x73\x20'\ -b'\x6f\x66\x20\x61\x6e\x79\x20\x77\x6f\x72\x6b\x20\x69\x6e\x20\x61'\ -b'\x6e\x79\x0d\x0a\x63\x6f\x75\x6e\x74\x72\x79\x20\x6f\x74\x68\x65'\ -b'\x72\x20\x74\x68\x61\x6e\x20\x74\x68\x65\x20\x55\x6e\x69\x74\x65'\ -b'\x64\x20\x53\x74\x61\x74\x65\x73\x2e\x0d\x0a\x0d\x0a\x31\x2e\x45'\ -b'\x2e\x20\x55\x6e\x6c\x65\x73\x73\x20\x79\x6f\x75\x20\x68\x61\x76'\ -b'\x65\x20\x72\x65\x6d\x6f\x76\x65\x64\x20\x61\x6c\x6c\x20\x72\x65'\ -b'\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x74\x6f\x20\x50\x72\x6f\x6a'\ -b'\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x3a\x0d\x0a'\ -b'\x0d\x0a\x31\x2e\x45\x2e\x31\x2e\x20\x54\x68\x65\x20\x66\x6f\x6c'\ -b'\x6c\x6f\x77\x69\x6e\x67\x20\x73\x65\x6e\x74\x65\x6e\x63\x65\x2c'\ -b'\x20\x77\x69\x74\x68\x20\x61\x63\x74\x69\x76\x65\x20\x6c\x69\x6e'\ -b'\x6b\x73\x20\x74\x6f\x2c\x20\x6f\x72\x20\x6f\x74\x68\x65\x72\x0d'\ -b'\x0a\x69\x6d\x6d\x65\x64\x69\x61\x74\x65\x20\x61\x63\x63\x65\x73'\ -b'\x73\x20\x74\x6f\x2c\x20\x74\x68\x65\x20\x66\x75\x6c\x6c\x20\x50'\ -b'\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67'\ -b'\x2d\x74\x6d\x20\x4c\x69\x63\x65\x6e\x73\x65\x20\x6d\x75\x73\x74'\ -b'\x20\x61\x70\x70\x65\x61\x72\x0d\x0a\x70\x72\x6f\x6d\x69\x6e\x65'\ -b'\x6e\x74\x6c\x79\x20\x77\x68\x65\x6e\x65\x76\x65\x72\x20\x61\x6e'\ -b'\x79\x20\x63\x6f\x70\x79\x20\x6f\x66\x20\x61\x20\x50\x72\x6f\x6a'\ -b'\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d'\ -b'\x20\x77\x6f\x72\x6b\x20\x28\x61\x6e\x79\x20\x77\x6f\x72\x6b\x0d'\ -b'\x0a\x6f\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x70\x68'\ -b'\x72\x61\x73\x65\x20\x22\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75'\ -b'\x74\x65\x6e\x62\x65\x72\x67\x22\x20\x61\x70\x70\x65\x61\x72\x73'\ -b'\x2c\x20\x6f\x72\x20\x77\x69\x74\x68\x20\x77\x68\x69\x63\x68\x20'\ -b'\x74\x68\x65\x0d\x0a\x70\x68\x72\x61\x73\x65\x20\x22\x50\x72\x6f'\ -b'\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x22\x20'\ -b'\x69\x73\x20\x61\x73\x73\x6f\x63\x69\x61\x74\x65\x64\x29\x20\x69'\ -b'\x73\x20\x61\x63\x63\x65\x73\x73\x65\x64\x2c\x20\x64\x69\x73\x70'\ -b'\x6c\x61\x79\x65\x64\x2c\x0d\x0a\x70\x65\x72\x66\x6f\x72\x6d\x65'\ -b'\x64\x2c\x20\x76\x69\x65\x77\x65\x64\x2c\x20\x63\x6f\x70\x69\x65'\ -b'\x64\x20\x6f\x72\x20\x64\x69\x73\x74\x72\x69\x62\x75\x74\x65\x64'\ -b'\x3a\x0d\x0a\x0d\x0a\x20\x20\x54\x68\x69\x73\x20\x65\x42\x6f\x6f'\ -b'\x6b\x20\x69\x73\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x75\x73\x65'\ -b'\x20\x6f\x66\x20\x61\x6e\x79\x6f\x6e\x65\x20\x61\x6e\x79\x77\x68'\ -b'\x65\x72\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x55\x6e\x69\x74\x65'\ -b'\x64\x20\x53\x74\x61\x74\x65\x73\x20\x61\x6e\x64\x0d\x0a\x20\x20'\ -b'\x6d\x6f\x73\x74\x20\x6f\x74\x68\x65\x72\x20\x70\x61\x72\x74\x73'\ -b'\x20\x6f\x66\x20\x74\x68\x65\x20\x77\x6f\x72\x6c\x64\x20\x61\x74'\ -b'\x20\x6e\x6f\x20\x63\x6f\x73\x74\x20\x61\x6e\x64\x20\x77\x69\x74'\ -b'\x68\x20\x61\x6c\x6d\x6f\x73\x74\x20\x6e\x6f\x0d\x0a\x20\x20\x72'\ -b'\x65\x73\x74\x72\x69\x63\x74\x69\x6f\x6e\x73\x20\x77\x68\x61\x74'\ -b'\x73\x6f\x65\x76\x65\x72\x2e\x20\x59\x6f\x75\x20\x6d\x61\x79\x20'\ -b'\x63\x6f\x70\x79\x20\x69\x74\x2c\x20\x67\x69\x76\x65\x20\x69\x74'\ -b'\x20\x61\x77\x61\x79\x20\x6f\x72\x20\x72\x65\x2d\x75\x73\x65\x20'\ -b'\x69\x74\x0d\x0a\x20\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x65\x20'\ -b'\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x50\x72\x6f'\ -b'\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x4c'\ -b'\x69\x63\x65\x6e\x73\x65\x20\x69\x6e\x63\x6c\x75\x64\x65\x64\x20'\ -b'\x77\x69\x74\x68\x20\x74\x68\x69\x73\x0d\x0a\x20\x20\x65\x42\x6f'\ -b'\x6f\x6b\x20\x6f\x72\x20\x6f\x6e\x6c\x69\x6e\x65\x20\x61\x74\x20'\ -b'\x77\x77\x77\x2e\x67\x75\x74\x65\x6e\x62\x65\x72\x67\x2e\x6f\x72'\ -b'\x67\x2e\x20\x49\x66\x20\x79\x6f\x75\x20\x61\x72\x65\x20\x6e\x6f'\ -b'\x74\x20\x6c\x6f\x63\x61\x74\x65\x64\x20\x69\x6e\x20\x74\x68\x65'\ -b'\x0d\x0a\x20\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65'\ -b'\x73\x2c\x20\x79\x6f\x75\x20\x77\x69\x6c\x6c\x20\x68\x61\x76\x65'\ -b'\x20\x74\x6f\x20\x63\x68\x65\x63\x6b\x20\x74\x68\x65\x20\x6c\x61'\ -b'\x77\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6f\x75\x6e\x74\x72'\ -b'\x79\x20\x77\x68\x65\x72\x65\x0d\x0a\x20\x20\x79\x6f\x75\x20\x61'\ -b'\x72\x65\x20\x6c\x6f\x63\x61\x74\x65\x64\x20\x62\x65\x66\x6f\x72'\ -b'\x65\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x65\x42\x6f'\ -b'\x6f\x6b\x2e\x0d\x0a\x0d\x0a\x31\x2e\x45\x2e\x32\x2e\x20\x49\x66'\ -b'\x20\x61\x6e\x20\x69\x6e\x64\x69\x76\x69\x64\x75\x61\x6c\x20\x50'\ -b'\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67'\ -b'\x2d\x74\x6d\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77'\ -b'\x6f\x72\x6b\x20\x69\x73\x0d\x0a\x64\x65\x72\x69\x76\x65\x64\x20'\ -b'\x66\x72\x6f\x6d\x20\x74\x65\x78\x74\x73\x20\x6e\x6f\x74\x20\x70'\ -b'\x72\x6f\x74\x65\x63\x74\x65\x64\x20\x62\x79\x20\x55\x2e\x53\x2e'\ -b'\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6c\x61\x77\x20\x28'\ -b'\x64\x6f\x65\x73\x20\x6e\x6f\x74\x0d\x0a\x63\x6f\x6e\x74\x61\x69'\ -b'\x6e\x20\x61\x20\x6e\x6f\x74\x69\x63\x65\x20\x69\x6e\x64\x69\x63'\ -b'\x61\x74\x69\x6e\x67\x20\x74\x68\x61\x74\x20\x69\x74\x20\x69\x73'\ -b'\x20\x70\x6f\x73\x74\x65\x64\x20\x77\x69\x74\x68\x20\x70\x65\x72'\ -b'\x6d\x69\x73\x73\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x0d\x0a'\ -b'\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x68\x6f\x6c\x64\x65\x72'\ -b'\x29\x2c\x20\x74\x68\x65\x20\x77\x6f\x72\x6b\x20\x63\x61\x6e\x20'\ -b'\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x61\x6e\x64\x20\x64\x69'\ -b'\x73\x74\x72\x69\x62\x75\x74\x65\x64\x20\x74\x6f\x20\x61\x6e\x79'\ -b'\x6f\x6e\x65\x20\x69\x6e\x0d\x0a\x74\x68\x65\x20\x55\x6e\x69\x74'\ -b'\x65\x64\x20\x53\x74\x61\x74\x65\x73\x20\x77\x69\x74\x68\x6f\x75'\ -b'\x74\x20\x70\x61\x79\x69\x6e\x67\x20\x61\x6e\x79\x20\x66\x65\x65'\ -b'\x73\x20\x6f\x72\x20\x63\x68\x61\x72\x67\x65\x73\x2e\x20\x49\x66'\ -b'\x20\x79\x6f\x75\x20\x61\x72\x65\x0d\x0a\x72\x65\x64\x69\x73\x74'\ -b'\x72\x69\x62\x75\x74\x69\x6e\x67\x20\x6f\x72\x20\x70\x72\x6f\x76'\ -b'\x69\x64\x69\x6e\x67\x20\x61\x63\x63\x65\x73\x73\x20\x74\x6f\x20'\ -b'\x61\x20\x77\x6f\x72\x6b\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20'\ -b'\x70\x68\x72\x61\x73\x65\x20\x22\x50\x72\x6f\x6a\x65\x63\x74\x0d'\ -b'\x0a\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x22\x20\x61\x73\x73\x6f'\ -b'\x63\x69\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x6f\x72\x20\x61'\ -b'\x70\x70\x65\x61\x72\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68\x65\x20'\ -b'\x77\x6f\x72\x6b\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63'\ -b'\x6f\x6d\x70\x6c\x79\x0d\x0a\x65\x69\x74\x68\x65\x72\x20\x77\x69'\ -b'\x74\x68\x20\x74\x68\x65\x20\x72\x65\x71\x75\x69\x72\x65\x6d\x65'\ -b'\x6e\x74\x73\x20\x6f\x66\x20\x70\x61\x72\x61\x67\x72\x61\x70\x68'\ -b'\x73\x20\x31\x2e\x45\x2e\x31\x20\x74\x68\x72\x6f\x75\x67\x68\x20'\ -b'\x31\x2e\x45\x2e\x37\x20\x6f\x72\x0d\x0a\x6f\x62\x74\x61\x69\x6e'\ -b'\x20\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x20\x66\x6f\x72\x20'\ -b'\x74\x68\x65\x20\x75\x73\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x77'\ -b'\x6f\x72\x6b\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x50\x72\x6f\x6a'\ -b'\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d'\ -b'\x0d\x0a\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x20\x61\x73\x20\x73'\ -b'\x65\x74\x20\x66\x6f\x72\x74\x68\x20\x69\x6e\x20\x70\x61\x72\x61'\ -b'\x67\x72\x61\x70\x68\x73\x20\x31\x2e\x45\x2e\x38\x20\x6f\x72\x20'\ -b'\x31\x2e\x45\x2e\x39\x2e\x0d\x0a\x0d\x0a\x31\x2e\x45\x2e\x33\x2e'\ -b'\x20\x49\x66\x20\x61\x6e\x20\x69\x6e\x64\x69\x76\x69\x64\x75\x61'\ -b'\x6c\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62'\ -b'\x65\x72\x67\x2d\x74\x6d\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69'\ -b'\x63\x20\x77\x6f\x72\x6b\x20\x69\x73\x20\x70\x6f\x73\x74\x65\x64'\ -b'\x0d\x0a\x77\x69\x74\x68\x20\x74\x68\x65\x20\x70\x65\x72\x6d\x69'\ -b'\x73\x73\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6f\x70'\ -b'\x79\x72\x69\x67\x68\x74\x20\x68\x6f\x6c\x64\x65\x72\x2c\x20\x79'\ -b'\x6f\x75\x72\x20\x75\x73\x65\x20\x61\x6e\x64\x20\x64\x69\x73\x74'\ -b'\x72\x69\x62\x75\x74\x69\x6f\x6e\x0d\x0a\x6d\x75\x73\x74\x20\x63'\ -b'\x6f\x6d\x70\x6c\x79\x20\x77\x69\x74\x68\x20\x62\x6f\x74\x68\x20'\ -b'\x70\x61\x72\x61\x67\x72\x61\x70\x68\x73\x20\x31\x2e\x45\x2e\x31'\ -b'\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x31\x2e\x45\x2e\x37\x20\x61'\ -b'\x6e\x64\x20\x61\x6e\x79\x0d\x0a\x61\x64\x64\x69\x74\x69\x6f\x6e'\ -b'\x61\x6c\x20\x74\x65\x72\x6d\x73\x20\x69\x6d\x70\x6f\x73\x65\x64'\ -b'\x20\x62\x79\x20\x74\x68\x65\x20\x63\x6f\x70\x79\x72\x69\x67\x68'\ -b'\x74\x20\x68\x6f\x6c\x64\x65\x72\x2e\x20\x41\x64\x64\x69\x74\x69'\ -b'\x6f\x6e\x61\x6c\x20\x74\x65\x72\x6d\x73\x0d\x0a\x77\x69\x6c\x6c'\ -b'\x20\x62\x65\x20\x6c\x69\x6e\x6b\x65\x64\x20\x74\x6f\x20\x74\x68'\ -b'\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62'\ -b'\x65\x72\x67\x2d\x74\x6d\x20\x4c\x69\x63\x65\x6e\x73\x65\x20\x66'\ -b'\x6f\x72\x20\x61\x6c\x6c\x20\x77\x6f\x72\x6b\x73\x0d\x0a\x70\x6f'\ -b'\x73\x74\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x70\x65'\ -b'\x72\x6d\x69\x73\x73\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20'\ -b'\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x68\x6f\x6c\x64\x65\x72'\ -b'\x20\x66\x6f\x75\x6e\x64\x20\x61\x74\x20\x74\x68\x65\x0d\x0a\x62'\ -b'\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x6f\x66\x20\x74\x68\x69\x73'\ -b'\x20\x77\x6f\x72\x6b\x2e\x0d\x0a\x0d\x0a\x31\x2e\x45\x2e\x34\x2e'\ -b'\x20\x44\x6f\x20\x6e\x6f\x74\x20\x75\x6e\x6c\x69\x6e\x6b\x20\x6f'\ -b'\x72\x20\x64\x65\x74\x61\x63\x68\x20\x6f\x72\x20\x72\x65\x6d\x6f'\ -b'\x76\x65\x20\x74\x68\x65\x20\x66\x75\x6c\x6c\x20\x50\x72\x6f\x6a'\ -b'\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d'\ -b'\x0d\x0a\x4c\x69\x63\x65\x6e\x73\x65\x20\x74\x65\x72\x6d\x73\x20'\ -b'\x66\x72\x6f\x6d\x20\x74\x68\x69\x73\x20\x77\x6f\x72\x6b\x2c\x20'\ -b'\x6f\x72\x20\x61\x6e\x79\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e'\ -b'\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x70\x61\x72\x74\x20\x6f'\ -b'\x66\x20\x74\x68\x69\x73\x0d\x0a\x77\x6f\x72\x6b\x20\x6f\x72\x20'\ -b'\x61\x6e\x79\x20\x6f\x74\x68\x65\x72\x20\x77\x6f\x72\x6b\x20\x61'\ -b'\x73\x73\x6f\x63\x69\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x50'\ -b'\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67'\ -b'\x2d\x74\x6d\x2e\x0d\x0a\x0d\x0a\x31\x2e\x45\x2e\x35\x2e\x20\x44'\ -b'\x6f\x20\x6e\x6f\x74\x20\x63\x6f\x70\x79\x2c\x20\x64\x69\x73\x70'\ -b'\x6c\x61\x79\x2c\x20\x70\x65\x72\x66\x6f\x72\x6d\x2c\x20\x64\x69'\ -b'\x73\x74\x72\x69\x62\x75\x74\x65\x20\x6f\x72\x20\x72\x65\x64\x69'\ -b'\x73\x74\x72\x69\x62\x75\x74\x65\x20\x74\x68\x69\x73\x0d\x0a\x65'\ -b'\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x2c\x20'\ -b'\x6f\x72\x20\x61\x6e\x79\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x74'\ -b'\x68\x69\x73\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77'\ -b'\x6f\x72\x6b\x2c\x20\x77\x69\x74\x68\x6f\x75\x74\x0d\x0a\x70\x72'\ -b'\x6f\x6d\x69\x6e\x65\x6e\x74\x6c\x79\x20\x64\x69\x73\x70\x6c\x61'\ -b'\x79\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6e\x74\x65\x6e\x63'\ -b'\x65\x20\x73\x65\x74\x20\x66\x6f\x72\x74\x68\x20\x69\x6e\x20\x70'\ -b'\x61\x72\x61\x67\x72\x61\x70\x68\x20\x31\x2e\x45\x2e\x31\x20\x77'\ -b'\x69\x74\x68\x0d\x0a\x61\x63\x74\x69\x76\x65\x20\x6c\x69\x6e\x6b'\ -b'\x73\x20\x6f\x72\x20\x69\x6d\x6d\x65\x64\x69\x61\x74\x65\x20\x61'\ -b'\x63\x63\x65\x73\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x75\x6c'\ -b'\x6c\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x50'\ -b'\x72\x6f\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74\x65\x6e\x62\x65\x72'\ -b'\x67\x2d\x74\x6d\x20\x4c\x69\x63\x65\x6e\x73\x65\x2e\x0d\x0a\x0d'\ -b'\x0a\x31\x2e\x45\x2e\x36\x2e\x20\x59\x6f\x75\x20\x6d\x61\x79\x20'\ -b'\x63\x6f\x6e\x76\x65\x72\x74\x20\x74\x6f\x20\x61\x6e\x64\x20\x64'\ -b'\x69\x73\x74\x72\x69\x62\x75\x74\x65\x20\x74\x68\x69\x73\x20\x77'\ -b'\x6f\x72\x6b\x20\x69\x6e\x20\x61\x6e\x79\x20\x62\x69\x6e\x61\x72'\ -b'\x79\x2c\x0d\x0a\x63\x6f\x6d\x70\x72\x65\x73\x73\x65\x64\x2c\x20'\ -b'\x6d\x61\x72\x6b\x65\x64\x20\x75\x70\x2c\x20\x6e\x6f\x6e\x70\x72'\ -b'\x6f\x70\x72\x69\x65\x74\x61\x72\x79\x20\x6f\x72\x20\x70\x72\x6f'\ -b'\x70\x72\x69\x65\x74\x61\x72\x79\x20\x66\x6f\x72\x6d\x2c\x20\x69'\ -b'\x6e\x63\x6c\x75\x64\x69\x6e\x67\x0d\x0a\x61\x6e\x79\x20\x77\x6f'\ -b'\x72\x64\x20\x70\x72\x6f\x63\x65\x73\x73\x69\x6e\x67\x20\x6f\x72'\ -b'\x20\x68\x79\x70\x65\x72\x74\x65\x78\x74\x20\x66\x6f\x72\x6d\x2e'\ -b'\x20\x48\x6f\x77\x65\x76\x65\x72\x2c\x20\x69\x66\x20\x79\x6f\x75'\ -b'\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x61\x63\x63\x65\x73\x73\x0d'\ -b'\x0a\x74\x6f\x20\x6f\x72\x20\x64\x69\x73\x74\x72\x69\x62\x75\x74'\ -b'\x65\x20\x63\x6f\x70\x69\x65\x73\x20\x6f\x66\x20\x61\x20\x50\x72'\ -b'\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d'\ -b'\x74\x6d\x20\x77\x6f\x72\x6b\x20\x69\x6e\x20\x61\x20\x66\x6f\x72'\ -b'\x6d\x61\x74\x0d\x0a\x6f\x74\x68\x65\x72\x20\x74\x68\x61\x6e\x20'\ -b'\x22\x50\x6c\x61\x69\x6e\x20\x56\x61\x6e\x69\x6c\x6c\x61\x20\x41'\ -b'\x53\x43\x49\x49\x22\x20\x6f\x72\x20\x6f\x74\x68\x65\x72\x20\x66'\ -b'\x6f\x72\x6d\x61\x74\x20\x75\x73\x65\x64\x20\x69\x6e\x20\x74\x68'\ -b'\x65\x20\x6f\x66\x66\x69\x63\x69\x61\x6c\x0d\x0a\x76\x65\x72\x73'\ -b'\x69\x6f\x6e\x20\x70\x6f\x73\x74\x65\x64\x20\x6f\x6e\x20\x74\x68'\ -b'\x65\x20\x6f\x66\x66\x69\x63\x69\x61\x6c\x20\x50\x72\x6f\x6a\x65'\ -b'\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20'\ -b'\x77\x65\x62\x73\x69\x74\x65\x0d\x0a\x28\x77\x77\x77\x2e\x67\x75'\ -b'\x74\x65\x6e\x62\x65\x72\x67\x2e\x6f\x72\x67\x29\x2c\x20\x79\x6f'\ -b'\x75\x20\x6d\x75\x73\x74\x2c\x20\x61\x74\x20\x6e\x6f\x20\x61\x64'\ -b'\x64\x69\x74\x69\x6f\x6e\x61\x6c\x20\x63\x6f\x73\x74\x2c\x20\x66'\ -b'\x65\x65\x20\x6f\x72\x20\x65\x78\x70\x65\x6e\x73\x65\x0d\x0a\x74'\ -b'\x6f\x20\x74\x68\x65\x20\x75\x73\x65\x72\x2c\x20\x70\x72\x6f\x76'\ -b'\x69\x64\x65\x20\x61\x20\x63\x6f\x70\x79\x2c\x20\x61\x20\x6d\x65'\ -b'\x61\x6e\x73\x20\x6f\x66\x20\x65\x78\x70\x6f\x72\x74\x69\x6e\x67'\ -b'\x20\x61\x20\x63\x6f\x70\x79\x2c\x20\x6f\x72\x20\x61\x20\x6d\x65'\ -b'\x61\x6e\x73\x0d\x0a\x6f\x66\x20\x6f\x62\x74\x61\x69\x6e\x69\x6e'\ -b'\x67\x20\x61\x20\x63\x6f\x70\x79\x20\x75\x70\x6f\x6e\x20\x72\x65'\ -b'\x71\x75\x65\x73\x74\x2c\x20\x6f\x66\x20\x74\x68\x65\x20\x77\x6f'\ -b'\x72\x6b\x20\x69\x6e\x20\x69\x74\x73\x20\x6f\x72\x69\x67\x69\x6e'\ -b'\x61\x6c\x20\x22\x50\x6c\x61\x69\x6e\x0d\x0a\x56\x61\x6e\x69\x6c'\ -b'\x6c\x61\x20\x41\x53\x43\x49\x49\x22\x20\x6f\x72\x20\x6f\x74\x68'\ -b'\x65\x72\x20\x66\x6f\x72\x6d\x2e\x20\x41\x6e\x79\x20\x61\x6c\x74'\ -b'\x65\x72\x6e\x61\x74\x65\x20\x66\x6f\x72\x6d\x61\x74\x20\x6d\x75'\ -b'\x73\x74\x20\x69\x6e\x63\x6c\x75\x64\x65\x20\x74\x68\x65\x0d\x0a'\ -b'\x66\x75\x6c\x6c\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74'\ -b'\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x4c\x69\x63\x65\x6e\x73'\ -b'\x65\x20\x61\x73\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x69'\ -b'\x6e\x20\x70\x61\x72\x61\x67\x72\x61\x70\x68\x20\x31\x2e\x45\x2e'\ -b'\x31\x2e\x0d\x0a\x0d\x0a\x31\x2e\x45\x2e\x37\x2e\x20\x44\x6f\x20'\ -b'\x6e\x6f\x74\x20\x63\x68\x61\x72\x67\x65\x20\x61\x20\x66\x65\x65'\ -b'\x20\x66\x6f\x72\x20\x61\x63\x63\x65\x73\x73\x20\x74\x6f\x2c\x20'\ -b'\x76\x69\x65\x77\x69\x6e\x67\x2c\x20\x64\x69\x73\x70\x6c\x61\x79'\ -b'\x69\x6e\x67\x2c\x0d\x0a\x70\x65\x72\x66\x6f\x72\x6d\x69\x6e\x67'\ -b'\x2c\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x72\x20\x64\x69\x73'\ -b'\x74\x72\x69\x62\x75\x74\x69\x6e\x67\x20\x61\x6e\x79\x20\x50\x72'\ -b'\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d'\ -b'\x74\x6d\x20\x77\x6f\x72\x6b\x73\x0d\x0a\x75\x6e\x6c\x65\x73\x73'\ -b'\x20\x79\x6f\x75\x20\x63\x6f\x6d\x70\x6c\x79\x20\x77\x69\x74\x68'\ -b'\x20\x70\x61\x72\x61\x67\x72\x61\x70\x68\x20\x31\x2e\x45\x2e\x38'\ -b'\x20\x6f\x72\x20\x31\x2e\x45\x2e\x39\x2e\x0d\x0a\x0d\x0a\x31\x2e'\ -b'\x45\x2e\x38\x2e\x20\x59\x6f\x75\x20\x6d\x61\x79\x20\x63\x68\x61'\ -b'\x72\x67\x65\x20\x61\x20\x72\x65\x61\x73\x6f\x6e\x61\x62\x6c\x65'\ -b'\x20\x66\x65\x65\x20\x66\x6f\x72\x20\x63\x6f\x70\x69\x65\x73\x20'\ -b'\x6f\x66\x20\x6f\x72\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x0d'\ -b'\x0a\x61\x63\x63\x65\x73\x73\x20\x74\x6f\x20\x6f\x72\x20\x64\x69'\ -b'\x73\x74\x72\x69\x62\x75\x74\x69\x6e\x67\x20\x50\x72\x6f\x6a\x65'\ -b'\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20'\ -b'\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x73'\ -b'\x0d\x0a\x70\x72\x6f\x76\x69\x64\x65\x64\x20\x74\x68\x61\x74\x3a'\ -b'\x0d\x0a\x0d\x0a\x2a\x20\x59\x6f\x75\x20\x70\x61\x79\x20\x61\x20'\ -b'\x72\x6f\x79\x61\x6c\x74\x79\x20\x66\x65\x65\x20\x6f\x66\x20\x32'\ -b'\x30\x25\x20\x6f\x66\x20\x74\x68\x65\x20\x67\x72\x6f\x73\x73\x20'\ -b'\x70\x72\x6f\x66\x69\x74\x73\x20\x79\x6f\x75\x20\x64\x65\x72\x69'\ -b'\x76\x65\x20\x66\x72\x6f\x6d\x0d\x0a\x20\x20\x74\x68\x65\x20\x75'\ -b'\x73\x65\x20\x6f\x66\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75'\ -b'\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x77\x6f\x72\x6b\x73'\ -b'\x20\x63\x61\x6c\x63\x75\x6c\x61\x74\x65\x64\x20\x75\x73\x69\x6e'\ -b'\x67\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x0d\x0a\x20\x20'\ -b'\x79\x6f\x75\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x75\x73\x65\x20'\ -b'\x74\x6f\x20\x63\x61\x6c\x63\x75\x6c\x61\x74\x65\x20\x79\x6f\x75'\ -b'\x72\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x20\x74\x61\x78'\ -b'\x65\x73\x2e\x20\x54\x68\x65\x20\x66\x65\x65\x20\x69\x73\x20\x6f'\ -b'\x77\x65\x64\x0d\x0a\x20\x20\x74\x6f\x20\x74\x68\x65\x20\x6f\x77'\ -b'\x6e\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x50\x72\x6f\x6a\x65'\ -b'\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20'\ -b'\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x2c\x20\x62\x75\x74\x20\x68'\ -b'\x65\x20\x68\x61\x73\x0d\x0a\x20\x20\x61\x67\x72\x65\x65\x64\x20'\ -b'\x74\x6f\x20\x64\x6f\x6e\x61\x74\x65\x20\x72\x6f\x79\x61\x6c\x74'\ -b'\x69\x65\x73\x20\x75\x6e\x64\x65\x72\x20\x74\x68\x69\x73\x20\x70'\ -b'\x61\x72\x61\x67\x72\x61\x70\x68\x20\x74\x6f\x20\x74\x68\x65\x20'\ -b'\x50\x72\x6f\x6a\x65\x63\x74\x0d\x0a\x20\x20\x47\x75\x74\x65\x6e'\ -b'\x62\x65\x72\x67\x20\x4c\x69\x74\x65\x72\x61\x72\x79\x20\x41\x72'\ -b'\x63\x68\x69\x76\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e'\ -b'\x2e\x20\x52\x6f\x79\x61\x6c\x74\x79\x20\x70\x61\x79\x6d\x65\x6e'\ -b'\x74\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x70\x61\x69\x64\x0d'\ -b'\x0a\x20\x20\x77\x69\x74\x68\x69\x6e\x20\x36\x30\x20\x64\x61\x79'\ -b'\x73\x20\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x65\x61\x63\x68'\ -b'\x20\x64\x61\x74\x65\x20\x6f\x6e\x20\x77\x68\x69\x63\x68\x20\x79'\ -b'\x6f\x75\x20\x70\x72\x65\x70\x61\x72\x65\x20\x28\x6f\x72\x20\x61'\ -b'\x72\x65\x0d\x0a\x20\x20\x6c\x65\x67\x61\x6c\x6c\x79\x20\x72\x65'\ -b'\x71\x75\x69\x72\x65\x64\x20\x74\x6f\x20\x70\x72\x65\x70\x61\x72'\ -b'\x65\x29\x20\x79\x6f\x75\x72\x20\x70\x65\x72\x69\x6f\x64\x69\x63'\ -b'\x20\x74\x61\x78\x20\x72\x65\x74\x75\x72\x6e\x73\x2e\x20\x52\x6f'\ -b'\x79\x61\x6c\x74\x79\x0d\x0a\x20\x20\x70\x61\x79\x6d\x65\x6e\x74'\ -b'\x73\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x63\x6c\x65\x61'\ -b'\x72\x6c\x79\x20\x6d\x61\x72\x6b\x65\x64\x20\x61\x73\x20\x73\x75'\ -b'\x63\x68\x20\x61\x6e\x64\x20\x73\x65\x6e\x74\x20\x74\x6f\x20\x74'\ -b'\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x0d\x0a\x20\x20\x47\x75'\ -b'\x74\x65\x6e\x62\x65\x72\x67\x20\x4c\x69\x74\x65\x72\x61\x72\x79'\ -b'\x20\x41\x72\x63\x68\x69\x76\x65\x20\x46\x6f\x75\x6e\x64\x61\x74'\ -b'\x69\x6f\x6e\x20\x61\x74\x20\x74\x68\x65\x20\x61\x64\x64\x72\x65'\ -b'\x73\x73\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x69\x6e\x0d'\ -b'\x0a\x20\x20\x53\x65\x63\x74\x69\x6f\x6e\x20\x34\x2c\x20\x22\x49'\ -b'\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x61\x62\x6f\x75\x74'\ -b'\x20\x64\x6f\x6e\x61\x74\x69\x6f\x6e\x73\x20\x74\x6f\x20\x74\x68'\ -b'\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62'\ -b'\x65\x72\x67\x0d\x0a\x20\x20\x4c\x69\x74\x65\x72\x61\x72\x79\x20'\ -b'\x41\x72\x63\x68\x69\x76\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69'\ -b'\x6f\x6e\x2e\x22\x0d\x0a\x0d\x0a\x2a\x20\x59\x6f\x75\x20\x70\x72'\ -b'\x6f\x76\x69\x64\x65\x20\x61\x20\x66\x75\x6c\x6c\x20\x72\x65\x66'\ -b'\x75\x6e\x64\x20\x6f\x66\x20\x61\x6e\x79\x20\x6d\x6f\x6e\x65\x79'\ -b'\x20\x70\x61\x69\x64\x20\x62\x79\x20\x61\x20\x75\x73\x65\x72\x20'\ -b'\x77\x68\x6f\x20\x6e\x6f\x74\x69\x66\x69\x65\x73\x0d\x0a\x20\x20'\ -b'\x79\x6f\x75\x20\x69\x6e\x20\x77\x72\x69\x74\x69\x6e\x67\x20\x28'\ -b'\x6f\x72\x20\x62\x79\x20\x65\x2d\x6d\x61\x69\x6c\x29\x20\x77\x69'\ -b'\x74\x68\x69\x6e\x20\x33\x30\x20\x64\x61\x79\x73\x20\x6f\x66\x20'\ -b'\x72\x65\x63\x65\x69\x70\x74\x20\x74\x68\x61\x74\x20\x73\x2f\x68'\ -b'\x65\x0d\x0a\x20\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\x67'\ -b'\x72\x65\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x73'\ -b'\x20\x6f\x66\x20\x74\x68\x65\x20\x66\x75\x6c\x6c\x20\x50\x72\x6f'\ -b'\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74'\ -b'\x6d\x0d\x0a\x20\x20\x4c\x69\x63\x65\x6e\x73\x65\x2e\x20\x59\x6f'\ -b'\x75\x20\x6d\x75\x73\x74\x20\x72\x65\x71\x75\x69\x72\x65\x20\x73'\ -b'\x75\x63\x68\x20\x61\x20\x75\x73\x65\x72\x20\x74\x6f\x20\x72\x65'\ -b'\x74\x75\x72\x6e\x20\x6f\x72\x20\x64\x65\x73\x74\x72\x6f\x79\x20'\ -b'\x61\x6c\x6c\x0d\x0a\x20\x20\x63\x6f\x70\x69\x65\x73\x20\x6f\x66'\ -b'\x20\x74\x68\x65\x20\x77\x6f\x72\x6b\x73\x20\x70\x6f\x73\x73\x65'\ -b'\x73\x73\x65\x64\x20\x69\x6e\x20\x61\x20\x70\x68\x79\x73\x69\x63'\ -b'\x61\x6c\x20\x6d\x65\x64\x69\x75\x6d\x20\x61\x6e\x64\x20\x64\x69'\ -b'\x73\x63\x6f\x6e\x74\x69\x6e\x75\x65\x0d\x0a\x20\x20\x61\x6c\x6c'\ -b'\x20\x75\x73\x65\x20\x6f\x66\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20'\ -b'\x61\x63\x63\x65\x73\x73\x20\x74\x6f\x20\x6f\x74\x68\x65\x72\x20'\ -b'\x63\x6f\x70\x69\x65\x73\x20\x6f\x66\x20\x50\x72\x6f\x6a\x65\x63'\ -b'\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x0d\x0a'\ -b'\x20\x20\x77\x6f\x72\x6b\x73\x2e\x0d\x0a\x0d\x0a\x2a\x20\x59\x6f'\ -b'\x75\x20\x70\x72\x6f\x76\x69\x64\x65\x2c\x20\x69\x6e\x20\x61\x63'\ -b'\x63\x6f\x72\x64\x61\x6e\x63\x65\x20\x77\x69\x74\x68\x20\x70\x61'\ -b'\x72\x61\x67\x72\x61\x70\x68\x20\x31\x2e\x46\x2e\x33\x2c\x20\x61'\ -b'\x20\x66\x75\x6c\x6c\x20\x72\x65\x66\x75\x6e\x64\x20\x6f\x66\x0d'\ -b'\x0a\x20\x20\x61\x6e\x79\x20\x6d\x6f\x6e\x65\x79\x20\x70\x61\x69'\ -b'\x64\x20\x66\x6f\x72\x20\x61\x20\x77\x6f\x72\x6b\x20\x6f\x72\x20'\ -b'\x61\x20\x72\x65\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x20\x63\x6f'\ -b'\x70\x79\x2c\x20\x69\x66\x20\x61\x20\x64\x65\x66\x65\x63\x74\x20'\ -b'\x69\x6e\x20\x74\x68\x65\x0d\x0a\x20\x20\x65\x6c\x65\x63\x74\x72'\ -b'\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x20\x69\x73\x20\x64\x69\x73'\ -b'\x63\x6f\x76\x65\x72\x65\x64\x20\x61\x6e\x64\x20\x72\x65\x70\x6f'\ -b'\x72\x74\x65\x64\x20\x74\x6f\x20\x79\x6f\x75\x20\x77\x69\x74\x68'\ -b'\x69\x6e\x20\x39\x30\x20\x64\x61\x79\x73\x20\x6f\x66\x0d\x0a\x20'\ -b'\x20\x72\x65\x63\x65\x69\x70\x74\x20\x6f\x66\x20\x74\x68\x65\x20'\ -b'\x77\x6f\x72\x6b\x2e\x0d\x0a\x0d\x0a\x2a\x20\x59\x6f\x75\x20\x63'\ -b'\x6f\x6d\x70\x6c\x79\x20\x77\x69\x74\x68\x20\x61\x6c\x6c\x20\x6f'\ -b'\x74\x68\x65\x72\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68'\ -b'\x69\x73\x20\x61\x67\x72\x65\x65\x6d\x65\x6e\x74\x20\x66\x6f\x72'\ -b'\x20\x66\x72\x65\x65\x0d\x0a\x20\x20\x64\x69\x73\x74\x72\x69\x62'\ -b'\x75\x74\x69\x6f\x6e\x20\x6f\x66\x20\x50\x72\x6f\x6a\x65\x63\x74'\ -b'\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x77\x6f'\ -b'\x72\x6b\x73\x2e\x0d\x0a\x0d\x0a\x31\x2e\x45\x2e\x39\x2e\x20\x49'\ -b'\x66\x20\x79\x6f\x75\x20\x77\x69\x73\x68\x20\x74\x6f\x20\x63\x68'\ -b'\x61\x72\x67\x65\x20\x61\x20\x66\x65\x65\x20\x6f\x72\x20\x64\x69'\ -b'\x73\x74\x72\x69\x62\x75\x74\x65\x20\x61\x20\x50\x72\x6f\x6a\x65'\ -b'\x63\x74\x0d\x0a\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d'\ -b'\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b'\ -b'\x20\x6f\x72\x20\x67\x72\x6f\x75\x70\x20\x6f\x66\x20\x77\x6f\x72'\ -b'\x6b\x73\x20\x6f\x6e\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20'\ -b'\x74\x65\x72\x6d\x73\x20\x74\x68\x61\x6e\x0d\x0a\x61\x72\x65\x20'\ -b'\x73\x65\x74\x20\x66\x6f\x72\x74\x68\x20\x69\x6e\x20\x74\x68\x69'\ -b'\x73\x20\x61\x67\x72\x65\x65\x6d\x65\x6e\x74\x2c\x20\x79\x6f\x75'\ -b'\x20\x6d\x75\x73\x74\x20\x6f\x62\x74\x61\x69\x6e\x20\x70\x65\x72'\ -b'\x6d\x69\x73\x73\x69\x6f\x6e\x20\x69\x6e\x20\x77\x72\x69\x74\x69'\ -b'\x6e\x67\x0d\x0a\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x50\x72\x6f'\ -b'\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x4c'\ -b'\x69\x74\x65\x72\x61\x72\x79\x20\x41\x72\x63\x68\x69\x76\x65\x20'\ -b'\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e\x2c\x20\x74\x68\x65\x20'\ -b'\x6d\x61\x6e\x61\x67\x65\x72\x20\x6f\x66\x0d\x0a\x74\x68\x65\x20'\ -b'\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72'\ -b'\x67\x2d\x74\x6d\x20\x74\x72\x61\x64\x65\x6d\x61\x72\x6b\x2e\x20'\ -b'\x43\x6f\x6e\x74\x61\x63\x74\x20\x74\x68\x65\x20\x46\x6f\x75\x6e'\ -b'\x64\x61\x74\x69\x6f\x6e\x20\x61\x73\x20\x73\x65\x74\x0d\x0a\x66'\ -b'\x6f\x72\x74\x68\x20\x69\x6e\x20\x53\x65\x63\x74\x69\x6f\x6e\x20'\ -b'\x33\x20\x62\x65\x6c\x6f\x77\x2e\x0d\x0a\x0d\x0a\x31\x2e\x46\x2e'\ -b'\x0d\x0a\x0d\x0a\x31\x2e\x46\x2e\x31\x2e\x20\x50\x72\x6f\x6a\x65'\ -b'\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x76\x6f\x6c'\ -b'\x75\x6e\x74\x65\x65\x72\x73\x20\x61\x6e\x64\x20\x65\x6d\x70\x6c'\ -b'\x6f\x79\x65\x65\x73\x20\x65\x78\x70\x65\x6e\x64\x20\x63\x6f\x6e'\ -b'\x73\x69\x64\x65\x72\x61\x62\x6c\x65\x0d\x0a\x65\x66\x66\x6f\x72'\ -b'\x74\x20\x74\x6f\x20\x69\x64\x65\x6e\x74\x69\x66\x79\x2c\x20\x64'\ -b'\x6f\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x72\x65\x73\x65'\ -b'\x61\x72\x63\x68\x20\x6f\x6e\x2c\x20\x74\x72\x61\x6e\x73\x63\x72'\ -b'\x69\x62\x65\x20\x61\x6e\x64\x20\x70\x72\x6f\x6f\x66\x72\x65\x61'\ -b'\x64\x0d\x0a\x77\x6f\x72\x6b\x73\x20\x6e\x6f\x74\x20\x70\x72\x6f'\ -b'\x74\x65\x63\x74\x65\x64\x20\x62\x79\x20\x55\x2e\x53\x2e\x20\x63'\ -b'\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6c\x61\x77\x20\x69\x6e\x20'\ -b'\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x50\x72\x6f'\ -b'\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d'\ -b'\x74\x6d\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x2e\x20\x44'\ -b'\x65\x73\x70\x69\x74\x65\x20\x74\x68\x65\x73\x65\x20\x65\x66\x66'\ -b'\x6f\x72\x74\x73\x2c\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75'\ -b'\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x0d\x0a\x65\x6c\x65\x63'\ -b'\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x73\x2c\x20\x61\x6e'\ -b'\x64\x20\x74\x68\x65\x20\x6d\x65\x64\x69\x75\x6d\x20\x6f\x6e\x20'\ -b'\x77\x68\x69\x63\x68\x20\x74\x68\x65\x79\x20\x6d\x61\x79\x20\x62'\ -b'\x65\x20\x73\x74\x6f\x72\x65\x64\x2c\x20\x6d\x61\x79\x0d\x0a\x63'\ -b'\x6f\x6e\x74\x61\x69\x6e\x20\x22\x44\x65\x66\x65\x63\x74\x73\x2c'\ -b'\x22\x20\x73\x75\x63\x68\x20\x61\x73\x2c\x20\x62\x75\x74\x20\x6e'\ -b'\x6f\x74\x20\x6c\x69\x6d\x69\x74\x65\x64\x20\x74\x6f\x2c\x20\x69'\ -b'\x6e\x63\x6f\x6d\x70\x6c\x65\x74\x65\x2c\x20\x69\x6e\x61\x63\x63'\ -b'\x75\x72\x61\x74\x65\x0d\x0a\x6f\x72\x20\x63\x6f\x72\x72\x75\x70'\ -b'\x74\x20\x64\x61\x74\x61\x2c\x20\x74\x72\x61\x6e\x73\x63\x72\x69'\ -b'\x70\x74\x69\x6f\x6e\x20\x65\x72\x72\x6f\x72\x73\x2c\x20\x61\x20'\ -b'\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6f\x72\x20\x6f\x74\x68'\ -b'\x65\x72\x0d\x0a\x69\x6e\x74\x65\x6c\x6c\x65\x63\x74\x75\x61\x6c'\ -b'\x20\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x69\x6e\x66\x72\x69\x6e'\ -b'\x67\x65\x6d\x65\x6e\x74\x2c\x20\x61\x20\x64\x65\x66\x65\x63\x74'\ -b'\x69\x76\x65\x20\x6f\x72\x20\x64\x61\x6d\x61\x67\x65\x64\x20\x64'\ -b'\x69\x73\x6b\x20\x6f\x72\x0d\x0a\x6f\x74\x68\x65\x72\x20\x6d\x65'\ -b'\x64\x69\x75\x6d\x2c\x20\x61\x20\x63\x6f\x6d\x70\x75\x74\x65\x72'\ -b'\x20\x76\x69\x72\x75\x73\x2c\x20\x6f\x72\x20\x63\x6f\x6d\x70\x75'\ -b'\x74\x65\x72\x20\x63\x6f\x64\x65\x73\x20\x74\x68\x61\x74\x20\x64'\ -b'\x61\x6d\x61\x67\x65\x20\x6f\x72\x0d\x0a\x63\x61\x6e\x6e\x6f\x74'\ -b'\x20\x62\x65\x20\x72\x65\x61\x64\x20\x62\x79\x20\x79\x6f\x75\x72'\ -b'\x20\x65\x71\x75\x69\x70\x6d\x65\x6e\x74\x2e\x0d\x0a\x0d\x0a\x31'\ -b'\x2e\x46\x2e\x32\x2e\x20\x4c\x49\x4d\x49\x54\x45\x44\x20\x57\x41'\ -b'\x52\x52\x41\x4e\x54\x59\x2c\x20\x44\x49\x53\x43\x4c\x41\x49\x4d'\ -b'\x45\x52\x20\x4f\x46\x20\x44\x41\x4d\x41\x47\x45\x53\x20\x2d\x20'\ -b'\x45\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x22'\ -b'\x52\x69\x67\x68\x74\x0d\x0a\x6f\x66\x20\x52\x65\x70\x6c\x61\x63'\ -b'\x65\x6d\x65\x6e\x74\x20\x6f\x72\x20\x52\x65\x66\x75\x6e\x64\x22'\ -b'\x20\x64\x65\x73\x63\x72\x69\x62\x65\x64\x20\x69\x6e\x20\x70\x61'\ -b'\x72\x61\x67\x72\x61\x70\x68\x20\x31\x2e\x46\x2e\x33\x2c\x20\x74'\ -b'\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74\x65'\ -b'\x6e\x62\x65\x72\x67\x20\x4c\x69\x74\x65\x72\x61\x72\x79\x20\x41'\ -b'\x72\x63\x68\x69\x76\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f'\ -b'\x6e\x2c\x20\x74\x68\x65\x20\x6f\x77\x6e\x65\x72\x20\x6f\x66\x20'\ -b'\x74\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74'\ -b'\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x74\x72\x61\x64\x65\x6d'\ -b'\x61\x72\x6b\x2c\x20\x61\x6e\x64\x20\x61\x6e\x79\x20\x6f\x74\x68'\ -b'\x65\x72\x20\x70\x61\x72\x74\x79\x20\x64\x69\x73\x74\x72\x69\x62'\ -b'\x75\x74\x69\x6e\x67\x20\x61\x20\x50\x72\x6f\x6a\x65\x63\x74\x0d'\ -b'\x0a\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x65\x6c'\ -b'\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x20\x75\x6e'\ -b'\x64\x65\x72\x20\x74\x68\x69\x73\x20\x61\x67\x72\x65\x65\x6d\x65'\ -b'\x6e\x74\x2c\x20\x64\x69\x73\x63\x6c\x61\x69\x6d\x20\x61\x6c\x6c'\ -b'\x0d\x0a\x6c\x69\x61\x62\x69\x6c\x69\x74\x79\x20\x74\x6f\x20\x79'\ -b'\x6f\x75\x20\x66\x6f\x72\x20\x64\x61\x6d\x61\x67\x65\x73\x2c\x20'\ -b'\x63\x6f\x73\x74\x73\x20\x61\x6e\x64\x20\x65\x78\x70\x65\x6e\x73'\ -b'\x65\x73\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x6c\x65'\ -b'\x67\x61\x6c\x0d\x0a\x66\x65\x65\x73\x2e\x20\x59\x4f\x55\x20\x41'\ -b'\x47\x52\x45\x45\x20\x54\x48\x41\x54\x20\x59\x4f\x55\x20\x48\x41'\ -b'\x56\x45\x20\x4e\x4f\x20\x52\x45\x4d\x45\x44\x49\x45\x53\x20\x46'\ -b'\x4f\x52\x20\x4e\x45\x47\x4c\x49\x47\x45\x4e\x43\x45\x2c\x20\x53'\ -b'\x54\x52\x49\x43\x54\x0d\x0a\x4c\x49\x41\x42\x49\x4c\x49\x54\x59'\ -b'\x2c\x20\x42\x52\x45\x41\x43\x48\x20\x4f\x46\x20\x57\x41\x52\x52'\ -b'\x41\x4e\x54\x59\x20\x4f\x52\x20\x42\x52\x45\x41\x43\x48\x20\x4f'\ -b'\x46\x20\x43\x4f\x4e\x54\x52\x41\x43\x54\x20\x45\x58\x43\x45\x50'\ -b'\x54\x20\x54\x48\x4f\x53\x45\x0d\x0a\x50\x52\x4f\x56\x49\x44\x45'\ -b'\x44\x20\x49\x4e\x20\x50\x41\x52\x41\x47\x52\x41\x50\x48\x20\x31'\ -b'\x2e\x46\x2e\x33\x2e\x20\x59\x4f\x55\x20\x41\x47\x52\x45\x45\x20'\ -b'\x54\x48\x41\x54\x20\x54\x48\x45\x20\x46\x4f\x55\x4e\x44\x41\x54'\ -b'\x49\x4f\x4e\x2c\x20\x54\x48\x45\x0d\x0a\x54\x52\x41\x44\x45\x4d'\ -b'\x41\x52\x4b\x20\x4f\x57\x4e\x45\x52\x2c\x20\x41\x4e\x44\x20\x41'\ -b'\x4e\x59\x20\x44\x49\x53\x54\x52\x49\x42\x55\x54\x4f\x52\x20\x55'\ -b'\x4e\x44\x45\x52\x20\x54\x48\x49\x53\x20\x41\x47\x52\x45\x45\x4d'\ -b'\x45\x4e\x54\x20\x57\x49\x4c\x4c\x20\x4e\x4f\x54\x20\x42\x45\x0d'\ -b'\x0a\x4c\x49\x41\x42\x4c\x45\x20\x54\x4f\x20\x59\x4f\x55\x20\x46'\ -b'\x4f\x52\x20\x41\x43\x54\x55\x41\x4c\x2c\x20\x44\x49\x52\x45\x43'\ -b'\x54\x2c\x20\x49\x4e\x44\x49\x52\x45\x43\x54\x2c\x20\x43\x4f\x4e'\ -b'\x53\x45\x51\x55\x45\x4e\x54\x49\x41\x4c\x2c\x20\x50\x55\x4e\x49'\ -b'\x54\x49\x56\x45\x20\x4f\x52\x0d\x0a\x49\x4e\x43\x49\x44\x45\x4e'\ -b'\x54\x41\x4c\x20\x44\x41\x4d\x41\x47\x45\x53\x20\x45\x56\x45\x4e'\ -b'\x20\x49\x46\x20\x59\x4f\x55\x20\x47\x49\x56\x45\x20\x4e\x4f\x54'\ -b'\x49\x43\x45\x20\x4f\x46\x20\x54\x48\x45\x20\x50\x4f\x53\x53\x49'\ -b'\x42\x49\x4c\x49\x54\x59\x20\x4f\x46\x20\x53\x55\x43\x48\x0d\x0a'\ -b'\x44\x41\x4d\x41\x47\x45\x2e\x0d\x0a\x0d\x0a\x31\x2e\x46\x2e\x33'\ -b'\x2e\x20\x4c\x49\x4d\x49\x54\x45\x44\x20\x52\x49\x47\x48\x54\x20'\ -b'\x4f\x46\x20\x52\x45\x50\x4c\x41\x43\x45\x4d\x45\x4e\x54\x20\x4f'\ -b'\x52\x20\x52\x45\x46\x55\x4e\x44\x20\x2d\x20\x49\x66\x20\x79\x6f'\ -b'\x75\x20\x64\x69\x73\x63\x6f\x76\x65\x72\x20\x61\x0d\x0a\x64\x65'\ -b'\x66\x65\x63\x74\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x65\x6c\x65'\ -b'\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x20\x77\x69\x74'\ -b'\x68\x69\x6e\x20\x39\x30\x20\x64\x61\x79\x73\x20\x6f\x66\x20\x72'\ -b'\x65\x63\x65\x69\x76\x69\x6e\x67\x20\x69\x74\x2c\x20\x79\x6f\x75'\ -b'\x20\x63\x61\x6e\x0d\x0a\x72\x65\x63\x65\x69\x76\x65\x20\x61\x20'\ -b'\x72\x65\x66\x75\x6e\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x6d\x6f'\ -b'\x6e\x65\x79\x20\x28\x69\x66\x20\x61\x6e\x79\x29\x20\x79\x6f\x75'\ -b'\x20\x70\x61\x69\x64\x20\x66\x6f\x72\x20\x69\x74\x20\x62\x79\x20'\ -b'\x73\x65\x6e\x64\x69\x6e\x67\x20\x61\x0d\x0a\x77\x72\x69\x74\x74'\ -b'\x65\x6e\x20\x65\x78\x70\x6c\x61\x6e\x61\x74\x69\x6f\x6e\x20\x74'\ -b'\x6f\x20\x74\x68\x65\x20\x70\x65\x72\x73\x6f\x6e\x20\x79\x6f\x75'\ -b'\x20\x72\x65\x63\x65\x69\x76\x65\x64\x20\x74\x68\x65\x20\x77\x6f'\ -b'\x72\x6b\x20\x66\x72\x6f\x6d\x2e\x20\x49\x66\x20\x79\x6f\x75\x0d'\ -b'\x0a\x72\x65\x63\x65\x69\x76\x65\x64\x20\x74\x68\x65\x20\x77\x6f'\ -b'\x72\x6b\x20\x6f\x6e\x20\x61\x20\x70\x68\x79\x73\x69\x63\x61\x6c'\ -b'\x20\x6d\x65\x64\x69\x75\x6d\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73'\ -b'\x74\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x6d\x65\x64'\ -b'\x69\x75\x6d\x0d\x0a\x77\x69\x74\x68\x20\x79\x6f\x75\x72\x20\x77'\ -b'\x72\x69\x74\x74\x65\x6e\x20\x65\x78\x70\x6c\x61\x6e\x61\x74\x69'\ -b'\x6f\x6e\x2e\x20\x54\x68\x65\x20\x70\x65\x72\x73\x6f\x6e\x20\x6f'\ -b'\x72\x20\x65\x6e\x74\x69\x74\x79\x20\x74\x68\x61\x74\x20\x70\x72'\ -b'\x6f\x76\x69\x64\x65\x64\x20\x79\x6f\x75\x0d\x0a\x77\x69\x74\x68'\ -b'\x20\x74\x68\x65\x20\x64\x65\x66\x65\x63\x74\x69\x76\x65\x20\x77'\ -b'\x6f\x72\x6b\x20\x6d\x61\x79\x20\x65\x6c\x65\x63\x74\x20\x74\x6f'\ -b'\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x61\x20\x72\x65\x70\x6c\x61'\ -b'\x63\x65\x6d\x65\x6e\x74\x20\x63\x6f\x70\x79\x20\x69\x6e\x0d\x0a'\ -b'\x6c\x69\x65\x75\x20\x6f\x66\x20\x61\x20\x72\x65\x66\x75\x6e\x64'\ -b'\x2e\x20\x49\x66\x20\x79\x6f\x75\x20\x72\x65\x63\x65\x69\x76\x65'\ -b'\x64\x20\x74\x68\x65\x20\x77\x6f\x72\x6b\x20\x65\x6c\x65\x63\x74'\ -b'\x72\x6f\x6e\x69\x63\x61\x6c\x6c\x79\x2c\x20\x74\x68\x65\x20\x70'\ -b'\x65\x72\x73\x6f\x6e\x0d\x0a\x6f\x72\x20\x65\x6e\x74\x69\x74\x79'\ -b'\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x69\x74\x20\x74\x6f'\ -b'\x20\x79\x6f\x75\x20\x6d\x61\x79\x20\x63\x68\x6f\x6f\x73\x65\x20'\ -b'\x74\x6f\x20\x67\x69\x76\x65\x20\x79\x6f\x75\x20\x61\x20\x73\x65'\ -b'\x63\x6f\x6e\x64\x0d\x0a\x6f\x70\x70\x6f\x72\x74\x75\x6e\x69\x74'\ -b'\x79\x20\x74\x6f\x20\x72\x65\x63\x65\x69\x76\x65\x20\x74\x68\x65'\ -b'\x20\x77\x6f\x72\x6b\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63'\ -b'\x61\x6c\x6c\x79\x20\x69\x6e\x20\x6c\x69\x65\x75\x20\x6f\x66\x20'\ -b'\x61\x20\x72\x65\x66\x75\x6e\x64\x2e\x20\x49\x66\x0d\x0a\x74\x68'\ -b'\x65\x20\x73\x65\x63\x6f\x6e\x64\x20\x63\x6f\x70\x79\x20\x69\x73'\ -b'\x20\x61\x6c\x73\x6f\x20\x64\x65\x66\x65\x63\x74\x69\x76\x65\x2c'\ -b'\x20\x79\x6f\x75\x20\x6d\x61\x79\x20\x64\x65\x6d\x61\x6e\x64\x20'\ -b'\x61\x20\x72\x65\x66\x75\x6e\x64\x20\x69\x6e\x20\x77\x72\x69\x74'\ -b'\x69\x6e\x67\x0d\x0a\x77\x69\x74\x68\x6f\x75\x74\x20\x66\x75\x72'\ -b'\x74\x68\x65\x72\x20\x6f\x70\x70\x6f\x72\x74\x75\x6e\x69\x74\x69'\ -b'\x65\x73\x20\x74\x6f\x20\x66\x69\x78\x20\x74\x68\x65\x20\x70\x72'\ -b'\x6f\x62\x6c\x65\x6d\x2e\x0d\x0a\x0d\x0a\x31\x2e\x46\x2e\x34\x2e'\ -b'\x20\x45\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x74\x68\x65\x20'\ -b'\x6c\x69\x6d\x69\x74\x65\x64\x20\x72\x69\x67\x68\x74\x20\x6f\x66'\ -b'\x20\x72\x65\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x20\x6f\x72\x20'\ -b'\x72\x65\x66\x75\x6e\x64\x20\x73\x65\x74\x20\x66\x6f\x72\x74\x68'\ -b'\x0d\x0a\x69\x6e\x20\x70\x61\x72\x61\x67\x72\x61\x70\x68\x20\x31'\ -b'\x2e\x46\x2e\x33\x2c\x20\x74\x68\x69\x73\x20\x77\x6f\x72\x6b\x20'\ -b'\x69\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\x74\x6f\x20\x79'\ -b'\x6f\x75\x20\x27\x41\x53\x2d\x49\x53\x27\x2c\x20\x57\x49\x54\x48'\ -b'\x20\x4e\x4f\x0d\x0a\x4f\x54\x48\x45\x52\x20\x57\x41\x52\x52\x41'\ -b'\x4e\x54\x49\x45\x53\x20\x4f\x46\x20\x41\x4e\x59\x20\x4b\x49\x4e'\ -b'\x44\x2c\x20\x45\x58\x50\x52\x45\x53\x53\x20\x4f\x52\x20\x49\x4d'\ -b'\x50\x4c\x49\x45\x44\x2c\x20\x49\x4e\x43\x4c\x55\x44\x49\x4e\x47'\ -b'\x20\x42\x55\x54\x20\x4e\x4f\x54\x0d\x0a\x4c\x49\x4d\x49\x54\x45'\ -b'\x44\x20\x54\x4f\x20\x57\x41\x52\x52\x41\x4e\x54\x49\x45\x53\x20'\ -b'\x4f\x46\x20\x4d\x45\x52\x43\x48\x41\x4e\x54\x41\x42\x49\x4c\x49'\ -b'\x54\x59\x20\x4f\x52\x20\x46\x49\x54\x4e\x45\x53\x53\x20\x46\x4f'\ -b'\x52\x20\x41\x4e\x59\x20\x50\x55\x52\x50\x4f\x53\x45\x2e\x0d\x0a'\ -b'\x0d\x0a\x31\x2e\x46\x2e\x35\x2e\x20\x53\x6f\x6d\x65\x20\x73\x74'\ -b'\x61\x74\x65\x73\x20\x64\x6f\x20\x6e\x6f\x74\x20\x61\x6c\x6c\x6f'\ -b'\x77\x20\x64\x69\x73\x63\x6c\x61\x69\x6d\x65\x72\x73\x20\x6f\x66'\ -b'\x20\x63\x65\x72\x74\x61\x69\x6e\x20\x69\x6d\x70\x6c\x69\x65\x64'\ -b'\x0d\x0a\x77\x61\x72\x72\x61\x6e\x74\x69\x65\x73\x20\x6f\x72\x20'\ -b'\x74\x68\x65\x20\x65\x78\x63\x6c\x75\x73\x69\x6f\x6e\x20\x6f\x72'\ -b'\x20\x6c\x69\x6d\x69\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x63'\ -b'\x65\x72\x74\x61\x69\x6e\x20\x74\x79\x70\x65\x73\x20\x6f\x66\x0d'\ -b'\x0a\x64\x61\x6d\x61\x67\x65\x73\x2e\x20\x49\x66\x20\x61\x6e\x79'\ -b'\x20\x64\x69\x73\x63\x6c\x61\x69\x6d\x65\x72\x20\x6f\x72\x20\x6c'\ -b'\x69\x6d\x69\x74\x61\x74\x69\x6f\x6e\x20\x73\x65\x74\x20\x66\x6f'\ -b'\x72\x74\x68\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x61\x67\x72\x65'\ -b'\x65\x6d\x65\x6e\x74\x0d\x0a\x76\x69\x6f\x6c\x61\x74\x65\x73\x20'\ -b'\x74\x68\x65\x20\x6c\x61\x77\x20\x6f\x66\x20\x74\x68\x65\x20\x73'\ -b'\x74\x61\x74\x65\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65\x20'\ -b'\x74\x6f\x20\x74\x68\x69\x73\x20\x61\x67\x72\x65\x65\x6d\x65\x6e'\ -b'\x74\x2c\x20\x74\x68\x65\x0d\x0a\x61\x67\x72\x65\x65\x6d\x65\x6e'\ -b'\x74\x20\x73\x68\x61\x6c\x6c\x20\x62\x65\x20\x69\x6e\x74\x65\x72'\ -b'\x70\x72\x65\x74\x65\x64\x20\x74\x6f\x20\x6d\x61\x6b\x65\x20\x74'\ -b'\x68\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x64\x69\x73\x63\x6c'\ -b'\x61\x69\x6d\x65\x72\x20\x6f\x72\x0d\x0a\x6c\x69\x6d\x69\x74\x61'\ -b'\x74\x69\x6f\x6e\x20\x70\x65\x72\x6d\x69\x74\x74\x65\x64\x20\x62'\ -b'\x79\x20\x74\x68\x65\x20\x61\x70\x70\x6c\x69\x63\x61\x62\x6c\x65'\ -b'\x20\x73\x74\x61\x74\x65\x20\x6c\x61\x77\x2e\x20\x54\x68\x65\x20'\ -b'\x69\x6e\x76\x61\x6c\x69\x64\x69\x74\x79\x20\x6f\x72\x0d\x0a\x75'\ -b'\x6e\x65\x6e\x66\x6f\x72\x63\x65\x61\x62\x69\x6c\x69\x74\x79\x20'\ -b'\x6f\x66\x20\x61\x6e\x79\x20\x70\x72\x6f\x76\x69\x73\x69\x6f\x6e'\ -b'\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x61\x67\x72\x65\x65\x6d\x65'\ -b'\x6e\x74\x20\x73\x68\x61\x6c\x6c\x20\x6e\x6f\x74\x20\x76\x6f\x69'\ -b'\x64\x20\x74\x68\x65\x0d\x0a\x72\x65\x6d\x61\x69\x6e\x69\x6e\x67'\ -b'\x20\x70\x72\x6f\x76\x69\x73\x69\x6f\x6e\x73\x2e\x0d\x0a\x0d\x0a'\ -b'\x31\x2e\x46\x2e\x36\x2e\x20\x49\x4e\x44\x45\x4d\x4e\x49\x54\x59'\ -b'\x20\x2d\x20\x59\x6f\x75\x20\x61\x67\x72\x65\x65\x20\x74\x6f\x20'\ -b'\x69\x6e\x64\x65\x6d\x6e\x69\x66\x79\x20\x61\x6e\x64\x20\x68\x6f'\ -b'\x6c\x64\x20\x74\x68\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f'\ -b'\x6e\x2c\x20\x74\x68\x65\x0d\x0a\x74\x72\x61\x64\x65\x6d\x61\x72'\ -b'\x6b\x20\x6f\x77\x6e\x65\x72\x2c\x20\x61\x6e\x79\x20\x61\x67\x65'\ -b'\x6e\x74\x20\x6f\x72\x20\x65\x6d\x70\x6c\x6f\x79\x65\x65\x20\x6f'\ -b'\x66\x20\x74\x68\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e'\ -b'\x2c\x20\x61\x6e\x79\x6f\x6e\x65\x0d\x0a\x70\x72\x6f\x76\x69\x64'\ -b'\x69\x6e\x67\x20\x63\x6f\x70\x69\x65\x73\x20\x6f\x66\x20\x50\x72'\ -b'\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d'\ -b'\x74\x6d\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f'\ -b'\x72\x6b\x73\x20\x69\x6e\x0d\x0a\x61\x63\x63\x6f\x72\x64\x61\x6e'\ -b'\x63\x65\x20\x77\x69\x74\x68\x20\x74\x68\x69\x73\x20\x61\x67\x72'\ -b'\x65\x65\x6d\x65\x6e\x74\x2c\x20\x61\x6e\x64\x20\x61\x6e\x79\x20'\ -b'\x76\x6f\x6c\x75\x6e\x74\x65\x65\x72\x73\x20\x61\x73\x73\x6f\x63'\ -b'\x69\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0d\x0a'\ -b'\x70\x72\x6f\x64\x75\x63\x74\x69\x6f\x6e\x2c\x20\x70\x72\x6f\x6d'\ -b'\x6f\x74\x69\x6f\x6e\x20\x61\x6e\x64\x20\x64\x69\x73\x74\x72\x69'\ -b'\x62\x75\x74\x69\x6f\x6e\x20\x6f\x66\x20\x50\x72\x6f\x6a\x65\x63'\ -b'\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x0d\x0a'\ -b'\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x73'\ -b'\x2c\x20\x68\x61\x72\x6d\x6c\x65\x73\x73\x20\x66\x72\x6f\x6d\x20'\ -b'\x61\x6c\x6c\x20\x6c\x69\x61\x62\x69\x6c\x69\x74\x79\x2c\x20\x63'\ -b'\x6f\x73\x74\x73\x20\x61\x6e\x64\x20\x65\x78\x70\x65\x6e\x73\x65'\ -b'\x73\x2c\x0d\x0a\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x6c\x65'\ -b'\x67\x61\x6c\x20\x66\x65\x65\x73\x2c\x20\x74\x68\x61\x74\x20\x61'\ -b'\x72\x69\x73\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x20\x6f\x72'\ -b'\x20\x69\x6e\x64\x69\x72\x65\x63\x74\x6c\x79\x20\x66\x72\x6f\x6d'\ -b'\x20\x61\x6e\x79\x20\x6f\x66\x0d\x0a\x74\x68\x65\x20\x66\x6f\x6c'\ -b'\x6c\x6f\x77\x69\x6e\x67\x20\x77\x68\x69\x63\x68\x20\x79\x6f\x75'\ -b'\x20\x64\x6f\x20\x6f\x72\x20\x63\x61\x75\x73\x65\x20\x74\x6f\x20'\ -b'\x6f\x63\x63\x75\x72\x3a\x20\x28\x61\x29\x20\x64\x69\x73\x74\x72'\ -b'\x69\x62\x75\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x0d'\ -b'\x0a\x6f\x72\x20\x61\x6e\x79\x20\x50\x72\x6f\x6a\x65\x63\x74\x20'\ -b'\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x77\x6f\x72'\ -b'\x6b\x2c\x20\x28\x62\x29\x20\x61\x6c\x74\x65\x72\x61\x74\x69\x6f'\ -b'\x6e\x2c\x20\x6d\x6f\x64\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x2c'\ -b'\x20\x6f\x72\x0d\x0a\x61\x64\x64\x69\x74\x69\x6f\x6e\x73\x20\x6f'\ -b'\x72\x20\x64\x65\x6c\x65\x74\x69\x6f\x6e\x73\x20\x74\x6f\x20\x61'\ -b'\x6e\x79\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e'\ -b'\x62\x65\x72\x67\x2d\x74\x6d\x20\x77\x6f\x72\x6b\x2c\x20\x61\x6e'\ -b'\x64\x20\x28\x63\x29\x20\x61\x6e\x79\x0d\x0a\x44\x65\x66\x65\x63'\ -b'\x74\x20\x79\x6f\x75\x20\x63\x61\x75\x73\x65\x2e\x0d\x0a\x0d\x0a'\ -b'\x53\x65\x63\x74\x69\x6f\x6e\x20\x32\x2e\x20\x49\x6e\x66\x6f\x72'\ -b'\x6d\x61\x74\x69\x6f\x6e\x20\x61\x62\x6f\x75\x74\x20\x74\x68\x65'\ -b'\x20\x4d\x69\x73\x73\x69\x6f\x6e\x20\x6f\x66\x20\x50\x72\x6f\x6a'\ -b'\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d'\ -b'\x0d\x0a\x0d\x0a\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65'\ -b'\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x69\x73\x20\x73\x79\x6e\x6f'\ -b'\x6e\x79\x6d\x6f\x75\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20'\ -b'\x66\x72\x65\x65\x20\x64\x69\x73\x74\x72\x69\x62\x75\x74\x69\x6f'\ -b'\x6e\x20\x6f\x66\x0d\x0a\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63'\ -b'\x20\x77\x6f\x72\x6b\x73\x20\x69\x6e\x20\x66\x6f\x72\x6d\x61\x74'\ -b'\x73\x20\x72\x65\x61\x64\x61\x62\x6c\x65\x20\x62\x79\x20\x74\x68'\ -b'\x65\x20\x77\x69\x64\x65\x73\x74\x20\x76\x61\x72\x69\x65\x74\x79'\ -b'\x20\x6f\x66\x0d\x0a\x63\x6f\x6d\x70\x75\x74\x65\x72\x73\x20\x69'\ -b'\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x6f\x62\x73\x6f\x6c\x65\x74'\ -b'\x65\x2c\x20\x6f\x6c\x64\x2c\x20\x6d\x69\x64\x64\x6c\x65\x2d\x61'\ -b'\x67\x65\x64\x20\x61\x6e\x64\x20\x6e\x65\x77\x20\x63\x6f\x6d\x70'\ -b'\x75\x74\x65\x72\x73\x2e\x20\x49\x74\x0d\x0a\x65\x78\x69\x73\x74'\ -b'\x73\x20\x62\x65\x63\x61\x75\x73\x65\x20\x6f\x66\x20\x74\x68\x65'\ -b'\x20\x65\x66\x66\x6f\x72\x74\x73\x20\x6f\x66\x20\x68\x75\x6e\x64'\ -b'\x72\x65\x64\x73\x20\x6f\x66\x20\x76\x6f\x6c\x75\x6e\x74\x65\x65'\ -b'\x72\x73\x20\x61\x6e\x64\x20\x64\x6f\x6e\x61\x74\x69\x6f\x6e\x73'\ -b'\x0d\x0a\x66\x72\x6f\x6d\x20\x70\x65\x6f\x70\x6c\x65\x20\x69\x6e'\ -b'\x20\x61\x6c\x6c\x20\x77\x61\x6c\x6b\x73\x20\x6f\x66\x20\x6c\x69'\ -b'\x66\x65\x2e\x0d\x0a\x0d\x0a\x56\x6f\x6c\x75\x6e\x74\x65\x65\x72'\ -b'\x73\x20\x61\x6e\x64\x20\x66\x69\x6e\x61\x6e\x63\x69\x61\x6c\x20'\ -b'\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x6f\x20\x70\x72\x6f\x76\x69'\ -b'\x64\x65\x20\x76\x6f\x6c\x75\x6e\x74\x65\x65\x72\x73\x20\x77\x69'\ -b'\x74\x68\x20\x74\x68\x65\x0d\x0a\x61\x73\x73\x69\x73\x74\x61\x6e'\ -b'\x63\x65\x20\x74\x68\x65\x79\x20\x6e\x65\x65\x64\x20\x61\x72\x65'\ -b'\x20\x63\x72\x69\x74\x69\x63\x61\x6c\x20\x74\x6f\x20\x72\x65\x61'\ -b'\x63\x68\x69\x6e\x67\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75'\ -b'\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x27\x73\x0d\x0a\x67\x6f'\ -b'\x61\x6c\x73\x20\x61\x6e\x64\x20\x65\x6e\x73\x75\x72\x69\x6e\x67'\ -b'\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x50\x72\x6f\x6a\x65\x63'\ -b'\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x63'\ -b'\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x0d\x0a'\ -b'\x72\x65\x6d\x61\x69\x6e\x20\x66\x72\x65\x65\x6c\x79\x20\x61\x76'\ -b'\x61\x69\x6c\x61\x62\x6c\x65\x20\x66\x6f\x72\x20\x67\x65\x6e\x65'\ -b'\x72\x61\x74\x69\x6f\x6e\x73\x20\x74\x6f\x20\x63\x6f\x6d\x65\x2e'\ -b'\x20\x49\x6e\x20\x32\x30\x30\x31\x2c\x20\x74\x68\x65\x20\x50\x72'\ -b'\x6f\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74\x65\x6e\x62\x65\x72\x67'\ -b'\x20\x4c\x69\x74\x65\x72\x61\x72\x79\x20\x41\x72\x63\x68\x69\x76'\ -b'\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e\x20\x77\x61\x73'\ -b'\x20\x63\x72\x65\x61\x74\x65\x64\x20\x74\x6f\x20\x70\x72\x6f\x76'\ -b'\x69\x64\x65\x20\x61\x20\x73\x65\x63\x75\x72\x65\x0d\x0a\x61\x6e'\ -b'\x64\x20\x70\x65\x72\x6d\x61\x6e\x65\x6e\x74\x20\x66\x75\x74\x75'\ -b'\x72\x65\x20\x66\x6f\x72\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47'\ -b'\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x61\x6e\x64\x20'\ -b'\x66\x75\x74\x75\x72\x65\x0d\x0a\x67\x65\x6e\x65\x72\x61\x74\x69'\ -b'\x6f\x6e\x73\x2e\x20\x54\x6f\x20\x6c\x65\x61\x72\x6e\x20\x6d\x6f'\ -b'\x72\x65\x20\x61\x62\x6f\x75\x74\x20\x74\x68\x65\x20\x50\x72\x6f'\ -b'\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x4c'\ -b'\x69\x74\x65\x72\x61\x72\x79\x0d\x0a\x41\x72\x63\x68\x69\x76\x65'\ -b'\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e\x20\x61\x6e\x64\x20'\ -b'\x68\x6f\x77\x20\x79\x6f\x75\x72\x20\x65\x66\x66\x6f\x72\x74\x73'\ -b'\x20\x61\x6e\x64\x20\x64\x6f\x6e\x61\x74\x69\x6f\x6e\x73\x20\x63'\ -b'\x61\x6e\x20\x68\x65\x6c\x70\x2c\x20\x73\x65\x65\x0d\x0a\x53\x65'\ -b'\x63\x74\x69\x6f\x6e\x73\x20\x33\x20\x61\x6e\x64\x20\x34\x20\x61'\ -b'\x6e\x64\x20\x74\x68\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f'\ -b'\x6e\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x70\x61'\ -b'\x67\x65\x20\x61\x74\x0d\x0a\x77\x77\x77\x2e\x67\x75\x74\x65\x6e'\ -b'\x62\x65\x72\x67\x2e\x6f\x72\x67\x0d\x0a\x0d\x0a\x53\x65\x63\x74'\ -b'\x69\x6f\x6e\x20\x33\x2e\x20\x49\x6e\x66\x6f\x72\x6d\x61\x74\x69'\ -b'\x6f\x6e\x20\x61\x62\x6f\x75\x74\x20\x74\x68\x65\x20\x50\x72\x6f'\ -b'\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x4c'\ -b'\x69\x74\x65\x72\x61\x72\x79\x0d\x0a\x41\x72\x63\x68\x69\x76\x65'\ -b'\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e\x0d\x0a\x0d\x0a\x54'\ -b'\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e'\ -b'\x62\x65\x72\x67\x20\x4c\x69\x74\x65\x72\x61\x72\x79\x20\x41\x72'\ -b'\x63\x68\x69\x76\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e'\ -b'\x20\x69\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x70\x72\x6f\x66\x69\x74'\ -b'\x0d\x0a\x35\x30\x31\x28\x63\x29\x28\x33\x29\x20\x65\x64\x75\x63'\ -b'\x61\x74\x69\x6f\x6e\x61\x6c\x20\x63\x6f\x72\x70\x6f\x72\x61\x74'\ -b'\x69\x6f\x6e\x20\x6f\x72\x67\x61\x6e\x69\x7a\x65\x64\x20\x75\x6e'\ -b'\x64\x65\x72\x20\x74\x68\x65\x20\x6c\x61\x77\x73\x20\x6f\x66\x20'\ -b'\x74\x68\x65\x0d\x0a\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x4d\x69'\ -b'\x73\x73\x69\x73\x73\x69\x70\x70\x69\x20\x61\x6e\x64\x20\x67\x72'\ -b'\x61\x6e\x74\x65\x64\x20\x74\x61\x78\x20\x65\x78\x65\x6d\x70\x74'\ -b'\x20\x73\x74\x61\x74\x75\x73\x20\x62\x79\x20\x74\x68\x65\x20\x49'\ -b'\x6e\x74\x65\x72\x6e\x61\x6c\x0d\x0a\x52\x65\x76\x65\x6e\x75\x65'\ -b'\x20\x53\x65\x72\x76\x69\x63\x65\x2e\x20\x54\x68\x65\x20\x46\x6f'\ -b'\x75\x6e\x64\x61\x74\x69\x6f\x6e\x27\x73\x20\x45\x49\x4e\x20\x6f'\ -b'\x72\x20\x66\x65\x64\x65\x72\x61\x6c\x20\x74\x61\x78\x20\x69\x64'\ -b'\x65\x6e\x74\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x0d\x0a\x6e\x75'\ -b'\x6d\x62\x65\x72\x20\x69\x73\x20\x36\x34\x2d\x36\x32\x32\x31\x35'\ -b'\x34\x31\x2e\x20\x43\x6f\x6e\x74\x72\x69\x62\x75\x74\x69\x6f\x6e'\ -b'\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74'\ -b'\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20\x4c\x69\x74\x65\x72'\ -b'\x61\x72\x79\x0d\x0a\x41\x72\x63\x68\x69\x76\x65\x20\x46\x6f\x75'\ -b'\x6e\x64\x61\x74\x69\x6f\x6e\x20\x61\x72\x65\x20\x74\x61\x78\x20'\ -b'\x64\x65\x64\x75\x63\x74\x69\x62\x6c\x65\x20\x74\x6f\x20\x74\x68'\ -b'\x65\x20\x66\x75\x6c\x6c\x20\x65\x78\x74\x65\x6e\x74\x20\x70\x65'\ -b'\x72\x6d\x69\x74\x74\x65\x64\x20\x62\x79\x0d\x0a\x55\x2e\x53\x2e'\ -b'\x20\x66\x65\x64\x65\x72\x61\x6c\x20\x6c\x61\x77\x73\x20\x61\x6e'\ -b'\x64\x20\x79\x6f\x75\x72\x20\x73\x74\x61\x74\x65\x27\x73\x20\x6c'\ -b'\x61\x77\x73\x2e\x0d\x0a\x0d\x0a\x54\x68\x65\x20\x46\x6f\x75\x6e'\ -b'\x64\x61\x74\x69\x6f\x6e\x27\x73\x20\x62\x75\x73\x69\x6e\x65\x73'\ -b'\x73\x20\x6f\x66\x66\x69\x63\x65\x20\x69\x73\x20\x6c\x6f\x63\x61'\ -b'\x74\x65\x64\x20\x61\x74\x20\x38\x30\x39\x20\x4e\x6f\x72\x74\x68'\ -b'\x20\x31\x35\x30\x30\x20\x57\x65\x73\x74\x2c\x0d\x0a\x53\x61\x6c'\ -b'\x74\x20\x4c\x61\x6b\x65\x20\x43\x69\x74\x79\x2c\x20\x55\x54\x20'\ -b'\x38\x34\x31\x31\x36\x2c\x20\x28\x38\x30\x31\x29\x20\x35\x39\x36'\ -b'\x2d\x31\x38\x38\x37\x2e\x20\x45\x6d\x61\x69\x6c\x20\x63\x6f\x6e'\ -b'\x74\x61\x63\x74\x20\x6c\x69\x6e\x6b\x73\x20\x61\x6e\x64\x20\x75'\ -b'\x70\x0d\x0a\x74\x6f\x20\x64\x61\x74\x65\x20\x63\x6f\x6e\x74\x61'\ -b'\x63\x74\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x63'\ -b'\x61\x6e\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x20\x61\x74\x20\x74'\ -b'\x68\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e\x27\x73\x20'\ -b'\x77\x65\x62\x73\x69\x74\x65\x0d\x0a\x61\x6e\x64\x20\x6f\x66\x66'\ -b'\x69\x63\x69\x61\x6c\x20\x70\x61\x67\x65\x20\x61\x74\x20\x77\x77'\ -b'\x77\x2e\x67\x75\x74\x65\x6e\x62\x65\x72\x67\x2e\x6f\x72\x67\x2f'\ -b'\x63\x6f\x6e\x74\x61\x63\x74\x0d\x0a\x0d\x0a\x53\x65\x63\x74\x69'\ -b'\x6f\x6e\x20\x34\x2e\x20\x49\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f'\ -b'\x6e\x20\x61\x62\x6f\x75\x74\x20\x44\x6f\x6e\x61\x74\x69\x6f\x6e'\ -b'\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x50\x72\x6f\x6a\x65\x63\x74'\ -b'\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x0d\x0a\x4c\x69\x74\x65'\ -b'\x72\x61\x72\x79\x20\x41\x72\x63\x68\x69\x76\x65\x20\x46\x6f\x75'\ -b'\x6e\x64\x61\x74\x69\x6f\x6e\x0d\x0a\x0d\x0a\x50\x72\x6f\x6a\x65'\ -b'\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20'\ -b'\x64\x65\x70\x65\x6e\x64\x73\x20\x75\x70\x6f\x6e\x20\x61\x6e\x64'\ -b'\x20\x63\x61\x6e\x6e\x6f\x74\x20\x73\x75\x72\x76\x69\x76\x65\x20'\ -b'\x77\x69\x74\x68\x6f\x75\x74\x0d\x0a\x77\x69\x64\x65\x73\x70\x72'\ -b'\x65\x61\x64\x20\x70\x75\x62\x6c\x69\x63\x20\x73\x75\x70\x70\x6f'\ -b'\x72\x74\x20\x61\x6e\x64\x20\x64\x6f\x6e\x61\x74\x69\x6f\x6e\x73'\ -b'\x20\x74\x6f\x20\x63\x61\x72\x72\x79\x20\x6f\x75\x74\x20\x69\x74'\ -b'\x73\x20\x6d\x69\x73\x73\x69\x6f\x6e\x20\x6f\x66\x0d\x0a\x69\x6e'\ -b'\x63\x72\x65\x61\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x6e\x75\x6d'\ -b'\x62\x65\x72\x20\x6f\x66\x20\x70\x75\x62\x6c\x69\x63\x20\x64\x6f'\ -b'\x6d\x61\x69\x6e\x20\x61\x6e\x64\x20\x6c\x69\x63\x65\x6e\x73\x65'\ -b'\x64\x20\x77\x6f\x72\x6b\x73\x20\x74\x68\x61\x74\x20\x63\x61\x6e'\ -b'\x20\x62\x65\x0d\x0a\x66\x72\x65\x65\x6c\x79\x20\x64\x69\x73\x74'\ -b'\x72\x69\x62\x75\x74\x65\x64\x20\x69\x6e\x20\x6d\x61\x63\x68\x69'\ -b'\x6e\x65\x2d\x72\x65\x61\x64\x61\x62\x6c\x65\x20\x66\x6f\x72\x6d'\ -b'\x20\x61\x63\x63\x65\x73\x73\x69\x62\x6c\x65\x20\x62\x79\x20\x74'\ -b'\x68\x65\x20\x77\x69\x64\x65\x73\x74\x0d\x0a\x61\x72\x72\x61\x79'\ -b'\x20\x6f\x66\x20\x65\x71\x75\x69\x70\x6d\x65\x6e\x74\x20\x69\x6e'\ -b'\x63\x6c\x75\x64\x69\x6e\x67\x20\x6f\x75\x74\x64\x61\x74\x65\x64'\ -b'\x20\x65\x71\x75\x69\x70\x6d\x65\x6e\x74\x2e\x20\x4d\x61\x6e\x79'\ -b'\x20\x73\x6d\x61\x6c\x6c\x20\x64\x6f\x6e\x61\x74\x69\x6f\x6e\x73'\ -b'\x0d\x0a\x28\x24\x31\x20\x74\x6f\x20\x24\x35\x2c\x30\x30\x30\x29'\ -b'\x20\x61\x72\x65\x20\x70\x61\x72\x74\x69\x63\x75\x6c\x61\x72\x6c'\ -b'\x79\x20\x69\x6d\x70\x6f\x72\x74\x61\x6e\x74\x20\x74\x6f\x20\x6d'\ -b'\x61\x69\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x74\x61\x78\x20\x65'\ -b'\x78\x65\x6d\x70\x74\x0d\x0a\x73\x74\x61\x74\x75\x73\x20\x77\x69'\ -b'\x74\x68\x20\x74\x68\x65\x20\x49\x52\x53\x2e\x0d\x0a\x0d\x0a\x54'\ -b'\x68\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e\x20\x69\x73'\ -b'\x20\x63\x6f\x6d\x6d\x69\x74\x74\x65\x64\x20\x74\x6f\x20\x63\x6f'\ -b'\x6d\x70\x6c\x79\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x74\x68\x65'\ -b'\x20\x6c\x61\x77\x73\x20\x72\x65\x67\x75\x6c\x61\x74\x69\x6e\x67'\ -b'\x0d\x0a\x63\x68\x61\x72\x69\x74\x69\x65\x73\x20\x61\x6e\x64\x20'\ -b'\x63\x68\x61\x72\x69\x74\x61\x62\x6c\x65\x20\x64\x6f\x6e\x61\x74'\ -b'\x69\x6f\x6e\x73\x20\x69\x6e\x20\x61\x6c\x6c\x20\x35\x30\x20\x73'\ -b'\x74\x61\x74\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x55\x6e\x69'\ -b'\x74\x65\x64\x0d\x0a\x53\x74\x61\x74\x65\x73\x2e\x20\x43\x6f\x6d'\ -b'\x70\x6c\x69\x61\x6e\x63\x65\x20\x72\x65\x71\x75\x69\x72\x65\x6d'\ -b'\x65\x6e\x74\x73\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x75\x6e\x69'\ -b'\x66\x6f\x72\x6d\x20\x61\x6e\x64\x20\x69\x74\x20\x74\x61\x6b\x65'\ -b'\x73\x20\x61\x0d\x0a\x63\x6f\x6e\x73\x69\x64\x65\x72\x61\x62\x6c'\ -b'\x65\x20\x65\x66\x66\x6f\x72\x74\x2c\x20\x6d\x75\x63\x68\x20\x70'\ -b'\x61\x70\x65\x72\x77\x6f\x72\x6b\x20\x61\x6e\x64\x20\x6d\x61\x6e'\ -b'\x79\x20\x66\x65\x65\x73\x20\x74\x6f\x20\x6d\x65\x65\x74\x20\x61'\ -b'\x6e\x64\x20\x6b\x65\x65\x70\x20\x75\x70\x0d\x0a\x77\x69\x74\x68'\ -b'\x20\x74\x68\x65\x73\x65\x20\x72\x65\x71\x75\x69\x72\x65\x6d\x65'\ -b'\x6e\x74\x73\x2e\x20\x57\x65\x20\x64\x6f\x20\x6e\x6f\x74\x20\x73'\ -b'\x6f\x6c\x69\x63\x69\x74\x20\x64\x6f\x6e\x61\x74\x69\x6f\x6e\x73'\ -b'\x20\x69\x6e\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x73\x0d\x0a\x77'\ -b'\x68\x65\x72\x65\x20\x77\x65\x20\x68\x61\x76\x65\x20\x6e\x6f\x74'\ -b'\x20\x72\x65\x63\x65\x69\x76\x65\x64\x20\x77\x72\x69\x74\x74\x65'\ -b'\x6e\x20\x63\x6f\x6e\x66\x69\x72\x6d\x61\x74\x69\x6f\x6e\x20\x6f'\ -b'\x66\x20\x63\x6f\x6d\x70\x6c\x69\x61\x6e\x63\x65\x2e\x20\x54\x6f'\ -b'\x20\x53\x45\x4e\x44\x0d\x0a\x44\x4f\x4e\x41\x54\x49\x4f\x4e\x53'\ -b'\x20\x6f\x72\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x20\x74\x68'\ -b'\x65\x20\x73\x74\x61\x74\x75\x73\x20\x6f\x66\x20\x63\x6f\x6d\x70'\ -b'\x6c\x69\x61\x6e\x63\x65\x20\x66\x6f\x72\x20\x61\x6e\x79\x20\x70'\ -b'\x61\x72\x74\x69\x63\x75\x6c\x61\x72\x0d\x0a\x73\x74\x61\x74\x65'\ -b'\x20\x76\x69\x73\x69\x74\x20\x77\x77\x77\x2e\x67\x75\x74\x65\x6e'\ -b'\x62\x65\x72\x67\x2e\x6f\x72\x67\x2f\x64\x6f\x6e\x61\x74\x65\x0d'\ -b'\x0a\x0d\x0a\x57\x68\x69\x6c\x65\x20\x77\x65\x20\x63\x61\x6e\x6e'\ -b'\x6f\x74\x20\x61\x6e\x64\x20\x64\x6f\x20\x6e\x6f\x74\x20\x73\x6f'\ -b'\x6c\x69\x63\x69\x74\x20\x63\x6f\x6e\x74\x72\x69\x62\x75\x74\x69'\ -b'\x6f\x6e\x73\x20\x66\x72\x6f\x6d\x20\x73\x74\x61\x74\x65\x73\x20'\ -b'\x77\x68\x65\x72\x65\x20\x77\x65\x0d\x0a\x68\x61\x76\x65\x20\x6e'\ -b'\x6f\x74\x20\x6d\x65\x74\x20\x74\x68\x65\x20\x73\x6f\x6c\x69\x63'\ -b'\x69\x74\x61\x74\x69\x6f\x6e\x20\x72\x65\x71\x75\x69\x72\x65\x6d'\ -b'\x65\x6e\x74\x73\x2c\x20\x77\x65\x20\x6b\x6e\x6f\x77\x20\x6f\x66'\ -b'\x20\x6e\x6f\x20\x70\x72\x6f\x68\x69\x62\x69\x74\x69\x6f\x6e\x0d'\ -b'\x0a\x61\x67\x61\x69\x6e\x73\x74\x20\x61\x63\x63\x65\x70\x74\x69'\ -b'\x6e\x67\x20\x75\x6e\x73\x6f\x6c\x69\x63\x69\x74\x65\x64\x20\x64'\ -b'\x6f\x6e\x61\x74\x69\x6f\x6e\x73\x20\x66\x72\x6f\x6d\x20\x64\x6f'\ -b'\x6e\x6f\x72\x73\x20\x69\x6e\x20\x73\x75\x63\x68\x20\x73\x74\x61'\ -b'\x74\x65\x73\x20\x77\x68\x6f\x0d\x0a\x61\x70\x70\x72\x6f\x61\x63'\ -b'\x68\x20\x75\x73\x20\x77\x69\x74\x68\x20\x6f\x66\x66\x65\x72\x73'\ -b'\x20\x74\x6f\x20\x64\x6f\x6e\x61\x74\x65\x2e\x0d\x0a\x0d\x0a\x49'\ -b'\x6e\x74\x65\x72\x6e\x61\x74\x69\x6f\x6e\x61\x6c\x20\x64\x6f\x6e'\ -b'\x61\x74\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x67\x72\x61\x74\x65'\ -b'\x66\x75\x6c\x6c\x79\x20\x61\x63\x63\x65\x70\x74\x65\x64\x2c\x20'\ -b'\x62\x75\x74\x20\x77\x65\x20\x63\x61\x6e\x6e\x6f\x74\x20\x6d\x61'\ -b'\x6b\x65\x0d\x0a\x61\x6e\x79\x20\x73\x74\x61\x74\x65\x6d\x65\x6e'\ -b'\x74\x73\x20\x63\x6f\x6e\x63\x65\x72\x6e\x69\x6e\x67\x20\x74\x61'\ -b'\x78\x20\x74\x72\x65\x61\x74\x6d\x65\x6e\x74\x20\x6f\x66\x20\x64'\ -b'\x6f\x6e\x61\x74\x69\x6f\x6e\x73\x20\x72\x65\x63\x65\x69\x76\x65'\ -b'\x64\x20\x66\x72\x6f\x6d\x0d\x0a\x6f\x75\x74\x73\x69\x64\x65\x20'\ -b'\x74\x68\x65\x20\x55\x6e\x69\x74\x65\x64\x20\x53\x74\x61\x74\x65'\ -b'\x73\x2e\x20\x55\x2e\x53\x2e\x20\x6c\x61\x77\x73\x20\x61\x6c\x6f'\ -b'\x6e\x65\x20\x73\x77\x61\x6d\x70\x20\x6f\x75\x72\x20\x73\x6d\x61'\ -b'\x6c\x6c\x20\x73\x74\x61\x66\x66\x2e\x0d\x0a\x0d\x0a\x50\x6c\x65'\ -b'\x61\x73\x65\x20\x63\x68\x65\x63\x6b\x20\x74\x68\x65\x20\x50\x72'\ -b'\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65\x72\x67\x20'\ -b'\x77\x65\x62\x20\x70\x61\x67\x65\x73\x20\x66\x6f\x72\x20\x63\x75'\ -b'\x72\x72\x65\x6e\x74\x20\x64\x6f\x6e\x61\x74\x69\x6f\x6e\x0d\x0a'\ -b'\x6d\x65\x74\x68\x6f\x64\x73\x20\x61\x6e\x64\x20\x61\x64\x64\x72'\ -b'\x65\x73\x73\x65\x73\x2e\x20\x44\x6f\x6e\x61\x74\x69\x6f\x6e\x73'\ -b'\x20\x61\x72\x65\x20\x61\x63\x63\x65\x70\x74\x65\x64\x20\x69\x6e'\ -b'\x20\x61\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x6f\x74\x68'\ -b'\x65\x72\x0d\x0a\x77\x61\x79\x73\x20\x69\x6e\x63\x6c\x75\x64\x69'\ -b'\x6e\x67\x20\x63\x68\x65\x63\x6b\x73\x2c\x20\x6f\x6e\x6c\x69\x6e'\ -b'\x65\x20\x70\x61\x79\x6d\x65\x6e\x74\x73\x20\x61\x6e\x64\x20\x63'\ -b'\x72\x65\x64\x69\x74\x20\x63\x61\x72\x64\x20\x64\x6f\x6e\x61\x74'\ -b'\x69\x6f\x6e\x73\x2e\x20\x54\x6f\x0d\x0a\x64\x6f\x6e\x61\x74\x65'\ -b'\x2c\x20\x70\x6c\x65\x61\x73\x65\x20\x76\x69\x73\x69\x74\x3a\x20'\ -b'\x77\x77\x77\x2e\x67\x75\x74\x65\x6e\x62\x65\x72\x67\x2e\x6f\x72'\ -b'\x67\x2f\x64\x6f\x6e\x61\x74\x65\x0d\x0a\x0d\x0a\x53\x65\x63\x74'\ -b'\x69\x6f\x6e\x20\x35\x2e\x20\x47\x65\x6e\x65\x72\x61\x6c\x20\x49'\ -b'\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x41\x62\x6f\x75\x74'\ -b'\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62\x65'\ -b'\x72\x67\x2d\x74\x6d\x20\x65\x6c\x65\x63\x74\x72\x6f\x6e\x69\x63'\ -b'\x20\x77\x6f\x72\x6b\x73\x0d\x0a\x0d\x0a\x50\x72\x6f\x66\x65\x73'\ -b'\x73\x6f\x72\x20\x4d\x69\x63\x68\x61\x65\x6c\x20\x53\x2e\x20\x48'\ -b'\x61\x72\x74\x20\x77\x61\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x67'\ -b'\x69\x6e\x61\x74\x6f\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x50\x72'\ -b'\x6f\x6a\x65\x63\x74\x0d\x0a\x47\x75\x74\x65\x6e\x62\x65\x72\x67'\ -b'\x2d\x74\x6d\x20\x63\x6f\x6e\x63\x65\x70\x74\x20\x6f\x66\x20\x61'\ -b'\x20\x6c\x69\x62\x72\x61\x72\x79\x20\x6f\x66\x20\x65\x6c\x65\x63'\ -b'\x74\x72\x6f\x6e\x69\x63\x20\x77\x6f\x72\x6b\x73\x20\x74\x68\x61'\ -b'\x74\x20\x63\x6f\x75\x6c\x64\x20\x62\x65\x0d\x0a\x66\x72\x65\x65'\ -b'\x6c\x79\x20\x73\x68\x61\x72\x65\x64\x20\x77\x69\x74\x68\x20\x61'\ -b'\x6e\x79\x6f\x6e\x65\x2e\x20\x46\x6f\x72\x20\x66\x6f\x72\x74\x79'\ -b'\x20\x79\x65\x61\x72\x73\x2c\x20\x68\x65\x20\x70\x72\x6f\x64\x75'\ -b'\x63\x65\x64\x20\x61\x6e\x64\x0d\x0a\x64\x69\x73\x74\x72\x69\x62'\ -b'\x75\x74\x65\x64\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74'\ -b'\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x65\x42\x6f\x6f\x6b\x73'\ -b'\x20\x77\x69\x74\x68\x20\x6f\x6e\x6c\x79\x20\x61\x20\x6c\x6f\x6f'\ -b'\x73\x65\x20\x6e\x65\x74\x77\x6f\x72\x6b\x20\x6f\x66\x0d\x0a\x76'\ -b'\x6f\x6c\x75\x6e\x74\x65\x65\x72\x20\x73\x75\x70\x70\x6f\x72\x74'\ -b'\x2e\x0d\x0a\x0d\x0a\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74'\ -b'\x65\x6e\x62\x65\x72\x67\x2d\x74\x6d\x20\x65\x42\x6f\x6f\x6b\x73'\ -b'\x20\x61\x72\x65\x20\x6f\x66\x74\x65\x6e\x20\x63\x72\x65\x61\x74'\ -b'\x65\x64\x20\x66\x72\x6f\x6d\x20\x73\x65\x76\x65\x72\x61\x6c\x20'\ -b'\x70\x72\x69\x6e\x74\x65\x64\x0d\x0a\x65\x64\x69\x74\x69\x6f\x6e'\ -b'\x73\x2c\x20\x61\x6c\x6c\x20\x6f\x66\x20\x77\x68\x69\x63\x68\x20'\ -b'\x61\x72\x65\x20\x63\x6f\x6e\x66\x69\x72\x6d\x65\x64\x20\x61\x73'\ -b'\x20\x6e\x6f\x74\x20\x70\x72\x6f\x74\x65\x63\x74\x65\x64\x20\x62'\ -b'\x79\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x69\x6e\x0d\x0a'\ -b'\x74\x68\x65\x20\x55\x2e\x53\x2e\x20\x75\x6e\x6c\x65\x73\x73\x20'\ -b'\x61\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6e\x6f\x74\x69'\ -b'\x63\x65\x20\x69\x73\x20\x69\x6e\x63\x6c\x75\x64\x65\x64\x2e\x20'\ -b'\x54\x68\x75\x73\x2c\x20\x77\x65\x20\x64\x6f\x20\x6e\x6f\x74\x0d'\ -b'\x0a\x6e\x65\x63\x65\x73\x73\x61\x72\x69\x6c\x79\x20\x6b\x65\x65'\ -b'\x70\x20\x65\x42\x6f\x6f\x6b\x73\x20\x69\x6e\x20\x63\x6f\x6d\x70'\ -b'\x6c\x69\x61\x6e\x63\x65\x20\x77\x69\x74\x68\x20\x61\x6e\x79\x20'\ -b'\x70\x61\x72\x74\x69\x63\x75\x6c\x61\x72\x20\x70\x61\x70\x65\x72'\ -b'\x0d\x0a\x65\x64\x69\x74\x69\x6f\x6e\x2e\x0d\x0a\x0d\x0a\x4d\x6f'\ -b'\x73\x74\x20\x70\x65\x6f\x70\x6c\x65\x20\x73\x74\x61\x72\x74\x20'\ -b'\x61\x74\x20\x6f\x75\x72\x20\x77\x65\x62\x73\x69\x74\x65\x20\x77'\ -b'\x68\x69\x63\x68\x20\x68\x61\x73\x20\x74\x68\x65\x20\x6d\x61\x69'\ -b'\x6e\x20\x50\x47\x20\x73\x65\x61\x72\x63\x68\x0d\x0a\x66\x61\x63'\ -b'\x69\x6c\x69\x74\x79\x3a\x20\x77\x77\x77\x2e\x67\x75\x74\x65\x6e'\ -b'\x62\x65\x72\x67\x2e\x6f\x72\x67\x0d\x0a\x0d\x0a\x54\x68\x69\x73'\ -b'\x20\x77\x65\x62\x73\x69\x74\x65\x20\x69\x6e\x63\x6c\x75\x64\x65'\ -b'\x73\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x61\x62'\ -b'\x6f\x75\x74\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65'\ -b'\x6e\x62\x65\x72\x67\x2d\x74\x6d\x2c\x0d\x0a\x69\x6e\x63\x6c\x75'\ -b'\x64\x69\x6e\x67\x20\x68\x6f\x77\x20\x74\x6f\x20\x6d\x61\x6b\x65'\ -b'\x20\x64\x6f\x6e\x61\x74\x69\x6f\x6e\x73\x20\x74\x6f\x20\x74\x68'\ -b'\x65\x20\x50\x72\x6f\x6a\x65\x63\x74\x20\x47\x75\x74\x65\x6e\x62'\ -b'\x65\x72\x67\x20\x4c\x69\x74\x65\x72\x61\x72\x79\x0d\x0a\x41\x72'\ -b'\x63\x68\x69\x76\x65\x20\x46\x6f\x75\x6e\x64\x61\x74\x69\x6f\x6e'\ -b'\x2c\x20\x68\x6f\x77\x20\x74\x6f\x20\x68\x65\x6c\x70\x20\x70\x72'\ -b'\x6f\x64\x75\x63\x65\x20\x6f\x75\x72\x20\x6e\x65\x77\x20\x65\x42'\ -b'\x6f\x6f\x6b\x73\x2c\x20\x61\x6e\x64\x20\x68\x6f\x77\x20\x74\x6f'\ -b'\x0d\x0a\x73\x75\x62\x73\x63\x72\x69\x62\x65\x20\x74\x6f\x20\x6f'\ -b'\x75\x72\x20\x65\x6d\x61\x69\x6c\x20\x6e\x65\x77\x73\x6c\x65\x74'\ -b'\x74\x65\x72\x20\x74\x6f\x20\x68\x65\x61\x72\x20\x61\x62\x6f\x75'\ -b'\x74\x20\x6e\x65\x77\x20\x65\x42\x6f\x6f\x6b\x73\x2e\x0d\x0a\x0d'\ -b'\x0a\x0d\x0a' - -_mvdata = memoryview(_data) - -def data(): - return _mvdata - diff --git a/micropython/examples/badger2040/e-reader.py b/micropython/examples/badger2040/ebook.py similarity index 100% rename from micropython/examples/badger2040/e-reader.py rename to micropython/examples/badger2040/ebook.py diff --git a/micropython/examples/badger2040/checklist.py b/micropython/examples/badger2040/list.py similarity index 100% rename from micropython/examples/badger2040/checklist.py rename to micropython/examples/badger2040/list.py diff --git a/micropython/modules/badger2040-micropython.cmake b/micropython/modules/badger2040-micropython.cmake index b330b539..663b8497 100644 --- a/micropython/modules/badger2040-micropython.cmake +++ b/micropython/modules/badger2040-micropython.cmake @@ -31,5 +31,6 @@ include(breakout_icp10125/micropython) include(breakout_scd41/micropython) include(badger2040/micropython) +include(badger2040/micropython-builtins) include(plasma/micropython) -include(ulab/code/micropython) +include(ulab/code/micropython) \ No newline at end of file diff --git a/micropython/modules/badger2040/assets/289-0-wind-in-the-willows-abridged.txt b/micropython/modules/badger2040/assets/289-0-wind-in-the-willows-abridged.txt new file mode 100644 index 00000000..ec5e9158 --- /dev/null +++ b/micropython/modules/badger2040/assets/289-0-wind-in-the-willows-abridged.txt @@ -0,0 +1,1341 @@ +The Project Gutenberg eBook of The Wind in the Willows, by Kenneth Grahame + +This eBook is for the use of anyone anywhere in the United States and +most other parts of the world at no cost and with almost no restrictions +whatsoever. You may copy it, give it away or re-use it under the terms +of the Project Gutenberg License included with this eBook or online at +www.gutenberg.org. If you are not located in the United States, you +will have to check the laws of the country where you are located before +using this eBook. + +Title: The Wind in the Willows + +Author: Kenneth Grahame + +Release Date: July, 1995 [eBook #289] +[Most recently updated: May 15, 2021] + +Language: English + +Character set encoding: UTF-8 + +Produced by: Mike Lough and David Widger + +*** START OF THE PROJECT GUTENBERG EBOOK THE WIND IN THE WILLOWS *** + +[Illustration] + + + + +The Wind in the Willows + +by Kenneth Grahame + +Author Of “The Golden Age,” “Dream Days,” Etc. + + +Contents + + CHAPTER I. THE RIVER BANK + CHAPTER II. THE OPEN ROAD + + + + +I. +THE RIVER BANK + + +The Mole had been working very hard all the morning, spring-cleaning +his little home. First with brooms, then with dusters; then on ladders +and steps and chairs, with a brush and a pail of whitewash; till he had +dust in his throat and eyes, and splashes of whitewash all over his +black fur, and an aching back and weary arms. Spring was moving in the +air above and in the earth below and around him, penetrating even his +dark and lowly little house with its spirit of divine discontent and +longing. It was small wonder, then, that he suddenly flung down his +brush on the floor, said “Bother!” and “O blow!” and also “Hang +spring-cleaning!” and bolted out of the house without even waiting to +put on his coat. Something up above was calling him imperiously, and he +made for the steep little tunnel which answered in his case to the +gravelled carriage-drive owned by animals whose residences are nearer +to the sun and air. So he scraped and scratched and scrabbled and +scrooged and then he scrooged again and scrabbled and scratched and +scraped, working busily with his little paws and muttering to himself, +“Up we go! Up we go!” till at last, pop! his snout came out into the +sunlight, and he found himself rolling in the warm grass of a great +meadow. + +“This is fine!” he said to himself. “This is better than whitewashing!” +The sunshine struck hot on his fur, soft breezes caressed his heated +brow, and after the seclusion of the cellarage he had lived in so long +the carol of happy birds fell on his dulled hearing almost like a +shout. Jumping off all his four legs at once, in the joy of living and +the delight of spring without its cleaning, he pursued his way across +the meadow till he reached the hedge on the further side. + +“Hold up!” said an elderly rabbit at the gap. “Sixpence for the +privilege of passing by the private road!” He was bowled over in an +instant by the impatient and contemptuous Mole, who trotted along the +side of the hedge chaffing the other rabbits as they peeped hurriedly +from their holes to see what the row was about. “Onion-sauce! +Onion-sauce!” he remarked jeeringly, and was gone before they could +think of a thoroughly satisfactory reply. Then they all started +grumbling at each other. “How _stupid_ you are! Why didn’t you tell +him——” “Well, why didn’t _you_ say——” “You might have reminded him——” +and so on, in the usual way; but, of course, it was then much too late, +as is always the case. + +It all seemed too good to be true. Hither and thither through the +meadows he rambled busily, along the hedgerows, across the copses, +finding everywhere birds building, flowers budding, leaves +thrusting—everything happy, and progressive, and occupied. And instead +of having an uneasy conscience pricking him and whispering “whitewash!” +he somehow could only feel how jolly it was to be the only idle dog +among all these busy citizens. After all, the best part of a holiday is +perhaps not so much to be resting yourself, as to see all the other +fellows busy working. + +He thought his happiness was complete when, as he meandered aimlessly +along, suddenly he stood by the edge of a full-fed river. Never in his +life had he seen a river before—this sleek, sinuous, full-bodied +animal, chasing and chuckling, gripping things with a gurgle and +leaving them with a laugh, to fling itself on fresh playmates that +shook themselves free, and were caught and held again. All was a-shake +and a-shiver—glints and gleams and sparkles, rustle and swirl, chatter +and bubble. The Mole was bewitched, entranced, fascinated. By the side +of the river he trotted as one trots, when very small, by the side of a +man who holds one spell-bound by exciting stories; and when tired at +last, he sat on the bank, while the river still chattered on to him, a +babbling procession of the best stories in the world, sent from the +heart of the earth to be told at last to the insatiable sea. + +As he sat on the grass and looked across the river, a dark hole in the +bank opposite, just above the water’s edge, caught his eye, and +dreamily he fell to considering what a nice snug dwelling-place it +would make for an animal with few wants and fond of a bijou riverside +residence, above flood level and remote from noise and dust. As he +gazed, something bright and small seemed to twinkle down in the heart +of it, vanished, then twinkled once more like a tiny star. But it could +hardly be a star in such an unlikely situation; and it was too +glittering and small for a glow-worm. Then, as he looked, it winked at +him, and so declared itself to be an eye; and a small face began +gradually to grow up round it, like a frame round a picture. + +A brown little face, with whiskers. + +A grave round face, with the same twinkle in its eye that had first +attracted his notice. + +Small neat ears and thick silky hair. + +It was the Water Rat! + +Then the two animals stood and regarded each other cautiously. + +“Hullo, Mole!” said the Water Rat. + +“Hullo, Rat!” said the Mole. + +“Would you like to come over?” enquired the Rat presently. + +“Oh, its all very well to _talk_,” said the Mole, rather pettishly, he +being new to a river and riverside life and its ways. + +The Rat said nothing, but stooped and unfastened a rope and hauled on +it; then lightly stepped into a little boat which the Mole had not +observed. It was painted blue outside and white within, and was just +the size for two animals; and the Mole’s whole heart went out to it at +once, even though he did not yet fully understand its uses. + +The Rat sculled smartly across and made fast. Then he held up his +forepaw as the Mole stepped gingerly down. “Lean on that!” he said. +“Now then, step lively!” and the Mole to his surprise and rapture found +himself actually seated in the stern of a real boat. + +“This has been a wonderful day!” said he, as the Rat shoved off and +took to the sculls again. “Do you know, I’ve never been in a boat +before in all my life.” + +“What?” cried the Rat, open-mouthed: “Never been in a—you never—well +I—what have you been doing, then?” + +“Is it so nice as all that?” asked the Mole shyly, though he was quite +prepared to believe it as he leant back in his seat and surveyed the +cushions, the oars, the rowlocks, and all the fascinating fittings, and +felt the boat sway lightly under him. + +“Nice? It’s the _only_ thing,” said the Water Rat solemnly, as he leant +forward for his stroke. “Believe me, my young friend, there is +_nothing_—absolute nothing—half so much worth doing as simply messing +about in boats. Simply messing,” he went on dreamily: +“messing—about—in—boats; messing——” + +“Look ahead, Rat!” cried the Mole suddenly. + +It was too late. The boat struck the bank full tilt. The dreamer, the +joyous oarsman, lay on his back at the bottom of the boat, his heels in +the air. + +“—about in boats—or _with_ boats,” the Rat went on composedly, picking +himself up with a pleasant laugh. “In or out of ’em, it doesn’t matter. +Nothing seems really to matter, that’s the charm of it. Whether you get +away, or whether you don’t; whether you arrive at your destination or +whether you reach somewhere else, or whether you never get anywhere at +all, you’re always busy, and you never do anything in particular; and +when you’ve done it there’s always something else to do, and you can do +it if you like, but you’d much better not. Look here! If you’ve really +nothing else on hand this morning, supposing we drop down the river +together, and have a long day of it?” + +The Mole waggled his toes from sheer happiness, spread his chest with a +sigh of full contentment, and leaned back blissfully into the soft +cushions. “_What_ a day I’m having!” he said. “Let us start at once!” + +“Hold hard a minute, then!” said the Rat. He looped the painter through +a ring in his landing-stage, climbed up into his hole above, and after +a short interval reappeared staggering under a fat, wicker +luncheon-basket. + +“Shove that under your feet,” he observed to the Mole, as he passed it +down into the boat. Then he untied the painter and took the sculls +again. + +“What’s inside it?” asked the Mole, wriggling with curiosity. + +“There’s cold chicken inside it,” replied the Rat briefly; “ +coldtonguecoldhamcoldbeefpickledgherkinssaladfrenchrollscresssandwiches +pottedme atgingerbeerlemonadesodawater——” + +“O stop, stop,” cried the Mole in ecstacies: “This is too much!” + +“Do you really think so?” enquired the Rat seriously. “It’s only what I +always take on these little excursions; and the other animals are +always telling me that I’m a mean beast and cut it _very_ fine!” + +The Mole never heard a word he was saying. Absorbed in the new life he +was entering upon, intoxicated with the sparkle, the ripple, the scents +and the sounds and the sunlight, he trailed a paw in the water and +dreamed long waking dreams. The Water Rat, like the good little fellow +he was, sculled steadily on and forebore to disturb him. + +“I like your clothes awfully, old chap,” he remarked after some half an +hour or so had passed. “I’m going to get a black velvet smoking-suit +myself some day, as soon as I can afford it.” + +“I beg your pardon,” said the Mole, pulling himself together with an +effort. “You must think me very rude; but all this is so new to me. +So—this—is—a—River!” + +“_The_ River,” corrected the Rat. + +“And you really live by the river? What a jolly life!” + +“By it and with it and on it and in it,” said the Rat. “It’s brother +and sister to me, and aunts, and company, and food and drink, and +(naturally) washing. It’s my world, and I don’t want any other. What it +hasn’t got is not worth having, and what it doesn’t know is not worth +knowing. Lord! the times we’ve had together! Whether in winter or +summer, spring or autumn, it’s always got its fun and its excitements. +When the floods are on in February, and my cellars and basement are +brimming with drink that’s no good to me, and the brown water runs by +my best bedroom window; or again when it all drops away and, shows +patches of mud that smells like plum-cake, and the rushes and weed clog +the channels, and I can potter about dry shod over most of the bed of +it and find fresh food to eat, and things careless people have dropped +out of boats!” + +“But isn’t it a bit dull at times?” the Mole ventured to ask. “Just you +and the river, and no one else to pass a word with?” + +“No one else to—well, I mustn’t be hard on you,” said the Rat with +forbearance. “You’re new to it, and of course you don’t know. The bank +is so crowded nowadays that many people are moving away altogether: O +no, it isn’t what it used to be, at all. Otters, kingfishers, +dabchicks, moorhens, all of them about all day long and always wanting +you to _do_ something—as if a fellow had no business of his own to +attend to!” + +“What lies over _there?_” asked the Mole, waving a paw towards a +background of woodland that darkly framed the water-meadows on one side +of the river. + +“That? O, that’s just the Wild Wood,” said the Rat shortly. “We don’t +go there very much, we river-bankers.” + +“Aren’t they—aren’t they very _nice_ people in there?” said the Mole, a +trifle nervously. + +“W-e-ll,” replied the Rat, “let me see. The squirrels are all right. +_And_ the rabbits—some of ’em, but rabbits are a mixed lot. And then +there’s Badger, of course. He lives right in the heart of it; wouldn’t +live anywhere else, either, if you paid him to do it. Dear old Badger! +Nobody interferes with _him_. They’d better not,” he added +significantly. + +“Why, who _should_ interfere with him?” asked the Mole. + +“Well, of course—there—are others,” explained the Rat in a hesitating +sort of way. + +“Weasels—and stoats—and foxes—and so on. They’re all right in a way—I’m +very good friends with them—pass the time of day when we meet, and all +that—but they break out sometimes, there’s no denying it, and +then—well, you can’t really trust them, and that’s the fact.” + +The Mole knew well that it is quite against animal-etiquette to dwell +on possible trouble ahead, or even to allude to it; so he dropped the +subject. + +“And beyond the Wild Wood again?” he asked: “Where it’s all blue and +dim, and one sees what may be hills or perhaps they mayn’t, and +something like the smoke of towns, or is it only cloud-drift?” + +“Beyond the Wild Wood comes the Wide World,” said the Rat. “And that’s +something that doesn’t matter, either to you or me. I’ve never been +there, and I’m never going, nor you either, if you’ve got any sense at +all. Don’t ever refer to it again, please. Now then! Here’s our +backwater at last, where we’re going to lunch.” + +Leaving the main stream, they now passed into what seemed at first +sight like a little land-locked lake. Green turf sloped down to either +edge, brown snaky tree-roots gleamed below the surface of the quiet +water, while ahead of them the silvery shoulder and foamy tumble of a +weir, arm-in-arm with a restless dripping mill-wheel, that held up in +its turn a grey-gabled mill-house, filled the air with a soothing +murmur of sound, dull and smothery, yet with little clear voices +speaking up cheerfully out of it at intervals. It was so very beautiful +that the Mole could only hold up both forepaws and gasp, “O my! O my! O +my!” + +The Rat brought the boat alongside the bank, made her fast, helped the +still awkward Mole safely ashore, and swung out the luncheon-basket. +The Mole begged as a favour to be allowed to unpack it all by himself; +and the Rat was very pleased to indulge him, and to sprawl at full +length on the grass and rest, while his excited friend shook out the +table-cloth and spread it, took out all the mysterious packets one by +one and arranged their contents in due order, still gasping, “O my! O +my!” at each fresh revelation. When all was ready, the Rat said, “Now, +pitch in, old fellow!” and the Mole was indeed very glad to obey, for +he had started his spring-cleaning at a very early hour that morning, +as people _will_ do, and had not paused for bite or sup; and he had +been through a very great deal since that distant time which now seemed +so many days ago. + +“What are you looking at?” said the Rat presently, when the edge of +their hunger was somewhat dulled, and the Mole’s eyes were able to +wander off the table-cloth a little. + +“I am looking,” said the Mole, “at a streak of bubbles that I see +travelling along the surface of the water. That is a thing that strikes +me as funny.” + +“Bubbles? Oho!” said the Rat, and chirruped cheerily in an inviting +sort of way. + +A broad glistening muzzle showed itself above the edge of the bank, and +the Otter hauled himself out and shook the water from his coat. + +“Greedy beggars!” he observed, making for the provender. “Why didn’t +you invite me, Ratty?” + +“This was an impromptu affair,” explained the Rat. “By the way—my +friend Mr. Mole.” + +“Proud, I’m sure,” said the Otter, and the two animals were friends +forthwith. + +“Such a rumpus everywhere!” continued the Otter. “All the world seems +out on the river to-day. I came up this backwater to try and get a +moment’s peace, and then stumble upon you fellows!—At least—I beg +pardon—I don’t exactly mean that, you know.” + +There was a rustle behind them, proceeding from a hedge wherein last +year’s leaves still clung thick, and a stripy head, with high shoulders +behind it, peered forth on them. + +“Come on, old Badger!” shouted the Rat. + +The Badger trotted forward a pace or two; then grunted, “H’m! Company,” +and turned his back and disappeared from view. + +“That’s _just_ the sort of fellow he is!” observed the disappointed +Rat. “Simply hates Society! Now we shan’t see any more of him to-day. +Well, tell us, _who’s_ out on the river?” + +“Toad’s out, for one,” replied the Otter. “In his brand-new wager-boat; +new togs, new everything!” + +The two animals looked at each other and laughed. + +“Once, it was nothing but sailing,” said the Rat, “Then he tired of +that and took to punting. Nothing would please him but to punt all day +and every day, and a nice mess he made of it. Last year it was +house-boating, and we all had to go and stay with him in his +house-boat, and pretend we liked it. He was going to spend the rest of +his life in a house-boat. It’s all the same, whatever he takes up; he +gets tired of it, and starts on something fresh.” + +“Such a good fellow, too,” remarked the Otter reflectively: “But no +stability—especially in a boat!” + +From where they sat they could get a glimpse of the main stream across +the island that separated them; and just then a wager-boat flashed into +view, the rower—a short, stout figure—splashing badly and rolling a +good deal, but working his hardest. The Rat stood up and hailed him, +but Toad—for it was he—shook his head and settled sternly to his work. + +“He’ll be out of the boat in a minute if he rolls like that,” said the +Rat, sitting down again. + +“Of course he will,” chuckled the Otter. “Did I ever tell you that good +story about Toad and the lock-keeper? It happened this way. Toad....” + +An errant May-fly swerved unsteadily athwart the current in the +intoxicated fashion affected by young bloods of May-flies seeing life. +A swirl of water and a “cloop!” and the May-fly was visible no more. + +Neither was the Otter. + +The Mole looked down. The voice was still in his ears, but the turf +whereon he had sprawled was clearly vacant. Not an Otter to be seen, as +far as the distant horizon. + +But again there was a streak of bubbles on the surface of the river. + +The Rat hummed a tune, and the Mole recollected that animal-etiquette +forbade any sort of comment on the sudden disappearance of one’s +friends at any moment, for any reason or no reason whatever. + +“Well, well,” said the Rat, “I suppose we ought to be moving. I wonder +which of us had better pack the luncheon-basket?” He did not speak as +if he was frightfully eager for the treat. + +“O, please let me,” said the Mole. So, of course, the Rat let him. + +Packing the basket was not quite such pleasant work as unpacking the +basket. It never is. But the Mole was bent on enjoying everything, and +although just when he had got the basket packed and strapped up tightly +he saw a plate staring up at him from the grass, and when the job had +been done again the Rat pointed out a fork which anybody ought to have +seen, and last of all, behold! the mustard pot, which he had been +sitting on without knowing it—still, somehow, the thing got finished at +last, without much loss of temper. + +The afternoon sun was getting low as the Rat sculled gently homewards +in a dreamy mood, murmuring poetry-things over to himself, and not +paying much attention to Mole. But the Mole was very full of lunch, and +self-satisfaction, and pride, and already quite at home in a boat (so +he thought) and was getting a bit restless besides: and presently he +said, “Ratty! Please, _I_ want to row, now!” + +The Rat shook his head with a smile. “Not yet, my young friend,” he +said—“wait till you’ve had a few lessons. It’s not so easy as it +looks.” + +The Mole was quiet for a minute or two. But he began to feel more and +more jealous of Rat, sculling so strongly and so easily along, and his +pride began to whisper that he could do it every bit as well. He jumped +up and seized the sculls, so suddenly, that the Rat, who was gazing out +over the water and saying more poetry-things to himself, was taken by +surprise and fell backwards off his seat with his legs in the air for +the second time, while the triumphant Mole took his place and grabbed +the sculls with entire confidence. + +“Stop it, you _silly_ ass!” cried the Rat, from the bottom of the boat. +“You can’t do it! You’ll have us over!” + +The Mole flung his sculls back with a flourish, and made a great dig at +the water. He missed the surface altogether, his legs flew up above his +head, and he found himself lying on the top of the prostrate Rat. +Greatly alarmed, he made a grab at the side of the boat, and the next +moment—Sploosh! + +Over went the boat, and he found himself struggling in the river. + +O my, how cold the water was, and O, how _very_ wet it felt. How it +sang in his ears as he went down, down, down! How bright and welcome +the sun looked as he rose to the surface coughing and spluttering! How +black was his despair when he felt himself sinking again! Then a firm +paw gripped him by the back of his neck. It was the Rat, and he was +evidently laughing—the Mole could _feel_ him laughing, right down his +arm and through his paw, and so into his—the Mole’s—neck. + +The Rat got hold of a scull and shoved it under the Mole’s arm; then he +did the same by the other side of him and, swimming behind, propelled +the helpless animal to shore, hauled him out, and set him down on the +bank, a squashy, pulpy lump of misery. + +When the Rat had rubbed him down a bit, and wrung some of the wet out +of him, he said, “Now, then, old fellow! Trot up and down the +towing-path as hard as you can, till you’re warm and dry again, while I +dive for the luncheon-basket.” + +So the dismal Mole, wet without and ashamed within, trotted about till +he was fairly dry, while the Rat plunged into the water again, +recovered the boat, righted her and made her fast, fetched his floating +property to shore by degrees, and finally dived successfully for the +luncheon-basket and struggled to land with it. + +When all was ready for a start once more, the Mole, limp and dejected, +took his seat in the stern of the boat; and as they set off, he said in +a low voice, broken with emotion, “Ratty, my generous friend! I am very +sorry indeed for my foolish and ungrateful conduct. My heart quite +fails me when I think how I might have lost that beautiful +luncheon-basket. Indeed, I have been a complete ass, and I know it. +Will you overlook it this once and forgive me, and let things go on as +before?” + +“That’s all right, bless you!” responded the Rat cheerily. “What’s a +little wet to a Water Rat? I’m more in the water than out of it most +days. Don’t you think any more about it; and, look here! I really think +you had better come and stop with me for a little time. It’s very plain +and rough, you know—not like Toad’s house at all—but you haven’t seen +that yet; still, I can make you comfortable. And I’ll teach you to row, +and to swim, and you’ll soon be as handy on the water as any of us.” + +The Mole was so touched by his kind manner of speaking that he could +find no voice to answer him; and he had to brush away a tear or two +with the back of his paw. But the Rat kindly looked in another +direction, and presently the Mole’s spirits revived again, and he was +even able to give some straight back-talk to a couple of moorhens who +were sniggering to each other about his bedraggled appearance. + +When they got home, the Rat made a bright fire in the parlour, and +planted the Mole in an arm-chair in front of it, having fetched down a +dressing-gown and slippers for him, and told him river stories till +supper-time. Very thrilling stories they were, too, to an +earth-dwelling animal like Mole. Stories about weirs, and sudden +floods, and leaping pike, and steamers that flung hard bottles—at least +bottles were certainly flung, and _from_ steamers, so presumably _by_ +them; and about herons, and how particular they were whom they spoke +to; and about adventures down drains, and night-fishings with Otter, or +excursions far a-field with Badger. Supper was a most cheerful meal; +but very shortly afterwards a terribly sleepy Mole had to be escorted +upstairs by his considerate host, to the best bedroom, where he soon +laid his head on his pillow in great peace and contentment, knowing +that his new-found friend the River was lapping the sill of his window. + +This day was only the first of many similar ones for the emancipated +Mole, each of them longer and full of interest as the ripening summer +moved onward. He learnt to swim and to row, and entered into the joy of +running water; and with his ear to the reed-stems he caught, at +intervals, something of what the wind went whispering so constantly +among them. + + + + +II. +THE OPEN ROAD + + +“Ratty,” said the Mole suddenly, one bright summer morning, “if you +please, I want to ask you a favour.” + +The Rat was sitting on the river bank, singing a little song. He had +just composed it himself, so he was very taken up with it, and would +not pay proper attention to Mole or anything else. Since early morning +he had been swimming in the river, in company with his friends the +ducks. And when the ducks stood on their heads suddenly, as ducks will, +he would dive down and tickle their necks, just under where their chins +would be if ducks had chins, till they were forced to come to the +surface again in a hurry, spluttering and angry and shaking their +feathers at him, for it is impossible to say quite _all_ you feel when +your head is under water. At last they implored him to go away and +attend to his own affairs and leave them to mind theirs. So the Rat +went away, and sat on the river bank in the sun, and made up a song +about them, which he called + +“DUCKS’ DITTY.” + +All along the backwater, +Through the rushes tall, +Ducks are a-dabbling, +Up tails all! +Ducks’ tails, drakes’ tails, +Yellow feet a-quiver, +Yellow bills all out of sight +Busy in the river! + +Slushy green undergrowth +Where the roach swim— +Here we keep our larder, +Cool and full and dim. + +Everyone for what he likes! +_We_ like to be +Heads down, tails up, +Dabbling free! + +High in the blue above +Swifts whirl and call— +_We_ are down a-dabbling +Uptails all! + + +“I don’t know that I think so _very_ much of that little song, Rat,” +observed the Mole cautiously. He was no poet himself and didn’t care +who knew it; and he had a candid nature. + +“Nor don’t the ducks neither,” replied the Rat cheerfully. “They say, +‘_Why_ can’t fellows be allowed to do what they like _when_ they like +and _as_ they like, instead of other fellows sitting on banks and +watching them all the time and making remarks and poetry and things +about them? What _nonsense_ it all is!’ That’s what the ducks say.” + +“So it is, so it is,” said the Mole, with great heartiness. + +“No, it isn’t!” cried the Rat indignantly. + +“Well then, it isn’t, it isn’t,” replied the Mole soothingly. “But what +I wanted to ask you was, won’t you take me to call on Mr. Toad? I’ve +heard so much about him, and I do so want to make his acquaintance.” + +“Why, certainly,” said the good-natured Rat, jumping to his feet and +dismissing poetry from his mind for the day. “Get the boat out, and +we’ll paddle up there at once. It’s never the wrong time to call on +Toad. Early or late he’s always the same fellow. Always good-tempered, +always glad to see you, always sorry when you go!” + +“He must be a very nice animal,” observed the Mole, as he got into the +boat and took the sculls, while the Rat settled himself comfortably in +the stern. + +“He is indeed the best of animals,” replied Rat. “So simple, so +good-natured, and so affectionate. Perhaps he’s not very clever—we +can’t all be geniuses; and it may be that he is both boastful and +conceited. But he has got some great qualities, has Toady.” + +Rounding a bend in the river, they came in sight of a handsome, +dignified old house of mellowed red brick, with well-kept lawns +reaching down to the water’s edge. + +“There’s Toad Hall,” said the Rat; “and that creek on the left, where +the notice-board says, ‘Private. No landing allowed,’ leads to his +boat-house, where we’ll leave the boat. The stables are over there to +the right. That’s the banqueting-hall you’re looking at now—very old, +that is. Toad is rather rich, you know, and this is really one of the +nicest houses in these parts, though we never admit as much to Toad.” + +They glided up the creek, and the Mole shipped his sculls as they +passed into the shadow of a large boat-house. Here they saw many +handsome boats, slung from the cross beams or hauled up on a slip, but +none in the water; and the place had an unused and a deserted air. + +The Rat looked around him. “I understand,” said he. “Boating is played +out. He’s tired of it, and done with it. I wonder what new fad he has +taken up now? Come along and let’s look him up. We shall hear all about +it quite soon enough.” + +They disembarked, and strolled across the gay flower-decked lawns in +search of Toad, whom they presently happened upon resting in a wicker +garden-chair, with a pre-occupied expression of face, and a large map +spread out on his knees. + +“Hooray!” he cried, jumping up on seeing them, “this is splendid!” He +shook the paws of both of them warmly, never waiting for an +introduction to the Mole. “How _kind_ of you!” he went on, dancing +round them. “I was just going to send a boat down the river for you, +Ratty, with strict orders that you were to be fetched up here at once, +whatever you were doing. I want you badly—both of you. Now what will +you take? Come inside and have something! You don’t know how lucky it +is, your turning up just now!” + +“Let’s sit quiet a bit, Toady!” said the Rat, throwing himself into an +easy chair, while the Mole took another by the side of him and made +some civil remark about Toad’s “delightful residence.” + +“Finest house on the whole river,” cried Toad boisterously. “Or +anywhere else, for that matter,” he could not help adding. + +Here the Rat nudged the Mole. Unfortunately the Toad saw him do it, and +turned very red. There was a moment’s painful silence. Then Toad burst +out laughing. “All right, Ratty,” he said. “It’s only my way, you know. +And it’s not such a very bad house, is it? You know you rather like it +yourself. Now, look here. Let’s be sensible. You are the very animals I +wanted. You’ve got to help me. It’s most important!” + +“It’s about your rowing, I suppose,” said the Rat, with an innocent +air. “You’re getting on fairly well, though you splash a good bit +still. With a great deal of patience, and any quantity of coaching, you +may——” + +“O, pooh! boating!” interrupted the Toad, in great disgust. “Silly +boyish amusement. I’ve given that up _long_ ago. Sheer waste of time, +that’s what it is. It makes me downright sorry to see you fellows, who +ought to know better, spending all your energies in that aimless +manner. No, I’ve discovered the real thing, the only genuine occupation +for a life time. I propose to devote the remainder of mine to it, and +can only regret the wasted years that lie behind me, squandered in +trivialities. Come with me, dear Ratty, and your amiable friend also, +if he will be so very good, just as far as the stable-yard, and you +shall see what you shall see!” + +He led the way to the stable-yard accordingly, the Rat following with a +most mistrustful expression; and there, drawn out of the coach house +into the open, they saw a gipsy caravan, shining with newness, painted +a canary-yellow picked out with green, and red wheels. + +“There you are!” cried the Toad, straddling and expanding himself. +“There’s real life for you, embodied in that little cart. The open +road, the dusty highway, the heath, the common, the hedgerows, the +rolling downs! Camps, villages, towns, cities! Here to-day, up and off +to somewhere else to-morrow! Travel, change, interest, excitement! The +whole world before you, and a horizon that’s always changing! And mind! +this is the very finest cart of its sort that was ever built, without +any exception. Come inside and look at the arrangements. Planned ’em +all myself, I did!” + +The Mole was tremendously interested and excited, and followed him +eagerly up the steps and into the interior of the caravan. The Rat only +snorted and thrust his hands deep into his pockets, remaining where he +was. + +It was indeed very compact and comfortable. Little sleeping bunks—a +little table that folded up against the wall—a cooking-stove, lockers, +bookshelves, a bird-cage with a bird in it; and pots, pans, jugs and +kettles of every size and variety. + +“All complete!” said the Toad triumphantly, pulling open a locker. “You +see—biscuits, potted lobster, sardines—everything you can possibly +want. Soda-water here—baccy there—letter-paper, bacon, jam, cards and +dominoes—you’ll find,” he continued, as they descended the steps again, +“you’ll find that nothing what ever has been forgotten, when we make +our start this afternoon.” + +“I beg your pardon,” said the Rat slowly, as he chewed a straw, “but +did I overhear you say something about ‘_we_,’ and ‘_start_,’ and +‘_this afternoon?_’” + +“Now, you dear good old Ratty,” said Toad, imploringly, “don’t begin +talking in that stiff and sniffy sort of way, because you know you’ve +_got_ to come. I can’t possibly manage without you, so please consider +it settled, and don’t argue—it’s the one thing I can’t stand. You +surely don’t mean to stick to your dull fusty old river all your life, +and just live in a hole in a bank, and _boat?_ I want to show you the +world! I’m going to make an _animal_ of you, my boy!” + +“I don’t care,” said the Rat, doggedly. “I’m not coming, and that’s +flat. And I _am_ going to stick to my old river, _and_ live in a hole, +_and_ boat, as I’ve always done. And what’s more, Mole’s going to stick +to me and do as I do, aren’t you, Mole?” + +“Of course I am,” said the Mole, loyally. “I’ll always stick to you, +Rat, and what you say is to be—has got to be. All the same, it sounds +as if it might have been—well, rather fun, you know!” he added, +wistfully. Poor Mole! The Life Adventurous was so new a thing to him, +and so thrilling; and this fresh aspect of it was so tempting; and he +had fallen in love at first sight with the canary-coloured cart and all +its little fitments. + +The Rat saw what was passing in his mind, and wavered. He hated +disappointing people, and he was fond of the Mole, and would do almost +anything to oblige him. Toad was watching both of them closely. + +“Come along in, and have some lunch,” he said, diplomatically, “and +we’ll talk it over. We needn’t decide anything in a hurry. Of course, +_I_ don’t really care. I only want to give pleasure to you fellows. +‘Live for others!’ That’s my motto in life.” + +During luncheon—which was excellent, of course, as everything at Toad +Hall always was—the Toad simply let himself go. Disregarding the Rat, +he proceeded to play upon the inexperienced Mole as on a harp. +Naturally a voluble animal, and always mastered by his imagination, he +painted the prospects of the trip and the joys of the open life and the +roadside in such glowing colours that the Mole could hardly sit in his +chair for excitement. Somehow, it soon seemed taken for granted by all +three of them that the trip was a settled thing; and the Rat, though +still unconvinced in his mind, allowed his good-nature to over-ride his +personal objections. He could not bear to disappoint his two friends, +who were already deep in schemes and anticipations, planning out each +day’s separate occupation for several weeks ahead. + +When they were quite ready, the now triumphant Toad led his companions +to the paddock and set them to capture the old grey horse, who, without +having been consulted, and to his own extreme annoyance, had been told +off by Toad for the dustiest job in this dusty expedition. He frankly +preferred the paddock, and took a deal of catching. Meantime Toad +packed the lockers still tighter with necessaries, and hung nosebags, +nets of onions, bundles of hay, and baskets from the bottom of the +cart. At last the horse was caught and harnessed, and they set off, all +talking at once, each animal either trudging by the side of the cart or +sitting on the shaft, as the humour took him. It was a golden +afternoon. The smell of the dust they kicked up was rich and +satisfying; out of thick orchards on either side the road, birds called +and whistled to them cheerily; good-natured wayfarers, passing them, +gave them “Good-day,” or stopped to say nice things about their +beautiful cart; and rabbits, sitting at their front doors in the +hedgerows, held up their fore-paws, and said, “O my! O my! O my!” + +Late in the evening, tired and happy and miles from home, they drew up +on a remote common far from habitations, turned the horse loose to +graze, and ate their simple supper sitting on the grass by the side of +the cart. Toad talked big about all he was going to do in the days to +come, while stars grew fuller and larger all around them, and a yellow +moon, appearing suddenly and silently from nowhere in particular, came +to keep them company and listen to their talk. At last they turned in +to their little bunks in the cart; and Toad, kicking out his legs, +sleepily said, “Well, good night, you fellows! This is the real life +for a gentleman! Talk about your old river!” + +“I _don’t_ talk about my river,” replied the patient Rat. “You _know_ I +don’t, Toad. But I _think_ about it,” he added pathetically, in a lower +tone: “I think about it—all the time!” + +The Mole reached out from under his blanket, felt for the Rat’s paw in +the darkness, and gave it a squeeze. “I’ll do whatever you like, +Ratty,” he whispered. “Shall we run away to-morrow morning, quite +early—_very_ early—and go back to our dear old hole on the river?” + +“No, no, we’ll see it out,” whispered back the Rat. “Thanks awfully, +but I ought to stick by Toad till this trip is ended. It wouldn’t be +safe for him to be left to himself. It won’t take very long. His fads +never do. Good night!” + +The end was indeed nearer than even the Rat suspected. + +After so much open air and excitement the Toad slept very soundly, and +no amount of shaking could rouse him out of bed next morning. So the +Mole and Rat turned to, quietly and manfully, and while the Rat saw to +the horse, and lit a fire, and cleaned last night’s cups and platters, +and got things ready for breakfast, the Mole trudged off to the nearest +village, a long way off, for milk and eggs and various necessaries the +Toad had, of course, forgotten to provide. The hard work had all been +done, and the two animals were resting, thoroughly exhausted, by the +time Toad appeared on the scene, fresh and gay, remarking what a +pleasant easy life it was they were all leading now, after the cares +and worries and fatigues of housekeeping at home. + +They had a pleasant ramble that day over grassy downs and along narrow +by-lanes, and camped as before, on a common, only this time the two +guests took care that Toad should do his fair share of work. In +consequence, when the time came for starting next morning, Toad was by +no means so rapturous about the simplicity of the primitive life, and +indeed attempted to resume his place in his bunk, whence he was hauled +by force. Their way lay, as before, across country by narrow lanes, and +it was not till the afternoon that they came out on the high-road, +their first high-road; and there disaster, fleet and unforeseen, sprang +out on them—disaster momentous indeed to their expedition, but simply +overwhelming in its effect on the after-career of Toad. + +They were strolling along the high-road easily, the Mole by the horse’s +head, talking to him, since the horse had complained that he was being +frightfully left out of it, and nobody considered him in the least; the +Toad and the Water Rat walking behind the cart talking together—at +least Toad was talking, and Rat was saying at intervals, “Yes, +precisely; and what did _you_ say to _him?_”—and thinking all the time +of something very different, when far behind them they heard a faint +warning hum; like the drone of a distant bee. Glancing back, they saw a +small cloud of dust, with a dark centre of energy, advancing on them at +incredible speed, while from out the dust a faint “Poop-poop!” wailed +like an uneasy animal in pain. Hardly regarding it, they turned to +resume their conversation, when in an instant (as it seemed) the +peaceful scene was changed, and with a blast of wind and a whirl of +sound that made them jump for the nearest ditch, It was on them! The +“Poop-poop” rang with a brazen shout in their ears, they had a moment’s +glimpse of an interior of glittering plate-glass and rich morocco, and +the magnificent motor-car, immense, breath-snatching, passionate, with +its pilot tense and hugging his wheel, possessed all earth and air for +the fraction of a second, flung an enveloping cloud of dust that +blinded and enwrapped them utterly, and then dwindled to a speck in the +far distance, changed back into a droning bee once more. + +The old grey horse, dreaming, as he plodded along, of his quiet +paddock, in a new raw situation such as this simply abandoned himself +to his natural emotions. Rearing, plunging, backing steadily, in spite +of all the Mole’s efforts at his head, and all the Mole’s lively +language directed at his better feelings, he drove the cart backwards +towards the deep ditch at the side of the road. It wavered an +instant—then there was a heartrending crash—and the canary-coloured +cart, their pride and their joy, lay on its side in the ditch, an +irredeemable wreck. + +The Rat danced up and down in the road, simply transported with +passion. “You villains!” he shouted, shaking both fists, “You +scoundrels, you highwaymen, you—you—roadhogs!—I’ll have the law of you! +I’ll report you! I’ll take you through all the Courts!” His +home-sickness had quite slipped away from him, and for the moment he +was the skipper of the canary-coloured vessel driven on a shoal by the +reckless jockeying of rival mariners, and he was trying to recollect +all the fine and biting things he used to say to masters of +steam-launches when their wash, as they drove too near the bank, used +to flood his parlour-carpet at home. + +Toad sat straight down in the middle of the dusty road, his legs +stretched out before him, and stared fixedly in the direction of the +disappearing motor-car. He breathed short, his face wore a placid +satisfied expression, and at intervals he faintly murmured “Poop-poop!” + +The Mole was busy trying to quiet the horse, which he succeeded in +doing after a time. Then he went to look at the cart, on its side in +the ditch. It was indeed a sorry sight. Panels and windows smashed, +axles hopelessly bent, one wheel off, sardine-tins scattered over the +wide world, and the bird in the bird-cage sobbing pitifully and calling +to be let out. + +The Rat came to help him, but their united efforts were not sufficient +to right the cart. “Hi! Toad!” they cried. “Come and bear a hand, can’t +you!” + +The Toad never answered a word, or budged from his seat in the road; so +they went to see what was the matter with him. They found him in a sort +of a trance, a happy smile on his face, his eyes still fixed on the +dusty wake of their destroyer. At intervals he was still heard to +murmur “Poop-poop!” + +The Rat shook him by the shoulder. “Are you coming to help us, Toad?” +he demanded sternly. + +“Glorious, stirring sight!” murmured Toad, never offering to move. “The +poetry of motion! The _real_ way to travel! The _only_ way to travel! +Here to-day—in next week to-morrow! Villages skipped, towns and cities +jumped—always somebody else’s horizon! O bliss! O poop-poop! O my! O +my!” + +“O _stop_ being an ass, Toad!” cried the Mole despairingly. + +“And to think I never _knew!_” went on the Toad in a dreamy monotone. +“All those wasted years that lie behind me, I never knew, never even +_dreamt!_ But _now_—but now that I know, now that I fully realise! O +what a flowery track lies spread before me, henceforth! What +dust-clouds shall spring up behind me as I speed on my reckless way! +What carts I shall fling carelessly into the ditch in the wake of my +magnificent onset! Horrid little carts—common carts—canary-coloured +carts!” + +“What are we to do with him?” asked the Mole of the Water Rat. + +“Nothing at all,” replied the Rat firmly. “Because there is really +nothing to be done. You see, I know him from of old. He is now +possessed. He has got a new craze, and it always takes him that way, in +its first stage. He’ll continue like that for days now, like an animal +walking in a happy dream, quite useless for all practical purposes. +Never mind him. Let’s go and see what there is to be done about the +cart.” + +A careful inspection showed them that, even if they succeeded in +righting it by themselves, the cart would travel no longer. The axles +were in a hopeless state, and the missing wheel was shattered into +pieces. + +The Rat knotted the horse’s reins over his back and took him by the +head, carrying the bird cage and its hysterical occupant in the other +hand. “Come on!” he said grimly to the Mole. “It’s five or six miles to +the nearest town, and we shall just have to walk it. The sooner we make +a start the better.” + +“But what about Toad?” asked the Mole anxiously, as they set off +together. “We can’t leave him here, sitting in the middle of the road +by himself, in the distracted state he’s in! It’s not safe. Supposing +another Thing were to come along?” + +“O, _bother_ Toad,” said the Rat savagely; “I’ve done with him!” + +They had not proceeded very far on their way, however, when there was a +pattering of feet behind them, and Toad caught them up and thrust a paw +inside the elbow of each of them; still breathing short and staring +into vacancy. + +“Now, look here, Toad!” said the Rat sharply: “as soon as we get to the +town, you’ll have to go straight to the police-station, and see if they +know anything about that motor-car and who it belongs to, and lodge a +complaint against it. And then you’ll have to go to a blacksmith’s or a +wheelwright’s and arrange for the cart to be fetched and mended and put +to rights. It’ll take time, but it’s not quite a hopeless smash. +Meanwhile, the Mole and I will go to an inn and find comfortable rooms +where we can stay till the cart’s ready, and till your nerves have +recovered their shock.” + +“Police-station! Complaint!” murmured Toad dreamily. “Me _complain_ of +that beautiful, that heavenly vision that has been vouchsafed me! +_Mend_ the _cart!_ I’ve done with carts for ever. I never want to see +the cart, or to hear of it, again. O, Ratty! You can’t think how +obliged I am to you for consenting to come on this trip! I wouldn’t +have gone without you, and then I might never have seen that—that swan, +that sunbeam, that thunderbolt! I might never have heard that +entrancing sound, or smelt that bewitching smell! I owe it all to you, +my best of friends!” + +The Rat turned from him in despair. “You see what it is?” he said to +the Mole, addressing him across Toad’s head: “He’s quite hopeless. I +give it up—when we get to the town we’ll go to the railway station, and +with luck we may pick up a train there that’ll get us back to riverbank +to-night. And if ever you catch me going a-pleasuring with this +provoking animal again!”—He snorted, and during the rest of that weary +trudge addressed his remarks exclusively to Mole. + +On reaching the town they went straight to the station and deposited +Toad in the second-class waiting-room, giving a porter twopence to keep +a strict eye on him. They then left the horse at an inn stable, and +gave what directions they could about the cart and its contents. +Eventually, a slow train having landed them at a station not very far +from Toad Hall, they escorted the spell-bound, sleep-walking Toad to +his door, put him inside it, and instructed his housekeeper to feed +him, undress him, and put him to bed. Then they got out their boat from +the boat-house, sculled down the river home, and at a very late hour +sat down to supper in their own cosy riverside parlour, to the Rat’s +great joy and contentment. + +The following evening the Mole, who had risen late and taken things +very easy all day, was sitting on the bank fishing, when the Rat, who +had been looking up his friends and gossiping, came strolling along to +find him. “Heard the news?” he said. “There’s nothing else being talked +about, all along the river bank. Toad went up to Town by an early train +this morning. And he has ordered a large and very expensive motor-car.” + + + +*** END OF THE PROJECT GUTENBERG EBOOK THE WIND IN THE WILLOWS *** + +***** This file should be named 289-0.txt or 289-0.zip ***** +This and all associated files of various formats will be found in: + https://www.gutenberg.org/2/8/289/ + +Updated editions will replace the previous one--the old editions will +be renamed. + +Creating the works from print editions not protected by U.S. copyright +law means that no one owns a United States copyright in these works, +so the Foundation (and you!) can copy and distribute it in the +United States without permission and without paying copyright +royalties. Special rules, set forth in the General Terms of Use part +of this license, apply to copying and distributing Project +Gutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm +concept and trademark. Project Gutenberg is a registered trademark, +and may not be used if you charge for an eBook, except by following +the terms of the trademark license, including paying royalties for use +of the Project Gutenberg trademark. If you do not charge anything for +copies of this eBook, complying with the trademark license is very +easy. You may use this eBook for nearly any purpose such as creation +of derivative works, reports, performances and research. Project +Gutenberg eBooks may be modified and printed and given away--you may +do practically ANYTHING in the United States with eBooks not protected +by U.S. copyright law. Redistribution is subject to the trademark +license, especially commercial redistribution. + +START: FULL LICENSE + +THE FULL PROJECT GUTENBERG LICENSE +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg-tm mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase "Project +Gutenberg"), you agree to comply with all the terms of the Full +Project Gutenberg-tm License available with this file or online at +www.gutenberg.org/license. + +Section 1. General Terms of Use and Redistributing Project +Gutenberg-tm electronic works + +1.A. By reading or using any part of this Project Gutenberg-tm +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or +destroy all copies of Project Gutenberg-tm electronic works in your +possession. If you paid a fee for obtaining a copy of or access to a +Project Gutenberg-tm electronic work and you do not agree to be bound +by the terms of this agreement, you may obtain a refund from the +person or entity to whom you paid the fee as set forth in paragraph +1.E.8. + +1.B. "Project Gutenberg" is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg-tm electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg-tm electronic works if you follow the terms of this +agreement and help preserve free future access to Project Gutenberg-tm +electronic works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation ("the +Foundation" or PGLAF), owns a compilation copyright in the collection +of Project Gutenberg-tm electronic works. Nearly all the individual +works in the collection are in the public domain in the United +States. If an individual work is unprotected by copyright law in the +United States and you are located in the United States, we do not +claim a right to prevent you from copying, distributing, performing, +displaying or creating derivative works based on the work as long as +all references to Project Gutenberg are removed. Of course, we hope +that you will support the Project Gutenberg-tm mission of promoting +free access to electronic works by freely sharing Project Gutenberg-tm +works in compliance with the terms of this agreement for keeping the +Project Gutenberg-tm name associated with the work. You can easily +comply with the terms of this agreement by keeping this work in the +same format with its attached full Project Gutenberg-tm License when +you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are +in a constant state of change. If you are outside the United States, +check the laws of your country in addition to the terms of this +agreement before downloading, copying, displaying, performing, +distributing or creating derivative works based on this work or any +other Project Gutenberg-tm work. The Foundation makes no +representations concerning the copyright status of any work in any +country other than the United States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other +immediate access to, the full Project Gutenberg-tm License must appear +prominently whenever any copy of a Project Gutenberg-tm work (any work +on which the phrase "Project Gutenberg" appears, or with which the +phrase "Project Gutenberg" is associated) is accessed, displayed, +performed, viewed, copied or distributed: + + This eBook is for the use of anyone anywhere in the United States and + most other parts of the world at no cost and with almost no + restrictions whatsoever. You may copy it, give it away or re-use it + under the terms of the Project Gutenberg License included with this + eBook or online at www.gutenberg.org. If you are not located in the + United States, you will have to check the laws of the country where + you are located before using this eBook. + +1.E.2. If an individual Project Gutenberg-tm electronic work is +derived from texts not protected by U.S. copyright law (does not +contain a notice indicating that it is posted with permission of the +copyright holder), the work can be copied and distributed to anyone in +the United States without paying any fees or charges. If you are +redistributing or providing access to a work with the phrase "Project +Gutenberg" associated with or appearing on the work, you must comply +either with the requirements of paragraphs 1.E.1 through 1.E.7 or +obtain permission for the use of the work and the Project Gutenberg-tm +trademark as set forth in paragraphs 1.E.8 or 1.E.9. + +1.E.3. If an individual Project Gutenberg-tm electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any +additional terms imposed by the copyright holder. Additional terms +will be linked to the Project Gutenberg-tm License for all works +posted with the permission of the copyright holder found at the +beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg-tm. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg-tm License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including +any word processing or hypertext form. However, if you provide access +to or distribute copies of a Project Gutenberg-tm work in a format +other than "Plain Vanilla ASCII" or other format used in the official +version posted on the official Project Gutenberg-tm website +(www.gutenberg.org), you must, at no additional cost, fee or expense +to the user, provide a copy, a means of exporting a copy, or a means +of obtaining a copy upon request, of the work in its original "Plain +Vanilla ASCII" or other form. Any alternate format must include the +full Project Gutenberg-tm License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg-tm works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg-tm electronic works +provided that: + +* You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg-tm works calculated using the method + you already use to calculate your applicable taxes. The fee is owed + to the owner of the Project Gutenberg-tm trademark, but he has + agreed to donate royalties under this paragraph to the Project + Gutenberg Literary Archive Foundation. Royalty payments must be paid + within 60 days following each date on which you prepare (or are + legally required to prepare) your periodic tax returns. Royalty + payments should be clearly marked as such and sent to the Project + Gutenberg Literary Archive Foundation at the address specified in + Section 4, "Information about donations to the Project Gutenberg + Literary Archive Foundation." + +* You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg-tm + License. You must require such a user to return or destroy all + copies of the works possessed in a physical medium and discontinue + all use of and all access to other copies of Project Gutenberg-tm + works. + +* You provide, in accordance with paragraph 1.F.3, a full refund of + any money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days of + receipt of the work. + +* You comply with all other terms of this agreement for free + distribution of Project Gutenberg-tm works. + +1.E.9. If you wish to charge a fee or distribute a Project +Gutenberg-tm electronic work or group of works on different terms than +are set forth in this agreement, you must obtain permission in writing +from the Project Gutenberg Literary Archive Foundation, the manager of +the Project Gutenberg-tm trademark. Contact the Foundation as set +forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +works not protected by U.S. copyright law in creating the Project +Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm +electronic works, and the medium on which they may be stored, may +contain "Defects," such as, but not limited to, incomplete, inaccurate +or corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged disk or +other medium, a computer virus, or computer codes that damage or +cannot be read by your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right +of Replacement or Refund" described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg-tm trademark, and any other party distributing a Project +Gutenberg-tm electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium +with your written explanation. The person or entity that provided you +with the defective work may elect to provide a replacement copy in +lieu of a refund. If you received the work electronically, the person +or entity providing it to you may choose to give you a second +opportunity to receive the work electronically in lieu of a refund. If +the second copy is also defective, you may demand a refund in writing +without further opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you 'AS-IS', WITH NO +OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of +damages. If any disclaimer or limitation set forth in this agreement +violates the law of the state applicable to this agreement, the +agreement shall be interpreted to make the maximum disclaimer or +limitation permitted by the applicable state law. The invalidity or +unenforceability of any provision of this agreement shall not void the +remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg-tm electronic works in +accordance with this agreement, and any volunteers associated with the +production, promotion and distribution of Project Gutenberg-tm +electronic works, harmless from all liability, costs and expenses, +including legal fees, that arise directly or indirectly from any of +the following which you do or cause to occur: (a) distribution of this +or any Project Gutenberg-tm work, (b) alteration, modification, or +additions or deletions to any Project Gutenberg-tm work, and (c) any +Defect you cause. + +Section 2. Information about the Mission of Project Gutenberg-tm + +Project Gutenberg-tm is synonymous with the free distribution of +electronic works in formats readable by the widest variety of +computers including obsolete, old, middle-aged and new computers. It +exists because of the efforts of hundreds of volunteers and donations +from people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need are critical to reaching Project Gutenberg-tm's +goals and ensuring that the Project Gutenberg-tm collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg-tm and future +generations. To learn more about the Project Gutenberg Literary +Archive Foundation and how your efforts and donations can help, see +Sections 3 and 4 and the Foundation information page at +www.gutenberg.org + +Section 3. Information about the Project Gutenberg Literary +Archive Foundation + +The Project Gutenberg Literary Archive Foundation is a non-profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation's EIN or federal tax identification +number is 64-6221541. Contributions to the Project Gutenberg Literary +Archive Foundation are tax deductible to the full extent permitted by +U.S. federal laws and your state's laws. + +The Foundation's business office is located at 809 North 1500 West, +Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up +to date contact information can be found at the Foundation's website +and official page at www.gutenberg.org/contact + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg-tm depends upon and cannot survive without +widespread public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine-readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To SEND +DONATIONS or determine the status of compliance for any particular +state visit www.gutenberg.org/donate + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. To +donate, please visit: www.gutenberg.org/donate + +Section 5. General Information About Project Gutenberg-tm electronic works + +Professor Michael S. Hart was the originator of the Project +Gutenberg-tm concept of a library of electronic works that could be +freely shared with anyone. For forty years, he produced and +distributed Project Gutenberg-tm eBooks with only a loose network of +volunteer support. + +Project Gutenberg-tm eBooks are often created from several printed +editions, all of which are confirmed as not protected by copyright in +the U.S. unless a copyright notice is included. Thus, we do not +necessarily keep eBooks in compliance with any particular paper +edition. + +Most people start at our website which has the main PG search +facility: www.gutenberg.org + +This website includes information about Project Gutenberg-tm, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + + diff --git a/micropython/modules/badger2040/assets/badge_image.png b/micropython/modules/badger2040/assets/badge_image.png new file mode 100644 index 00000000..b5147dc7 Binary files /dev/null and b/micropython/modules/badger2040/assets/badge_image.png differ diff --git a/micropython/modules/badger2040/assets/badgerpunk.png b/micropython/modules/badger2040/assets/badgerpunk.png new file mode 100644 index 00000000..f7568a2e Binary files /dev/null and b/micropython/modules/badger2040/assets/badgerpunk.png differ diff --git a/micropython/badger2040_modules_py/boot.py b/micropython/modules/badger2040/assets/boot.py similarity index 100% rename from micropython/badger2040_modules_py/boot.py rename to micropython/modules/badger2040/assets/boot.py diff --git a/micropython/modules/badger2040/assets/launchericons.png b/micropython/modules/badger2040/assets/launchericons.png new file mode 100644 index 00000000..6b536423 Binary files /dev/null and b/micropython/modules/badger2040/assets/launchericons.png differ diff --git a/micropython/modules/badger2040/micropython-builtins.cmake b/micropython/modules/badger2040/micropython-builtins.cmake new file mode 100644 index 00000000..0473f27a --- /dev/null +++ b/micropython/modules/badger2040/micropython-builtins.cmake @@ -0,0 +1,53 @@ +function (convert_image TARGET IMAGE) + add_custom_command( + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/../modules/${IMAGE}.py + + COMMAND + cd ${CMAKE_CURRENT_LIST_DIR}/assets && python3 ../../../../examples/badger2040/image_converter/convert.py --out_dir ${CMAKE_CURRENT_BINARY_DIR}/../modules --py ${IMAGE}.png + + DEPENDS ${CMAKE_CURRENT_LIST_DIR}/assets/${IMAGE}.png + ) + target_sources(${TARGET} INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/../modules/${IMAGE}.py) +endfunction() + +function (convert_raw TARGET SRC DST) + add_custom_command( + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/../modules/${DST}.py + + COMMAND + cd ${CMAKE_CURRENT_LIST_DIR}/assets && python3 ../../../../examples/badger2040/image_converter/data_to_py.py ${CMAKE_CURRENT_LIST_DIR}/assets/${SRC} ${CMAKE_CURRENT_BINARY_DIR}/../modules/${DST}.py + + DEPENDS ${CMAKE_CURRENT_LIST_DIR}/assets/${SRC} + ) + target_sources(${TARGET} INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/../modules/${DST}.py) +endfunction() + +function (copy_module TARGET SRC DST) + add_custom_command( + OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/../modules/${DST}.py + + COMMAND + cp ${SRC} ${CMAKE_CURRENT_BINARY_DIR}/../modules/${DST}.py + + DEPENDS ${src} + ) + + target_sources(${TARGET} INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/../modules/${DST}.py) +endfunction() + +convert_image(usermod_badger2040 badge_image) +convert_image(usermod_badger2040 badgerpunk) +convert_image(usermod_badger2040 launchericons) + +convert_raw(usermod_badger2040 289-0-wind-in-the-willows-abridged.txt witw) + +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/assets/boot.py boot) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/launcher.py _launcher) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/clock.py _clock) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/fonts.py _fonts) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/ebook.py _ebook) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/image.py _image) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/list.py _list) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/badge.py _badge) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/help.py _help) +copy_module(usermod_badger2040 ${CMAKE_CURRENT_LIST_DIR}/../../examples/badger2040/info.py _info) \ No newline at end of file