diff --git a/Lab1/clean.py b/Lab1/clean.py index a64b594..44cb92a 100644 --- a/Lab1/clean.py +++ b/Lab1/clean.py @@ -1,6 +1,6 @@ import pandas import regex as re -import argparse, sys +import argparse parser=argparse.ArgumentParser() parser.add_argument("--filepath",) @@ -19,15 +19,15 @@ def filter_line(line): return line is not None and len(line) > 30 and is_letter_sentence(line) and is_asci(line) def clean_with_regex(text): - text = str(text).encode("ascii", "ignore").decode("utf-8") - regex_pattern = "(?<=..\.)(\s+)(?=\(\d+\))|(?<=..\.)(\s+)(?=\d\.)|(?<=..\.)(\s+)(?=Article \d+)" + # text = str(text).encode("ascii", "ignore").decode("utf-8") + regex_pattern = r"(?<=..\.)(\s+)(?=\(\d+\))|(?<=..\.)(\s+)(?=\d\.)|(?<=..\.)(\s+)(?=Article \d+)" try: out = re.split(regex_pattern, text) except TypeError as e: return [] out = list(filter(lambda item: filter_line(item), out)) - out = list(map(lambda item: re.sub("(?<=\d)(\(\d+\))(?=\s+)|(\(\d+\)\s+)|(\d+\.)+\s", "", item), out)) - out = list(map(lambda item: re.sub("[^\w\d\s\\\)\(\/-]", "", item), out)) + out = list(map(lambda item: re.sub(r"(?<=\d)(\(\d+\))(?=\s+)|(\(\d+\)\s+)|(\d+\.)+\s", " ", item), out)) + out = list(map(lambda item: re.sub(r"[^\w\d\s\\\)\(\/-]|[^\x00-\x7F]|ex\d+", " ", item), out)) if out: out.pop(len(out)-1) return out diff --git a/Lab2/README.md b/Lab2/README.md index 5c72445..3ce67c4 100644 --- a/Lab2/README.md +++ b/Lab2/README.md @@ -1,5 +1,11 @@ # Statystyki +## Uruchomienie skryptu + +Należy uruchomić skrypt pythonowy statistics.py. Wynikiem działania programu są utworzone zdjęcia w folderze /images. + +```python statistics.py --filePath {sciezka_do_pliku}``` + ## Statystyki podstawowe ### 10 nadłuższych słów diff --git a/Lab2/images/pt-pronouns.png b/Lab2/images/pt-pronouns.png index b24e0c6..80591df 100644 Binary files a/Lab2/images/pt-pronouns.png and b/Lab2/images/pt-pronouns.png differ diff --git a/Lab2/images/pt-years.png b/Lab2/images/pt-years.png index 3be2613..600dca8 100644 Binary files a/Lab2/images/pt-years.png and b/Lab2/images/pt-years.png differ diff --git a/Lab2/images/zipf-law-3grams.png b/Lab2/images/zipf-law-3grams.png index 34eb76d..c260fd8 100644 Binary files a/Lab2/images/zipf-law-3grams.png and b/Lab2/images/zipf-law-3grams.png differ diff --git a/Lab2/images/zipf-law-words.png b/Lab2/images/zipf-law-words.png index f52e59f..b06818e 100644 Binary files a/Lab2/images/zipf-law-words.png and b/Lab2/images/zipf-law-words.png differ diff --git a/Lab2/statistics.py b/Lab2/statistics.py index 06be2c6..98cd836 100644 --- a/Lab2/statistics.py +++ b/Lab2/statistics.py @@ -3,14 +3,22 @@ from collections import Counter from collections import OrderedDict import regex as re from math import log +import argparse +import os -file_path = "Lab1/out-merged.txt" +parser=argparse.ArgumentParser() +parser.add_argument("--filepath") +args=parser.parse_args() + +FILE_PATH = "Lab1/out-merged.txt" if args.filepath is None else args.filepath +IMAGES_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "images") file_content = None -with open(file_path, 'r') as file: - file_content = file.read() +with open(FILE_PATH, 'r') as file: + file_content = file.read() + file.close() -# file_content = file_content[:100] +# file_content = file_content[:10000000] def get_characters(t): yield from t @@ -36,9 +44,9 @@ def rang_freq_with_labels(name, g, top=None): plt.ylabel('liczba wystąpień') plt.bar(freq.keys(), freq.values()) - fname = f'Lab2/images/{name}.png' + fname = f'/{name}.png' - plt.savefig(fname) + plt.savefig(IMAGES_PATH + fname) return fname @@ -48,9 +56,9 @@ def log_rang_log_freq(name, g): plt.figure().clear() plt.plot([log(x) for x in range(1, len(freq.values())+1)], [log(y) for y in freq.values()]) - fname = f'Lab2/images/{name}.png' + fname = f'/{name}.png' - plt.savefig(fname) + plt.savefig(IMAGES_PATH + fname) return fname @@ -67,15 +75,15 @@ def get_ngrams(t, size): for m in ngrams(word, size): yield m -def get_w_freq_by_w_len(word_len): +def get_w_freq_by_w_len(freq, word_len): for word, count in freq.items(): if len(word) == word_len: yield (count, word) -def get_average_freq_by_w_len(word_lenghts): +def get_average_freq_by_w_len(freq, word_lenghts): results = dict() for l in word_lenghts: - word_freq = list(get_w_freq_by_w_len(l)) + word_freq = list(get_w_freq_by_w_len(freq, l)) if len(word_freq) == 0: continue average = sum([w[0] for w in word_freq]) / len(word_freq) @@ -83,20 +91,20 @@ def get_average_freq_by_w_len(word_lenghts): return results -def get_low_high_freq_by_w_len(word_lenghts): +def get_low_high_freq_by_w_len(freq, word_lenghts, average_freq): """ Returns top 5 most frequent and non frequent words for each word length + average frequency. """ results = [] for l in word_lenghts: - word_freq = list(get_w_freq_by_w_len(l)) + word_freq = list(get_w_freq_by_w_len(freq, l)) word_freq.sort() word_freq = list(filter(lambda t: re.findall("\d",str(t[1])) == [] and t[0] > 30, word_freq)) word_stats = { 'word_len': l, 'average_freq': average_freq[l], - 'low_freq': word_freq[:10], - 'high_freq': word_freq[-10:] + 'low_freq': word_freq[:5], + 'high_freq': word_freq[-5:] } results.append(word_stats) return results @@ -111,7 +119,7 @@ def get_pronouns_stats(freqs): plt.figure(figsize=(12, 3)) plt.ylabel('liczba wystąpień') plt.bar(x, y) - plt.savefig("Lab2/images/pt-pronouns.png") + plt.savefig(IMAGES_PATH + "/pt-pronouns.png") return pronoun_words_freq @@ -123,31 +131,48 @@ def get_years_stats(freqs): plt.figure(figsize=(12, 3)) plt.ylabel('liczba wystąpień') plt.bar(x, y) - plt.savefig("Lab2/images/pt-years.png") + plt.savefig(IMAGES_PATH + "/pt-years.png") return years_word_freq +def get_longest_words(top): + all_words = list(get_words(file_content)) + deduplicated_word_listr = [*set(all_words)] + deduplicated_word_listr.sort(key=len) + deduplicated_word_listr.reverse() + return deduplicated_word_listr[:top] + print("Generating statistics...") +# 10 longest words +print("Calculating 10 longest words...") +print(get_longest_words(10)) + # 10 most frequent words in the text -rang_freq_with_labels('most-freq-words-20', get_words(file_content), top=20) +print("Calculating 10 most frequent words in the text...") +rang_freq_with_labels('most-freq-words-10', get_words(file_content), top=10) # Zipf's law +print("Calculating Zipf's law...") log_rang_log_freq('zipf-law-words', get_words(file_content)) # Zipf's law for 3-grams +print("Calculating Zipf's law for 3-grams...") log_rang_log_freq('zipf-law-3grams', get_ngrams(file_content, 3)) # Words breaking the Zipf's law +print("Calculating words breaking the Zipf's law...") freq = freq_list(get_words(file_content)) lenghts = [*set(len(f[0]) for f in freq.items())] -average_freq = get_average_freq_by_w_len(lenghts) -get_low_high_freq_by_w_len(lenghts) +average_freq = get_average_freq_by_w_len(freq, lenghts) +get_low_high_freq_by_w_len(freq, lenghts, average_freq) # Frequency of pronouns +print("Calculating frequency of pronouns...") get_pronouns_stats(freq) -print("Done") - # Number of years in words -get_years_stats(freq) \ No newline at end of file +print("Calculating number of years in words...") +get_years_stats(freq) + +print("Done") \ No newline at end of file diff --git a/Lab3/DrzewoHuffmana.png b/Lab3/DrzewoHuffmana.png new file mode 100644 index 0000000..bb75f63 Binary files /dev/null and b/Lab3/DrzewoHuffmana.png differ diff --git a/Lab3/lab3_solution.ipynb b/Lab3/lab3_solution.ipynb new file mode 100644 index 0000000..fe909f8 --- /dev/null +++ b/Lab3/lab3_solution.ipynb @@ -0,0 +1,409 @@ +{ + "cells": [ + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Zadanie 1" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Generowanie plików" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import string\n", + "\n", + "# Set the length of the string to generate\n", + "string_length = 1000000\n", + "\n", + "# Define the character set to choose from\n", + "character_set = np.array(list(string.ascii_letters + string.digits))" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [], + "source": [ + "with open(\"../Lab1/out-merged.txt\", 'r') as file:\n", + " file_content = file.read()\n", + " first_chars = file_content[:string_length]\n", + "\n", + " with open(\"./own_corpus.txt\", 'w') as f:\n", + " f.write(first_chars)" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "metadata": {}, + "outputs": [], + "source": [ + "# Generate the random string using uniform distribution\n", + "random_indices = np.random.uniform(low=0, high=len(character_set), size=string_length).astype(int)\n", + "random_string = ''.join(character_set[random_indices])\n", + "\n", + "with open('random_text_uniform_distribution.txt', 'w') as f:\n", + " f.write(random_string)" + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "metadata": {}, + "outputs": [], + "source": [ + "# Generate the random string using geometric distribution\n", + "p = 0.3\n", + "random_integers = np.random.geometric(p, 100000)\n", + "random_indices = [i - 1 for i in random_integers]\n", + "random_characters = [character_set[i % len(character_set)] for i in random_indices]\n", + "random_string = ''.join(random_characters)\n", + "\n", + "\n", + "with open('random_text_geometric_distribution.txt', 'w') as f:\n", + " f.write(random_string)" + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "metadata": {}, + "outputs": [], + "source": [ + "# Generate the random string using uniform two-point distribution with p=0.5\n", + "character_set = np.array(list('01'))\n", + "random_indices = np.random.choice([0, len(character_set)-1], size=string_length, p=[0.5, 0.5])\n", + "random_string = ''.join(character_set[random_indices])\n", + "\n", + "with open('random_text_uniform_two_point_05_distribution.txt', 'w') as f:\n", + " f.write(random_string)" + ] + }, + { + "cell_type": "code", + "execution_count": 105, + "metadata": {}, + "outputs": [], + "source": [ + "# Generate the random string using uniform two-point distribution with p=0.9\n", + "character_set = np.array(list('01'))\n", + "random_indices = np.random.choice([0, len(character_set)-1], size=string_length, p=[0.1, 0.9])\n", + "random_string = ''.join(character_set[random_indices])\n", + "\n", + "with open('random_text_uniform_two_point_09_distribution.txt', 'w') as f:\n", + " f.write(random_string)" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Compress files to .tar" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Compression complete. The compressed archive is saved as own_corpus.tar.gz.\n", + "Compression ratio: 4.59738408845367\n", + "Compression complete. The compressed archive is saved as random_text_uniform_distribution.tar.gz.\n", + "Compression ratio: 1.3293011199361935\n", + "Compression complete. The compressed archive is saved as random_text_geometric_distribution.tar.gz.\n", + "Compression ratio: 2.2415996054784695\n", + "Compression complete. The compressed archive is saved as random_text_uniform_two_point_05_distribution.tar.gz.\n", + "Compression ratio: 6.6557955339611965\n", + "Compression complete. The compressed archive is saved as random_text_uniform_two_point_09_distribution.tar.gz.\n", + "Compression ratio: 12.250398137939483\n" + ] + } + ], + "source": [ + "import tarfile\n", + "import os\n", + "\n", + "def compress_file(file_name):\n", + " output_archive_name = file_name.replace('.txt', '.tar.gz')\n", + " with tarfile.open(output_archive_name, 'w:gz') as tar:\n", + " tar.add(file_name)\n", + "\n", + " print(f'Compression complete. The compressed archive is saved as {output_archive_name}.')\n", + " print(f'Compression ratio: {os.path.getsize(file_name) / os.path.getsize(output_archive_name)}')\n", + "\n", + "file_names = ['own_corpus.txt', 'random_text_uniform_distribution.txt', 'random_text_geometric_distribution.txt', 'random_text_uniform_two_point_05_distribution.txt', 'random_text_uniform_two_point_09_distribution.txt']\n", + "for file in file_names:\n", + " compress_file(file)" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Entropy for own_corpus.txt: 1.754256\n", + "Entropy for random_text_uniform_distribution.txt: 6.016072\n", + "Entropy for random_text_geometric_distribution.txt: 3.54952\n", + "Entropy for random_text_uniform_two_point_05_distribution.txt: 1.272664\n", + "Entropy for random_text_uniform_two_point_09_distribution.txt: 0.761104\n" + ] + } + ], + "source": [ + "import zlib\n", + "\n", + "def entropy_by_compression(t):\n", + " compressed = zlib.compress(t.encode('utf-8'))\n", + " return 8 * len(compressed) / len(t)\n", + "\n", + "for file in file_names:\n", + " print(f\"Entropy for {file}: {entropy_by_compression(open(file, 'r').read())}\")" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Compare file sizes" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Size of own_corpus.txt: 1000000 bytes, 8000000 bits\n", + "Size of random_text_uniform_distribution.txt: 1000000 bytes, 8000000 bits\n", + "Size of random_text_geometric_distribution.txt: 100000 bytes, 800000 bits\n", + "Size of random_text_uniform_two_point_05_distribution.txt: 1000000 bytes, 8000000 bits\n", + "Size of random_text_uniform_two_point_09_distribution.txt: 1000000 bytes, 8000000 bits\n", + "********************************************************************************\n", + "Size of own_corpus.tar.gz: 217515 bytes, 1740120 bits\n", + "Size of random_text_uniform_distribution.tar.gz: 752275 bytes, 6018200 bits\n", + "Size of random_text_geometric_distribution.tar.gz: 44611 bytes, 356888 bits\n", + "Size of random_text_uniform_two_point_05_distribution.tar.gz: 150245 bytes, 1201960 bits\n", + "Size of random_text_uniform_two_point_09_distribution.tar.gz: 81630 bytes, 653040 bits\n", + "********************************************************************************\n", + "Size of own_corpus.txt + codetable: 544399 bytes, 548781 bits\n", + "Size of random_text_uniform_distribution.txt + codetable: 748749 bytes, 754867 bits\n", + "Size of random_text_geometric_distribution.txt + codetable: 37470 bytes, 40788 bits\n", + "Size of random_text_uniform_two_point_05_distribution.txt + codetable: 187473 bytes, 187753 bits\n", + "Size of random_text_uniform_two_point_09_distribution.txt + codetable: 137531 bytes, 137811 bits\n" + ] + } + ], + "source": [ + "# print raw text files sizes\n", + "for file in file_names:\n", + " print(f\"Size of {file}: {os.path.getsize(file)} bytes, {os.path.getsize(file)*8} bits\")\n", + "\n", + "print(\"*\" * 80)\n", + "\n", + "# print compressed text files sizes\n", + "for file in file_names:\n", + " file = file.replace('.txt', '.tar.gz')\n", + " print(f\"Size of {file}: {os.path.getsize(file)} bytes, {os.path.getsize(file)*8} bits\")\n", + "\n", + "print(\"*\" * 80)\n", + "\n", + "# print compressed with Huffman text files sizes\n", + "for file in file_names:\n", + " file1 = file.replace('.txt', '.bin')\n", + " file2 = file.replace('.txt', '_codetable.bin')\n", + " print(f\"Size of {file} + codetable: {os.path.getsize(file1) + os.path.getsize(file2)} bytes, {os.path.getsize(file1) + os.path.getsize(file2)*8} bits\")\n" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Generate Huffman code" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Calculating Huffman code for file: own_corpus.txt...\n", + "First 3: r e s\n", + "Binary: 0100 001 0001\n", + "Calculating Huffman code for file: random_text_uniform_distribution.txt...\n", + "First 3: H W 8\n", + "Binary: 111010 001011 110101\n", + "Calculating Huffman code for file: random_text_geometric_distribution.txt...\n", + "First 3: b a a\n", + "Binary: 01 11 11\n", + "Calculating Huffman code for file: random_text_uniform_two_point_05_distribution.txt...\n", + "First 3: 0 0 0\n", + "Binary: 01 01 01\n", + "Calculating Huffman code for file: random_text_uniform_two_point_09_distribution.txt...\n", + "First 3: 1 1 1\n", + "Binary: 1 1 1\n" + ] + } + ], + "source": [ + "from dahuffman import HuffmanCodec\n", + "\n", + "def encode_and_print(text):\n", + " codec = HuffmanCodec.from_data(text)\n", + " encoded = codec.encode(text)\n", + " table = codec.get_code_table()\n", + " table_str = str(table)\n", + "\n", + " first_3_letters = first_n_decoded_digits(encoded, codec, 3)\n", + " print(\"First 3:\", end=' ')\n", + " print(' '.join(first_3_letters))\n", + " print(\"Binary: \", end=' ')\n", + " print(' '.join(number_to_bin(table[letter][1], table[letter][0]) for letter in first_3_letters))\n", + " \n", + " return encoded, table_str\n", + "\n", + "def first_n_decoded_digits(encoded, codec, n):\n", + " decoded = codec.decode(encoded)\n", + " return decoded[:n]\n", + "\n", + "def save_to_bin(bytes, file_name):\n", + " with open(file_name, 'wb') as f:\n", + " f.write(bytes)\n", + "\n", + "def number_to_bin(number, nbits):\n", + " return bin(number)[2:].zfill(nbits)\n", + "\n", + "for file in file_names:\n", + " print(f\"Calculating Huffman code for file: {file}...\")\n", + " encoded, code_table = encode_and_print(open(file, 'r').read())\n", + " save_to_bin(encoded, file.replace('.txt', '.bin'))\n", + " save_to_bin(code_table.encode(), file.replace('.txt', '_codetable.bin'))\n", + "\n", + "# Nie do końca rozumiem jak mam zapisać ten codec." + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Zadanie 2" + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "metadata": {}, + "outputs": [], + "source": [ + "import regex as re\n", + "from collections import Counter\n", + "from math import log\n", + "\n", + "def get_words(t):\n", + " for m in re.finditer(r'[\\p{L}0-9\\*]+', t):\n", + " yield m.group(0)\n", + "\n", + "def unigram_entropy(t):\n", + " counter = Counter(t)\n", + " total = sum(counter.values())\n", + " return -sum((p := count / total) * log(p, 2) for count in counter.values())" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "9.27320212652544\n" + ] + } + ], + "source": [ + "file_content = \"\"\n", + "with open(\"own_corpus.txt\", 'r') as file:\n", + " file_content = file.read()\n", + "\n", + "words = list(get_words(file_content))\n", + "print(unigram_entropy(words))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Zadanie 3" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![title](DrzewoHuffmana.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "ai_env", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.15" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Lab3/own_corpus.bin b/Lab3/own_corpus.bin new file mode 100644 index 0000000..bb0ad33 Binary files /dev/null and b/Lab3/own_corpus.bin differ diff --git a/Lab3/own_corpus.tar.gz b/Lab3/own_corpus.tar.gz new file mode 100644 index 0000000..9b997af Binary files /dev/null and b/Lab3/own_corpus.tar.gz differ diff --git a/Lab3/own_corpus.txt b/Lab3/own_corpus.txt new file mode 100644 index 0000000..e48ef09 --- /dev/null +++ b/Lab3/own_corpus.txt @@ -0,0 +1,1978 @@ +restrictions on the use of beam trawls within 12 nautical miles of the coast of the united kingdom vessels shall be prohibited from using any beam trawl inside the areas within 12 nautical miles of the coast of the united kingdom measured from the baselines of the territorial waters +article 21 nature conservation measures a joint recommendation submitted for the purpose of adopting the measures referred to in article 15(2) in relation to the protection of sensitive species and habitats may in particular (a) develop lists of sensitive species and habitats most at risk from fishing activities within the relevant region based on the best available scientific advice (b) specify the use of additional or alternative measures to those referred to in annex xiii to minimise the incidental catches of the species referred to in article 11 (c) provide information on the effectiveness of existing mitigation measures and monitoring arrangements (d) specify measures to minimise the impacts of fishing gear on sensitive habitats (e) specify restrictions on the operation of certain gear or introduce a total prohibition on the use of certain fishing gear within an area where such gear represent a threat to the conservation status of species in that area as referred to in articles 10 and 11 or other sensitive habitats +by way of derogation from article 15 of regulation (eu) no 1380/2013 the minimum conservation reference sizes of sardine anchovy herring horse mackerel and mackerel shall not apply within a limit of 10 by live weight of the total catches retained on board of each of those species +council regulation (ec) no 1967/2006 of 21 december 2006 concerning management measures for the sustainable exploitation of fishery resources in the mediterranean sea amending regulation (eec) no 2847/93 and repealing regulation (ec) no 1626/94 (oj l 409 30 12 2006 p 11) +article 23 pilot projects on full documentation of catches and discards the commission is empowered to adopt delegated acts in accordance with article 29 of this regulation and article 18 of regulation (eu) no 1380/2013 supplementing this regulation by defining pilot projects that develop a system of full documentation of catches and discards based on measurable objectives and targets for the purpose of a results-based management of fisheries +restrictions on the use of beam trawls within 12 nautical miles of the coast of the united kingdom and ireland the use of any beam trawl of mesh size less than 100 mm shall be prohibited in ices division 5b and ices sub-area 6 north of latitude 56 n +this provision is without prejudice to article 2 of regulation (ec) no 494/2002 +article 20 innovative fishing gear a joint recommendation submitted for the purpose of adopting the measures referred to in article 15 in relation to the use of innovative fishing gear within a specific sea basin shall contain an assessment of the likely impacts of using such gear on the targeted species and on sensitive species and habitats the member states concerned shall collect the appropriate data necessary for such assessment +the following vessels are permitted to fish in the area referred to in point 2 1 (a) vessels whose engine power does not exceed 221 kw using bottom trawls or danish seines (b) paired vessels whose combined engine power does not exceed 221 kw at any time using bottom pair trawls (c) vessels whose engine power exceeds 221 kw shall be permitted to use bottom trawls or danish seine and paired vessels whose combined engine power exceeds 221 kw shall be permitted to use bottom pair trawls provided that such vessels do not engage in directed fishing for plaice and sole and comply with the relevant mesh size rules contained in part b of this annex +the application of the conditions in relation to the mesh size specifications set out in article 27 and in part b of annexes v to xi shall not lead to a deterioration of selectivity standards in particular in terms of an increase in the catches of juveniles existing on 14 august 2019 and shall aim at achieving the objectives and targets set out in articles 3 and 4 +this article shall not apply in the baltic sea +the retention on board of salmon (salmo salar) or sea trout (salmo trutta) caught with trap-nets shall be permitted +in union waters in ices division 4a in ices divisions 4b and 4c a minimum conservation reference size of 130 mm shall apply +it shall be prohibited to deploy any bottom set gillnet entangling net and trammel net at any position where the charted depth is greater than 200 m +ices (international council for the exploration of the sea) divisions are as defined in regulation (ec) no 218/2009 of the european parliament and of the council of 11 march 2009 on the submission of nominal catch statistics by member states fishing in the north-east atlantic (oj l 87 31 3 2009 p 70) +the catch may consist of up to 45 of herring by live weight the use of gillnets entangling nets or trammel nets of more than 9 km for vessels with an overall length of less than 12 m and 21 km for vessels with an overall length of more than 12 m shall be prohibited the maximum immersion time for such gear shall be 48 hours except when fishing under ice cover annex ix mediterranean sea part a minimum conservation reference sizes species whole area bass (dicentrarchus labrax) 25 cm annular sea bream (diplodus annularis) 12 cm sharpsnout sea-bream (diplodus puntazzo) 18 cm white sea-bream (diplodus sargus) 23 cm two-banded sea-bream (diplodus vulgaris) 18 cm european anchovy (engraulis encrasicolus) 9 cm groupers (epinephelus spp ) 45 cm stripped sea-bream (lithognathus mormyrus) 20 cm hake (merluccius merluccius) 20 cm red mullets (mullus spp ) 11 cm spanish sea-bream (pagellus acarne) 17 cm red sea-bream (pagellus bogaraveo) 33 cm common pandora (pagellus erythrinus) 15 cm common sea bream (pagrus pagrus) 18 cm wreckfish (polyprion americanus) 45 cm european sardine (sardina pilchardus) 11 cm (2) mackerel (scomber spp ) 18 cm common sole (solea vulgaris) 20 cm gilt-head sea-bream (sparus aurata) 20 cm horse mackerel (trachurus spp ) 15 cm norway lobster (nephrops norvegicus) 20 mm cl 70 mm tl lobster (homarus gammarus) 105 mm cl 300 mm tl crawfish (palinuridae) 90 mm cl deepwater rose shrimp (parapenaeus longirostris) 20 mm cl scallop (pecten jacobeus) 10 cm carpet clams (venerupis spp ) 25 mm venus shells (venus spp ) 25 mm part b mesh sizes baseline mesh sizes for towed gear the following mesh sizes shall apply in the mediterranean sea mesh size geographical areas conditions at least 40 mm square mesh codend whole area a diamond mesh codend of 50 mm2 may be used as an alternative to the 40 mm square mesh cod end at the duly justified request of the vessel owner at least 20 mm whole area directed fishing for sardine and anchovy baseline mesh size for surrounding nets mesh size geographical areas conditions at least 14 mm whole area none baseline mesh sizes for static nets the following mesh sizes for bottom set gillnets shall apply in the mediterranean sea mesh size geographical areas conditions at least 16 mm whole area none existing derogations from the provisions set out in points 1 2 and 3 for boat seines and shore seines which are affected by a management plan as referred to in article 19 of regulation (ec) no 1967/2006 and issued within the framework of article 9 of that regulation shall continue to apply unless otherwise determined through article 15 of this regulation part c restrictions on the use of fishing gear restrictions on the use of dredges the maximum breadth of dredges shall be 3 m except for dredges used for directed fishing of sponges +cl carapace length tl total length +the commission may adopt implementing acts establishing detailed rules for the specification of codends and the devices referred to in paragraph those implementing acts shall be based on the best available scientific and technical advice and may define (a) restrictions on twine thickness (b) restrictions on the circumference of codends (c) restrictions on the use of netting materials (d) structure and attachment of codends (e) permitted devices to reduce wear and tear and (f) permitted devices to limit the escape of catches those implementing acts shall be adopted in accordance with the examination procedure referred to in article 30(2) +certain destructive fishing gear or methods which use explosives poison stupefying substances electric current pneumatic hammers or other percussive instruments towed devices and grabs for harvesting red coral or other type of corals and coral-like species and certain spear-guns should be prohibited it should not be allowed to sell display or offer for sale any marine species caught using such gear or methods where they are prohibited under this regulation +the area of prohibition during the closed season shall be beyond four nautical miles measured from the baselines +position of the european parliament of 16 april 2019 (not yet published in the official journal) and decision of the council of 13 june 2019 +vessels permitted to fish in the area referred to in point 2 1 shall be included in a list to be provided to the commission by each member state the total engine power of the vessels referred to in point 2 2(a) within the list shall not exceed the total engine power in evidence for each member state at 1 january the permitted fishing vessels shall hold a fishing authorisation in accordance with article 7 of regulation (ec) no 1224/2009 +there is a need to develop a framework for the regulation of technical measures that framework should on the one hand establish general rules which are to apply across all union waters and on the other hand provide for the adoption of technical measures that take account of the regional specificities of fisheries through the regionalisation process introduced by regulation (eu) no 1380/2013 +it shall be prohibited to have on board or set more than 2 500 m of combined gillnets and trammel nets and 6 000 m of any gillnet entangling net or trammel net +the size of a spinous spider crab (maja squinado) shall be measured as shown in figure 6 as the length of the carapace along the midline from the edge of the carapace between the rostrums to the posterior edge of the carapace +certain provisions on technical measures adopted by neafc should be included in this regulation +article 9 general restrictions on the use of static nets and driftnets it shall be prohibited to have on board or deploy one or more driftnets the individual or total length of which is more than 2 5 km +directive 2009/147/ec of the european parliament and of the council of 30 november 2009 on the conservation of wild birds (oj l 20 26 1 2010 p 7) +article 4 targets technical measures shall aim to ensure that (a) catches of marine species below the minimum conservation reference size are reduced as far as possible in accordance with article 2 of regulation (eu) no 1380/ (b) incidental catches of marine mammals marine reptiles seabirds and other non-commercially exploited species do not exceed levels provided for in union legislation and international agreements that are binding on the union (c) the environmental impacts of fishing activities on seabed habitats are in line with point (j) of article 2 of regulation (eu) no 1380/2013 +where the direct restocking or transplantation is carried out in the waters of another member state or member states the commission and all those member states shall be informed at least 20 calendar days in advance of the intention to conduct such fishing operations chapter v conditions in relation to mesh size specifications article 27 conditions in relation to mesh size specifications the catch percentages referred to in the annexes v to viii shall mean the maximum percentage of species allowed so as to qualify for the specific mesh sizes set out in those annexes such percentages shall be without prejudice to the obligation to land catches in article 15 of regulation (eu) no 1380/2013 +without prejudice to the landing obligation and notwithstanding point 1 1 vessels may use smaller mesh sizes as listed in the following table for the baltic sea provided that (i) the associated conditions set out in that table are complied with and by-catches of cod do not exceed 10 of the total catch in live weight of all marine biological resources landed after each fishing trip or (ii) other selectivity modifications are used which have been assessed by stecf upon request of one or more member states and approved by the commission those selectivity modifications shall result in the same or better selectivity characteristics for cod as that of 120 mm t90 or of 105 mm fitted with a 120 mm bacoma exit window respectively mesh size geographical areas conditions at least 90 mm in sub-divisions 22 and 23 directed fishing for flatfish directed fishing for whiting at least 32 mm in sub-divisions 22-27 directed fishing for herring mackerel horse mackerel and blue whiting at least 16 mm in sub-divisions 22-27 directed fishing for sprat at least 16 mm whole area directed fishing for species other than flatfish and which are not subject to catch limits and not covered elsewhere in the table at least 16 mm in sub-divisions 28-32 directed fishing for small pelagic species which are not covered elsewhere in the table less than 16 mm whole area directed fishing for sandeel baseline mesh sizes for static nets without prejudice to the landing obligation vessels shall use a mesh size of at least 110 mm or 157 mm when fishing for salmon +an engine of any individual vessel included in the list referred to in point 3 2 may be replaced provided that (a) the replacement of an engine does not lead to the vessels engine power exceeding 221 kw at any time and (b) the power of the replacement engine is not such that replacement leads to an increase in the total engine power as indicated in point 3 3(a) for the member state concerned +council regulation (ec) no 2549/2000 of 17 november 2000 establishing additional technical measures for the recovery of the stock of cod in the irish sea (ices division viia) (oj l 292 21 11 2000 p 5) +it shall be prohibited to use any gillnet entangling net or trammel net constructed with a twine thickness greater than 0 5 mm +when developing joint recommendations in relation to the protection of sensitive species and habitats regional groups of member states should be allowed to develop additional mitigation measures to reduce the impacts of fishing on such species and habitats where scientific evidence shows that there is a serious threat to the conservation status of sensitive species and habitats member states should introduce additional restrictions on the construction and operation of certain fishing gear or even the introduction of a total prohibition on their use in a given area in particular such restrictions could be applied to the use of driftnets which in certain areas has resulted in significant catches of sensitive species +in ices division 7a north of 52 30 n and ices division 7d a minimum conservation reference size of 110 mm shall apply +a mesh size of less than 40 mm may be used for sardines annex viii baltic sea part a minimum conservation reference sizes species geographical areas minimum conservation reference size cod (gadus morhua) sub-divisions 22-32 35cm plaice (pleuronectes platessa) sub-divisions 22-32 25 cm salmon (salmo salar) sub-divisions 22-30 and 32 60 cm sub-division 31 50 cm flounder (platichthys flesus) sub-divisions 22-25 23 cm sub-divisions 26 27 and 28 21 cm sub-divisions 29-32 south of 59 18 cm turbot (psetta maxima) sub-divisions 22-32 30 cm brill (scophthalmus rhombus) sub-divisions 22-32 30 cm eel (anguilla anguilla) sub-divisions 22-32 35 cm sea trout (salmo trutta) sub-divisions 22-25 and 29-32 40 cm sub-divisions 26 27 and 28 50 cm part b mesh sizes baseline mesh sizes for towed gear without prejudice to the landing obligation vessels shall use a mesh size of at least 120 mm constructed from t90 or at least 105 mm fitted with a bacoma exit window of 120 mm +article 40 entry into force this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 june for the european parliament the president a tajani for the council the president g ciamba oj c 389 21 10 2016 p 67 +the implementing acts referred to in paragraph 1 shall be adopted in accordance with article 30(2) chapter iv scientific research direct restocking and transplantation article 25 scientific research the technical measures provided for in this regulation shall not apply to fishing operations conducted for the purpose of scientific investigations subject to the following conditions (a) the fishing operations are to be carried out with the permission and under the authority of the flag member state (b) the commission and the member state in the waters under the sovereignty or jurisdiction of which the fishing operations take place (the coastal member state) are to be informed at least two weeks in advance of the intention to conduct such fishing operations detailing the vessels involved and the scientific investigations to be undertaken (c) the vessel or vessels conducting the fishing operations are to have a valid fishing authorisation in accordance with article 7 of regulation (ec) no 1224/2009 (d) if requested by the coastal member state to the flag member state the master of the vessel shall be required to take on board an observer from the coastal member state during the fishing operations unless this is not possible for security reasons (e) fishing operations conducted by commercial vessels for the purpose of scientific investigation shall be limited in time when the fishing operations conducted by commercial vessels for a specific research involve more than six commercial vessels the commission shall be informed by the flag member state at least three months in advance and shall seek where appropriate the advice of stecf to confirm that this level of participation is justified on scientific grounds if the level of participation is not considered justified according to the advice of stecf the concerned member state shall amend the conditions of the scientific research accordingly (f) in the case of electric pulse trawl vessels conducting scientific research must follow a specific scientific protocol as part of a scientific research plan that has been reviewed or validated by ices or stecf as well as a system for monitoring control and evaluation +where the habitats referred to in paragraph 1 or other sensitive habitats including vulnerable marine ecosystems occur in waters under the sovereignty or jurisdiction of a member state that member state may establish closed areas or other conservation measures to protect such habitats pursuant to the procedure laid down in article 11 of regulation (eu) no 1380/ such measures shall be compatible with the objectives of article 2 of regulation (eu) no 1380/2013 and be at least as stringent as measures under union law +the size of a whelk (buccinum spp ) shall be measured as shown in figure 8 as the length of the shell the size of swordfish (xiphias gladius) shall be measured as shown in figure 9 as the lower jaw to fork length (ljfl) figure 1 fish species figure 2 norway lobster (nephrops norvegicus) figure 3 lobster (hommarus gammarus) figure 4 crawfish (palinurus spp ) figure 5 bivalve molluscs figure 6 spinous spider crabs (maja squinado) figure 7 edible crab (cancer pagurus) figure 8 whelk (buccinum spp ) figure 9 swordfish (xiphias gladius) annex v north sea part a minimum conservation reference sizes species north sea cod (gadus morhua) 35 cm haddock (melanogrammus aeglefinus) 30 cm saithe (pollachius virens) 35 cm pollack (pollachius pollachius) 30 cm hake (merluccius merluccius) 27 cm megrim (lepidorhombus spp ) 20 cm sole (solea spp ) 24 cm plaice (pleuronectes platessa) 27 cm whiting (merlangius merlangus) 27 cm ling (molva molva) 63 cm blue ling (molva dipterygia) 70 cm norway lobster (nephrops norvegicus) total length 85 mm carapace length 25 mm norway lobster tails 46 mm mackerel (scomber spp ) 30 cm herring (clupea harengus) 20 cm horse mackerel (trachurus spp ) 15 cm anchovy (engraulis encrasicolus) 12 cm or 90 individuals per kg bass (dicentrarchus labrax) 42 cm sardine (sardina pilchardus) 11 cm lobster (homarus gammarus) 87 mm (carapace length) spinous spider crab (maja squinado) 120 mm queen scallop (chalamys spp ) 40 mm grooved carpetshell (ruditapes decussatus) 40 mm carpetshell (venerupis pullastra) 38 mm short-necked clam (venerupis philippinarum) 35 mm clam (venus verrucosa) 40 mm hard clam (callista chione) 6 cm razor clam (ensis spp ) 10 cm surf clams (spisula solida) 25 mm donax clams (donax spp ) 25 mm bean solen (pharus legumen) 65 mm whelk (buccinum undatum ) 45 mm octopus (octopus vulgaris) 750 g crawfish (palinurus spp ) 95 mm (carapace length) deepwater rose shrimp (parapenaeus longirostirs) 22 mm (carapace length) edible crab (cancer pagurus) 140 mm scallop (pecten maximus) 100 mm cod (gadus morhua) 30 cm haddock (melanogrammus aeglefinus) 27 cm saithe (pollachius virens) 30 cm pollack (pollachius pollachius) hake (merluccius merluccius) 30 cm megrim (lepidorhombus spp ) 25 cm sole (solea spp ) 24 cm plaice (pleuronectes platessa) 27 cm whiting (merlangius merlangus) 23 cm ling (molva molva) blue ling (molva dypterygia) norway lobster (nephrops norvegicus) total length 105 mm norway lobster tails 59 mm carapace length 32 mm mackerel (scomber spp ) 20 cm herring (clupea harengus) 18 cm horse mackerel (trachurus spp ) 15 cm lobster (homarus gammarus) total length 220 mm carapace length 78 mm part b mesh sizes baseline mesh sizes for towed gear without prejudice to the landing obligation vessels shall use a mesh size of at least 120 mm or at least 90 mm in skagerrak and kattegat (6) +the commission is empowered to adopt delegated acts in accordance with article 29 supplementing this regulation by defining the technical specifications of a system for full documentation of catches and discards referred to in paragraph 1 of this article +directive 2008/56/ec of the european parliament and of the council of 17 june 2008 establishing a framework for community action in the field of marine environmental policy (marine strategy framework directive) (oj l 164 25 6 2008 p 19) +in addition to the species referred to in paragraph 1 it shall be prohibited for union vessels to fish for retain on board tranship land store sell display or offer for sale the species listed in annex i or species for which fishing is prohibited under other union legal acts +drawings related to the catch handling and discharge capabilities of pelagic vessels targeting mackerel herring and horse mackerel in the neafc convention area which are certified by the competent authorities of the flag member states as well as any modifications thereto shall be sent by the master of the vessel to the competent fisheries authorities of the flag member state the competent authorities of the flag member state of the vessels shall carry out periodic verifications of the accuracy of the drawings submitted copies shall be carried on board the vessel at all times +the size of a lobster (homarus gammarus) from skagerrak or kattegat shall be measured as shown in figure 3 either as the length of the carapace parallel to the midline from the back of either eye socket to the midpoint of the distal dorsal edge of the carapace or as the total length from the tip of the rostrum to the rear end of the telson not including the setae +by way of derogation from article 15 of regulation (eu) no 1380/2013 the minimum conservation reference sizes of sardine anchovy herring horse mackerel and mackerel shall not apply within a limit of 10 by live weight of the total catches retained on board of each of those species the percentage of sardine anchovy herring horse mackerel or mackerel below the minimum conservation reference size shall be calculated as the proportion by live weight of all marine organisms on board after sorting or on landing the percentage may be calculated on the basis of one or more representative samples the limit of 10 shall not be exceeded during transhipment landing transportation storage display or sale +the commission shall inform member states of the date on which the neafc secretariat notifies the neafc contracting parties that the total allowable catch (tac) has been fully utilised member states shall prohibit directed fishery for redfish by vessels flying their flag from that date +this article shall be without prejudice to regulation (ec) no 1224/2009 +measures for the redfish fishery in international waters of ices sub-areas 1 and 2 directed fishing for redfish in the international waters of ices sub-areas 1 and 2 shall only be permitted within the period from 1 july to 31 december each year by vessels which have previously been engaged in the redfish fishery in the neafc regulatory area +where the best available scientific advice recommends an amendment of the list of areas set out in annex ii the commission is empowered to adopt delegated acts in accordance with article 29 of this regulation and pursuant to the procedure laid down in article 11 and of regulation (eu) no 1380/2013 to amend annex ii accordingly when adopting such amendments the commission shall give particular attention to the mitigation of negative effects of the displacement of fishing activity to other sensitive areas +by 31 december 2020 and every third year thereafter the commission should report to the european parliament and to the council on the implementation of this regulation on the basis of information supplied by member states and the relevant advisory councils and following evaluation by stecf that report should assess the extent to which technical measures both at regional level and at union level have contributed to achieving the objectives and reaching the targets of this regulation +the extent to which progress was made towards those targets shall be reviewed as part of the reporting process set out in article 31 +to evaluate the effectiveness of technical measures targets relating to the levels of unwanted catches in particular catches of marine species below the minimum conservation reference size to the level of incidental catches of sensitive species and to the extent of seabed habitats adversely affected by fishing should be established those targets should reflect the objectives of the cfp union environmental legislation in particular directive 92/43/eec and directive 2000/60/ec of the european parliament and of the council and international best practice +the technical measures adopted pursuant to paragraph 2 of this article shall (a) aim at achieving the objectives and targets set out in articles 3 and 4 of this regulation (b) aim at achieving the objectives and comply with the conditions set out in other relevant union acts adopted in the area of the cfp in particular in the multiannual plans referred to in articles 9 and 10 of regulation (eu) no 1380/2013 (c) be guided by the principles of good governance set out in article 3 of regulation (eu) no 1380/2013 (d) as a minimum lead to such benefits for the conservation of marine biological resources that are at least equivalent in particular in terms of exploitation patterns and the level of protection provided for sensitive species and habitats to the measures referred to in paragraph the potential impact of fishing activities on the marine ecosystem shall also be taken into account +in either of the two areas referred to in point 2 1 if a vessel reaches the 6 tonnes of blue ling (a) it shall immediately cease fishing and exit the area in which it is present (b) it may not re-enter either of the areas until its catch has been landed (c) it may not return to the sea any quantity of blue ling +in the light of advice from stecf fishing with static nets in ices divisions 3a 6a 6b 7b 7c 7j and 7k and ices sub-areas 8 9 10 and 12 east of 27 w in waters with a charted depth of more than 200 m should continue to be prohibited in order to provide protection for sensitive deep-sea species subject to certain derogations +the creation of real-time closures in conjunction with moving-on provisions as an additional measure for the protection of sensitive species juveniles or spawning aggregations should be allowed as an option to be developed through regionalisation the conditions for the establishment of such areas including the geographical extent and duration of closures as well as the control and monitoring arrangements should be defined in the relevant joint recommendations +in union waters in ices sub-areas 8 and 9 a minimum conservation reference size of 130 mm shall apply +the use of beam trawl shall not be authorised +there should be a possibility to carry out pilot projects on full documentation of catches and discards such projects could involve derogations from the rules on mesh sizes laid down in this regulation insofar as they contribute to achieving the objectives and targets of this regulation +article 37 amendment to regulation (eu) 2019/472 in regulation (eu) 2019/472 article 9 is amended as follows (a) in paragraph 1 the introductory part is replaced by the following the commission is empowered to adopt delegated acts in accordance with article 18 of this regulation and article 18 of regulation (eu) no 1380/2013 in order to supplement this regulation regarding the following technical measures insofar as they are not covered by regulation (eu) 2019/1241 of the european parliament and of the council ( 3) ( 3) regulation (eu) 2019/1241 of the european parliament and of the council of 20 june 2019 on the conservation of fishery resources and the protection of marine ecosystems through technical measures amending council regulations (ec) no 1967/2006 (ec) no 1224/2009 and regulations (eu) no 1380/2013 (eu) 2016/1139 (eu) 2018/973 (eu) 2019/472 and (eu) 2019/1022 of the european parliament and of the council and repealing council regulations (ec) no 894/97 (ec) no 850/98 (ec) no 2549/2000 (ec) no 254/2002 (ec) no 812/2004 and (ec) no 2187/2005 (oj l 198 25 7 2019 p 105) (b) paragraph 2 is replaced by the following the measures referred to in paragraph 1 of this article shall contribute to the achievement of the objectives set out in article 3 of this regulation and shall comply with article 15 of regulation (eu) 2019/1241 +masters of fishing vessels engaged in the fishery outside the redfish conservation area shall transmit the catch report provided for in point (b) of article 9 of regulation (eu) no 1236/2010 on a daily basis after the fishing operations of that calendar day have been completed it shall indicate the catches on board taken since the last communication of catches +directed fishing for cod with the gear specified in point 5 2 shall be prohibited +council directive 92/43/eec of 21 may 1992 on the conservation of natural habitats and of wild fauna and flora (oj l 206 22 7 1992 p 7) +new licences shall not be granted to any vessel during this period +the size of a crawfish (palinurus spp ) shall be measured as shown in figure 4 as the length of the carapace parallel to the midline from the tip of the rostrum to the midpoint of the distal dorsal edge of the carapace +directed fishing for deepwater sharks as listed in annex i to regulation (eu) 2016/2336 in charted depths of less than 600 m shall be prohibited when accidentally caught deepwater sharks classified as prohibited in this regulation and other union legislation shall be recorded unharmed to the extent possible and shall be promptly released deepwater sharks subject to catch limits shall be retained on board such catches shall be landed and counted against quotas in situations where quota is not or not sufficiently available to the member state concerned the commission may resort to article 105 of regulation (ec) no 1224/ where accidental catches of deepwater sharks by the vessels of any member state exceed 10 tonnes then those vessels may no longer avail of the derogations set out in point 4 1 +regulation (eu) 2019/1022 of the european parliament and of the council of 20 june 2019 establishing a multiannual plan for the fisheries exploiting demersal stocks in the western mediterranean sea and amending regulation (eu) no 508/2014 (oj l 172 26 6 2019 p 1) +regulation (eu) 2016/2336 of the european parliament and of the council of 14 december 2016 establishing specific conditions for fishing for deep-sea stocks in the north-east atlantic and provisions for fishing in international waters of the north-east atlantic and repealing council regulation (ec) no 2347/2002 (oj l 354 23 12 2016 p 1) +it shall be prohibited to deploy towed gear with a codend mesh size of less than 32 mm from 1 july to 15 september in the waters situated within three nautical miles of the baselines in the skagerrak and kattegat unless carrying out directed fishing for northern prawn (pandalus borealis) for directed fishing for eelpout (zoarces viviparous) gobies (gobiidae) or scorpion fish (cottus spp ) for use as bait nets with any mesh size may be used +use of static nets in ices sub-areas 8 9 10 and 12 east of 27 w in accordance with point (a) of article 9 and by way of derogation from part b point 2 of this annex it shall be permitted to use the following gear in waters with a charted depth of less than 600 m bottom set gillnets used for directed fishing for hake of a mesh size of at least 80 mm in ices division 8c and ices sub-area 9 and 100 mm in all remaining areas and no more than 100 meshes deep where the total length of all nets deployed does not exceed 25 km per vessel and the maximum soak time is 24 hours entangling nets used for directed fishing for anglerfish of a mesh size of at least 250 mm and no more than 15 meshes deep where the total length of all nets deployed does not exceed 100 km and the maximum soak time is 72 hours trammel nets in ices sub-area 9 used for directed fishing for anglerfish of a mesh size of at least 220 mm and no more than 30 meshes deep where the total length of nets deployed does not exceed 20 km per vessel and the maximum soak time is 72 hours +by way of derogation from point 1 within the area and time period referred to therein the use of demersal trawls shall be permitted provided such trawls are fitted with selective devices that have been assessed by stecf +technical measures should contribute to achieving the cfp objectives to fish at maximum sustainable yield levels reduce unwanted catches and eliminate discards and contribute to the achievement of good environmental status as set out in directive 2008/56/ec of the european parliament and of the council (5) +the size of a marine species shall be measured in accordance with annex iv +member states should have the possibility to develop joint recommendations for appropriate technical measures that differ from these baselines in accordance with the regionalisation process set out in regulation (eu) no 1380/2013 based on scientific evidence +it shall be prohibited for vessels fishing with surface-set longlines to have on board or deploy more than the number of hooks per vessel as follows (a) 2 500 hooks when directed fishing for swordfish and (b) 5 000 hooks when directed fishing for albacore tuna +where more than one method of measuring the size of a marine species is provided for the specimen shall not be considered to be below the minimum conservation reference size if the size measured by any one of those methods is equal to or greater than the minimum conservation reference size +article 19 real-time closures and moving-on provisions a joint recommendation submitted for the purpose of adopting the measures referred to in article 15 in relation to the creation of real-time closures with the aim of ensuring the protection of sensitive species or of aggregations of juveniles spawning fish or shellfish species shall include the following elements (a) the geographical extent and duration of the closures (b) the species and threshold levels that trigger the closure (c) the use of highly selective gear to allow access to otherwise closed areas and (d) control and monitoring arrangements +council regulation (ec) no 850/98 of 30 march 1998 for the conservation of fishery resources through technical measures for the protection of juveniles of marine organisms (oj l 125 27 4 1998 p 1) +the carrying on board of pelagic trawls and purse seines simultaneously within ices division 8c shall be prohibited +vessels included in the list shall satisfy the following conditions (a) the total engine power (kw) of the vessels within the lists must not exceed that observed for each member state in the years 2000-2001 in subdivision 28-1 and (b) the engine power of a vessel must not exceed 221 kw at any time +where scientific advice identifies other such habitats there should be a possibility to introduce similar restrictions to protect those habitats +the framework should cover the taking and landing of fisheries resources as well as the operation of fishing gear and the interaction of fishing activities with marine ecosystems +directive 2000/60/ec of the european parliament and of the council of 23 october 2000 establishing a framework for community action in the field of water policy (oj l 327 22 12 2000 p 1) +the commission may require stecf to assess the joint recommendations referred to in paragraph 2 +technical measures shall in particular contribute to achieving the following objectives (a) optimise exploitation patterns to provide protection for juveniles and spawning aggregations of marine biological resources (b) ensure that incidental catches of sensitive marine species including those listed under directives 92/43/eec and 2009/147/ec that are a result of fishing are minimised and where possible eliminated so that they do not represent a threat to the conservation status of these species (c) ensure including by using appropriate incentives that the negative environmental impacts of fishing on marine habitats are minimised (d) have in place fisheries management measures for the purposes of complying with directives 92/43/eec 2000/60/ec and 2008/56/ec in particular with a view to achieving good environmental status in line with article 9 of directive 2008/56/ec and with directive 2009/147/ec +it shall be prohibited to use netting with a twine thickness greater than 3 mm or with multiple twines or netting with a twine thickness of greater than 6 mm in any part of a bottom trawl +where the results of those pilot studies or other scientific advice indicate that unwanted catches are significant the member states concerned shall endeavour to establish technical measures to reduce those unwanted catches in accordance with article 19 of regulation (eu) no 1380/ chapter iii regionalisation article 15 regional technical measures technical measures established at regional level are set out in the following annexes (a) in annex v for the north sea (b) in annex vi for north western waters (c) in annex vii for south western waters (d) in annex viii for the baltic sea (e) in annex ix for the mediterranean sea (f) in annex x for the black sea (g) in annex xi for union waters in the indian ocean and the west atlantic (h) in annex xiii for sensitive species +the size of a lobster (homarus gammarus) from the north sea except skagerrak or kattegat shall be measured as shown in figure 3 as the length of the carapace parallel to the midline from the back of either eye socket to the distal edge of the carapace +it shall be prohibited to use bottom-set gillnets entangling nets and trammel nets to catch the following species (a) albacore (thunnus alalunga) (b) bluefin tuna (thunnus thynnus) (c) rays bream (brama brama) (d) swordfish (xiphias gladius) (e) sharks belonging to the following species or families hexanchus griseus cetorhinus maximus all species of alopiidae carcharhinidae sphyrnidae isuridae lamnidae +regulation (eu) 2017/1004 of the european parliament and of the council of 17 may 2017 on the establishment of a union framework for the collection management and use of data in the fisheries sector and support for scientific advice regarding the common fisheries policy and repealing council regulation (ec) no 199/2008 (oj l 157 20 6 2017 p 1) annex vi north western waters part a minimum conservation reference sizes species whole area cod (gadus morhua) 35 cm haddock (melanogrammus aeglefinus) 30 cm saithe (pollachius virens) 35 cm pollack (pollachius pollachius) 30 cm hake (merluccius merluccius) 27 cm megrim (lepidorhombus spp ) 20 cm sole (solea spp ) 24 cm plaice (pleuronectes platessa) 27 cm whiting (merlangius merlangus) 27 cm ling (molva molva) 63 cm blue ling (molva dypterygia) 70 cm norway lobster (nephrops norvegicus) norway lobster tails total length 85 mm carapace length 25 mm 46 mm mackerel (scomber spp ) 20 cm herring (clupea harengus) 20 cm horse mackerel (trachurus spp ) 15 cm anchovy (engraulis encrasicolus) 12 cm or 90 individuals per kg bass (dicentrarchus labrax) 42 cm sardine (sardina pilchardus) 11 cm red sea-bream (pagellus bogaraveo) 33 cm lobster (hommarus gammarus) 87 mm spinous spider crab (maja squinado) 120 mm queen scallop (chlamys spp ) 40 mm grooved carpetshell (ruditapes decussatus) 40 mm carpetshell (venerupis pullastra) 38 mm short-necked clam (venerupis philippinarum) 35 mm clam (venus verrucosa) 40 mm hard clam (callista chione) 6 cm razor clam (ensis spp ) 10 cm surf clams (spisula solida) 25 mm donax clams (donax spp ) 25 mm bean solen (pharus legumen) 65 mm whelk (buccinum undatum ) 45 mm octopus (octopus vulgaris) 750 g crawfish (palinurus spp ) 95 mm deepwater rose shrimp (parapenaeus longirostris) 22 mm (carapace length) edible crab (cancer pagurus) 140 mm scallop (pecten maximus) 100 mm the percentage of sardine anchovy herring horse mackerel or mackerel below the minimum conservation reference size shall be calculated as the proportion by live weight of all marine organisms on board after sorting or on landing the percentage may be calculated on the basis of one or more representative samples the limit of 10 shall not be exceeded during transhipment landing transportation storage display or sale part b mesh sizes baseline mesh sizes for towed gear without prejudice to the landing obligation vessels shall use a mesh size of at least 120 mm (7) or at least 100 mm in ices sub-area 7b-7k +commission delegated regulation (eu) 2018/2034 of 18 october 2018 establishing a discard plan for certain demersal fisheries in north-western waters for the period 2019-2021 (oj l 327 21 12 2018 p 8) annex vii south western waters part a minimum conservation reference sizes species whole area cod (gadus morhua) 35 cm haddock (melanogrammus aeglefinus) 30 cm saithe (pollachius virens) 35 cm pollack (pollachius pollachius) 30 cm hake (merluccius merluccius) 27 cm megrim (lepidorhombus spp ) 20 cm sole (solea spp ) 24 cm plaice (pleuronectes platessa) 27 cm whiting (merlangius merlangus) 27 cm ling (molva molva) 63 cm blue ling (molva dypterygia) 70 cm norway lobster (nephrops norvegicus) total length 70 mm carapace length 20 mm norway lobster tails 37 mm mackerel (scomber spp ) 20 cm herring (clupea harengus) 20 cm horse mackerel (trachurus spp ) 15 cm anchovy (engraulis encrasicolus) 12 cm or 90 individuals per kg bass (dicentrarchus labrax) 36 cm sardine (sardina pilchardus) 11 cm red sea-bream (pagellus bogaraveo) 33 cm lobster (hommarus gammarus) 87 mm spinous spider crab (maja squinado) 120 mm queen scallop (chlamys spp ) 40 mm grooved carpetshell (ruditapes decussatus) 40 mm carpetshell (venerupis pullastra) 38 mm short-necked clam (venerupis philippinarum) 35 mm clam (venus verrucosa) 40 mm hard clam (callista chione) 6 cm razor clam (ensis spp ) 10 cm surf clams (spisula solida) 25 mm donax clams (donax spp ) 25 mm bean solen (pharus legumen) 65 mm whelk (buccinum undatum ) 45 mm octopus (octopus vulgaris) 750 g crawfish (palinurus spp ) 95 mm deepwater rose shrimp (parapenaeus longirostris) 22 mm (carapace length) edible crab (cancer pagurus) 140 mm scallop (pecten maximus) 100 mm part b mesh sizes baseline mesh sizes for towed gear without prejudice to the landing obligation vessels shall use a mesh size of at least 70 mm (8) (9) or at least 55 mm in ices division 9a east of longitude 7 23 48 w +in all waters in that part of the eastern central atlantic comprising divisions 34 1 1 34 1 2 and 34 1 3 and sub-area 34 2 0 of fishing zone 34 of the cecaf region a gutted weight of 450 g shall apply +for the purpose of that report adequate selectivity indicators such as the scientific concept of length of optimal selectivity (lopt) could be used as a reference tool to monitor progress over time towards the cfp objective of minimising unwanted catches in that sense those indicators are not binding targets but monitoring tools which may inform deliberations or decisions at regional level the indicators and the values used for their application should be requested from appropriate scientific bodies for a number of key indicator stocks which would also take into account mixed fisheries and recruitment spikes the commission could include those indicators in the report on the implementation of this regulation the list of the key indicator stocks should include demersal species which are managed through catch limits taking into account the relative importance of landings discards and relevance of the fishery for each sea basin +use of static nets in ices divisions 3a and 4a in accordance with point (a) of article 9 and by way of derogation from part b point 2 of this annex it shall be permitted to use the following gear in waters with a charted depth of less than 600 m bottom set gillnets used for directed fishing for hake of a mesh size of at least 100 mm and no more than 100 meshes deep where the total length of all nets deployed does not exceed 25 km per vessel and the maximum soak time is 24 hours entangling nets used for directed fishing for anglerfish of a mesh size of at least 250 mm and no more than 15 meshes deep where the total length of all nets deployed does not exceed 100 km and the maximum soak time is 72 hours +member states shall take the necessary steps to collect scientific data on incidental catches of sensitive species +in order to ensure uniform conditions for the implementation of this regulation implementing powers should be conferred on the commission in respect of the establishment of the specification of devices to reduce wear and tear of and to strengthen towed gear or to limit the escape of catches in the forward part of towed gear to define the specification of the selection devices attached to defined baseline gear to define the specifications of the electric pulse trawl to define restrictions on construction of gear and the control and monitoring measures to be adopted by the flag member state and to define rules on the control and monitoring measures to be adopted by the flag member state when using static gear in depths between 200 and 600 m on the control and monitoring measures to be adopted for certain closed or restricted areas and on the signal and implementation characteristics of devices used to deter cetaceans from static nets and methods used to minimise incidental catches of seabirds marine reptiles and turtles those powers should be exercised in accordance with regulation (eu) no 182/2011 of the european parliament and of the council (10) +by way of derogation from paragraph 4 incidental catches in the mediterranean sea of no more than three specimens of the shark species referred to in that paragraph may be retained on board or landed provided that they are not protected species under union law +in the light of advice from the scientific technical and economic committee for fisheries (stecf) certain common rules setting out restrictions on the use of towed gear and on the construction of codends should be established in order to prevent bad practices that lead to unselective fishing +in order to take into account regional specificities of the relevant fisheries the commission is empowered to adopt delegated acts in accordance with article 29 of this regulation and article 18 of regulation (eu) no 1380/2013 in order to amend supplement repeal or derogate from the technical measures set out in the annexes referred to in paragraph 1 of this article including when implementing the landing obligation in the context of article 15 and of regulation (eu) no 1380/ the commission shall adopt such delegated acts on the basis of a joint recommendation submitted in accordance with article 18 of regulation (eu) no 1380/2013 and in accordance with the relevant articles of chapter iii of this regulation +no minimum conservation reference size shall apply to horse mackerel (trachurus pictaratus) caught in waters adjacent to the azores islands and under the sovereignty or jurisdiction of portugal +commission implementing regulation (eu) no 737/2012 of 14 august 2012 on the protection of certain stocks in the celtic sea (oj l 218 15 8 2012 p 8) +regulation (eu) 2018/973 of the european parliament and of the council of 4 july 2018 establishing a multiannual plan for demersal stocks in the north sea and the fisheries exploiting those stocks specifying details of the implementation of the landing obligation in the north sea and repealing council regulations (ec) no 676/2007 and (ec) no 1342/2008 (oj l 179 16 7 2018 p 1) +restrictions on the use of longlines it shall be prohibited for vessels fishing with bottom-set longlines to have on board or deploy more than 5 000 hooks except for vessels undertaking fishing trips of more than 3 days which may have on board or deploy no more than 7 000 hooks +for certain rare fish species such as some species of sharks and rays even limited fishing activity could result in a serious risk for their conservation to protect such species a general prohibition on fishing for them should be introduced +only one type of net (either 40 mm square mesh or 50 mm diamond mesh) is allowed to be kept on board or deployed annex x black sea part a minimum conservation reference sizes species minimum conservation reference size turbot (psetta maxima) 45 cm part b mesh sizes baseline mesh sizes for towed gear for demersal stocks the following mesh sizes shall apply in the black sea mesh size geographical areas conditions at least 40 mm whole area a diamond mesh codend of 50 mm may be used as an alternative to the 40 mm square mesh cod end at the duly justified request of the vessel owner baseline mesh sizes for static nets the following mesh sizes for static nets shall apply in the black sea mesh size geographical areas conditions at least 400 mm whole area bottom set gillnets when used to catch turbot restrictions on the use of trawls and dredges the use of trawls or dredges at depths beyond 1 000 m shall be prohibited +council regulation (ec) no 2187/2005 of 21 december 2005 for the conservation of fishery resources through technical measures in the baltic sea the belts and the sound amending regulation (ec) no 1434/98 and repealing regulation (ec) no 88/98 (oj l 349 31 12 2005 p 1) +25 7 2019 en official journal of the european union l 198/105 regulation (eu) 2019/1241 of the european parliament and of the council of 20 june 2019 on the conservation of fisheries resources and the protection of marine ecosystems through technical measures amending council regulations (ec) no 1967/2006 (ec) no 1224/2009 and regulations (eu) no 1380/2013 (eu) 2016/1139 (eu) 2018/973 (eu) 2019/472 and (eu) 2019/1022 of the european parliament and of the council and repealing council regulations (ec) no 894/97 (ec) no 850/98 (ec) no 2549/2000 (ec) no 254/2002 (ec) no 812/2004 and (ec) no 2187/2005 the european parliament and the council of the european union having regard to the treaty on the functioning of the european union and in particular article 43 thereof having regard to the proposal from the european commission after transmission of the draft legislative act to the national parliaments having regard to the opinion of the european economic and social committee (1) having regard to the opinion of the committee of the regions (2) acting in accordance with the ordinary legislative procedure (3) whereas regulation (eu) no 1380/2013 of the european parliament and of the council establishes a common fisheries policy (cfp) for the conservation and sustainable exploitation of fisheries resources +regulation (eu) no 1380/2013 of the european parliament and of the council of 11 december 2013 on the common fisheries policy amending council regulations (ec) no 1954/2003 and (ec) no 1224/2009 and repealing council regulations (ec) no 2371/2002 and (ec) no 639/2004 and council decision 2004/585/ec (oj l 354 28 12 2013 p 22) +lobsters crawfish and bivalve and gastropod molluscs belonging to any such species for which a minimum conservation reference size is established in annexes v vi or vii may only be retained on board whole and may only be landed whole section 5 measures to reduce discarding article 14 pilot projects for the avoidance of unwanted catches without prejudice to article 14 of regulation (eu) no 1380/2013 member states may conduct pilot projects with the aim of exploring methods for the avoidance minimisation and elimination of unwanted catches those pilot projects shall take account of the opinions of the relevant advisory councils and be based on the best available scientific advice +for edible crabs caught in pots or creels a maximum of 1 by weight of the total catch of edible crab may consist of detached claws for edible crabs caught with any other fishing gear a maximum of 75 kg of detached crab claws may be landed +all vessels having obtained this fishing authorisation shall regardless of their overall length have in use an operational fully functioning secure vms which complies with the respective rules when conducting fisheries in the area described in point 1 1 +however the carrying and use of such equipment shall be permitted provided that (a) the vessel does not simultaneously carry or use on board either towed gear of mesh size less than 70 mm or one or more purse seines or similar fishing gear or (b) the whole of the catch which may be lawfully retained on board (i) is stored in a frozen state (ii) the graded fish are frozen immediately after grading and no graded fish are returned to the sea and (iii) the equipment is installed and located on the vessel in such a way as to ensure immediate freezing and not to allow the return of marine species to the sea +the measures referred to in paragraph 1 of this article shall aim at achieving the objectives set out in article 3 and in particular for the protection of juveniles or spawning aggregations of fish or shellfish species +a joint recommendation submitted for the purpose of adopting the measures referred to in article 15(2) in relation to moving-on provisions shall include (a) the species and threshold levels that trigger an obligation to move (b) the distance by which a vessel is to move away from its previous fishing position +the report referred to in paragraph 1 of this article shall contain inter alia an assessment of the contribution of technical measures to optimise exploitation patterns as provided for in point (a) of article 3(2) for that purpose the report may include inter alia as a selectivity performance indicator for the key indicator stocks for the species listed in annex xiv the length of optimal selectivity (lopt) compared to the average length of fish caught for each year covered +in division 7d at least 90 mm shall apply +this regulation should apply to fishing operations conducted in union waters by union and third-country fishing vessels and by nationals of member states without prejudice to the primary responsibility of the flag state as well as to union fishing vessels operating in union waters of the outermost regions referred to in the first paragraph of article 349 of the treaty on the functioning of the european union (tfeu) it should also apply in respect of union fishing vessels and nationals of member states in non-union waters to technical measures adopted for the north east atlantic fisheries commission (neafc) regulatory area and the general fisheries commission for the mediterranean (gfcm) agreement area +restrictions on the directed fishing for red sea bream the directed fishing for red sea bream (pagellus bogaraveo) with the following gear shall be prohibited gillnets entangling nets or trammel nets having a mesh size of less than 100 mm longlines with hooks of a total length of less than 3 95 cm and a width of less than 1 65 cm +regulation (eu) no 1380/2013 allows for the establishment of temporary discard plans for the implementation of the landing obligation in cases where no multiannual plan is in place for the fishery in question as part of such plans it should be allowed to establish technical measures which are strictly linked to the implementation of the landing obligation and which aim to increase selectivity and reduce unwanted catches as much as possible +before adopting a delegated act the commission shall consult experts designated by each member state in accordance with the principles laid down in the interinstitutional agreement of 13 april 2016 on better law-making +council regulation (ec) no 734/2008 of 15 july 2008 on the protection of vulnerable marine ecosystems in the high seas from the adverse impacts of bottom fishing gears (oj l 201 30 7 2008 p 8) +the use of electric pulse trawl should remain possible during a transitional period until 30 june 2021 and under certain strict conditions +article 16 species and size selectivity of fishing gear a joint recommendation submitted for the purpose of adopting the measures referred to in article 15 in relation to size-selective and species-selective characteristics of gear shall provide scientific evidence demonstrating that those measures result in selectivity characteristics for specific species or combination of species which are at least equivalent to the selectivity characteristics of the gear set out in part b of annexes v to x and in part a of annex xi +notwithstanding paragraphs 1 and 2 the retention on board transhipment or landing of specimens of marine species referred to in paragraph 1 which have been caught accidentally shall be permitted as far as this activity is necessary to secure assistance for the recovery of the individual animals and to allow for scientific research on incidentally killed specimens provided that the competent national authorities concerned have been fully informed in advance as soon as possible after the catch and in accordance with applicable union law +article 26 direct restocking and transplantation the technical measures provided for in this regulation shall not apply to fishing operations conducted solely for the purpose of direct restocking or transplantation of marine species provided that those operations are carried out with the permission and under the authority of the member state or member states having a direct management interest +regulation (eu) no 1343/2011 of the european parliament and of the council of 13 december 2011 on certain provisions for fishing in the gfcm (general fisheries commission for the mediterranean) agreement area and amending council regulation (ec) no 1967/2006 concerning management measures for the sustainable exploitation of fishery resources in the mediterranean sea (oj l 347 30 12 2011 p 44) +fisheries to be monitored monitoring schemes shall be undertaken on an annual basis and established for vessels flying their flag and with an overall length of 15 m or more to monitor cetacean by-catch for the fisheries and under the conditions defined below area gear ices sub-areas 6 7 and 8 pelagic trawls (single and pair) mediterranean sea (of the east of line 5 36 west pelagic trawls (single and pair) ices divisions 6a 7a 7b 8a 8b 8c and 9a bottom-set gillnet or entangling nets using mesh sizes equal to or greater than 80 mm ices sub area 4 ices division 6a and ices sub-area 7 with the exception of ices divisions 7c and 7k driftnets ices divisions 3a 3b 3c 3d south of 59 n 3d north of 59 (only from 1 june to 30 september) and ices sub-areas 4 and 9 pelagic trawls (single and pair) ices sub-areas 6 7 8 and 9 high-opening trawls ices divisions 3b 3c and 3d bottom-set gillnet or entangling nets using mesh sizes equal to or greater than 80 mm point 2 1 shall not apply to fishing operations conducted solely for the purpose of scientific investigation which are carried out with the authorisation and under the authority of the member state or member states concerned and which aim at developing new technical measures to reduce the incidental capture or killing of cetaceans part b seabirds where the data referred to in point 2 of the introductory paragraph of this annex indicate a level of incidental catches of seabirds in specific fisheries which constitutes a serious threat to the conservation status of those seabirds member states shall use bird scaring lines and/or weighted lines if it is scientifically proven that such use has a conservation benefit in that area and where practical and beneficial shall set longlines during the hours of darkness with the minimum of deck lighting necessary for safety part c marine turtles fisheries in which the use of a turtle excluder device is mandatory +fisheries for scientific investigation shall be allowed in order to monitor the sandeel stock in the area and the effects of the closure +article 17 closed or restricted areas to protect juveniles and spawning aggregations a joint recommendation submitted for the purpose of adopting the measures referred to in article 15 in relation to part c of annexes v to viii and x and part b of annex xi or in order to establish new closed or restricted areas shall include the following elements in respect of such closed or restricted areas (a) the objective of the closure (b) the geographical extent and duration of the closure (c) restrictions on specific gear and (d) control and monitoring arrangements +until 30 june 2021 in the waters up to 12 nautical miles from baselines under their sovereignty or jurisdiction member states may take non-discriminatory measures to restrict or prohibit the use of electric pulse trawl member sates shall inform the commission and the member states concerned of the measures put in place under this point +directed fishing for deepwater sharks as listed in annex i to regulation (eu) 2016/2336 in charted depths of less than 600 m shall be prohibited when accidentally caught deepwater sharks classified as prohibited in this regulation and other union legislation shall be recorded unharmed to the extent possible and shall be promptly released deepwater sharks subject to catch limits shall be retained on board such catches shall be landed and counted against quotas in situations where quota is not or not sufficiently available to the member state concerned the commission may resort to article 105 of regulation (ec) no 1224/ where accidental catches of deepwater sharks by the vessels of any member state exceed 10 tonnes then those vessels may no longer avail of the derogations set out in point 9 1 +in sub-division 28-1 fishing with trawls shall be prohibited in waters of less than 20 m in depth +restrictions on fishing with spear guns it shall be prohibited to fish with spear guns if used in conjunction with underwater breathing apparatus (aqualung) or at night from sunset to dawn +commission regulation (ec) no 494/2002 of 19 march 2002 establishing additional technical measures for the recovery of the stock of hake in ices sub-areas iii iv v vi and vii and ices divisions viii a b d e (oj l 77 20 3 2002 p 8) +on the basis of that report where at regional level there is evidence that the objectives and targets have not been met member states within that region shall within 12 months after the submission of the report referred to in paragraph 1 submit a plan setting out the actions to be taken to contribute to achieving those objectives and targets +in ices sub-area 9 and cecaf area 34 1 2 a minimum conservation reference size of 9 cm shall apply +the commissions report should also refer to advice from ices on the progress made or impact of innovative gear the report should draw conclusions about the benefits for or negative effects on marine ecosystems sensitive habitats and selectivity +notwithstanding point 1 1 a fishery for redfish may be permitted by a union legal act outside the redfish conservation area in the irminger sea and adjacent waters from 11 may to 31 december each year on the basis of scientific advice and provided that neafc has established a recovery plan in respect of redfish in that geographical area only union vessels that have been duly authorised by their respective member state and notified to the commission as required under article 5 of regulation (eu) no 1236/2010 shall participate in this fishery +article 34 amendment to regulation (eu) no 1380/2013 in article 15 of regulation (eu) no 1380/2013 paragraph 12 is replaced by the following for species that are not subject to the landing obligation as specified in paragraph 1 the catches of species below the minimum conservation reference size shall not be retained on board but shall be returned immediately to the sea except when they are used as live bait +member states shall ensure that vessels to which the fishing authorisation referred to in point 3 1 has been issued are included in a list containing their name and internal registration number made publicly available via an internet website the address of which shall be provided to the commission and member states by each member state +for directed fishing for anglerfish a mesh size of at least 220 mm shall be used +the commission is currently empowered to adopt and amend technical measures at regional level under regulations (eu) 2016/1139 (19) (eu) 2018/973 (20) (eu) 2019/472 and (eu) 2019/1022 of the european parliament and of the council establishing the multi-annual plans for the baltic sea the north sea western waters and the western mediterranean in order to clarify the scope of the respective empowerments and to specify that delegated acts adopted under the empowerments provided for in those regulations are to comply with certain requirements set out in this regulation those regulations should be amended in the interest of legal certainty have adopted this regulation chapter i general provisions article 1 subject matter this regulation lays down technical measures concerning (a) the taking and landing of marine biological resources (b) the operation of fishing gear and (c) the interaction of fishing activities with marine ecosystems +member states may issue fishing authorisations in accordance with article 7 of regulation (ec) no 1224/2009 for vessels flying their flag when engaged in fishing activities using the mesh-specific sizes provided for in annexes v to xi such authorisations may be suspended or withdrawn where a vessel has been found to not have complied with the defined catch percentages provided for in annexes v to viii +restrictions on directed fishing for anchovy in ices division 8c directed fishing for anchovy using pelagic trawls in ices division 8c shall be prohibited +the pilot projects referred to in paragraph 1 may derogate from the measures set out in part b of annexes v to xi for a specific area and for a maximum period of one year provided that it can be demonstrated that such pilot projects contribute to achieving the objectives and targets set out in articles 3 and 4 and in particular aim at improving the selectivity of the fishing gear or practice concerned or otherwise reduce its environmental impact that one-year period may be extended by one additional year under the same conditions it shall be limited to no more than 5 of the vessels in that metier per member state +to afford the strict protection for sensitive marine species such as marine mammals seabirds and marine reptiles provided for in directives 92/43/eec and 2009/147/ec member states should put in place mitigation measures to minimise and where possible eliminate the catching of such species by fishing gear +the delegation of power referred to in article 2(2) article 8(3) article 10(4) article 12(2) article 15(2) article 23 and (5) article 27 and article 31 may be revoked at any time by the european parliament or by the council a decision to revoke shall put an end to the delegation of the power specified in that decision it shall take effect the day following the publication of the decision in the official journal of the european union or at a later date specified therein it shall not affect the validity of any delegated acts already in force +when developing joint recommendations in relation to size and species selective characteristics of gear alternative to the baseline mesh sizes regional groups of member states should ensure that such measures result in similar as a minimum or improved selectivity characteristics as the baseline gear +restrictions on fishing for eel the retention on board of eel caught with any active gear shall be prohibited when accidentally caught eel shall not be harmed and shall be promptly released +in order to provide continued protection for sensitive marine habitats located off the coasts of ireland the united kingdom and around the azores madeira and the canary islands as well as in the neafc regulatory area existing restrictions on the use of demersal fishing gear should be maintained +when caught species referred to in paragraph 1 shall not be harmed and specimens shall be promptly released +on the basis of the best available scientific advice a member state may for vessels flying its flag put in place mitigation measures or restrictions on the use of certain gear such measures shall minimise and where possible eliminate the catches of the species referred to in paragraph 1 of this article and shall be compatible with the objectives set out in article 2 of regulation (eu) no 1380/2013 and be at least as stringent as technical measures applicable under union law +articles 7 10 11 and 12 shall also apply to recreational fishing in cases where recreational fishing has a significant impact in a particular region the commission is empowered to adopt delegated acts pursuant to article 15 and in accordance with article 29 in order to amend this regulation by providing that the relevant provisions of article 13 or parts a or c of annexes v to x also apply to recreational fishing +article 11 catches of marine mammals seabirds and marine reptiles the catching retention on board transhipment or landing of marine mammals or marine reptiles referred to in annexes ii and iv to directive 92/43/eec and of species of seabirds covered by directive 2009/147/ec shall be prohibited +article 22 regional measures under temporary discard plans when member states submit joint recommendations for the establishment of technical measures in temporary discard plans referred to in article 15 of regulation (eu) no 1380/2013 those recommendations may contain inter alia the following elements (a) specifications of fishing gear and the rules governing their use (b) specifications of modifications to fishing gear or use of selectivity devices to improve size or species selectivity (c) restrictions or prohibitions on the use of certain fishing gear and on fishing activities in certain areas or during certain periods (d) minimum conservation reference sizes (e) derogations adopted on the basis of article 15 of regulation (eu) no 1380/2013 +where reference is made to this paragraph article 5 of regulation (eu) no 182/2011 shall apply chapter viii final provisions article 31 review and reporting by 31 december 2020 and every third year thereafter and on the basis of information supplied by member states and the relevant advisory councils and following evaluation by stecf the commission shall submit a report to the european parliament and to the council on the implementation of this regulation that report shall assess the extent to which technical measures both at regional level and at union level have contributed to achieving the objectives set out in article 3 and reaching the targets set out in article the report shall also refer to advice from ices on the progress that has been made or impact arising from innovative gear the report shall draw conclusions about the benefits for or negative effects on marine ecosystems sensitive habitats and selectivity +conditions for fisheries using certain towed gear authorised in the bay of biscay by way of derogation from the provisions laid down in article 5 of regulation (ec) no 494/2002 establishing additional technical measures for the recovery of the stock of hake in ices sub-areas 3-7 and ices divisions 8a 8b 8d and 8e it shall be permitted to conduct fishing activity using trawls danish seines and similar gear with the exception of beam trawls with a mesh size range of 70-99 mm in the area defined in point (b) of article 5 of regulation (ec) no 494/2002 if the gear is fitted with a 100 mm square mesh panel +only one type of net (either 40 mm square mesh or 50 mm diamond mesh) is allowed to be kept on board or deployed annex xi union waters in the indian ocean and the west atlantic part a baseline mesh sizes for towed gear the following mesh sizes shall apply in union waters in the indian ocean and the west atlantic mesh size geographical areas conditions at least 100 mm all waters off the coast of the french department of guyana that come under the sovereignty or jurisdiction of france none at least 45 mm all waters off the coast of the french department of guyana that come under the sovereignty or jurisdiction of france directed fishing for shrimp (penaeus subtilis penaeus brasiliensis xiphopenaeus kroyeri) +a vessel undertaking fishing trips longer than 2 days may have on board an equivalent number of spare hooks +for directed fishing for norway lobster (nephrops norvegicus) a square mesh panel of at least 100 mm or equivalent selectivity device shall be fitted when fishing in ices divisions 8a 8b 8d and 8e for directed fishing for sole with beam trawls a panel with a mesh size of at least 180 mm fitted in the upper half of the anterior part of the net shall be fitted +in order not to hinder scientific research or direct restocking and transplantation the technical measures provided for in this regulation should not apply to operations which may be necessary for conducting such activities in particular where fishing operations for the purposes of scientific research require such a derogation from the technical measures under this regulation they should be subject to appropriate conditions +without prejudice to the landing obligation and notwithstanding point 1 1 vessels may use smaller mesh sizes as listed in the following table for the north western waters provided that (i) the associated conditions set out in that table are complied with and by-catches of cod haddock and saithe do not exceed 20 of the total catch in live weight of all marine biological resources landed after each fishing trip or (ii) other selectivity modifications are used which have been assessed by stecf upon request of one or more member states and approved by the commission those selectivity modifications shall result in the same or better selectivity characteristics for cod haddock and saithe as that of 120 mm or 100 mm in ices sub-area 7b-7k respectively mesh size geographical areas conditions at least 80 mm ices sub-area 7 directed fishing for hake megrim and anglerfish or directed fishing for whiting mackerel and species not subject to catch limits and which are not covered elsewhere in the table using bottom trawls a square mesh panel of at least 120 mm shall be fitted directed fishing for sole and species not covered by catch limits using otter trawls a square mesh panel of at least 80 mm shall be fitted (11) at least 80 mm whole area directed fishing for norway lobster (nephrops norvegicus) (10) a square mesh panel of at least 120 mm or sorting grid with a maximum bar spacing of 35 mm or equivalent selectivity device shall be fitted at least 80 mm ices divisions 7a 7b 7d 7e 7f 7g 7h and 7j directed fishing for sole with beam trawls a panel with a mesh size of at least 180 mm fitted in the upper half of the anterior part of the net shall be fitted at least 80 mm ices divisions 7d and 7e directed fishing for whiting mackerel and species not subject to catch limits and which are not covered elsewhere in the table using bottom trawls at least 40 mm whole area directed fishing for squid (lolignidae ommastrephidae) at least 16 mm whole area directed fishing for small pelagic species which are not covered elsewhere in the table directed fishing for common and aesop shrimps a separator trawl or sorting grid must be fitted in accordance with nationally established rules less than 16 mm whole area directed fishing for sandeel baseline mesh sizes for static nets and driftnets without prejudice to the landing obligation vessels shall use a mesh size of at least 120 mm (15) +as a result of scientific evidence validated by ices stecf or in the framework of gfcm of negative impacts of fishing gear on sensitive species member states shall submit joint recommendations for additional mitigation measures for the reduction of incidental catches of the concerned species or in a concerned area on the basis of article 15 of this regulation +such regional technical measures should as a minimum lead to such benefits for the conservation of marine biological resources that are at least equivalent to the ones provided by the baseline standards in particular in terms of exploitation patterns and the level of protection provided for sensitive species and habitats +technical measures should specifically contribute to the protection of juveniles and spawning aggregations of marine species through the use of selective fishing gear and measures for the avoidance of unwanted catches technical measures should also minimise the impacts of fishing gear on marine ecosystems and in particular on sensitive species and habitats including where appropriate by using incentives they should also contribute to having in place management measures for the purposes of complying with obligations under council directive 92/43/eec (6) directive 2008/56/ec and directive 2009/147/ec of the european parliament and of the council (7) +technical measures are tools to support the implementation of the cfp however an evaluation of the current regulatory structure in relation to technical measures showed that it is unlikely to achieve the objectives of the cfp and a new approach should be taken to increase the effectiveness of technical measures focusing on adapting the governance structure +for the purpose of adopting such delegated acts member states having a direct management interest may submit joint recommendations in accordance with article 18 of regulation (eu) no 1380/2013 for the first time not later than 24 months and thereafter 18 months after each submission of the report referred to in article 31 of this regulation they may also submit such recommendations when deemed necessary by them +the power to adopt delegated acts referred to in article 2(2) article 8(3) article 10(4) article 12(2) article 15(2) article 23 and (5) article 27 and article 31 shall be conferred on the commission for a period of five years from 14 august the commission shall draw up a report in respect of the delegation of power not later than nine months before the end of the five-year period the delegation of power shall be tacitly extended for periods of an identical duration unless the european parliament or the council opposes such extension not later than three months before the end of each period +article 30 committee procedure the commission shall be assisted by the committee for fisheries and aquaculture established by article 47 of regulation (eu) no 1380/ that committee shall be a committee within the meaning of regulation (eu) no 182/2011 +without prejudice to the landing obligation and notwithstanding point 1 1 vessels may use smaller mesh sizes as listed in the following table for the north sea skagerrak and kattegat provided that (i) the associated conditions set out in that table are complied with and by-catches of cod haddock and saithe do not exceed 20 of the total catch in live weight of all marine biological resources landed after each fishing trip or (ii) other selectivity modifications are used which have been assessed by stecf upon request of one or more member states and approved by the commission those selectivity modifications shall result in the same or better selectivity characteristics for cod haddock and saithe as that of 120 mm mesh size geographical areas conditions at least 100 mm north sea south of 57 30 n directed fishing for plaice and sole with otter trawls beam trawls and seines a square mesh panel of at least 90 mm shall be fitted at least 80 mm ices divisions 4b and 4c directed fishing for sole with beam trawls a panel with a mesh size of at least 180 mm fitted in the upper half of the anterior part of the net shall be fitted directed fishing for whiting mackerel and species not subject to catch limits with bottom trawls a square mesh panel of at least 80 mm shall be fitted at least 80 mm north sea directed fishing for norway lobster (nephrops norvegicus) a square mesh panel of at least 120 mm or sorting grid with a maximum bar spacing of 35 mm or equivalent selectivity device shall be fitted directed fishing for species not subject to catch limits and which are not covered elsewhere in the table a square mesh panel of at least 80 mm shall be fitted directed fishing for skates and rays at least 80 mm ices division 4c directed fishing for sole using otter trawls a square mesh panel of at least 80 mm shall be fitted at least 70 mm (square mesh) or 90 mm (diamond mesh) skagerrak and kattegat directed fishing for norway lobster (nephrops norvegicus) a sorting grid with a maximum bar spacing of 35mm or equivalent selectivity device shall be fitted at least 40 mm whole area directed fishing for squid (lolignidae ommastrephidae) at least 35 mm skagerrak and kattegat directed fishing for northern prawn (pandalus borealis) a sorting grid with a maximum bar spacing of 19mm or equivalent selectivity device shall be fitted at least 32 mm whole area except skagerrak and kattegat directed fishing for northern prawn (pandalus borealis) a sorting grid with a maximum bar spacing of 19 mm or equivalent selectivity device shall be fitted at least 16 mm whole area directed fishing for small pelagic species which are not covered elsewhere in the table directed fishing for norway pout a sorting grid with a maximum bar spacing of 35 mm in the norway pout fishery shall be fitted directed fishing for common and aesop shrimps a separator trawl or sorting grid must be fitted in accordance with nationally or regionally established rules less than 16 mm whole area directed fishing for sandeel +notwithstanding paragraph 1 it shall be prohibited to have on board or deploy any driftnet in the baltic sea +vessels which are not equipped for fishing and to which mackerel are being transhipped shall be permitted within the area defined in point 7 1 +a mesh size of at least 220 mm shall be used when fishing for anglerfish a mesh size of at least 110 mm shall be used when directed fishing for pollack and hake in ices divisions 7d and 7e +the use of innovative fishing gear shall not be permitted where the assessments referred to in paragraph 1 indicate that their use will lead to significant negative impacts on sensitive habitats and non-target species +cecaf (eastern central atlantic or fao major fishing zone 34) zones are as defined in regulation (ec) no 216/2009 of the european parliament and of the council of 11 march 2009 on the submission of nominal catch statistics by member states fishing in certain areas other than those of the north atlantic (oj l 87 31 3 2009 p 1) +by way of derogation from point 3 1 fishing with beam trawls within the specified area shall be permitted provided that the engine power of the vessels does not exceed 221 kw and their overall length does not exceed 24 m and the beam length or aggregated beam length measured as the sum of each beam is no more than 9 m or cannot be extended to a length greater than 9 m except when directed fishing for common shrimp (crangon crangon) with a minimum mesh size of less than 31 mm +specific provisions for the skagerrak and kattegat in ices division 3a it shall be prohibited to fish with beam trawls in the kattegat +no more than 5 may consist of horse mackerel between 12 and 15 cm for the purposes of the control of that quantity the conversion factor to be applied to the weight of the catches shall be 1 these provisions shall not apply for catches subject to the landing obligation +restrictions on the use of static nets it shall be prohibited to use the following static nets (a) a trammel net with a drop of more than 4 m (b) a bottom set gillnet or combined trammel and gillnet with a drop of more than 10 m except when such nets are shorter than 500 m where a drop of not more than 30 m is permitted +regulation (eu) no 182/2011 of the european parliament and of the council of 16 february 2011 laying down the rules and general principles concerning mechanisms for control by member states of the commissions exercise of implementing powers (oj l 55 28 2 2011 p 13) +the reports referred to in point 1 6 shall be made in accordance with the relevant rules +the manner in which the size of marine species is to be measured should be defined +when developing joint recommendations in relation to minimum conservation reference sizes regional groups of member states should ensure that the objective of the cfp of ensuring the protection of juveniles of marine species is respected while ensuring that no distortion is introduced into the market and that no market for fish below minimum conservation reference sizes is created +article 3 objectives as tools to support the implementation of the cfp technical measures shall contribute to the objectives of the cfp set out in the applicable provisions of article 2 of regulation (eu) no 1380/2013 +member states may convert the minimum conservation reference size into 110 specimens per kg +article 6 definitions for the purposes of this regulation in addition to the definitions set out in article 4 of regulation (eu) no 1380/2013 the following definitions apply exploitation pattern means how fishing mortality is distributed across the age and size profile of a stock selectivity means a quantitative expression represented as a probability of capture of marine biological resources of a certain size and/or species directed fishing means fishing effort targeted at a specific species or group of species and may be further specified at regional level in delegated acts adopted pursuant to article 27 of this regulation good environmental status means the environmental status of marine waters as defined by article 3 of directive 2008/56/ec conservation status of a species means the sum of the influences acting on the species concerned that may affect the long-term distribution and abundance of its populations conservation status of a habitat means the sum of the influences acting on a natural habitat and its typical species that may affect its long-term natural distribution structure and functions as well as the long-term survival of its typical species sensitive habitat means a habitat whose conservation status including its extent and the condition (structure and function) of its biotic and abiotic components is adversely affected by pressures arising from human activities including fishing activities sensitive habitats in particular include habitat types listed in annex i and habitats of species listed in annex ii to directive 92/43/eec habitats of species listed in annex i to directive 2009/147/ec habitats whose protection is necessary to achieve good environmental status under directive 2008/56/ec and vulnerable marine ecosystems as defined by point (b) of article 2 of council regulation (ec) no 734/2008 (27) sensitive species means a species whose conservation status including its habitat distribution population size or population condition is adversely affected by pressures arising from human activities including fishing activities sensitive species in particular include species listed in annexes ii and iv to directive 92/43/eec species covered by directive 2009/147/ec and species whose protection is necessary to achieve good environmental status under directive 2008/56/ec small pelagic species means species such as mackerel herring horse mackerel anchovy sardine blue whiting argentines sprat and boarfish advisory councils means stakeholder groups established in accordance with article 43 of regulation (eu) no 1380/2013 trawl means fishing gear which is actively towed by one or more fishing vessels and consisting of a net closed at the back by a bag or a codend towed gear means any trawls danish seines dredges and similar gear which are actively moved in the water by one or more fishing vessels or by any other mechanised system bottom trawl means a trawl designed and rigged to operate on or near the seabed bottom pair trawl means a bottom trawl towed by two boats simultaneously one towing each side of the trawl the horizontal opening of the trawl is maintained by the distance between the two vessels as they tow the gear pelagic trawl means a trawl designed and rigged to operate in midwater beam trawl means gear with a trawl net open horizontally by a beam wing or similar device electric pulse trawl means a trawl which uses an electric current to catch marine biological resources danish seine or scottish seine means an encircling and towed gear operated from a boat by means of two long ropes (seine ropes) designed to herd the fish towards the opening of the seine the gear is made up of a net which is similar in design to a bottom trawl shore seines means surrounding nets and towed seines set from a boat and pulled towards the shore as they are being operated from the shore or from a vessel moored or anchored by the shore surrounding nets means nets which catch fish by surrounding them both from the sides and from below they may or may not be equipped with a purse line purse seine or ring nets means any surrounding net where the bottom is drawn together by means of a purse line situated at the bottom of the net which passes through a series of rings along the groundrope enabling the net to be pursed and closed dredges means gear which are either actively towed by the main boat engine (boat dredge) or hauled by a motorised winch from an anchored vessel (mechanised dredge) to catch bivalves gastropods or sponges and which consist of a net bag or metal basket mounted on a rigid frame or rod of variable size and shape whose lower part may carry a scraper blade that can be either rounded sharp or toothed and may or may not be equipped with skids and diving boards some dredges are equipped with hydraulic equipment (hydraulic dredges) dredges pulled by hand or by manual winches in shallow waters with or without a boat to catch bivalves gastropods or sponges (hand dredges) shall not be considered towed gear for the purpose of this regulation static nets means any type of gillnet entangling net or trammel net that is anchored to the seabed for fish to swim into and become entangled or enmeshed in the netting driftnet means a net held on the water surface or at a certain distance below it by floating devices and drifting with the current either independently or with the boat to which it may be attached it may be equipped with devices aiming to stabilise the net or to limit its drift gillnet means a static net made up of a single piece of net and held vertically in the water by floats and weights entangling net means a static net consisting of a wall of netting rigged so that the netting is hung onto the ropes to create a greater amount of slack netting than a gillnet trammel net means a static net made up of several layers of netting with two outer layers of a large mesh size with a sheet of small mesh sandwiched between them combined gillnet and trammel net means any bottom-set gillnet combined with a trammel net which constitutes the lower part longline means a fishing gear consisting of a main line of variable length to which branch lines (snoods) with hooks are fixed at intervals determined by the target species the main line is anchored either horizontally on or near the bottom or vertically or can be allowed to drift on the surface pots and creels means traps in the form of cages or baskets having one or more entrances designed to catch crustaceans molluscs or fish that are set on the seabed or suspended above it handline means a single fishing line with one or more lures or baited hooks st andrews cross means a grab which employs a scissor-like action to harvest for example bivalve molluscs or red coral from the seabed codend means the rearmost part of the trawl having either a cylindrical shape with the same circumference throughout or a tapering shape it can be made up of one or more panels (pieces of netting) attached to one another along their sides and can include the lengthening piece which is made up of one or more panels located just in front of the codend sensu stricto mesh size means (i) for knotted netting the longest distance between two opposite knots in the same mesh when fully extended (ii) for knotless netting the inside distance between the opposite joints in the same mesh when fully extended along its longest possible axis square mesh means a quadrilateral mesh composed of two sets of parallel bars of the same nominal length where one set is parallel to and the other is at right angles to the longitudinal axis of the net diamond mesh means a mesh composed of four bars of the same length where the two diagonals of the mesh are perpendicular and one diagonal is parallel to the longitudinal axis of the net t90 means trawls danish seines or similar towed gear having a codend and extension piece produced from knotted diamond mesh netting turned 90o so that the main direction of run of the netting is parallel to the towing direction bacoma exit window means an escape panel constructed in knotless square mesh netting fitted into the top panel of a codend with its lower edge no more than four meshes from the codline sieve net means a piece of netting attached to the full circumference of the shrimp trawl in front of the codend or extension piece and tapering to an apex where it is attached to the bottom sheet of the shrimp trawl an exit hole is cut where the sieve net and codend join allowing species or individuals too large to pass through the sieve to escape whereas the shrimp can pass through the sieve and into the codend drop means the sum of the height of the meshes (including knots) in a net when wet and stretched perpendicular to the float line immersion time or soak time means the period from the point of time when the gear is first put in the water until the point of time when the gear is fully recovered on board the fishing vessel gear monitoring sensors means remote electronic sensors that are placed on fishing gear to monitor key performance parameters such as the distance between trawl doors or volume of the catch weighted line means a line of baited hooks with added weight to increase its sinking speed and thereby reduce its time of exposure to seabirds acoustic deterrent device means devices aimed to deter species such as marine mammals from fishing gear by emitting acoustic signals bird scaring lines (also called a tori line) means lines with streamers that are towed from a high point near the stern of fishing vessels as baited hooks are deployed with the aim of scaring seabirds away from the hooks direct restocking means the activity of releasing live wild animals of selected species into waters where they occur naturally in order to use the natural production of the aquatic environment to increase the number of individuals available for fisheries and/or to increase natural recruitment transplantation means the process by which a species is intentionally transported and released by humans within areas of established populations of that species selectivity performance indicator means a reference tool to monitor progress over time towards the achievement of the cfp objective of minimising unwanted catches spear gun means a pneumatic or mechanically powered hand-held gun that shoots a spear for the purpose of underwater fishing length of optimal selectivity (lopt) is the average length of capture provided by the best available scientific advice that optimises the growth of individuals in a stock chapter ii common technical measures section 1 prohibited fishing gear and uses article 7 prohibited fishing gear and methods it shall be prohibited to catch or harvest marine species using the following methods (a) toxic stupefying or corrosive substances (b) electric current except for the electric pulse trawl which shall only be allowed under the specific provisions of part d of annex v (c) explosives (d) pneumatic hammers or other percussive instruments (e) towed devices for harvesting red coral or other type of corals or coral-like organisms (f) st andrews cross and similar grabs for harvesting in particular red coral or other type of corals and coral-like species (g) any type of projectile with the exception of those used to kill caged or trapped tuna and of hand-held spears and spear guns used in recreational fishing without an aqualung from dawn until dusk +at least 70 mm mesh size shall apply for single rig vessels in ices division 7a +it shall be prohibited to use trawls with a mesh size of less than 100 mm +directed fishing for small pelagic species with towed gear with a mesh size less than 55 mm shall be permitted provided that (i) no net of mesh size greater than or equal to 55 mm is carried on board and (ii) by-catches of a species subject to the landing obligation are landed and counted against quotas +this is without prejudice to article 2 of commission implementing regulation (eu) no 737/2012 (12) +notwithstanding article 2 this article shall apply to union vessels in international waters and the waters of third countries except where the rules adopted by multilateral fisheries organisations under bilateral or multilateral agreements or by a third country specifically provide otherwise section 2 general restrictions on gear and conditions for their use article 8 general restrictions on the use of towed gear for the purpose of annexes v to xi the mesh size of a towed gear as set out in those annexes shall mean the minimum mesh size of any codend and any extension piece found on board a fishing vessel and attached to or suitable for attachment to any towed net this paragraph shall not apply to netting devices used for the attachment of gear monitoring sensors or when used in conjunction with fish and turtle excluder devices further derogations to improve size or species selectivity for marine species may be provided for in a delegated act adopted in accordance with article 15 +in accordance with regulation (eu) no 1380/2013 minimum conservation reference sizes should be established to ensure the protection of juveniles of marine species and for the purpose of establishing fish stock recovery areas as well as for the purpose of constituting minimum marketing sizes +article 32 amendments to regulation (ec) no 1967/2006 regulation (ec) no 1967/2006 is amended as follows (a) articles 3 8 to 12 14 15 16 and 25 are deleted (b) annexes ii iii and iv are deleted references to the deleted articles and annexes shall be construed as references to the relevant provisions of this regulation +in the joint recommendations submitted for the purpose of adopting the measures referred to in paragraph 2 the member states shall provide scientific evidence to support the adoption of those measures +article 24 implementing acts the commission may adopt implementing acts establishing the following (a) the specifications of the selection devices attached to the gear set out in part b of annexes v to ix (b) detailed rules on the specifications of the fishing gear described in part d of annex v relating to restrictions on gear construction and the control and monitoring measures to be adopted by the flag member state (c) detailed rules on the control and monitoring measures to be adopted by the flag member state when using the gear referred to in point 6 of part c of annex v point 9 of part c of annex vi and point 4 of part c of annex vii (d) detailed rules on the control and monitoring measures to be adopted for the closed or restricted areas described in point 2 of part c of annex v and points 6 and 7 of part c of annex vi (e) detailed rules on the signal and implementation characteristics of acoustic deterrent devices as referred to in part a of annex xiii (f) detailed rules on the design and deployment of bird scaring lines and weighted lines as referred to in part b of annex xiii (g) detailed rules on the specifications for the turtle excluder device referred to in part c of annex xiii +this regulation should establish baseline standards for each sea basin those baseline standards are derived from existing technical measures taking account of stecf advice and the opinions of stakeholders those standards should consist of baseline mesh sizes for towed gear and static nets minimum conservation reference sizes closed or restricted areas as well as nature conservation measures to mitigate against catches of sensitive species in certain areas and any other existing regionally specific technical measures +this provision shall not apply to ices division 7d +stecf shall assess the report referred to in paragraph in the case of a positive assessment of the contribution of the new gear or practice to the objective in paragraph 2 the commission may submit a proposal in accordance with the tfeu to allow for the generalised use of that gear or practice the stecf assessment shall be made public +any individual vessel on the list referred to in point 3 2 may be replaced by another vessel or vessels provided that (a) such replacement does not lead to an increase in the total engine power as indicated in point 3 3(a) for the member state concerned and (b) the engine power of any replacement vessel does not exceed 221 kw at any time +it shall be prohibited to use any device that obstructs or otherwise effectively diminishes the mesh size of the codend or any part of a towed gear as well as to carry on board any such device that is specifically designed for that purpose this paragraph shall not exclude the use of specified devices used to reduce wear and tear of and strengthen the towed gear or to limit the escape of catches in the forward part of towed gear +it shall be prohibited for union vessels to fish for retain on board tranship land store sell and display or offer for sale salmon and sea trout +it shall be permitted to fish within the area defined in point 7 1 with static nets and/or hand lines demersal trawls danish seines or other similar towed nets with a mesh size greater than 80 mm +the conversion factor to be applied to the gutted and headed presentation including the japanese cut presentation of redfish caught in this fishery shall be 1 70 +the commission is empowered to adopt delegated acts pursuant to article 15 and in accordance with article 29 in order to further define the term directed fishing for relevant species in part b of annexes v to x and part a of annex xi for this purpose member states having a direct management interest in the fisheries concerned shall submit any joint recommendations for the first time not later than 15 august chapter vi technical measures in the neafc regulatory area article 28 technical measures in the neafc regulatory area technical measures applicable in the neafc regulatory area are set out in annex xii chapter vii procedural provisions article 29 exercise of the delegation the power to adopt delegated acts is conferred on the commission subject to the conditions laid down in this article +the size of an edible crab (cancer pagurus) shall be measured as shown in figure 7 as the maximum width of the carapace measured perpendicular to the antero-posterior midline of the carapace +vessels that conducted directed fisheries with bottom set longlines in 2006 2007 and 2008 for greater forkbeard (phycis blennoides) may continue to fish in the area south of 44 00 00 n provided they have a fishing authorisation issued in accordance with article 7 of regulation (ec) no 1224/2009 +by way of derogation from article 15 of regulation (eu) no 1380/2013 the minimum conservation reference sizes of sardine anchovy herring horse mackerel and mackerel shall not apply within a limit of 10 by live weight of the total catches retained on board of each of those species the percentage of sardine anchovy herring horse mackerel or mackerel below minimum conservation reference size shall be calculated as the proportion by live weight of all marine organisms on board after sorting or on landing the percentage may be calculated on the basis of one or more representative samples the limit of 10 shall not be exceeded during transhipment landing transportation storage display or sale +in ices divisions 6a and 7a a minimum conservation reference size of 37 mm shall apply +subject to the conditions set out in articles 25 and 26 the technical measures set out in this regulation shall not apply to fishing operations conducted solely for the purpose of (a) scientific investigations and (b) direct restocking or transplantation of marine species +when vessels referred to in point 2 2(a) use beam trawls the beam length or the aggregate length of combined beam trawls measured as the sum of the length of each beam shall not be greater than or shall not be able to be extended to a length of greater than 9 m except when operating with gear having a mesh size between 16 and 31 mm fishing vessels whose primary activity is fishing for common shrimp (crangon crangon) shall be permitted to use beam trawls of which the aggregate beam length measured as the sum of the length of each beam is greater than 9 m when operating with gear having a mesh size between 80 and 99 mm provided an additional fishing authorisation has been issued to these vessels +use of static nets in ices divisions 5b 6a 6b 7b 7c 7h 7j and 7k in accordance with point (a) of article 9 and by way of derogation from part b point 2 of this annex it shall be permitted to use the following gear in waters with a charted depth of less than 600 m bottom set gillnets used for directed fishing for hake with a mesh size of at least 100 mm and no more than 100 meshes deep where the total length of all nets deployed does not exceed 25 km per vessel and the maximum soak time is 24 hours entangling nets used for directed fishing for anglerfish with a mesh size of at least 250 mm and no more than 15 meshes deep where the total length of all nets deployed does not exceed 100 km and the maximum soak time is 72 hours +fishing with beam trawls within the specified area shall be permitted provided that the engine power of the vessels does not exceed 221 kw and their length does not exceed 24 m and the beam length or aggregated beam length measured as the sum of each beam is no more than 9 m or cannot be extended to a length greater than 9 m except when directed fishing for common shrimp (crangon crangon) with a codend mesh size of less than 31 mm +the power to adopt acts in accordance with article 290 tfeu should be delegated to the commission in respect of adopting certain measures in relation to recreational fishing restrictions on towed gear sensitive species and habitats the list of fish and shellfish for which directed fishing is prohibited the definition of directed fishing pilot projects on full documentation on catches and discards and technical measures as part of temporary discard plans as well as in relation to minimum conservation reference sizes mesh sizes closed areas and other technical measures in certain sea basins mitigation measures for sensitive species and the list of species of key indicator stocks it is of particular importance that the commission carry out appropriate consultations during its preparatory work including at expert level and that those consultations be conducted in accordance with the principles laid down in the interinstitutional agreement of 13 april 2016 on better law-making (9) in particular to ensure equal participation in the preparation of delegated acts the european parliament and the council receive all documents at the same time as member states experts and their experts systematically have access to meetings of commission expert groups dealing with the preparation of delegated acts +if requested by the coastal member state to the flag member state the master of a vessel using electric pulse trawl shall in line with article 12 of regulation (eu) 2017/1004 of the european parliament and of the council (9) take on board an observer from the coastal member state during the fishing operations +in ices divisions 6a and 7a a minimum conservation reference size of total length of 70 mm and a carapace length of 20 mm shall apply +for the purpose of this article the equivalent weight of whole norway lobster shall be obtained by multiplying the weight of norway lobster tails by three +whenever more than one net is towed simultaneously by a fishing vessel or by more than one fishing vessel each net shall have the same nominal mesh size the commission is empowered to adopt delegated acts pursuant to article 15 and in accordance with article 29 derogating from this paragraph where the use of several nets having a different mesh size leads to such benefits for the conservation of marine biological resources that are at least equivalent to those of existing fishing methods +vessels shall limit their by-catches of redfish in other fisheries to a maximum of 1 of the total catch retained on board +article 36 amendments to regulation (eu) 2018/973 in regulation (eu) 2018/973 article 9 is amended as follows (a) in paragraph 1 the introductory part is replaced by the following the commission is empowered to adopt delegated acts in accordance with article 16 of this regulation and article 18 of regulation (eu) no 1380/2013 in order to supplement this regulation regarding the following technical measures insofar as they are not covered by regulation (eu) 2019/1241 of the european parliament and of the council ( 2) ( 2) regulation (eu) 2019/1241 of the european parliament and of the council of 20 june 2019 on the conservation of fishery resources and the protection of marine ecosystems through technical measures amending council regulations (ec) no 1967/2006 (ec) no 1224/2009 and regulations (eu) no 1380/2013 (eu) 2016/1139 (eu) 2018/973 (eu) 2019/472 and (eu) 2019/1022 of the european parliament and of the council and repealing council regulations (ec) no 894/97 (ec) no 850/98 (ec) no 2549/2000 (ec) no 254/2002 (ec) no 812/2004 and (ec) no 2187/2005 (oj l 198 25 7 2019 p 105) (b) paragraph 2 is replaced by the following the measures referred to in paragraph 1 of this article shall contribute to the achievement of the objectives set out in article 3 of this regulation and shall comply with article 15 of regulation (eu) 2019/1241 +regulation (eu) no 1236/2010 of the european parliament and of the council of 15 december 2010 laying down a scheme of control and enforcement applicable in the area covered by the convention on future multilateral cooperation in the north-east atlantic fisheries and repealing council regulation (ec) no 2791/1999 (oj l 348 31 12 2010 p 17) +notwithstanding paragraph 6 of this article (a) specific derogations as set out in point 6 1 of part c of annex v point 9 1 of part c of annex vi and point 4 1 of part c of annex vii shall apply where the charted depth is between 200 and 600 m (b) the deployment of bottom set gillnets entangling nets and trammel nets at any position where the charted depth is greater than 200 m shall be allowed in the mediterranean sea section 3 protection of sensitive species and habitats article 10 prohibited fish and shellfish species the catching retention on board transhipment or landing of fish or shellfish species referred to in annex iv to directive 92/43/eec shall be prohibited except when derogations are granted under article 16 of that directive +this provision shall not apply when directed fishing for whiting mackerel and species not subject to catch limits in ices divisions 7d and 7e +directed fishing for norway lobster (nephrops norvegicus) in the geographical areas and outside the periods referred to in point 2 1 shall be prohibited by-catches of norway lobster (nephrops norvgicus) shall be landed and counted against quotas +there should be a possibility for member states to carry out pilot projects with the aim of exploring ways to avoid minimise and eliminate unwanted catches where the results of those projects or scientific advice indicate that there are significant unwanted catches member states should endeavour to establish technical measures to reduce such catches +it shall be prohibited to use driftnets to fish for the species listed in annex iii +where member states submit joint recommendations for the establishment of pilot projects as referred to in paragraph 1 they shall provide scientific evidence to support their adoption stefc shall assess those joint recommendations and shall make that assessment public within six months of the conclusion of the project the member states shall submit a report to the commission outlining the results including a detailed assessment of the changes in selectivity and other environmental impacts +baseline mesh sizes for static nets and driftnets without prejudice to the landing obligation vessels shall use a mesh size of at least 120 mm +council regulation (ec) no 894/97 of 29 april 1997 laying down certain technical measures for the conservation of fishery resources (oj l 132 23 5 1997 p 1) +restrictions on fishing for salmon and sea trout directed fishing for salmon (salmo salar) or sea trout (salmo trutta) shall be prohibited (a) from 1 june to 15 september each year in waters of subdivisions 22-31 (b) from 15 june to 30 september each year in waters of subdivision 32 +member states shall ensure that scientific information is collected by scientific observers on board vessels flying their flag as a minimum the information collected shall include representative data on sex age and length composition by depths this information shall be reported to ices by the competent authorities in the member states +on the basis of the commissions report where at regional level there is evidence that the objectives and targets have not been met member states within that region should submit a plan setting out the corrective actions to be taken to ensure those objectives and targets can be met the commission should also propose to the european parliament and to the council any necessary amendments to this regulation on the basis of that report +when caught accidentally species referred to in paragraphs 1 and 2 shall not be harmed and specimens shall be promptly released back into the sea except for the purpose of allowing scientific research on accidentally killed specimens in accordance with applicable union law +directed fishing for deepwater sharks as listed in annex i to regulation (eu) 2016/2336 of the european parliament and of the council in charted depths of less than 600 m shall be prohibited when accidentally caught deepwater sharks classified as prohibited in this regulation and other union legislation shall be recorded unharmed to the extent possible and shall be promptly released deepwater sharks subject to catch limits shall be retained on board such catches shall be landed and counted against quotas in situations where quota is not or not sufficiently available to the member state concerned the commission may resort to article 105 of regulation (ec) no 1224/ where accidental catches of deepwater sharks by the vessels of any member state exceed 10 tonnes then those vessels may no longer avail of the derogations set out in point part d the use of electric pulse trawls in ices divisions 4b and 4c fishing with electric pulse trawl shall be prohibited in all union waters as of 1 july 2021 +a delegated act adopted pursuant to article 2(2) article 8(3) article 10(4) article 12(2) article 15(2) article 23 and (5) article 27 and article 31 shall enter into force only if no objection has been expressed either by the european parliament or the council within a period of two months of notification of that act to the european parliament and to the council or if before the expiry of that period the european parliament and the council have both informed the commission that they will not object that period shall be extended by two months at the initiative of the european parliament or of the council +council regulation (ec) no 254/2002 of 12 february 2002 establishing measures to be applicable in 2002 for the recovery of the stock of cod in the irish sea (ices division viia) (oj l 41 13 2 2002 p 1) +in union waters in ices sub-areas 5 6 south of 56 n and 7 except ices divisions 7d 7e and 7f a minimum conservation reference size of 130 mm shall apply +member states shall take necessary steps to monitor and assess by means of scientific studies or pilot projects the effects of acoustic deterrent device use over time in the fisheries and areas concerned +regulation (eu) 2019/472 of the european parliament and of the council of 19 march 2019 establishing a multiannual plan for stocks fished in the western waters and adjacent waters and for fisheries exploiting those stocks amending regulations (eu) 2016/1139 and (eu) 2018/973 and repealing council regulations (ec) no 811/2004 (ec) no 2166/2005 (ec) no 388/2006 (ec) no 509/2007 and (ec) no 1300/2008 (oj l 83 25 3 2019 p 1) +article 54b catch handling and discharge restrictions on pelagic vessels the maximum space between bars in the water separator on board pelagic fishing vessels targeting mackerel herring and horse mackerel operating in the neafc convention area as defined in article 3 of regulation (eu) no 1236/2010 shall be 10 mm the bars shall be welded in place if holes are used in the water separator instead of bars the maximum diameter of the holes shall not exceed 10 mm holes in the chutes before the water separator shall not exceed 15 mm in diameter +this is without prejudice to article 5 of commission regulation (ec) no 494/2002 (9) +restrictions on the use of pots and creels it shall be prohibited to have on board or set more than 250 pots or creels per vessel to catch deepwater crustaceans +article 54c restrictions on the use of automatic grading equipment the carrying or use on board a fishing vessel of equipment which is capable of automatically grading by size or by sex herring or mackerel or horse mackerel shall be prohibited +the commission may also propose to the european parliament and to the council any necessary amendments to this regulation on the basis of that report the commission is empowered to adopt delegated acts pursuant to article 15 and in accordance with article 29 in order to amend the list of species set out in annex xiv +the observers referred to in article 16 of regulation (eu) 2016/2336 who are assigned to fishing vessels present in one of the areas referred to in point 1 shall for appropriate samples of the catches of blue ling measure the fish in the samples and determine the stage of sexual maturity of subsampled fish on the basis of advice from stecf member states shall establish detailed protocols for sampling and for the collation of results +by way of derogation from point (b) of article 9 of regulation (eu) no 1236/2010 masters of fishing vessels engaged in this fishery shall report their catches on a daily basis +directed fishing for salmon with gillnets entangling nets and trammel nets of a mesh size equal to or larger than 157 mm or with drifting lines shall be permitted no other gear shall be kept on board +this minimum conservation reference size shall not apply to fries of sardine landed for human consumption if caught by boat seines or shore seines and authorised in accordance with national provisions established in a management plan as referred to in article 19 of regulation (ec) no 1967/2006 provided that the stock of sardine concerned is within safe biological limits +article 39 repeals regulations (ec) no 894/97 (ec) no 850/98 (ec) no 2549/2000 (ec) no 254/2002 (ec) no 812/2004 and (ec) no 2187/2005 are repealed references to the repealed regulations shall be construed as references to this regulation +as soon as it adopts a delegated act the commission shall notify it simultaneously to the european parliament and to the council +the size of a norway lobster (nephrops norvegicus) shall be measured as shown in figure 2 either as the length of the carapace parallel to the midline from the back of either eye socket to the midpoint of the distal dorsal edge of the carapace or as the total length from the tip of the rostrum to the rear end of the telson not including the setae in the case of detached norway lobster tails from the front edge of the first tail segment present to the rear end of the telson not including the setae the tail shall be measured flat unstretched and on the dorsal side +article 35 amendment to regulation (eu) 2016/1139 in regulation (eu) 2016/1139 article 8 is amended as follows (a) in paragraph 1 the introductory part is replaced by the following the commission is empowered to adopt delegated acts in accordance with article 16 of this regulation and article 18 of regulation (eu) no 1380/2013 regarding the following technical measures insofar as they are not covered by regulation (eu) 2019/1241 of the european parliament and of the council ( 1) ( 1) regulation (eu) 2019/1241 of the european parliament and of the council of 20 june 2019 on the conservation of fishery resources and the protection of marine ecosystems through technical measures amending council regulations (ec) no 1967/2006 (ec) no 1224/2009 and regulations (eu) no 1380/2013 (eu) 2016/1139 (eu) 2018/973 (eu) 2019/472 and (eu) 2019/1022 of the european parliament and of the council and repealing council regulations (ec) no 894/97 (ec) no 850/98 (ec) no 2549/2000 (ec) no 254/2002 (ec) no 812/2004 and (ec) no 2187/2005 (oj l 198 25 7 2019 p 105) (b) paragraph 2 is replaced by the following the measures referred to in paragraph 1 of this article shall contribute to the achievement of the objectives set out in article 3 of this regulation and shall comply with article 15 of regulation (eu) 2019/1241 +restrictions on fishing for flounder and turbot the retention on board of the following species of fish shall be prohibited where they are caught within the geographical areas and during the periods mentioned below species geographical areas period flounder sub-divisions 26-29 south of 59 30 n 15 february to 15 may subdivision 32 15 february to 31 may turbot sub-divisions 25 26 and 28 south of 56 50 n 1 june to 31 july directed fishing with trawls danish seines or similar gear with a codend mesh size equal to or greater than 90 mm or with gillnets entangling nets or trammel nets with a mesh size equal to or greater than 90 mm shall be prohibited by-catches of flounder and turbot may be retained on board and landed within a limit of 10 by live weight of the total catch retained on board during the periods referred to in point 6 1 +restrictions on the use of purse seines the length of purse seines and seines without purse lines shall be restricted to 800 m with a drop of 120 m except in the case of purse seines used for directed fishing of tuna +article 12 protection for sensitive habitats including vulnerable marine ecosystems it shall be prohibited to deploy the fishing gear specified in annex ii within the relevant areas set out in that annex +the commission is empowered to adopt delegated acts in accordance with article 29 to amend the list set out in annex i where the best available scientific advice indicates that an amendment of that list is necessary +by way of derogation from paragraphs 1 and 2 of this article any vessel authorised to fish in the baltic sea the belts or the sound may carry automatic grading equipment in the kattegat provided that a fishing authorisation has been issued in accordance with article the fishing authorisation shall define the species areas time periods and any other required conditions applicable to the use and carriage on board of the grading equipment +when entering and exiting the areas referred to in point 2 1 the master of a fishing vessel shall record the date time and place of entry and exit in the logbook +article 38 amendment to regulation (eu) 2019/1022 in regulation (eu) 2019/1022 article 13 is amended as follows (a) in paragraph 1 the introductory part is replaced by the following the commission is empowered to adopt delegated acts in accordance with article 18 of this regulation and article 18 of regulation (eu) no 1380/2013 in order to supplement this regulation regarding the following technical measures insofar as they are not covered by regulation (eu) 2019/1241 of the european parliament and of the council ( 4) ( 4) regulation (eu) 2019/1241 of the european parliament and of the council of 20 june 2019 on the conservation of fishery resources and the protection of marine ecosystems through technical measures amending council regulations (ec) no 1967/2006 (ec) no 1224/2009 and regulations (eu) no 1380/2013 (eu) 2016/1139 (eu) 2018/973 (eu) 2019/472 and (eu) 2019/1022 of the european parliament and of the council and repealing council regulations (ec) no 894/97 (ec) no 850/98 (ec) no 2549/2000 (ec) no 254/2002 (ec) no 812/2004 and (ec) no 2187/2005 (oj l 198 25 7 2019 p 105) (b) paragraph 2 is replaced by the following the measures referred to in paragraph 1 of this article shall contribute to the achievement of the objectives set out in article 3 of this regulation and shall comply with article 15 of regulation (eu) 2019/1241 +article 2 scope this regulation shall apply to activities pursued by union fishing vessels and nationals of member states without prejudice to the primary responsibility of the flag state in the fishing zones referred to in article 5 as well as by fishing vessels flying the flag of and registered in third countries when fishing in union waters +measures adopted pursuant to paragraph 4 of this article shall aim at achieving the target set out in point (b) of article 4 and may take into account international agreements concerning the protection of sensitive species +in order to ensure uniformity as regards the interpretation and implementation of technical rules definitions of fishing gear and fishing operations contained in existing technical measures regulations should be updated and consolidated +measures adopted pursuant to paragraphs 2 and 3 of this article shall aim at achieving the target set out in point (c) of article 4(1) section 4 minimum conservation reference sizes article 13 minimum conservation reference sizes the minimum conservation reference sizes of marine species specified in part a of annexes v to x to this regulation shall apply for the purpose of (a) ensuring the protection of juveniles of marine species pursuant to article 15 and of regulation (eu) no 1380/2013 (b) establishing fish stock recovery areas pursuant to article 8 of regulation (eu) no 1380/2013 (c) constituting minimum marketing sizes pursuant to article 47 of regulation (eu) no 1379/2013 of the european parliament and of the council (28) +article 18 minimum conservation reference sizes a joint recommendation submitted for the purpose of adopting the measures referred to in article 15 in relation to part a of annexes v to x shall respect the objective of ensuring the protection of juveniles of marine species +article 33 amendments to regulation (ec) no 1224/2009 in chapter iv of regulation (ec) no 1224/2009 title iv is amended as follows (a) section 3 is deleted (b) the following section is added section 4 on-board processing and pelagic fisheries article 54a on-board processing the carrying out on board a fishing vessel of any physical or chemical processing of fish to produce fish-meal fish-oil or similar products or to tranship catches of fish for such purposes shall be prohibited +in order to restrict the use of driftnets which can fish over large areas and result in significant catches of sensitive species the existing restrictions on using such fishing gear should be consolidated +council regulation (ec) no 812/2004 of 26 april 2004 laying down measures concerning bycatches of cetaceans in fisheries and amending regulation (ec) no 88/98 (oj l 150 30 4 2004 p 12) +measures adopted pursuant to paragraph 4 of this article shall aim at achieving the target set out in point (b) of article 4(1) the member states shall for control purposes inform the other member states concerned of provisions adopted under paragraph 4 of this article they shall also make publicly available appropriate information concerning such measures +regulation (eu) 2016/1139 of the european parliament and of the council of 6 july 2016 establishing a multiannual plan for the stocks of cod herring and sprat in the baltic sea and the fisheries exploiting those stocks amending council regulation (ec) no 2187/2005 and repealing council regulation (ec) no 1098/2007 (oj l 191 15 7 2016 p 1) +closed area for the conservation of cod in ices divisions 7f and 7g from 1 february to 31 march each year it shall be prohibited to conduct any fishing activity in the following ices statistical rectangles 30e4 31e4 32e this prohibition shall not apply within 6 nautical miles from the baseline +transit through the porcupine bank while carrying on board the species referred to in point 5 1 shall be permitted in accordance with article 50(3) and of regulation (ec) no 1224/2009 +vessels shall be prohibited from using any beam trawl inside the areas within 12 nautical miles of the coasts of the united kingdom and ireland measured from the baselines from which the territorial waters are measured +where blue ling is subject to the landing obligation set out in article 15 of regulation (eu) no 1380/2013 point 2 1 shall not apply fishing for blue ling using any fishing gear within the period and areas referred to in point 2 1 shall be prohibited +where relevant technical measures should apply to recreational fishing which can have a significant impact on the stocks of fish and shellfish species +the catch percentages shall be calculated as the proportion by live weight of all marine biological resources landed after each fishing trip +the catch percentages referred to in paragraph 2 may be calculated on the basis of one or more representative samples +paragraph 1 shall not apply to (a) the processing or transhipment of offal or (b) the production on board a fishing vessel of surimi +the size of any bivalve mollusc shall be measured as shown in figure 5 across the longest part of the shell +a by-catch of blue ling up to a threshold of 6 tonnes may be retained on board and landed once a vessel reaches this six-tonne threshold of blue ling (a) it shall immediately cease fishing and exit the area in which it is present (b) it may not re-enter either of the areas until its catch has been landed (c) it may not return to the sea any quantity of blue ling +marine species caught for the purposes specified in paragraph 1 of this article may be sold stored displayed or offered for sale provided that they are counted against quotas in accordance with article 33 of regulation (ec) no 1224/2009 where applicable and (a) they meet the minimum conservation reference sizes set out in annexes iv to x to this regulation or (b) they are sold for purposes other than direct human consumption +in addition to article 5 of regulation (eu) no 1236/2010 an authorisation to fish for redfish shall only be valid if the reports transmitted by vessels are in accordance with article 9 of that regulation and are recorded in accordance with article 9 thereof +in sub-divisions skagerrak and kattegat a diamond mesh top panel of at least 270 mm mesh size or a square mesh top panel of at least 140 mm mesh size shall be fitted in sub-division kattegat a square mesh panel of at least 120 mm may be fitted (on trawls in the period from 1 october to 31 december and on seines in the period from 1 august to 31 october) +to be phased-in over a two-year period from the date of entry into force of this regulation +it shall be permitted to conduct fishing activities using pots and creels within the specified areas and time periods provided that (i) no fishing gear other than pots and creels are carried on board and (ii) by-catches of a species subject to the landing obligation are landed and counted against quotas +on the basis of an assessment of the impacts of innovative gear the use or extending the use of such innovative gear could be included as an option in joint recommendations from regional groups of member states the use of innovative fishing gear should not be permitted where scientific assessment indicates that their use would lead to significant negative impacts on sensitive habitats and non-target species +specific measures for the gulf of riga in order to fish in sub-division 28-1 vessels shall hold a fishing authorisation issued in accordance with article 7 of regulation (ec) no 1224/2009 +member states may convert the minimum conservation reference size into 55 specimens per kg +when developing joint recommendations in relation to restricted areas for the protection of juveniles and spawning aggregations regional groups of member states should define the objectives geographical extent and duration of closures as well as gear restrictions and control and monitoring arrangements in their joint recommendations +paragraph 1 shall not apply to dredges however during any voyage when dredges are carried on board the following shall apply (a) it shall be prohibited to tranship marine organisms (b) in the baltic sea it shall be prohibited to retain on board or land any quantity of marine organisms unless at least 85 of the live weight thereof consists of molluscs and/or furcellaria lumbricalis (c) in all other sea basins except in the mediterranean sea where article 13 of regulation (ec) no 1967/2006 applies it shall be prohibited to retain on board or land any quantity of marine organisms unless at least 95 by live weight thereof consists of bivalve molluscs gastropods and sponges points (b) and (c) of this paragraph shall not apply to unintended catches of species subject to the landing obligation set out in article 15 of regulation (eu) no 1380/ such unintended catches shall be landed and counted against quotas +pelagic vessels operating in the neafc convention area shall be prohibited from discharging fish under their water line from buffer tanks or refrigerated seawater (rsw) tanks +this regulation should also apply to economic operators that operate online including those that operate on online marketplaces therefore economic operators that operate online should also train their personnel and should also have in place appropriate procedures to detect suspicious transactions furthermore they should only make restricted explosives precursors available to a member of the general public in member states that maintain or establish a licensing regime in accordance with this regulation and only after verifying that that member of the general public holds a valid licence after having verified the identity of the prospective customer for instance through mechanisms provided for in regulation (eu) no 910/2014 of the european parliament and of the council (5) the economic operator should verify that a licence has been issued covering the intended transaction for instance through a physical inspection of the licence at the time of delivery of the explosives precursor or with the consent of the prospective customer by contacting the competent authority of the member state that issued the licence economic operators that operate online like those operating offline should also request end-use declarations of professional users +the choice of substances used by criminals for the illicit manufacture of explosives can change rapidly it should therefore be possible to bring additional substances under the reporting obligation provided for by this regulation where necessary as a matter of urgency in order to accommodate possible developments in the misuse of substances as explosives precursors the power to adopt acts in accordance with article 290 of the treaty on the functioning of the european union should be delegated to the commission in respect of amending this regulation by modifying the limit values above which certain substances that are restricted under this regulation are not to be made available to the members of the general public and by listing additional substances in respect of which suspicious transactions are to be reported it is of particular importance that the commission carry out appropriate consultations during its preparatory work including at expert level and that those consultations be conducted in accordance with the principles laid down in the interinstitutional agreement of 13 april 2016 on better law-making (6) in particular to ensure equal participation in the preparation of delegated acts the european parliament and the council receive all documents at the same time as member states experts and their experts systematically have access to meetings of commission expert groups dealing with the preparation of delegated acts +article 2 scope this regulation applies to the substances listed in annexes i and ii and to mixtures and substances that contain those substances +article 22 repeal regulation (eu) no 98/2013 is repealed with effect from 1 february 2021 +member states shall provide the commission with the information necessary for the preparation of that report +measures of which the member states informed or notified the commission prior to 1 february 2021 under article 13 of regulation (eu) no 98/2013 shall be unaffected by this article +regulation (ec) no 1907/2006 of the european parliament and of the council of 18 december 2006 concerning the registration evaluation authorisation and restriction of chemicals (reach) establishing a european chemicals agency amending directive 1999/45/ec and repealing council regulation (eec) no 793/93 and commission regulation (ec) no 1488/94 as well as council directive 76/769/eec and commission directives 91/155/eec 93/67/eec 93/105/ec and 2000/21/ec (oj l 396 30 12 2006 p 1) +the system for preventing the illicit manufacture of explosives should therefore be further strengthened and harmonised in view of the evolving threat to public security caused by terrorism and other serious criminal activities such strengthening and harmonisation should also ensure the free movement of explosives precursors in the internal market and should promote competition between economic operators and encourage innovation for example by facilitating the development of safer chemicals to replace explosives precursors +either the european parliament or the council may object to a delegated act in accordance with the procedure referred to in article 16(6) in such a case the commission shall repeal the act immediately following the notification of the decision to object by the european parliament or by the council +this regulation requires economic operators to report suspicious transactions regardless of whether the prospective customer is a member of the general public a professional user or an economic operator the obligations that relate to regulated explosives precursors including the obligation to report suspicious transactions should apply to all substances listed in annexes i and ii irrespective of their concentration however products that contain explosives precursors only to such a small extent and in such complex mixtures that the extraction of the explosives precursors is technically extremely difficult should be excluded from the scope of this regulation +online marketplaces act as mere intermediaries between economic operators on the one side and members of the general public professional users or other economic operators on the other side therefore online marketplaces should not fall under the definition of an economic operator and should not be required to instruct their personnel involved in the sale of restricted explosives precursors regarding the obligations under this regulation or to verify the identity and where appropriate the licence of the prospective customer or to request other information from the prospective customer however given the central role which online marketplaces play in online transactions including as regards the sales of regulated explosives precursors they should inform their users who aim to make regulated explosives precursors available through the use of their services of the obligations under this regulation in a clear and effective manner in addition online marketplaces should take measures to help ensure that their users comply with their own obligations regarding verification for instance by offering tools to facilitate the verification of licences given the increasing significance of online marketplaces for all kinds of supply and the importance of this procurement channel including for terrorist purposes online marketplaces should be subject to the same detection and reporting obligations as economic operators although procedures to detect suspicious transactions should be properly adapted to the specific online environment +the power to adopt delegated acts referred to in article 15 shall be conferred on the commission for a period of five years from 31 july the commission shall draw up a report in respect of the delegation of power not later than nine months before the end of the five-year period the delegation of power shall be tacitly extended for periods of an identical duration unless the european parliament or the council opposes such extension not later than three months before the end of each period +article 19 reporting member states shall provide to the commission by 2 february 2022 and subsequently on an annual basis information on (a) the numbers of reported suspicious transactions significant disappearances and thefts respectively (b) the number of licence applications received under any licensing regime that they have maintained or established pursuant to article 5(3) as well as the number of licences issued and the most common reasons for refusing to issue licences (c) awareness-raising actions as referred to in article 10(2) (d) inspections carried out as referred to in article 11 including the number of inspections and economic operators covered +article 11 national inspection authorities each member state shall ensure that competent authorities are in place for inspection and controls of the correct application of articles 5 to 9 (national inspection authorities) +regulation (eu) no 952/2013 of the european parliament and of the council of 9 october 2013 laying down the union customs code (oj l 269 10 10 2013 p 1) +the commission shall ensure that the guidelines referred to in paragraph 1 are available in all official languages of the union +11 7 2019 en official journal of the european union l 186/1 regulation (eu) 2019/1148 of the european parliament and of the council of 20 june 2019 on the marketing and use of explosives precursors amending regulation (ec) no 1907/2006 and repealing regulation (eu) no 98/2013 (text with eea relevance) the european parliament and the council of the european union having regard to the treaty on the functioning of the european union and in particular article 114 thereof having regard to the proposal from the european commission after transmission of the draft legislative act to the national parliaments having regard to the opinion of the european economic and social committee (1) acting in accordance with the ordinary legislative procedure (2) whereas regulation (eu) no 98/2013 of the european parliament and of the council established harmonised rules concerning the making available introduction possession and use of substances or mixtures that could be misused for the illicit manufacture of explosives with a view to limiting their availability to the general public and ensuring the appropriate reporting of suspicious transactions throughout the supply chain +an online marketplace shall take measures to help ensure that its users when making available restricted explosives precursors through its service comply with their obligations under this article +article 9 reporting of suspicious transactions disappearances and thefts for the purpose of preventing and detecting the illicit manufacture of explosives economic operators and online marketplaces shall report suspicious transactions economic operators and online marketplaces shall do so after having regard to all the circumstances and in particular where the prospective customer acts in one or more of the following ways (a) appears unclear about the intended use of the regulated explosives precursors (b) appears unfamiliar with the intended use of the regulated explosives precursors or cannot plausibly explain it (c) intends to buy regulated explosives precursors in quantities combinations or concentrations uncommon for legitimate use (d) is unwilling to provide proof of identity place of residence or where appropriate status as professional user or economic operator (e) insists on using unusual methods of payment including large amounts of cash +16 w/w of nitrogen in relation to ammonium nitrate corresponds to 45 7 ammonium nitrate discarding impurities annex ii reportable explosives precursors list of substances on their own or in mixtures or in substances for which suspicious transactions and significant disappearances and thefts are to be reported within 24 hours name of the substance and chemical abstracts service registry number (cas rn) combined nomenclature (cn) code combined nomenclature (cn) code for mixtures without constituents (e g mercury precious or rare-earth metals or radioactive substances) which would determine classification under another cn code hexamine (cas rn 100-97-0) ex 2933 69 40 ex 3824 99 93 acetone (cas rn 67-64-1) 2914 11 00 ex 3824 99 92 potassium nitrate (cas rn 7757-79-1) 2834 21 00 ex 3824 99 96 sodium nitrate (cas rn 7631-99-4) 3102 50 00 ex 3824 99 96 calcium nitrate (cas rn 10124-37-5) ex 2834 29 80 ex 3824 99 96 calcium ammonium nitrate (cas rn 15245-12-2) ex 3102 60 00 ex 3824 99 96 magnesium powders (cas rn 7439-95-4) ex 8104 30 00 magnesium nitrate hexahydrate (cas rn 13446-18-9) ex 2834 29 80 ex 3824 99 96 aluminium powders (cas rn 7429-90-5) 7603 10 00 ex 7603 20 00 implementing regulation (eu) 2017/ subsequent amendments of annex i to regulation (eec) no 2658/87 should be consulted as regards updated cn codes +the monitoring programme shall set out the means by which and the intervals at which data and other necessary evidence are to be collected it shall specify the actions to be taken by the commission and by the member states in collecting and analysing those data and other evidence +regulation (eu) no 98/2013 of the european parliament and of the council of 15 january 2013 on the marketing and use of explosives precursors (oj l 39 9 2 2013 p 1) +the criteria for determining which measures should apply to which explosives precursors include the level of threat associated with the explosives precursor concerned the volume of trade in the explosives precursor concerned and whether it is possible to establish a concentration level below which the explosives precursor could still be used for the legitimate purposes for which it is made available while making it significantly less likely for that precursor to be used for the illicit manufacture of explosives +in transmitting the information referred to in points (a) (c) and (d) of paragraph 1 to the commission member states shall distinguish between reports actions and inspections which relate to online activities and those that relate to offline activities +member states shall notify all measures that they take in order to implement the licensing regime provided for in paragraph 3 to the commission without delay the notification shall set out the restricted explosives precursors in respect of which the member state provides for a licensing regime in accordance with paragraph 3 +article 18 amendment of regulation (ec) no 1907/2006 in annex xvii to regulation (ec) no 1907/2006 entry (ammonium nitrate (an)) column 2 paragraphs 2 and 3 are deleted +each member state shall set up one or more national contact points with a clearly identified telephone number and e-mail address web form or any other effective tool for the reporting of suspicious transactions and significant disappearances and thefts the national contact points shall be available 24 hours a day seven days a week +since the objective of this regulation namely limiting access by the members of the general public to explosives precursors cannot be sufficiently achieved by the member states but can rather by reason of the scale and effects of the limitation be better achieved at union level the union may adopt measures in accordance with the principle of subsidiarity as set out in article 5 of the treaty on european union in accordance with the principle of proportionality as set out in that article this regulation does not go beyond what is necessary in order to achieve that objective +regulation (eu) no 98/2013 restricted access to and the use of explosives precursors by members of the general public notwithstanding that restriction member states were however able to decide to grant members of the general public access to those substances through a system of licences and registration restrictions and controls on explosives precursors in the member states have therefore been divergent and liable to cause barriers to trade within the union thus impeding the functioning of the internal market furthermore the existing restrictions and controls have not ensured sufficient levels of public security as they have not adequately prevented criminals from acquiring explosives precursors the threat posed by homemade explosives has remained high and continues to evolve +a member state may maintain or establish a licensing regime allowing certain restricted explosives precursors to be made available to or to be introduced possessed or used by members of the general public at concentrations not higher than the corresponding upper limit values set out in column 3 of the table in annex i under such licensing regimes a member of the general public shall obtain and if requested present a licence for acquiring introducing possessing or using restricted explosives precursors such licences shall be issued in accordance with article 6 by a competent authority of the member state where that restricted explosives precursor is intended to be acquired introduced possessed or used +the competent authority may require applicants to pay a licence application fee such fees shall not exceed the cost of processing the application +each member state shall ensure that the national inspection authorities have the resources and investigative powers necessary to ensure the proper administration of their tasks under this regulation +for the purpose of verifying the intended use of the restricted explosives precursor the economic operator shall assess whether the intended use is consistent with the trade business or profession of the prospective customer the economic operator may refuse the transaction if it has reasonable grounds for doubting the legitimacy of the intended use or the intention of the prospective customer to use the restricted explosives precursor for a legitimate purpose the economic operator shall report such transactions or such attempted transactions in accordance with article 9 +article 23 entry into force and application this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union +article 6 licences each member state which issues licences to members of the general public who have a legitimate interest in acquiring introducing possessing or using restricted explosives precursors shall lay down rules for issuing licences in accordance with article 5(3) when considering whether to issue a licence the competent authority of the member state shall take into account all relevant circumstances in particular (a) the demonstrable need for the restricted explosives precursor and the legitimacy of its intended use (b) the availability of the restricted explosives precursor at lower concentrations or alternative substances with a similar effect (c) the background of the applicant including information on previous criminal convictions of the applicant anywhere within the union (d) the storage arrangements that have been proposed to ensure that the restricted explosives precursor is securely stored +members of the general public should not be permitted to acquire introduce possess or use certain explosives precursors at concentrations above certain limit values expressed as a percentage by weight (w/w) however members of the general public should be permitted to acquire introduce possess or use some explosives precursors at concentrations above those limit values for legitimate purposes provided that they hold a licence to do so where the applicant is a legal person the competent authority of the member state should take into account the background of the legal person and of any person acting either individually or as part of an organ of the legal person and having a leading position within the legal person based on a power of representation of the legal person an authority to take decisions on behalf of the legal person or an authority to exercise control within the legal person +article 15 amendments to the annexes the commission shall adopt delegated acts in accordance with article 16 amending this regulation by (a) modifying the limit values in annex i to the extent necessary to accommodate developments in the misuse of substances as explosives precursors or on the basis of research and testing (b) adding substances to annex ii where necessary to accommodate developments in the misuse of substances as explosives precursors the commission shall as part of its preparation of those delegated acts consult relevant stakeholders in particular those in the chemical industry and the retail sector where there is a sudden change in the risk assessment as far as the misuse of substances for the illicit manufacture of explosives is concerned and imperative grounds of urgency so require the procedure provided for in article 17 shall apply to delegated acts adopted pursuant to this article +this regulation requires the processing of personal data and their further disclosure to third parties in the case of suspicious transactions such processing and disclosure imply an interference with the fundamental rights to respect for ones private life and the protection of personal data accordingly it should be ensured that the fundamental right to the protection of personal data of individuals whose personal data are processed in application of this regulation is duly protected regulation (eu) 2016/679 of the european parliament and of the council governs the processing of personal data carried out in the framework of this regulation therefore the processing of personal data involved in licensing and the reporting of suspicious transactions should be carried out in accordance with regulation (eu) 2016/679 including the general data protection principles of lawfulness fairness and transparency purpose limitation data minimisation accuracy storage limitation integrity and confidentiality and the requirement to show due respect for the data subjects rights +a member state that restricts or prohibits substances in accordance with paragraph 1 2 or 3 shall immediately inform the commission and the other member states of such restrictions or prohibitions giving its reasons +the commission shall adopt a separate delegated act in respect of each modification of the limit values in annex i and in respect of each new substance that is added to annex ii each delegated act shall be based on an analysis that demonstrates that the amendment is not likely to lead to disproportionate burdens on economic operators or consumers having due regard to the objectives pursued +economic operators should retain transaction data to substantially assist the authorities in preventing detecting investigating and prosecuting serious crime committed with homemade explosive devices and in verifying compliance with this regulation the identification of all actors in the supply chain and all customers is essential for this purpose be it members of the general public professional users or economic operators as the illicit manufacture and use of homemade explosives might occur only a significant amount of time after the sale of the explosives precursor the transaction data should be retained for as long as is necessary proportionate and appropriate to facilitate investigations taking average inspection periods into account +the commission should carry out an evaluation of this regulation based on the criteria of efficiency effectiveness relevance coherence and eu added value that evaluation should provide the basis for impact assessments of possible further measures information should be collected regularly for the purpose of evaluating this regulation +it shall apply from 1 february 2021 +although regulation (eu) no 98/2013 has contributed to reducing the threat posed by explosives precursors in the union it is necessary to strengthen the system of controls on precursors that can be used for manufacturing homemade explosives given the number of changes needed it is appropriate to replace regulation (eu) no 98/2013 for the sake of clarity +appeals against any decision of the competent authority and disputes concerning compliance with the conditions of the licence shall be heard by an appropriate body that is responsible for such appeals and disputes under national law +where a member state has reasonable grounds for establishing a limit value above which a substance listed in annex ii is to be subject to the restrictions that otherwise apply to restricted explosives precursors it may restrict or prohibit the making available introduction possession and use of that substance by imposing that limit value +notwithstanding paragraph 2 licences that have been validly issued under regulation (eu) no 98/2013 shall remain valid either until the date of validity originally stated on those licences or until 2 february 2022 whichever is the sooner +article 14 safeguard clause where a member state has reasonable grounds for believing that a specific substance that is not listed in annex i or ii could be used for the illicit manufacture of explosives it may restrict or prohibit the making available introduction possession and use of that substance or of any mixture or substance containing it or provide that the substance be subject to reporting obligations in accordance with article 9 +for some restricted explosives precursors at concentrations above the limit values provided for in this regulation there exists no legitimate use by members of the general public therefore licensing should be discontinued for potassium chlorate potassium perchlorate sodium chlorate and sodium perchlorate licensing should only be permitted for a limited number of restricted explosives precursors for which there exists a legitimate use by members of the general public such licensing should be limited to concentrations that do not exceed the upper limit value provided for in this regulation above that upper limit value the risk of the illicit manufacture of explosives outweighs the negligible legitimate use of those explosives precursors by members of the general public given that alternatives to or lower concentrations of those precursors can achieve the same effect this regulation should also determine the circumstances which the competent authorities should as a minimum take into account when considering whether to issue a licence together with the format of a licence set out in annex iii this should facilitate the recognition of licences issued by other member states +the restriction under paragraph 1 also applies to mixtures containing chlorates or perchlorates listed in annex i where the overall concentration of those substances in the mixture exceeds the limit value for any of the substances set out in column 2 of the table in annex i +before adopting a delegated act the commission shall consult experts designated by each member state in accordance with the principles laid down in the interinstitutional agreement of 13 april 2016 on better law-making +article 17 urgency procedure delegated acts adopted under this article shall enter into force without delay and shall apply as long as no objection is expressed in accordance with paragraph the notification of a delegated act to the european parliament and to the council shall state the reasons for the use of the urgency procedure +council regulation (eec) no 2658/87 of 23 july 1987 on the tariff and statistical nomenclature and on the common customs tariff (oj l 256 7 9 1987 p 1) +regulation (eu) no 910/2014 of the european parliament and of the council of 23 july 2014 on electronic identification and trust services for electronic transactions in the internal market and repealing directive 1999/93/ec (oj l 257 28 8 2014 p 73) +notwithstanding article 5(1) the possession introduction and use by members of the general public of restricted explosives precursors that were legally acquired before 1 february 2021 shall be allowed until 2 february this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 june for the european parliament the president a tajani for the council the president g ciamba oj c 367 10 10 2018 p 35 +economic operators and online marketplaces shall have in place appropriate reasonable and proportionate procedures to detect suspicious transactions adapted to the specific environment in which the regulated explosives precursors are made available +regulation (eu) 2015/2219 of the european parliament and of the council of 25 november 2015 on the european union agency for law enforcement training (cepol) and replacing and repealing council decision 2005/681/jha (oj l 319 4 12 2015 p 1) annex i restricted explosives precursors list of substances which are not to be made available to or introduced possessed or used by members of the general public whether on their own or in mixtures or substances that include those substances unless the concentration is equal to or lower than the limit values set out in column 2 and for which suspicious transactions and significant disappearances and thefts are to be reported within 24 hours name of the substance and chemical abstracts service registry number (cas rn) limit value upper limit value for the purpose of licensing under article 5 combined nomenclature (cn) code for a separate chemically defined compound meeting the requirements of note 1 to chapter 28 or 29 of the cn respectively combined nomenclature (cn) code for a mixture without constituents (e g mercury precious or rare-earth metals or radioactive substances) which would determine classification under another cn code nitric acid (cas rn 7697-37-2) 3 w/w 10 w/w ex 2808 00 00 ex 3824 99 96 hydrogen peroxide (cas rn 7722-84-1) 12 w/w 35 w/w 2847 00 00 ex 3824 99 96 sulphuric acid (cas rn 7664-93-9) 15 w/w 40 w/w ex 2807 00 00 ex 3824 99 96 nitromethane (cas rn 75-52-5) 16 w/w 100 w/w ex 2904 20 00 ex 3824 99 92 ammonium nitrate (cas rn 6484-52-2) 16 w/w of nitrogen in relation to ammonium nitrate no licensing permitted 3102 30 10 (in aqueous solution) 3102 30 90 (other) ex 3824 99 96 potassium chlorate (cas rn 3811-04-9) 40 w/w no licensing permitted ex 2829 19 00 ex 3824 99 96 potassium perchlorate (cas rn 7778-74-7) 40 w/w no licensing permitted ex 2829 90 10 ex 3824 99 96 sodium chlorate (cas rn 7775-09-9) 40 w/w no licensing permitted 2829 11 00 ex 3824 99 96 sodium perchlorate (cas rn 7601-89-0) 40 w/w no licensing permitted ex 2829 90 10 ex 3824 99 96 commission implementing regulation (eu) 2017/1925 (2) subsequent amendments of annex i to council regulation (eec) no 2658/87 should be consulted as regards updated cn codes +references to the repealed regulation (eu) no 98/2013 shall be construed as references to this regulation +this regulation does not apply to (a) articles as defined in point of article 3 of regulation (ec) no 1907/2006 (b) pyrotechnic articles as defined in point of article 3 of directive 2013/29/eu of the european parliament and of the council (8) (c) pyrotechnic articles intended for non-commercial use in accordance with national law by the armed forces law enforcement authorities or fire services (d) pyrotechnic equipment falling within the scope of directive 2014/90/eu of the european parliament and of the council (9) (e) pyrotechnic articles intended for use in the aerospace industry (f) percussion caps intended for toys (g) medicinal products that have been legitimately made available to a member of the general public on the basis of a medical prescription in accordance with the applicable national law +in order to apply the restrictions and controls of this regulation those economic operators selling to professional users or to members of the general public who hold a licence should be able to rely on information made available upstream in the supply chain each economic operator in the supply chain should therefore inform the recipient of regulated explosives precursors that the making available introduction possession or use of those explosives precursors by members of the general public is subject to this regulation for example by affixing an appropriate label to the packaging by verifying that an appropriate label is affixed to the packaging or by including that information in the safety data sheet compiled in accordance with annex ii to regulation (ec) no 1907/2006 of the european parliament and of the council (4) +the competent authority may choose to limit the validity of the licence through permitting single or multiple use the period of the validity of the licence shall not exceed three years until the designated expiry of the licence the competent authority may require the licence holder to demonstrate that the conditions under which the licence was issued continue to be fulfilled the licence shall indicate the restricted explosives precursors in respect of which it is issued +article 21 evaluation by 2 february 2026 the commission shall carry out an evaluation of this regulation and present a report on the main findings to the european parliament to the council and to the european economic and social committee the evaluation shall be conducted according to the commissions better regulation guidelines +the difference between an economic operator and a professional user is that the economic operators make an explosives precursor available to another person whereas professional users acquire or introduce an explosives precursor only for their own use economic operators selling to professional users other economic operators or members of the general public who hold a licence should ensure that their personnel involved in the sale of the explosives precursors are aware of which of the products they make available contain explosives precursors for instance by including information that a product contains an explosives precursor in the barcode of the product +directive 2013/29/eu of the european parliament and of the council of 12 june 2013 on the harmonisation of the laws of the member states relating to the making available on the market of pyrotechnic articles (oj l 178 28 6 2013 p 27) +with a view to facilitating cooperation and ensuring that all stakeholders implement this regulation effectively member states shall organise regular exchanges between law enforcement authorities national supervisory authorities economic operators online marketplaces and representatives of the sectors that use regulated explosives precursors economic operators shall be responsible for providing information to their personnel on the manner in which explosives precursors are to be made available under this regulation and for raising personnel awareness in this regard +the distinction between professional users to whom it should be possible to make restricted explosives precursors available and members of the general public to whom they should not be made available depends on whether the person intends to use the explosives precursor concerned for purposes connected with that persons specific trade business or profession including forestry horticultural and agricultural activity conducted either on a full-time or part-time basis and not necessarily related to the size of the area of land on which that activity is conducted economic operators should therefore not make restricted explosives precursors available either to natural or legal persons who are professionally active in areas in which the specific restricted explosives precursors tend not to be used for professional purposes or to natural or legal persons who are engaged in activities that are not connected to any professional purpose +regulation (eu) 2016/679 of the european parliament and of the council of 27 april 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data and repealing directive 95/46/ec (general data protection regulation) (oj l 119 4 5 2016 p 1) +directive 2014/90/eu of the european parliament and of the council of 23 july 2014 on marine equipment and repealing council directive 96/98/ec (oj l 257 28 8 2014 p 146) +any applications for the renewal of the licences referred to in paragraph 3 that are made on or after 1 february 2021 shall be made in accordance with this regulation +regulation (eu) no 98/2013 should be repealed have adopted this regulation article 1 subject matter this regulation establishes harmonised rules concerning the making available introduction possession and use of substances or mixtures that could be misused for the illicit manufacture of explosives with a view to limiting the availability of those substances or mixtures to members of the general public and with a view to ensuring the appropriate reporting of suspicious transactions throughout the supply chain this regulation is without prejudice to other more stringent provisions of union law concerning the substances listed in annexes i and ii +a member state that restricts or prohibits substances in accordance with paragraph 1 2 or 3 shall raise awareness of such restrictions or prohibitions among economic operators and online marketplaces on its territory +member states may use the format for a licence set out in annex iii +the competent authorities shall ensure that the guidelines provided for in paragraph 1 are regularly disseminated in a manner deemed appropriate by the competent authorities in accordance with the objectives of the guidelines +the delegation of power referred to in article 15 may be revoked at any time by the european parliament or by the council a decision to revoke shall put an end to the delegation of the power specified in that decision it shall take effect the day following the publication of the decision in the official journal of the european union or at a later date specified therein it shall not affect the validity of any delegated acts already in force +without prejudice to paragraph 6 the commission may after consulting the member state concerned and if appropriate third parties take a decision that the measure taken by that member state is not justified and require that member state to revoke or amend the provisional measure the commission shall take such decisions within 60 days of receipt of the information referred to in paragraph the member state concerned shall raise awareness of such decisions among economic operators and online marketplaces on its territory +for the purpose of verifying that a prospective customer is a professional user or another economic operator the economic operator who makes available a restricted explosives precursor to a professional user or another economic operator shall for each transaction request the following information unless such a verification for that prospective customer has already occurred within a period of one year prior to the date of that transaction and the transaction does not significantly deviate from previous transactions (a) proof of identity of the individual entitled to represent the prospective customer (b) the trade business or profession together with the company name address and the value added tax identification number or any other relevant company registration number if any of the prospective customer (c) the intended use of the restricted explosives precursors by the prospective customer member states may use the template of the customers statement set out in annex iv +the competent authority shall refuse to issue a licence if it has reasonable grounds for doubting the legitimacy of the intended use or the intention of the member of the general public to use the restricted explosives precursor for a legitimate purpose +upon receiving the information referred to in paragraph 4 the commission shall immediately examine whether to prepare amendments to the annexes in accordance with article 15 or to prepare a legislative proposal to amend the annexes where appropriate the member state concerned shall amend or repeal its national measures to take account of any such amendments to those annexes +article 20 monitoring programme by 1 august 2020 the commission shall establish a detailed programme for monitoring the outputs results and impact of this regulation +the obligations on online marketplaces under this regulation should not amount to a general monitoring obligation this regulation should lay down only specific obligations for online marketplaces with respect to the detection and reporting of suspicious transactions that take place on their websites or that use their computing services online marketplaces should not be held liable on the basis of this regulation for transactions that were not detected despite the online marketplace having in place appropriate reasonable and proportionate procedures to detect such suspicious transactions +with a particle size less than 200 m +member states shall provide the commission with the data and other evidence necessary for the monitoring +article 3 definitions for the purposes of this regulation the following definitions apply substance means a substance as defined in point of article 3 of regulation (ec) no 1907/2006 mixture means a mixture as defined in point of article 3 of regulation (ec) no 1907/2006 article means an article as defined in point of article 3 of regulation (ec) no 1907/2006 making available means any supply whether in return for payment or free of charge introduction means the act of bringing a substance into the territory of a member state irrespective of its destination within the union whether from another member state or from a third country under any customs procedure as defined in regulation (eu) no 952/2013 of the european parliament and of the council including transit use means use as defined in point of article 3 of regulation (ec) no 1907/2006 suspicious transaction means any transaction concerning regulated explosives precursors for which there are reasonable grounds after taking account of all relevant factors for suspecting that the substance or mixture concerned is intended for the illicit manufacture of explosives member of the general public means any natural or legal person who is acting for purposes not connected with that persons trade business or profession professional user means any natural or legal person or public entity or group of such persons or entities that has a demonstrable need for a restricted explosives precursor for purposes connected with its trade business or profession including agricultural activity conducted either on a full-time or part-time basis and not necessarily related to the size of the area of land on which that agricultural activity is conducted provided that such purposes do not include making that restricted explosives precursor available to another person economic operator means any natural or legal person or public entity or group of such persons or entities which make regulated explosives precursors available on the market either offline or online including on online marketplaces online marketplace means a provider of an intermediary service that allows economic operators on the one side and members of the general public professional users or other economic operators on the other side to conclude transactions regarding regulated explosives precursors via online sales or service contracts either on the online marketplaces website or on an economic operators website that uses computing services provided by the online marketplace restricted explosives precursor means a substance listed in annex i that is at a concentration higher than the corresponding limit value set out in column 2 of the table in annex i including a mixture or another substance in which a substance listed in that annex is present at a concentration higher than the corresponding limit value regulated explosives precursor means a substance listed in annex i or ii including a mixture or another substance in which a substance listed in those annexes is present excluding homogeneous mixtures of more than 5 ingredients in which the concentration of each substance listed in annex i or ii is below 1 w/w agricultural activity means the production rearing or growing of agricultural products including harvesting milking breeding animals and keeping animals for farming purposes or maintaining the agricultural area in good agricultural and environmental condition as established under article 94 of regulation (eu) no 1306/2013 of the european parliament and of the council (11) +article 4 free movement unless otherwise provided for in this regulation or in other legal acts of the union member states shall not prohibit restrict or impede the making available of a regulated explosives precursor on grounds related to the prevention of the illicit manufacture of explosives +article 7 informing the supply chain an economic operator who makes available a restricted explosives precursor to another economic operator shall inform that economic operator that the acquisition introduction possession or use of that restricted explosives precursor by members of the general public is subject to a restriction as set out in article 5 and (3) an economic operator who makes available a regulated explosives precursor to another economic operator shall inform that economic operator that the acquisition introduction possession or use of that regulated explosives precursor by members of the general public is subject to reporting obligations as set out in article 9 +an economic operator who makes available regulated explosives precursors to a professional user or to a member of the general public shall ensure and be able to demonstrate to the national inspection authorities referred to in article 11 that its personnel involved in the sale of regulated explosives precursors are (a) aware which of the products it makes available contain regulated explosives precursors (b) instructed regarding the obligations pursuant to articles 5 to 9 +commission implementing regulation (eu) 2017/1925 of 12 october 2017 amending annex i to council regulation (eec) no 2658/87 on the tariff and statistical nomenclature and on the common customs tariff (oj l 282 31 10 2017 p 1) +member states shall organise at least once a year awareness-raising actions adapted to the specificities of each of the different sectors using regulated explosives precursors +article 10 training and awareness-raising member states shall ensure adequate resources for and the provision of training for law enforcement authorities first responders and customs authorities to recognise regulated explosives precursors in the course of their duties and to react in a timely and appropriate manner to a suspicious activity member states may request additional specific trainings from the european union agency for law enforcement training (cepol) established by regulation (eu) 2015/2219 of the european parliament and of the council (13) +personnel of economic operators who are involved in the making available of explosives precursors should be subject to the same rules under this regulation as apply to members of the general public when using such explosives precursors in their personal capacity +article 13 penalties member states shall lay down the rules on penalties applicable to infringements of this regulation and shall take all measures necessary to ensure that they are implemented the penalties provided for shall be effective proportionate and dissuasive +the commission shall make publicly available a list of measures notified by member states in accordance with paragraph 4 +article 16 exercise of the delegation the power to adopt delegated acts is conferred on the commission subject to the conditions laid down in this article +as soon as it adopts a delegated act the commission shall notify it simultaneously to the european parliament and to the council +to improve the application of this regulation both economic operators and public authorities should provide for adequate training with respect to the obligations under this regulation member states should have inspection authorities in place should organise regular awareness-raising actions that are adapted to the specificities of each of the different sectors and should maintain a permanent dialogue with economic operators at all levels of the supply chain including economic operators that operate online +economic operators and online marketplaces may refuse the suspicious transaction they shall report the suspicious transaction or attempted suspicious transaction within 24 hours of considering that it is suspicious when reporting such transactions they shall give the identity of the customer if possible and all the details which have led them to consider the transaction to be suspicious to the national contact point of the member state where the suspicious transaction was concluded or attempted +economic operators and professional users shall report significant disappearances and thefts of regulated explosives precursors within 24 hours of detection to the national contact point of the member state where the disappearance or theft took place in deciding whether a disappearance or theft is significant they shall take into account whether the amount is unusual considering all circumstances of the case +position of the european parliament of 16 april 2019 (not yet published in the official journal) and decision of the council of 14 june 2019 +the regulatory framework would be simplified by integrating the relevant security-oriented restrictions on the making available of ammonium nitrate from regulation (ec) no 1907/2006 into this regulation for that reason annex xvii to regulation (ec) no 1907/2006 should be amended accordingly +members of the general public that have acquired restricted explosives precursors in accordance with article 5 shall report significant disappearances and thefts of restricted explosives precursors within 24 hours of detection to the national contact point of the member state where the disappearance or theft took place +the competent authority may suspend or revoke the licence where it has reasonable grounds for believing that the conditions under which the licence was issued are no longer fulfilled the competent authority shall inform licence holders of any suspension or revocation of their licences without delay unless this would jeopardise ongoing investigations +article 5 making available introduction possession and use restricted explosives precursors shall not be made available to or introduced possessed or used by members of the general public +article 8 verification upon sale an economic operator who makes available a restricted explosives precursor to a member of the general public in accordance with article 5 shall for each transaction verify the proof of identity and licence of that member of the general public in compliance with the licensing regime established by the member state where the restricted explosives precursor is made available and record the amount of the restricted explosives precursor on the licence +it should be possible for the mutual recognition of licences issued by other member states to be done bilaterally or multilaterally in order to achieve the objectives of the single market +article 12 guidelines the commission shall provide regularly updated guidelines to assist actors in the chemical supply chain and the competent authorities and to facilitate cooperation between the competent authorities and economic operators the commission shall consult the standing committee on explosives precursors on any draft guidelines or updates thereof the guidelines shall in particular provide (a) information on how to conduct inspections (b) information on how to apply the restrictions and controls under this regulation to regulated explosives precursors ordered at a distance by members of the general public or professional users (c) information on possible measures to be adopted by online marketplaces to ensure compliance with this regulation (d) information on how to exchange relevant information between the competent authorities and the national contact points and between member states (e) information on how to recognise and report suspicious transactions (f) information on storage arrangements which ensure that a regulated explosives precursor is securely stored (g) other information which may be deemed useful +an online marketplace shall take measures to ensure that its users when making available regulated explosives precursors through its services are informed of their obligations pursuant to this regulation +for the purpose of verifying compliance with this regulation and preventing and detecting the illicit manufacture of explosives economic operators shall retain the information referred to in paragraphs 1 and 2 for 18 months from the date of transaction during that period the information shall be made available for inspection at the request of the national inspection authorities or law enforcement authorities +the competent authority shall obtain the information on previous criminal convictions of the applicant in other member states as referred to in point (c) of paragraph 1 of this article through the system established by council framework decision 2009/315/jha (12) the central authorities referred to in article 3 of that framework decision shall provide replies to requests for such information within 10 working days from the date the request was received +council framework decision 2009/315/jha of 26 february 2009 on the organisation and content of the exchange of information extracted from the criminal record between member states (oj l 93 7 4 2009 p 23) +a member state may recognise licences issued by other member states under this regulation +in order to deal with substances not already listed in annex i or ii but in respect of which a member state discovers reasonable grounds for believing that they could be used for the illicit manufacture of explosives a safeguard clause for an adequate union procedure should be provided moreover in view of the specific risks to be addressed in this regulation it is appropriate to allow member states in certain circumstances to adopt safeguard measures including in respect of substances already subject to measures under this regulation furthermore member states should be allowed to maintain national measures of which they have already informed or notified the commission in accordance with article 13 of regulation (eu) no 98/2013 +where a member state has reasonable grounds for believing that a specific substance listed in annex i could be used for the illicit manufacture of explosives at a concentration equal to or lower than the limit values set out in column 2 or 3 of the table in annex i it may further restrict or prohibit the making available introduction possession and use of that substance by imposing a lower limit value +a delegated act adopted pursuant to article 15 shall enter into force only if no objection has been expressed either by the european parliament or the council within a period of two months of notification of that act to the european parliament and the council or if before the expiry of that period the european parliament and the council have both informed the commission that they will not object that period shall be extended by two months at the initiative of the european parliament or of the council +article 8 a permanent logo as set out in annex v shall be affixed to any packaging or product and any document used in connection with the approved product sold at tiered prices to countries of destination this requirement shall apply as long as the tiered-priced product concerned remains listed in annex i +in order to add products to the list of products covered by this regulation the power to adopt acts in accordance with article 290 of the treaty on the functioning of the european union should be delegated to the commission in order to amend the annexes to this regulation it is of particular importance that the commission carry out appropriate consultations during its preparatory work including at expert level the commission when preparing and drawing up delegated acts should ensure a simultaneous timely and appropriate transmission of relevant documents to the european parliament and to the council have adopted this regulation article 1 this regulation lays down (a) the criteria for establishing what is a tiered-priced product (b) the conditions under which the customs authorities shall take action (c) the measures which shall be taken by the competent authorities in the member states +the european parliament may within one month of submission of the commission s report invite the commission to an ad hoc meeting of its responsible committee to present and explain any issues related to the application of this regulation +article 5 the power to adopt delegated acts is conferred on the commission subject to the conditions laid down in this article +the commission shall be empowered to adopt delegated acts in accordance with article 5 to amend annexes ii iii and iv where necessary in order to revise the list of diseases the countries of destination covered by this regulation as well as the formulae used to identify tiered-priced products in the light of the experience gained from its application or to respond to a health crisis +for the purposes of this regulation (a) tiered-priced product means any pharmaceutical product which is used in the prevention diagnosis or treatment of a disease referred to in annex iv and which is priced in accordance with one of the optional price calculations set out in article 3 verified by the commission or an independent auditor as provided for in article 4 and entered in the list of tiered-priced products set out in annex i (b) countries of destination means the countries listed in annex ii (c) competent authority means an authority designated by a member state to determine whether goods suspended by the customs authorities in the respective member state are tiered-priced products and to give instructions depending on the outcome of the review +it is necessary to provide for a procedure which identifies the products countries and diseases covered by this regulation +the following shall be exempted from the prohibition regarding tiered-priced products as set out in paragraph 1 (a) re-export to countries of destination (b) placing under a transit or customs warehouse procedure or in a free zone or free warehouse for the purpose of re-export to a country of destination +a delegated act adopted pursuant to article 4 shall enter into force only if no objection has been expressed either by the european parliament or the council within a period of two months of notification of that act to the european parliament and the council or if before the expiry of that period the european parliament and the council have both informed the commission that they will not object that period shall be extended by four months at the initiative of the european parliament or of the council +the competent authority shall inform the commission of all decisions adopted pursuant to this regulation +article 2 the importation into the union of tiered-priced products for the purposes of release for free circulation re-export placing under suspensive procedures or placing in a free zone or free warehouse shall be prohibited +the procedure of suspension or detention of the goods shall be carried out at the expense of the importer if it is not possible to recover those expenses from the importer they may in accordance with national legislation be recovered from any other person responsible for the attempted illicit importation +article 7 a product approved as a tiered-priced product and listed in annex i shall remain on that list for as long as the conditions set out in article 4 are fulfilled and annual sales reports have been submitted to the commission in accordance with article the applicant shall submit information to the commission on any change which has occurred with respect to the scope or conditions set out in article 4 in order to ensure that those requirements are met +where tiered-priced products have been seized under this regulation the competent authority should be able in accordance with national legislation and with a view to ensuring that the intended use is made of the seized products to the full benefit of the countries listed in annex ii to decide to make them available for humanitarian purposes in those countries in the absence of such decision the seized products should be destroyed +manufacturers of tiered-priced products should differentiate the appearance of tiered- priced products to facilitate the task of identifying them +article 6 delegated acts adopted under this article shall enter into force without delay and shall apply as long as no objection is expressed in accordance with paragraph the notification of a delegated act to the european parliament and to the council shall state the reasons for the use of the urgency procedure laid down in this article +the delegation of power referred to in article 4 and may be revoked at any time by the european parliament or by the council a decision to revoke shall put an end to the delegation of power specified in that decision it shall take effect the day following the publication of the decision in the official journal of the european union or at a later date specified therein it shall not affect the validity of any delegated acts already in force +24 5 2016 en official journal of the european union l 135/39 regulation (eu) 2016/793 of the european parliament and of the council of 11 may 2016 to avoid trade diversion into the european union of certain key medicines (codification) the european parliament and the council of the european union having regard to the treaty on the functioning of the european union and in particular article 207 thereof having regard to the proposal from the european commission after transmission of the draft legislative act to the national parliaments acting in accordance with the ordinary legislative procedure (1) whereas council regulation (ec) no 953/2003 has been substantially amended several times (3) in the interests of clarity and rationality that regulation should be codified +many of the poorest developing countries are in urgent need of access to affordable essential medicines for the treatment of communicable diseases those countries are heavily dependent on imports of medicines as local manufacturing is scarce +if an application is not sufficiently detailed for a review as to substance the commission shall request the applicant in writing to submit such missing information if the applicant does not complete the application within the time period set out in that written request the application shall be null and void +as soon as it adopts a delegated act the commission shall notify it simultaneously to the european parliament and to the council +article 4 in order for products to benefit from this regulation manufacturers or exporters of pharmaceutical products shall submit applications to the commission +it will be appropriate to review the lists of the diseases and the countries of destination covered by this regulation as well as the formulae used to identify tiered-priced products in the light inter alia of the experience gained from its application +annex i shall be updated every second month by the commission +any application addressed to the commission shall contain the following information (a) the product name and active ingredient of the tiered-priced product and sufficient information to verify which disease it prevents diagnoses or treats (b) the price offered in relation to either of the optional price calculations set out in article 3 in sufficient detail to enable verification instead of submitting such detailed information the applicant may submit a certificate issued by an independent auditor stating that the price has been verified and corresponds to one of the criteria set out in annex iii the independent auditor shall be appointed in agreement between the manufacturer and the commission any information submitted by the applicant to the auditor shall remain confidential (c) the country or countries of destination to which the applicant intends to sell the product concerned (d) the code number based on the combined nomenclature as set out in annex i to council regulation (eec) no 2658/87 and where appropriate supplemented by taric subdivisions to identify unambiguously the goods concerned and (e) any measures taken by the manufacturer or exporter to make the tiered-priced product easily distinguishable from identical products offered for sale within the union +a delegated act adopted pursuant to article 4 shall enter into force only if no objection has been expressed either by the european parliament or the council within a period of two months of notification of that act to the european parliament and the council or if before the expiry of that period the european parliament and the council have both informed the commission that they will not object that period shall be extended by two months at the initiative of the european parliament or of the council +this regulation serves the purpose of preventing tiered-priced products from being imported into the union exemptions are laid down for certain situations on the strict condition that it is ensured that the final destination of the products in question is one of the countries listed in annex ii +the commission shall report biennially to the european parliament and to the council on the volumes exported under tiered prices including on the volumes exported within the framework of a partnership agreement agreed between the manufacturer and the government of a country of destination the report shall examine the scope of countries and diseases and general criteria for the implementation of article 3 +products destined to be donated to recipients in one of the countries listed in annex ii may be the subject of a notification to that effect for the purposes of approval and insertion in annex i +article 11 this regulation shall not apply to goods of a non-commercial nature contained in travellers personal luggage for personal use within the limits laid down in respect of relief from customs duty +council regulation (ec) no 953/2003 of 26 may 2003 to avoid trade diversion into the european union of certain key medicines (oj l 135 3 6 2003 p 5) +legislative and regulatory instruments are in place in most developed countries to prevent the importation in certain circumstances of pharmaceutical products but such instruments risk becoming insufficient where substantial volumes of heavily discounted pharmaceuticals are sold to the poorest developing country markets and the economic interest in trade diversion into high priced markets therefore may increase significantly +no later than six months from the date of submission of the report to the european parliament and to the council the commission shall make the report public +article 3 the tiered price referred to in article 4(2)(b) shall at the option of the applicant be either (a) no higher than the percentage set out in annex iii of the weighted average ex factory price charged by a manufacturer in markets of the organisation for economic cooperation and development (oecd) for the same product at the time of application or (b) a manufacturer s direct production costs with the addition of the maximum percentage which is set out in annex iii +council regulation (eec) no 2658/87 of 23 july 1987 on the tariff and statistical nomenclature and on the common customs tariff (oj l 256 7 9 1987 p 1) +regulation (eu) no 608/2013 of the european parliament and of the council of 12 june 2013 concerning customs enforcement of intellectual property rights and repealing council regulation (ec) no 1383/2003 (oj l 181 29 6 2013 p 15) +article 15 this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at strasbourg 11 may for the european parliament the president m schulz for the council the president j a hennis-plasschaert position of the european parliament of 9 march 2016 (not yet published in the official journal) and decision of the council of 11 april 2016 +article 13 the application of this regulation shall in no circumstances interfere with procedures laid down in directive 2001/83/ec of the european parliament and of the council and regulation (ec) no 726/2004 of the european parliament and of the council (7) +article 9 where there is reason to suspect that contrary to the prohibition provided for in article 2 tiered-priced products will be imported into the union customs authorities shall suspend the release of or detain the products concerned for the time necessary to obtain a decision of the competent authorities on the character of the merchandise the period of suspension or detention shall not exceed 10 working days unless special circumstances apply in which case the period may be extended by a maximum of 10 working days upon expiry of that period the products shall be released provided that all customs formalities have been complied with +either the european parliament or the council may object to a delegated act in accordance with the procedure referred to in article 5 and (6) in such a case the commission shall repeal the act without delay following the notification of the decision to object by the european parliament or by the council +the competent authority in the member state concerned and the manufacturer or exporter mentioned in annex i shall be informed without delay of the suspended release or detention of the products and shall receive all information available with respect to the products concerned due account shall be taken of national provisions on the protection of personal data commercial and industrial secrecy and professional and administrative confidentiality the importer and where appropriate the exporter shall be given ample opportunity to supply the competent authority with the information which it deems appropriate regarding the products +article 12 the commission shall monitor on an annual basis the volumes of exports of tiered-priced products listed in annex i and exported to the countries of destination on the basis of information provided to it by pharmaceutical manufacturers and exporters for this purpose a standard form shall be issued by the commission manufacturers and exporters shall submit such sales reports annually for each tiered-priced product to the commission on a confidential basis +article 10 if products suspended for release or detained by customs authorities are recognised by the competent authority as tiered-priced products under this regulation the competent authority shall ensure that those products are seized and disposed of in accordance with national legislation those procedures shall be carried out at the expense of the importer if it is not possible to recover those expenses from the importer they may in accordance with national legislation be recovered from any other person responsible for the attempted illicit importation +this regulation shall not interfere with intellectual property rights or rights of intellectual property owners +if the commission finds that the application does not fulfil the criteria set out in this regulation the application shall be rejected and the applicant shall be informed within 15 days of the date of the decision nothing shall prevent the applicant from submitting a modified application for the same product +where the commission determines that a product fulfils the requirements set out in this regulation the commission shall be empowered to adopt delegated acts in accordance with article 5 to add the product concerned to annex i at the next update the commission shall inform the applicant of its decision within 15 days of its adoption thereof where a delay in the addition of a product to annex i would cause a delay in responding to an urgent need for access to affordable essential medicines in a developing country and therefore imperative grounds of urgency so require the procedure provided for in article 6 shall apply to delegated acts adopted pursuant to the first subparagraph +the power to adopt delegated acts referred to in article 4 and shall be conferred on the commission for a period of 5 years from 20 february the commission shall draw up a report in respect of the delegation of power not later than nine months before the end of the 5-year period the delegation of power shall be tacitly extended for periods of an identical duration unless the european parliament or the council opposes such extension not later than three months before the end of each period +there is a need to encourage pharmaceutical manufacturers to make pharmaceutical products available at heavily reduced prices in significantly increased volumes by ensuring through this regulation that such products remain on the poorest developing country markets donations of pharmaceutical products and products sold under contracts awarded in response to competitive tenders from national governments or international procurement bodies or under a partnership agreed between the manufacturer and the government of a country of destination should be able to qualify under this regulation on equal conditions bearing in mind that donations do not contribute to the improvement of access to such products on a sustainable basis +with regard to tiered-priced products contained in travellers personal luggage for personal use the same rules as set out in regulation (eu) no 608/2013 of the european parliament and of the council apply +it shall be sufficient reason for the customs authorities to suspend the release of or detain products if there is sufficient information available to consider that the product in question is tiered priced +price segmentation between developed country markets and the poorest developing country markets is necessary to ensure that the poorest developing countries are supplied with essential pharmaceutical products at heavily reduced prices therefore those heavily reduced prices cannot be understood as a reference for the price to be paid for the same products in developed country markets +where products suspended for release or detained by customs authorities subsequent to further control by the competent authority are found not to qualify as tiered-priced products under this regulation the customs authority shall release the products to the consignee provided that all customs formalities have been complied with +article 14 regulation (ec) no 953/2003 is repealed references to the repealed regulation shall be construed as references to this regulation and shall be read in accordance with the correlation table in annex vii +it is therefore necessary to prohibit fishing activities for that stock has adopted this regulation article 1 quota exhaustion the fishing quota allocated to the member state referred to in the annex to this regulation for the stock referred to therein for 2018 shall be deemed to be exhausted from the date set out in that annex +article 2 prohibitions fishing activities for the stock referred to in the annex to this regulation by vessels flying the flag of or registered in the member state referred to therein shall be prohibited from the date set out in that annex in particular it shall be prohibited to retain on board relocate tranship or land fish from that stock caught by those vessels after that date +article 3 entry into force this regulation shall enter into force on the day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 17 december for the commission on behalf of the president jo o aguiar machado director-general directorate-general for maritime affairs and fisheries oj l 343 22 12 2009 p +according to the information received by the commission catches of the stock referred to in the annex to this regulation by vessels flying the flag of or registered in the member state referred to therein have exhausted the quota allocated for 2018 +21 12 2018 en official journal of the european union l 327/41 commission regulation (eu) 2018/2037 of 17 december 2018 establishing a prohibition of fishing for herring in union and international waters of 5b 6b and 6an by vessels flying the flag of france the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1224/2009 of 20 november 2009 establishing a union control system for ensuring compliance with the rules of the common fisheries policy (1) and in particular article 36 thereof whereas council regulation (eu) 2018/120 lays down quotas for 2018 +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +23 7 2011 en official journal of the european union l 193/24 commission implementing regulation (eu) no 722/2011 of 22 july 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 690/2011 (4) +as no statement of objection under article 7 of regulation (ec) no 510/2006 has been received by the commission that name should therefore be entered in the register has adopted this regulation article 1 the name contained in the annex to this regulation is hereby entered in the register +article 2 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission on behalf of the president dacian ciolo member of the commission oj l 93 31 3 2006 p 12 +23 7 2011 en official journal of the european union l 193/15 commission implementing regulation (eu) no 718/2011 of 20 july 2011 approving a non-minor amendment to the specification for a name entered in the register of protected designations of origin and protected geographical indications (riviera ligure (pdo)) the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 510/2006 of 20 march 2006 on the protection of geographical indications and designations of origin for agricultural products and foodstuffs (1) and in particular the first subparagraph of article 7 thereof whereas by virtue of the first subparagraph of article 9 of regulation (ec) no 510/2006 and having regard to article 17 thereof the commission has examined italys application for the approval of amendments to the specification for the protected designation of origin riviera ligure registered under commission regulation (ec) no 1107/96 (2) as amended by regulation (ec) no 123/97 (3) +article 2 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission on behalf of the president dacian ciolo member of the commission oj l 93 31 3 2006 p 12 +since the amendments in question are not minor within the meaning of article 9 of regulation (ec) no 510/2006 the commission published the amendment application in the official journal of the european union (4) as required by the first subparagraph of article 6 of that regulation as no statement of objection within the meaning of article 7 of regulation (ec) no 510/2006 has been received by the commission the amendments should be approved has adopted this regulation article 1 the amendments to the specification published in the official journal of the european union regarding the name contained in the annex to this regulation are hereby approved +23 7 2011 en official journal of the european union l 193/13 commission implementing regulation (eu) no 717/2011 of 20 july 2011 entering a name in the register of protected designations of origin and protected geographical indications (cornish pasty (pgi)) the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 510/2006 of 20 march 2006 on the protection of geographical indications and designations of origin for agricultural products and foodstuffs (1) and in particular the first subparagraph of article 7 thereof whereas pursuant to the first subparagraph of article 6 of regulation (ec) no 510/2006 the united kingdoms application to register the name cornish pasty was published in the official journal of the european union (2) +those undertakings should therefore be allowed to continue to use the registered name cornish pasty during a transitional period of 3 years from the entry into force of this regulation has adopted this regulation article 1 the name contained in the annex to this regulation is hereby entered in the register pukka pies ltd pork farms ltd shire foods ltd northern foods plc greggs plc peters food service ltd and kerry group plc may however continue to use that name for a period of 3 years from the date of entry into force of this regulation +as no objections within the meaning of article 7 of regulation (ec) no 510/2006 were received by the commission that name should therefore be entered in the register +however by virtue of the second subparagraph of article 13 of regulation (ec) no 510/2006 a transitional period may be set for undertakings established in the member state in which the geographical area is located provided that the undertakings concerned have legally marketed the products in question using the names concerned continuously for at least 5 years preceding the date of the publication referred to in article 6 of that regulation and have noted that point in the national objection procedure referred to in article 5 thereof +article 2 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission on behalf of the president dacian ciolo member of the commission oj l 93 31 3 2006 p 12 +in a letter received on 25 march 2011 the uk authorities confirmed to the commission that the following undertakings established on their territory met the conditions set out in the second subparagraph of article 13 of regulation (ec) no 510/2006 pukka pies ltd pork farms ltd shire foods ltd northern foods plc greggs plc peters food service ltd and kerry group plc +article 2 re-evaluation of plant protection products member states shall in accordance with regulation (ec) no 1107/2009 where necessary amend or withdraw existing authorisations for plant protection products containing prohexadione as an active substance by 30 june by that date they shall in particular verify that the conditions in annex i to this regulation are met with the exception of those identified in part b of the column on specific provisions of that annex and that the holder of the authorisation has or has access to a dossier satisfying the requirements of article 13 to of directive 91/414/eec and article 62 of regulation (ec) no 1107/2009 +at the request of the commission the assessment report was peer reviewed by the member states and the authority the authority presented its conclusion on the peer review of the risk assessment of prohexadione to the commission on 12 march the assessment report and the conclusion of the authority were reviewed by the member states and the commission within the standing committee on the food chain and animal health and finalised on 17 june 2011 in the format of the commission review report for prohexadione +a reasonable period should be allowed to elapse before approval in order to permit member states and interested parties to prepare themselves to meet the new requirements resulting from the approval +oj l 220 21 8 2010 p annex i common name identification numbers iupac name purity date of approval expiration of approval specific provisions prohexadione cas no 127277-53-6 (prohexadione-calcium) cipac no 567 (prohexadione) no 567 020 (prohexadione-calcium) 3 5-dioxo-4-propionylcyclohexanecarboxylic acid 890 g/kg (expressed as prohexadione-calcium) 1 january 2012 31 december 2021 part a only uses as plant growth regulator may be authorised part b for the implementation of the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 the conclusions of the review report on prohexadione and in particular appendices i and ii thereof as finalised in the standing committee on the food chain and animal health on 17 june 2011 shall be taken into account +article 3 amendments to implementing regulation (eu) no 540/2011 the annex to implementing regulation (eu) no 540/2011 is amended in accordance with annex ii to this regulation +the approval of prohexadione as set out in part a of the annex to commission implementing regulation (eu) no 540/2011 of 25 may 2011 implementing regulation (ec) no 1107/2009 of the european parliament and of the council as regards the list of approved active substances (4) expires on 31 december a notification was submitted in accordance with article 4 of regulation (ec) no 737/2007 for the renewal of the inclusion of prohexadione in annex i to directive 91/414/eec within the time period provided for in that article +further details on identity and specification of active substance are provided in the review report annex ii the annex to implementing regulation (eu) no 540/2011 is amended as follows in part a the entry relating to prohexadione is deleted in part b the following entry is added common name identification numbers iupac name purity date of approval expiration of approval specific provisions 6 prohexadione cas no 127277-53-6 (prohexadione-calcium) cipac no 567 (prohexadione) no 567 020 (prohexadione-calcium) 3 5-dioxo-4-propionylcyclohexanecarboxylic acid 890 g/kg (expressed as prohexadione-calcium) 1 january 2012 31 december 2021 part a only uses as plant growth regulator may be authorised part b for the implementation of the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 the conclusions of the review report on prohexadione and in particular appendices i and ii thereof as finalised in the standing committee on the food chain and animal health on 17 june 2011 shall be taken into account +within the time period provided for in article 6 of regulation (ec) no 737/2007 the notifier submitted the data required in accordance with that article together with an explanation as regards the relevance of each new study submitted +the experience gained from inclusions in annex i to directive 91/414/eec of active substances assessed in the framework of commission regulation (eec) no 3600/92 of 11 december 1992 laying down the detailed rules for the implementation of the first stage of the programme of work referred to in article 8 of council directive 91/414/eec concerning the placing of plant protection products on the market has shown that difficulties can arise in interpreting the duties of holders of existing authorisations in relation to access to data in order to avoid further difficulties it therefore appears necessary to clarify the duties of the member states especially the duty to verify that the holder of an authorisation demonstrates access to a dossier satisfying the requirements of annex ii to that directive however this clarification does not impose any new obligations on member states or holders of authorisations compared to the directives which have been adopted until now amending annex i to that directive or the regulations approving active substances +21 7 2011 en official journal of the european union l 190/28 commission implementing regulation (eu) no 702/2011 of 20 july 2011 approving the active substance prohexadione in accordance with regulation (ec) no 1107/2009 of the european parliament and of the council concerning the placing of plant protection products on the market and amending the annex to commission implementing regulation (eu) no 540/2011 (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1107/2009 of the european parliament and of the council of 21 october 2009 concerning the placing of plant protection products on the market and repealing council directives 79/117/eec and 91/414/eec (1) and in particular article 13 and article 78 thereof whereas in accordance with article 80(1)(b) of regulation (ec) no 1107/2009 council directive 91/414/eec is to apply to active substances listed in annex i to commission regulation (ec) no 737/2007 of 27 june 2007 on laying down the procedure of the renewal of the inclusion of a first group of active substances in annex i to council directive 91/414/eec and establishing the list of those substances (3) with respect to the procedure and the conditions for approval prohexadione (formerly prohexadione-calcium) is listed in annex i to regulation (ec) no 737/2007 +in accordance with article 13 of regulation (ec) no 1107/2009 the annex to implementing regulation (eu) no 540/2011 should be amended accordingly +that notification was found to be admissible by commission decision 2008/656/ec of 28 july 2008 on the admissibility of the notifications concerning the renewal of the inclusion in annex i to council directive 91/414/eec of the active substances azimsulfuron azoxystrobin fluroxypyr imazalil kresoxim-methyl prohexadione and spiroxamine and establishing the list of the notifiers concerned (5) +the authority communicated the assessment report to the notifier and to the member states for comments and forwarded the comments received to the commission the authority also made the assessment report available to the public +the rapporteur member state prepared an assessment report in consultation with the co-rapporteur member state and submitted it to the european food safety authority (hereinafter the authority) and the commission on 5 june in addition to the assessment of the active substance that report includes a list of the studies the rapporteur member state relied on for its assessment +without prejudice to the obligations provided for by regulation (ec) no 1107/2009 as a consequence of approval taking into account the specific situation created by the transition from directive 91/414/eec to regulation (ec) no 1107/2009 the following should however apply member states should be allowed a period of 6 months after approval to review authorisations of plant protection products containing prohexadione member states should as appropriate vary replace or withdraw authorisations by way of derogation from that deadline a longer period should be provided for the submission and assessment of the update of the complete annex iii dossier as set out in directive 91/414/eec of each plant protection product for each intended use in accordance with the uniform principles +article 5 entry into force and date of application this regulation shall enter into force on the 20th day following its publication in the official journal of the european union it shall apply from 1 january this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission the president jos manuel barroso oj l 309 24 11 2009 p +european food safety authority conclusion on the peer review of the pesticide risk assessment of the active substance prohexadione on request from the european commission efsa journal 2010 8(3) 1555 +by way of derogation from paragraph 1 for each authorised plant protection product containing prohexadione as either the only active substance or as one of several active substances all of which were listed in the annex to implementing regulation (eu) no 540/2011 by 31 december 2011 at the latest member states shall re-evaluate the product in accordance with the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 on the basis of a dossier satisfying the requirements of annex iii to directive 91/414/eec and taking into account part b of the column on specific provisions of annex i to this regulation on the basis of that evaluation they shall determine whether the product still satisfies the conditions set out in article 29 of regulation (ec) no 1107/ following that determination member states shall (a) in the case of a product containing prohexadione as the only active substance where necessary amend or withdraw the authorisation by 31 december 2015 at the latest or (b) in the case of a product containing prohexadione as one of several active substances where necessary amend or withdraw the authorisation by 31 december 2015 or by the date fixed for such an amendment or withdrawal in the respective act or acts which added the relevant substance or substances to annex i to directive 91/414/eec or approved that substance or substances whichever is the latest +in the interest of clarity commission directive 2010/56/eu of 20 august 2010 amending annex i to council directive 91/414/eec to renew the inclusion of prohexadione as active substance should be repealed +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health has adopted this regulation article 1 approval of active substance the active substance prohexadione as specified in annex i is approved subject to the conditions laid down in that annex +it has appeared from the various examinations made that plant protection products containing prohexadione may be expected to continue to satisfy in general the requirements laid down in article 5(1)(a) and (b) of directive 91/414/eec in particular as regards the uses which were examined and detailed in the commission review report it is therefore appropriate to approve prohexadione +article 4 repeal directive 2010/56/eu is repealed +article 2 re-evaluation of plant protection products member states shall in accordance with regulation (ec) no 1107/2009 where necessary amend or withdraw existing authorisations for plant protection products containing profoxydim as active substance by 31 january by that date they shall in particular verify that the conditions in annex i to this regulation are met with the exception of those identified in part b of the column on specific provisions of that annex and that the holder of the authorisation has or has access to a dossier satisfying the requirements of annex ii to directive 91/414/eec in accordance with the conditions of article 13 to of that directive and article 62 of regulation (ec) no 1107/2009 +21 7 2011 en official journal of the european union l 190/50 commission implementing regulation (eu) no 706/2011 of 20 july 2011 approving the active substance profoxydim in accordance with regulation (ec) no 1107/2009 of the european parliament and of the council concerning the placing of plant protection products on the market and amending the annex to commission implementing regulation (eu) no 540/2011 (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1107/2009 of the european parliament and of the council of 21 october 2009 concerning the placing of plant protection products on the market and repealing council directives 79/117/eec and 91/414/eec (1) and in particular article 13 and article 78 thereof whereas in accordance with article 80(1)(a) of regulation (ec) no 1107/2009 council directive 91/414/eec is to apply with respect to the procedure and the conditions for approval to active substances for which a decision has been adopted in accordance with article 6 of that directive before 14 june for profoxydim the conditions of article 80(1)(a) of regulation (ec) no 1107/2009 are fulfilled by commission decision 1999/43/ec (3) +article 3 amendments to implementing regulation (eu) no 540/2011 the annex to implementing regulation (eu) no 540/2011 is amended in accordance with annex ii to this regulation +without prejudice to the obligations provided for by regulation (ec) no 1107/2009 as a consequence of approval taking into account the specific situation created by the transition from directive 91/414/eec to regulation (ec) no 1107/2009 the following should however apply member states should be allowed a period of 6 months after approval to review authorisations of plant protection products containing profoxydim member states should as appropriate vary replace or withdraw authorisations by way of derogation from that deadline a longer period should be provided for the submission and assessment of the update of the complete annex iii dossier as set out in directive 91/414/eec of each plant protection product for each intended use in accordance with the uniform principles +it has appeared from the various examinations made that plant protection products containing profoxydim may be expected to satisfy in general the requirements laid down in article 5(1)(a) and (b) and article 5 of directive 91/414/eec in particular with regard to the uses which were examined and detailed in the commission review report it is therefore appropriate to approve profoxydim +for that active substance the effects on human and animal health and the environment have been assessed in accordance with the provisions of article 6 and of directive 91/414/eec for the uses proposed by the applicant the designated rapporteur member state submitted a draft assessment report on 28 march 2001 +article 4 repeal directive 2011/14/eu is repealed +in the interest of clarity commission directive 2011/14/eu of 24 february 2011 amending council directive 91/414/eec to include profoxydim as active substance should be repealed +by way of derogation from paragraph 1 for each authorised plant protection product containing profoxydim as either the only active substance or as one of several active substances all of which were listed in the annex to implementing regulation (eu) no 540/2011 by 31 july 2011 at the latest member states shall re-evaluate the product in accordance with the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 on the basis of a dossier satisfying the requirements of annex iii to directive 91/414/eec and taking into account part b of the column on specific provisions of annex i to this regulation on the basis of that evaluation they shall determine whether the product satisfies the conditions set out in article 29 of regulation (ec) no 1107/ following that determination member states shall (a) in the case of a product containing profoxydim as the only active substance where necessary amend or withdraw the authorisation by 31 january 2013 at the latest or (b) in the case of a product containing profoxydim as one of several active substances where necessary amend or withdraw the authorisation by 31 january 2013 or by the date fixed for such an amendment or withdrawal in the respective act or acts which added the relevant substance or substances to annex i to directive 91/414/eec or approved that substance or substances whichever is the latest +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health has adopted this regulation article 1 approval of active substance the active substance profoxydim as specified in annex i is approved subject to the conditions laid down in that annex +for profoxydim the draft assessment report was reviewed by the member states and the commission within the standing committee on the food chain and animal health the review was finalised on 17 june 2011 in the format of the commission review report for profoxydim +the experience gained from inclusions in annex i to directive 91/414/eec of active substances assessed in the framework of commission regulation (eec) no 3600/92 of 11 december 1992 laying down the detailed rules for the implementation of the first stage of the programme of work referred to in article 8 of council directive 91/414/eec concerning the placing of plant protection products on the market has shown that difficulties can arise in interpreting the duties of holders of existing authorisations in relation to access to data in order to avoid further difficulties it therefore appears necessary to clarify the duties of the member states especially the duty to verify that the holder of an authorisation demonstrates access to a dossier satisfying the requirements of annex ii to that directive however this clarification does not impose any new obligations on member states or holders of authorisations compared to the directives which have been adopted until now amending annex i to that directive or the regulations approving active substances +in accordance with article 13 of regulation (ec) no 1107/2009 the annex to commission implementing regulation (eu) no 540/2011 of 25 may 2011 implementing regulation (ec) no 1107/2009 of the european parliament and of the council as regards the list of approved active substances should be amended accordingly +article 5 entry into force and date of application this regulation shall enter into force on the 20th day following its publication in the official journal of the european union it shall apply from 1 august this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission the president jos manuel barroso oj l 309 24 11 2009 p +in accordance with article 6 of directive 91/414/eec spain received on 2 april 1998 an application from basf se for the inclusion of the active substance profoxydim in annex i to directive 91/414/eec decision 1999/43/ec confirmed that the dossier was complete in the sense that it could be considered as satisfying in principle the data and information requirements of annexes ii and iii to directive 91/414/eec +article 2 re-evaluation of plant protection products member states shall in accordance with regulation (ec) no 1107/2009 where necessary amend or withdraw existing authorisations for plant protection products containing imazalil as an active substance by 30 june by that date they shall in particular verify that the conditions in annex i to this regulation are met with the exception of those identified in part b of the column on specific provisions of that annex and that the holder of the authorisation has or has access to a dossier satisfying the requirements of annex ii to directive 91/414/eec in accordance with the conditions of article 13 to of that directive and article 62 of regulation (ec) no 1107/2009 +in accordance with article 13 of regulation (ec) no 1107/2009 the annex to implementing regulation (eu) no 540/2011 should be amended accordingly +by way of derogation from paragraph 1 for each authorised plant protection product containing imazalil as either the only active substance or as one of several active substances all of which were listed in the annex to implementing regulation (eu) no 540/2011 by 31 december 2011 at the latest member states shall re-evaluate the product in accordance with the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 on the basis of a dossier satisfying the requirements of annex iii to directive 91/414/eec and taking into account part b of the column on specific provisions of annex i to this regulation on the basis of that evaluation they shall determine whether the product satisfies the conditions set out in article 29 of regulation (ec) no 1107/ following that determination member states shall (a) in the case of a product containing imazalil as the only active substance where necessary amend or withdraw the authorisation by 31 december 2015 at the latest or (b) in the case of a product containing imazalil as one of several active substances where necessary amend or withdraw the authorisation by 31 december 2015 or by the date fixed for such an amendment or withdrawal in the respective act or acts which added the relevant substance or substances to annex i to directive 91/414/eec or approved that substance or substances whichever is the latest +a reasonable period should be allowed to elapse before approval in order to permit member states and interested parties to prepare themselves to meet the new requirements resulting from the approval +from the new data submitted it appears that imazalil and its degradation products in soil and surface water systems may cause risks for soil micro-organisms and aquatic organisms negligible groundwater exposure needs to be confirmed further investigation is needed on the nature of residues in processed commodities without prejudice to the conclusion that imazalil should be approved it is in particular appropriate to require further confirmatory information +based on the review report which supports a lower level of purity compared to that set out in part a of the annex to commission implementing regulation (eu) no 540/2011 and taking into account that no toxicologically or ecotoxicologically significant impurities are present the purity level should be modified +the approval of imazalil as set out in part a of the annex to commission implementing regulation (eu) no 540/2011 of 25 may 2011 implementing regulation (ec) no 1107/2009 of the european parliament and of the council as regards the list of approved active substances (4) expires on 31 december a notification was submitted in accordance with article 4 of regulation (ec) no 737/2007 for the renewal of the inclusion of imazalil in annex i to directive 91/414/eec within the time period provided for in that article +article 3 amendments to implementing regulation (eu) no 540/2011 the annex to implementing regulation (eu) no 540/2011 is amended in accordance with annex ii to this regulation +european food safety authority conclusion on the peer review of the pesticide risk assessment of the active substance imazalil on request from the european commission efsa journal 2010 8(3) 1526 +21 7 2011 en official journal of the european union l 190/43 commission implementing regulation (eu) no 705/2011 of 20 july 2011 approving the active substance imazalil in accordance with regulation (ec) no 1107/2009 of the european parliament and of the council concerning the placing of plant protection products on the market and amending the annex to commission implementing regulation (eu) no 540/2011 (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1107/2009 of the european parliament and of the council of 21 october 2009 concerning the placing of plant protection products on the market and repealing council directives 79/117/eec and 91/414/eec (1) and in particular article 13 and article 78 thereof whereas in accordance with article 80(1)(b) of regulation (ec) no 1107/2009 council directive 91/414/eec is to apply to active substances listed in annex i to commission regulation (ec) no 737/2007 of 27 june 2007 on laying down the procedure of the renewal of the inclusion of a first group of active substances in annex i to council directive 91/414/eec and establishing the list of those substances (3) with respect to the procedure and the conditions for approval imazalil is listed in annex i to regulation (ec) no 737/2007 +the experience gained from inclusions in annex i to directive 91/414/eec of active substances assessed in the framework of commission regulation (eec) no 3600/92 of 11 december 1992 laying down the detailed rules for the implementation of the first stage of the programme of work referred to in article 8 of council directive 91/414/eec concerning the placing of plant protection products on the market has shown that difficulties can arise in interpreting the duties of holders of existing authorisations in relation to access to data in order to avoid further difficulties it therefore appears necessary to clarify the duties of the member states especially the duty to verify that the holder of an authorisation demonstrates access to a dossier satisfying the requirements of annex ii to that directive however this clarification does not impose any new obligations on member states or holders of authorisations compared to the directives which have been adopted until now amending annex i to that directive or the regulations approving active substances +in the interest of clarity commission directive 2010/57/eu of 26 august 2010 amending annex i to council directive 91/414/eec to renew the inclusion of imazalil as active substance should be repealed +at the request of the commission the assessment report was peer reviewed by the member states and the authority the authority presented its conclusion on the peer review of the risk assessment of imazalil to the commission on 4 march the assessment report and the conclusion of the authority were reviewed by the member states and the commission within the standing committee on the food chain and animal health and finalised on 17 june 2011 in the format of the commission review report for imazalil +the rapporteur member state prepared an assessment report in consultation with the co-rapporteur member state and submitted it to the european food safety authority (hereinafter the authority) and the commission on 9 june in addition to the assessment of the active substance that report includes a list of the studies the rapporteur member state relied on for its assessment +that notification was found to be admissible by commission decision 2008/656/ec of 28 july 2008 on the admissibility of the notifications concerning the renewal of the inclusion in annex i to council directive 91/414/eec of the active substances azimsulfuron azoxystrobin fluroxypyr imazalil kresoxim-methyl prohexadione and spiroxamine and establishing the list of the notifiers concerned (5) +the authority communicated the assessment report to the notifier and to the member states for comments and forwarded the comments received to the commission the authority also made the assessment report available to the public +in accordance with article 13 of regulation (ec) no 1107/2009 in conjunction with article 6 thereof and in the light of current scientific and technical knowledge it is however necessary to include certain conditions and restrictions not provided for in the first inclusion in annex i to directive 91/414/eec +article 5 entry into force and date of application this regulation shall enter into force on the 20th day following its publication in the official journal of the european union it shall apply from 1 january this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission the president jos manuel barroso oj l 309 24 11 2009 p +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health has adopted this regulation article 1 approval of active substance the active substance imazalil as specified in annex i is approved subject to the conditions laid down in that annex +it has appeared from the various examinations made that plant protection products containing imazalil may be expected to continue to satisfy in general the requirements laid down in article 5(1)(a) and (b) of directive 91/414/eec in particular as regards the uses which were examined and detailed in the commission review report it is therefore appropriate to approve imazalil +article 4 repeal directive 2010/57/eu is repealed +without prejudice to the obligations provided for by regulation (ec) no 1107/2009 as a consequence of approval taking into account the specific situation created by the transition from directive 91/414/eec to regulation (ec) no 1107/2009 the following should however apply member states should be allowed a period of 6 months after approval to review authorisations of plant protection products containing imazalil member states should as appropriate vary replace or withdraw authorisations by way of derogation from that deadline a longer period should be provided for the submission and assessment of the update of the complete annex iii dossier as set out in directive 91/414/eec of each plant protection product for each intended use in accordance with the uniform principles +within the time period provided for in article 6 of regulation (ec) no 737/2007 the notifier submitted the data required in accordance with that article together with an explanation as regards the relevance of each new study submitted +it has appeared from the various examinations made that plant protection products containing azimsulfuron may be expected to continue to satisfy in general the requirements laid down in article 5(1)(a) and (b) of directive 91/414/eec in particular as regards the uses which were examined and detailed in the commission review report it is therefore appropriate to approve azimsulfuron +in accordance with article 13 of regulation (ec) no 1107/2009 the annex to implementing regulation (eu) no 540/2011 should be amended accordingly +article 2 re-evaluation of plant protection products member states shall in accordance with regulation (ec) no 1107/2009 where necessary amend or withdraw existing authorisations for plant protection products containing azimsulfuron as an active substance by 30 june by that date they shall in particular verify that the conditions in annex i to this regulation are met with the exception of those identified in part b of the column on specific provisions of that annex and that the holder of the authorisation has or has access to a dossier satisfying the requirements of article 13 to of directive 91/414/eec and article 62 of regulation (ec) no 1107/2009 +based on the review report which points out that the manufacturing impurity phenol is of toxicological concern a maximum level of 2 g/kg should however be set for that impurity in the technical material +european food safety authority conclusion on the peer review of the pesticide risk assessment of the active substance azimsulfuron efsa journal 2010 8(3) 61 pp doi 10 2903/j efsa available online www efsa europa eu oj l 366 15 12 1992 p 10 +a reasonable period should be allowed to elapse before approval in order to permit member states and interested parties to prepare themselves to meet the new requirements resulting from the approval +oj l 220 21 8 2010 p annex i common name identification numbers iupac name purity date of approval expiration of approval specific provisions azimsulfuron cas no 120162-55-2 cipac no 584 1-(4 6-dimethoxypyrimidin-2-yl)-3- 1-methyl-4-(2-methyl-2h-tetrazol-5-yl)-pyrazol-5-ylsulfonyl -urea 980 g/kg maximum level of the impurity phenol 2 g/kg 1 january 2012 31 december 2021 part a only uses as herbicide may be authorised aerial applications may not be authorised part b for the implementation of the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 the conclusions of the review report on azimsulfuron and in particular appendices i and ii thereof as finalised in the standing committee on the food chain and animal health on 17 june 2011 shall be taken into account in this overall assessment member states shall pay particular attention to the protection of non-target plants the potential for groundwater contamination when the active substance is applied in vulnerable scenarios and/or climatic conditions the protection of aquatic organisms member states shall ensure that the conditions of authorisation include risk mitigation measures where appropriate (e g buffer zones in rice cultivation minimum holding periods for water prior to discharge) the notifier shall submit confirmatory information as regards (a) the risk assessment on aquatic organisms (b) the identification of the degradation products in the aqueous photolysis of the substance the notifier shall submit to the member states the commission and the authority such information by 31 december 2013 +21 7 2011 en official journal of the european union l 190/38 commission implementing regulation (eu) no 704/2011 of 20 july 2011 approving the active substance azimsulfuron in accordance with regulation (ec) no 1107/2009 of the european parliament and of the council concerning the placing of plant protection products on the market and amending the annex to commission implementing regulation (eu) no 540/2011 (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1107/2009 of the european parliament and of the council of 21 october 2009 concerning the placing of plant protection products on the market and repealing council directives 79/117/eec and 91/414/eec (1) and in particular article 13 and article 78 thereof whereas in accordance with article 80(1)(b) of regulation (ec) no 1107/2009 council directive 91/414/eec is to apply to active substances listed in annex i to commission regulation (ec) no 737/2007 of 27 june 2007 on laying down the procedure for the renewal of the inclusion of a first group of active substances in annex i to council directive 91/414/eec and establishing the list of those substances (3) with respect to the procedure and the conditions for approval azimsulfuron is listed in annex i to regulation (ec) no 737/2007 +article 3 amendments to implementing regulation (eu) no 540/2011 the annex to implementing regulation (eu) no 540/2011 is amended in accordance with annex ii to this regulation +at the request of the commission the assessment report was peer reviewed by the member states and the authority the authority presented its conclusion on the peer review of the risk assessment of azimsulfuron to the commission on 12 march the assessment report and the conclusion of the authority were reviewed by the member states and the commission within the standing committee on the food chain and animal health and finalised on 17 june 2011 in the format of the commission review report for azimsulfuron +from the new data submitted it appears that azimsulfuron and its degradation products in aqueous photolysis may cause risks for aquatic organisms without prejudice to the conclusion that azimsulfuron should be approved it is in particular appropriate to require further confirmatory information +article 4 repeal directive 2010/54/eu is repealed +the experience gained from inclusions in annex i to directive 91/414/eec of active substances assessed in the framework of commission regulation (eec) no 3600/92 of 11 december 1992 laying down the detailed rules for the implementation of the first stage of the programme of work referred to in article 8 of council directive 91/414/eec concerning the placing of plant protection products on the market has shown that difficulties can arise in interpreting the duties of holders of existing authorisations in relation to access to data in order to avoid further difficulties it therefore appears necessary to clarify the duties of the member states especially the duty to verify that the holder of an authorisation demonstrates access to a dossier satisfying the requirements of annex ii to that directive however this clarification does not impose any new obligations on member states or holders of authorisations compared to the directives which have been adopted until now amending annex i to that directive or the regulations approving active substances +the rapporteur member state prepared an assessment report in consultation with the co-rapporteur member state and submitted it to the european food safety authority (hereinafter the authority) and the commission on 1 june in addition to the assessment of the active substance that report includes a list of the studies the rapporteur member state relied on for its assessment +by way of derogation from paragraph 1 for each authorised plant protection product containing azimsulfuron as either the only active substance or as one of several active substances all of which were listed in the annex to implementing regulation (eu) no 540/2011 by 31 december 2011 at the latest member states shall re-evaluate the product in accordance with the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 on the basis of a dossier satisfying the requirements of annex iii to directive 91/414/eec and taking into account part b of the column on specific provisions of annex i to this regulation on the basis of that evaluation they shall determine whether the product still satisfies the conditions set out in article 29 of regulation (ec) no 1107/ following that determination member states shall (a) in the case of a product containing azimsulfuron as the only active substance where necessary amend or withdraw the authorisation by 31 december 2015 at the latest or (b) in the case of a product containing azimsulfuron as one of several active substances where necessary amend or withdraw the authorisation by 31 december 2015 or by the date fixed for such an amendment or withdrawal in the respective act or acts which added the relevant substance or substances to annex i to directive 91/414/eec or approved that substance or substances whichever is the latest +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health has adopted this regulation article 1 approval of active substance the active substance azimsulfuron as specified in annex i is approved subject to the conditions laid down in that annex +that notification was found to be admissible by commission decision 2008/656/ec of 28 july 2008 on the admissibility of the notifications concerning the renewal of the inclusion in annex i to council directive 91/414/eec of the active substances azimsulfuron azoxystrobin fluroxypyr imazalil kresoxim-methyl prohexadione and spiroxamine and establishing the list of the notifiers concerned (5) +further details on identity and specification of active substance are provided in the review report annex ii the annex to implementing regulation (eu) no 540/2011 is amended as follows in part a the entry relating to azimsulfuron is deleted in part b the following entry is added common name identification numbers iupac name purity date of approval expiration of approval specific provisions 3 azimsulfuron cas no 120162-55-2 cipac no 584 1-(4 6-dimethoxypyrimidin-2-yl)-3- 1-methyl-4-(2-methyl-2h-tetrazol-5-yl)-pyrazol-5-ylsulfonyl -urea 980 g/kg maximum level of the impurity phenol 2 g/kg 1 january 2012 31 december 2021 part a only uses as herbicide may be authorised aerial applications may not be authorised part b for the implementation of the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 the conclusions of the review report on azimsulfuron and in particular appendices i and ii thereof as finalised in the standing committee on the food chain and animal health on 17 june 2011 shall be taken into account in this overall assessment member states shall pay particular attention to the protection of non-target plants the potential for groundwater contamination when the active substance is applied in vulnerable scenarios and/or climatic conditions the protection of aquatic organisms member states shall ensure that the conditions of authorisation include risk mitigation measures where appropriate (e g buffer zones in rice cultivation minimum holding periods for water prior to discharge) the notifier shall submit confirmatory information as regards (a) the risk assessment on aquatic organisms (b) the identification of the degradation products in the aqueous photolysis of the substance the notifier shall submit to the member states the commission and the authority such information by 31 december 2013 +the authority communicated the assessment report to the notifier and to the member states for comments and forwarded the comments received to the commission the authority also made the assessment report available to the public +in accordance with article 13 of regulation (ec) no 1107/2009 in conjunction with article 6 thereof and in the light of current scientific and technical knowledge it is however necessary to include certain conditions and restrictions not provided for in the first inclusion in annex i to directive 91/414/eec +article 5 entry into force and date of application this regulation shall enter into force on the 20th day following its publication in the official journal of the european union it shall apply from 1 january this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission the president jos manuel barroso oj l 309 24 11 2009 p +the approval of azimsulfuron as set out in part a of the annex to commission implementing regulation (eu) no 540/2011 of 25 may 2011 implementing regulation (ec) no 1107/2009 of the european parliament and of the council as regards the list of approved active substances (4) expires on 31 december a notification was submitted in accordance with article 4 of regulation (ec) no 737/2007 for the renewal of the inclusion of azimsulfuron in annex i to directive 91/414/eec within the time period provided for in that article +in the interest of clarity commission directive 2010/54/eu of 20 august 2010 amending annex i to council directive 91/414/eec to renew the inclusion of azimsulfuron as active substance should be repealed +without prejudice to the obligations provided for by regulation (ec) no 1107/2009 as a consequence of approval taking into account the specific situation created by the transition from directive 91/414/eec to regulation (ec) no 1107/2009 the following should however apply member states should be allowed a period of 6 months after approval to review authorisations of plant protection products containing azimsulfuron member states should as appropriate vary replace or withdraw authorisations by way of derogation from that deadline a longer period should be provided for the submission and assessment of the update of the complete annex iii dossier as set out in directive 91/414/eec of each plant protection product for each intended use in accordance with the uniform principles +within the time period provided for in article 6 of regulation (ec) no 737/2007 the notifier submitted the data required in accordance with that article together with an explanation as regards the relevance of each new study submitted +the approval of azoxystrobin as set out in part a of the annex to commission implementing regulation (eu) no 540/2011 of 25 may 2011 implementing regulation (ec) no 1107/2009 of the european parliament and of the council as regards the list of approved active substances (4) expires on 31 december a notification was submitted in accordance with article 4 of regulation (ec) no 737/2007 for the renewal of the inclusion of azoxystrobin in annex i to directive 91/414/eec within the time period provided for in that article +in accordance with article 13 of regulation (ec) no 1107/2009 the annex to implementing regulation (eu) no 540/2011 should be amended accordingly +oj l 220 21 8 2010 p annex i common name identification numbers iupac name purity date of approval expiration of approval specific provisions azoxystrobin cas no 131860-33-8 cipac no 571 methyl (e)-2- 2 6-(2-cyanophenoxy)pyrimidin-4-yloxy phenyl -3-methoxyacrylate 930 g/kg toluene maximum content 2 g/kg z-isomer maximum content 25 g/kg 1 january 2012 31 december 2021 part a only uses as fungicide may be authorised part b for the implementation of the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 the conclusions of the review report on azoxystrobin and in particular appendices i and ii thereof as finalised in the standing committee on the food chain and animal health on 17 june 2011 shall be taken into account in this overall assessment member states shall pay particular attention to the fact that the specification of the technical material as commercially manufactured must be confirmed and supported by appropriate analytical data the test material used in the toxicity dossiers should be compared and verified against this specification of the technical material the potential for groundwater contamination when the active substance is applied in regions with vulnerable soil and/or climatic conditions the protection of aquatic organisms the member states must ensure that the conditions of authorisation include risk mitigation measures where appropriate the member states concerned shall request the submission of confirmatory information as regards the risk assessment on groundwater and aquatic organisms the notifier shall submit to the member states the commission and the authority such information by 31 december 2013 +in the interest of clarity commission directive 2010/55/eu of 20 august 2010 amending annex i to council directive 91/414/eec to renew the inclusion of azoxystrobin as active substance should be repealed +article 2 re-evaluation of plant protection products member states shall in accordance with regulation (ec) no 1107/2009 where necessary amend or withdraw existing authorisations for plant protection products containing azoxystrobin as an active substance by 30 june by that date they shall in particular verify that the conditions in annex i to this regulation are met with the exception of those identified in part b of the column on specific provisions of that annex and that the holder of the authorisation has or has access to a dossier satisfying the requirements of article 13 to of directive 91/414/eec and article 62 of regulation (ec) no 1107/2009 +a reasonable period should be allowed to elapse before approval in order to permit member states and interested parties to prepare themselves to meet the new requirements resulting from the approval +it has appeared from the various examinations made that plant protection products containing azoxystrobin may be expected to continue to satisfy in general the requirements laid down in article 5(1)(a) and (b) of directive 91/414/eec in particular as regards the uses which were examined and detailed in the commission review report it is therefore appropriate to approve azoxystrobin +article 3 amendments to implementing regulation (eu) no 540/2011 the annex to implementing regulation (eu) no 540/2011 is amended in accordance with annex ii to this regulation +the rapporteur member state prepared an assessment report in consultation with the co-rapporteur member state and submitted it to the european food safety authority (hereinafter the authority) and the commission on 10 june in addition to the assessment of the active substance that report includes a list of the studies the rapporteur member state relied on for its assessment +the experience gained from inclusions in annex i to directive 91/414/eec of active substances assessed in the framework of commission regulation (eec) no 3600/92 of 11 december 1992 laying down the detailed rules for the implementation of the first stage of the programme of work referred to in article 8 of council directive 91/414/eec concerning the placing of plant protection products on the market has shown that difficulties can arise in interpreting the duties of holders of existing authorisations in relation to access to data in order to avoid further difficulties it therefore appears necessary to clarify the duties of the member states especially the duty to verify that the holder of an authorisation demonstrates access to a dossier satisfying the requirements of annex ii to that directive however this clarification does not impose any new obligations on member states or holders of authorisations compared to the directives which have been adopted until now amending annex i to that directive or the regulations approving active substances +by way of derogation from paragraph 1 for each authorised plant protection product containing azoxystrobin as either the only active substance or as one of several active substances all of which were listed in the annex to implementing regulation (eu) no 540/2011 by 31 december 2011 at the latest member states shall re-evaluate the product in accordance with the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 on the basis of a dossier satisfying the requirements of annex iii to directive 91/414/eec and taking into account part b of the column on specific provisions of annex i to this regulation on the basis of that evaluation they shall determine whether the product still satisfies the conditions set out in article 29 of regulation (ec) no 1107/ following that determination member states shall (a) in the case of a product containing azoxystrobin as the only active substance where necessary amend or withdraw the authorisation by 31 december 2015 at the latest or (b) in the case of a product containing azoxystrobin as one of several active substances where necessary amend or withdraw the authorisation by 31 december 2015 or by the date fixed for such an amendment or withdrawal in the respective act or acts which added the relevant substance or substances to annex i to directive 91/414/eec or approved that substance or substances whichever is the latest +further details on identity and specification of active substance are provided in the review report annex ii the annex to implementing regulation (eu) no 540/2011 is amended as follows in part a the entry relating to azoxystrobin is deleted in part b the following entry is added common name identification numbers iupac name purity date of approval expiration of approval specific provisions 4 azoxystrobin cas no 131860-33-8 cipac no 571 methyl (e)-2- 2 6-(2-cyanophenoxy)pyrimidin-4-yloxy phenyl -3-methoxyacrylate 930 g/kg toluene maximum content 2 g/kg z-isomer maximum content 25 g/kg 1 january 2012 31 december 2021 part a only uses as fungicide may be authorised part b for the implementation of the uniform principles as referred to in article 29 of regulation (ec) no 1107/2009 the conclusions of the review report on azoxystrobin and in particular appendices i and ii thereof as finalised in the standing committee on the food chain and animal health on 17 june 2011 shall be taken into account in this overall assessment member states shall pay particular attention to the fact that the specification of the technical material as commercially manufactured must be confirmed and supported by appropriate analytical data the test material used in the toxicity dossiers should be compared and verified against this specification of the technical material the potential for groundwater contamination when the active substance is applied in regions with vulnerable soil and/or climatic conditions the protection of aquatic organisms the member states must ensure that the conditions of authorisation include risk mitigation measures where appropriate the member states concerned shall request the submission of confirmatory information as regards the risk assessment on groundwater and aquatic organisms the notifier shall submit to the member states the commission and the authority such information by 31 december 2013 +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health has adopted this regulation article 1 approval of active substance the active substance azoxystrobin as specified in annex i is approved subject to the conditions laid down in that annex +article 4 repeal directive 2010/55/eu is repealed +that notification was found to be admissible by commission decision 2008/656/ec of 28 july 2008 on the admissibility of the notifications concerning the renewal of the inclusion in annex i to council directive 91/414/eec of the active substances azimsulfuron azoxystrobin fluroxypyr imazalil kresoxim-methyl prohexadione and spiroxamine and establishing the list of the notifiers concerned (5) +the authority communicated the assessment report to the notifier and to the member states for comments and forwarded the comments received to the commission the authority also made the assessment report available to the public +in accordance with article 13 of regulation (ec) no 1107/2009 in conjunction with article 6 thereof and in the light of current scientific and technical knowledge it is however necessary to include certain conditions and restrictions not provided for in the first inclusion in annex i to directive 91/414/eec +without prejudice to the obligations provided for by regulation (ec) no 1107/2009 as a consequence of approval taking into account the specific situation created by the transition from directive 91/414/eec to regulation (ec) no 1107/2009 the following should however apply member states should be allowed a period of 6 months after approval to review authorisations of plant protection products containing azoxystrobin member states should as appropriate vary replace or withdraw authorisations by way of derogation from that deadline a longer period should be provided for the submission and assessment of the update of the complete annex iii dossier as set out in directive 91/414/eec of each plant protection product for each intended use in accordance with the uniform principles +article 5 entry into force and date of application this regulation shall enter into force on the 20th day following its publication in the official journal of the european union it shall apply from 1 january this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission the president jos manuel barroso oj l 309 24 11 2009 p +21 7 2011 en official journal of the european union l 190/33 commission implementing regulation (eu) no 703/2011 of 20 july 2011 approving the active substance azoxystrobin in accordance with regulation (ec) no 1107/2009 of the european parliament and of the council concerning the placing of plant protection products on the market and amending the annex to commission implementing regulation (eu) no 540/2011 (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1107/2009 of the european parliament and of the council of 21 october 2009 concerning the placing of plant protection products on the market and repealing council directives 79/117/eec and 91/414/eec (1) and in particular article 13 and article 78 thereof whereas in accordance with article 80(1)(b) of regulation (ec) no 1107/2009 council directive 91/414/eec is to apply to active substances listed in annex i to commission regulation (ec) no 737/2007 of 27 june 2007 on laying down the procedure of the renewal of the inclusion of a first group of active substances in annex i to council directive 91/414/eec and establishing the list of those substances (3) with respect to the procedure and the conditions for approval azoxystrobin is listed in annex i to regulation (ec) no 737/2007 +at the request of the commission the assessment report was peer reviewed by the member states and the authority the authority presented its conclusion on the peer review of the risk assessment of azoxystrobin to the commission on 12 march the assessment report and the conclusion of the authority were reviewed by the member states and the commission within the standing committee on the food chain and animal health and finalised on 17 june 2011 in the format of the commission review report for azoxystrobin +based on the review report which points out that for the active substance azoxystrobin notified by the main data submitter the manufacturing impurity toluene is of toxicological concern a maximum level of 2 g/kg should however be set for that impurity in the technical material +from the new data submitted it appears that azoxystrobin may cause risks for aquatic organisms without prejudice to the conclusion that azoxystrobin should be approved it is in particular appropriate to require further confirmatory information +european food safety authority conclusion on the peer review of the pesticide risk assessment of the active substance azoxystrobin efsa journal 2010 8(4) 110 pp doi 10 2903/j efsa available online www efsa europa eu oj l 366 15 12 1992 p 10 +within the time period provided for in article 6 of regulation (ec) no 737/2007 the notifier submitted the data required in accordance with that article together with an explanation as regards the relevance of each new study submitted +it is therefore necessary to prohibit fishing activities for that stock has adopted this regulation article 1 quota exhaustion the fishing quota allocated to the member state referred to in the annex to this regulation for the stock referred to therein for 2018 shall be deemed to be exhausted from the date set out in that annex +article 2 prohibitions fishing activities for the stock referred to in the annex to this regulation by vessels flying the flag of or registered in the member state referred to therein shall be prohibited from the date set out in that annex in particular it shall be prohibited to retain on board relocate tranship or land fish from that stock caught by those vessels after that date +21 12 2018 en official journal of the european union l 327/48 commission regulation (eu) 2018/2040 of 17 december 2018 establishing a prohibition of fishing for northern albacore in the atlantic ocean north of 5 n by vessels flying the flag of france the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1224/2009 of 20 november 2009 establishing a union control system for ensuring compliance with the rules of the common fisheries policy (1) and in particular article 36 thereof whereas council regulation (eu) 2018/120 lays down quotas for 2018 +article 3 entry into force this regulation shall enter into force on the day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 17 december for the commission on behalf of the president jo o aguiar machado director-general directorate-general for maritime affairs and fisheries oj l 343 22 12 2009 p +according to the information received by the commission catches of the stock referred to in the annex to this regulation by vessels flying the flag of or registered in the member state referred to therein have exhausted the quota allocated for 2018 +participants in training programmes in the area of control and enforcement of the cfp rules although representing a member state authority are not necessarily civil servants therefore expenditure incurred for the training of other personnel should also be eligible for financial measures +the fact that regional advisory councils have been granted the status of bodies pursuing an aim of general european interest in council decision 2007/409/ec of 11 june 2007 amending decision 2004/585/ec establishing regional advisory councils under the common fisheries policy should be reflected in this regulation +the programming rules for the control of expenditure need to be adapted in order to improve sound financial management notably by bringing closer the date for the submission of the applications for union financial support and by further specifying the information to be communicated on the projects and the format in which it should be provided +article 10 is amended as follows (a) the heading is replaced by the following measures in the area of additional data collection management and use (b) in the introduction to paragraph 1 the second sentence is replaced by the following the activities which may be eligible for union financial support shall include (c) in paragraph 1 point (a) is replaced by the following (a) methodological studies and projects aimed at optimising and standardising methods of collecting data required for giving scientific advice in article 11 point (a) is replaced by the following (a) expenditure for partnership contracts with national research institutions or with international bodies in charge of stock assessments for the provision of scientific advice and data article 12 is amended as follows (a) points (a) (b) and (c) are replaced by the following (a) the travelling and accommodation costs of the members of representative organisations in the acfa in connection with preparatory meetings in advance of acfa meetings and the costs of translation interpretation and room hire incurred for those preparatory meetings (b) the cost of the participation of the representatives designated by the acfa to represent it at meetings of the racs the international council for the exploration of the sea (ices) and the stecf (c) the operating costs of the racs as provided for in decision 2004/585/ec (b) in point (d) point (ii) is replaced by the following (ii) providing very wide access to data and explanatory material concerning in particular commission proposals through developing the internet websites of the appropriate commission departments and producing a regular publication as well as organising information and training seminars for opinion formers in article 13(1) point (e) is replaced by the following (e) voluntary financial contributions to work or programmes carried out by international organisations which are of special interest to the union article 16 is amended as follows (a) the heading is replaced by the following rates of co-financing in the area of basic data collection management and use (b) the words article 23 are replaced by the words article 4 of regulation (ec) no 199/2008 the heading of article 17 is replaced by the following rates of co-financing in the area of additional data collection management and use in article 18 paragraphs 2 and 3 are replaced by the following drawing rights shall be allocated under a financing agreement with the commission to each representative organisation which is a member of the acfa plenary in proportion to entitlements within the plenary committee of the acfa and depending on the financial resources available +commission decision 2008/949/ec of 6 november 2008 adopting a multiannual community programme pursuant to council regulation (ec) no 199/2008 provides that the data to be collected are to comprise socioeconomic variables +those drawing rights and the average cost of a journey by a member of a representative organisation shall determine the number of journeys for which each organisation may be financially responsible undertaken for the purpose of preparatory meetings within the overall limit of the drawing right 20 of the actual eligible expenditure shall be retained as a lump sum by each representative organisation in order to cover those of its organisational and administrative costs which are strictly linked with the organisation of the preparatory meetings article 20 is amended as follows (a) paragraphs 1 and 2 are replaced by the following applications by member states for union financial support shall be submitted to the commission by 15 november of the year preceding the year of implementation concerned such applications shall be accompanied by an annual fisheries control programme containing the following information (a) the objectives of the annual fisheries control programme (b) the planned human resources available (c) the planned financial resources available (d) the planned number of vessels and aircraft available (e) a list of projects for which a financial contribution is sought (f) the overall expenditure planned for carrying out the projects (g) a schedule for completion in respect of each project listed in the annual fisheries control programme (h) a list of indicators to be used to assess the efficacy of the annual fisheries control programme +the commission may adopt detailed rules for the application of paragraph 1 by means of implementing acts those implementing acts shall be adopted in accordance with the examination procedure referred to in article 30(2) +where reference is made to this paragraph article 5 of regulation (eu) no 182/2011 shall apply +the title and the enacting terms of regulation (ec) no 861/2006 should be changed to take account of the entry into force on 1 december 2009 of the treaty of lisbon +partnerships in the international field may be concluded at bilateral regional or multilateral level +in each field of action regulation (ec) no 861/2006 is supplemented by other related regulations or decisions several elements of that related legislation have evolved since the adoption of that regulation which should now be amended in order to ensure coherence between all the elements of the legislative framework +the commission may adopt detailed rules for the application of point (a) of paragraph 1 by means of implementing acts those implementing acts shall be adopted in accordance with the examination procedure referred to in article 30(2) article 9 is replaced by the following article 9 measures in the area of basic data collection management and use in the area of basic data collection management and use the following expenditure shall be eligible for union financial support in the framework of multiannual national programmes referred to in article 4 of council regulation (ec) no 199/2008 of 25 february 2008 concerning the establishment of a community framework for the collection management and use of data in the fisheries sector and support for scientific advice regarding the common fisheries policy (12) (a) expenditure incurred for the collection of biological technical environmental and socioeconomic data in relation to commercial and recreational fisheries including sampling at-sea-monitoring and research surveys and the collection of environmental and socioeconomic data on the aquaculture and processing industry as laid down in the multiannual union programme referred to in article 3 of regulation (ec) no 199/2008 (b) expenditure incurred for measures related to the management development enhancement and exploitation of data referred to in point (a) (c) expenditure incurred for measures related to the use of the data referred to in point (a) such as estimates of biological parameters and the production of data sets for scientific analysis and advice (d) expenditure incurred in connection with participation in regional coordination meetings referred to in article 5 of regulation (ec) no 199/2008 in the relevant scientific meetings of regional fisheries management organisations of which the union is a contracting party or observer and in the meetings of international bodies in charge of providing scientific advice +it is also necessary to clarify where appropriate the scope of the measures financed and to improve the drafting of some articles +the indications concerning eligible expenditure in the field of control should be presented in a clearer and more detailed way and a link should be made with council regulations (ec) no 1224/2009 of 20 november 2009 establishing a community control system for ensuring compliance with the rules of the common fisheries policy and (ec) no 1005/2008 of 29 september 2008 establishing a community system to prevent deter and eliminate illegal unreported and unregulated fishing (10) +article 31 is deleted article 32 is replaced by the following article 32 repeal of obsolete acts regulation (ec) no 657/2000 and decisions 2000/439/ec and 2004/465/ec are hereby repealed with effect from 1 january nevertheless the rules set out in the second indent of article 3 and in articles 4 and 6 of decision 2000/439/ec and the annex thereto as applicable on 31 december 2006 shall apply by analogy to the national programmes for the collection management and use of data for the years 2007 and 2008 +in respect of the preparatory meetings of the advisory committee on fisheries and aquaculture (acfa) the possibility should exist to grant financial support to representatives other than those from the european trade organisations and to allow for the financing of the costs of translation interpretation and room hire the list of consultative bodies for the meetings of which the acfa plenary designates a representative should be updated +article 2 this regulation shall enter into force on the day following its publication in the official journal of the european union point 23 of article 1 shall apply from 1 january this regulation shall be binding in its entirety and directly applicable in all member states done at strasbourg 6 july for the european parliament the president j buzek for the council the president m dowgielewicz oj c 44 11 2 2011 p 171 +a number of the provisions of council decision 2000/439/ec of 29 june 2000 on a financial contribution from the community towards the expenditure incurred by member states in collecting data and for financing studies and pilot projects for carrying out the common fisheries policy were not included in regulation (ec) no 861/2006 nor were they converted into implementing rules this created a legal void for the years 2007 and 2008 during which period the commission continued to apply the rules previously in force as laid down in decision 2000/439/ec in the interests of legal certainty it should be provided retroactively that those rules remained applicable during that period +experience has also demonstrated the need to amend regulation (ec) no 861/2006 by slightly adapting some of its provisions to better fit the current situation +22 7 2011 en official journal of the european union l 192/33 regulation (eu) no 693/2011 of the european parliament and of the council of 6 july 2011 amending council regulation (ec) no 861/2006 establishing community financial measures for the implementation of the common fisheries policy and in the area of the law of the sea the european parliament and the council of the european union having regard to the treaty on the functioning of the european union and in particular article 43 thereof having regard to the proposal from the european commission after transmission of the draft legislative act to the national parliaments having regard to the opinion of the european economic and social committee (1) acting in accordance with the ordinary legislative procedure (2) whereas council regulation (ec) no 861/2006 provides for financing in the following areas international relations governance data collection and scientific advice and control and enforcement of the common fisheries policy (cfp) +eligible measures for union financial support in the field of data collection and scientific advice are set out in regulation (ec) no 199/2008 and regulation (ec) no 861/2006 should be aligned with those provisions +the joint research centre not only analyses the implementation of control activities but also gives advice and is involved in developing new technologies +regulation (ec) no 861/2006 should therefore be amended accordingly have adopted this regulation article 1 regulation (ec) no 861/2006 is hereby amended as follows the title shall be replaced by the following in the enacting terms with the exception of references to the community fisheries control agency in article 4(c) the word community and the word communities shall be replaced by the word union the words community waters shall be replaced by the words eu waters any necessary grammatical adjustments shall be made in article 2 point (b) is replaced by the following (b) conservation measures collection and management of data and use of data to generate scientific advice for the cfp in article 3 point (b) is replaced by the following (b) improving the collection the management and the use of data necessary for the cfp article 5 is replaced by the following article 5 specific objectives in the area of data collection management and use and scientific advice union financial measures referred to in articles 9 10 and 11 shall contribute to the objective of improving data collection management and use and scientific advice on the state of the resources on the level of fishing on the impact that fisheries have on the resources and the marine ecosystem on the economic aspects of fisheries and aquaculture and on the performance of the fishing industry within and outside eu waters by providing financial support to the member states to establish multiannual aggregated and science based datasets which incorporate biological technical environmental and socioeconomic information article 7 paragraph 1 point (c) is replaced by the following (c) developing through partnership at a bilateral regional or multilateral level the fisheries resource management and control capacities of third countries in order to ensure sustainable fishing and to promote the economic development of the fisheries sector in those countries by improving the scientific and technical evaluation of the fisheries concerned the monitoring and control of fishing activities the health conditions and the business environment in the sector article 8 is replaced by the following article 8 measures in the area of control and enforcement in the area of control and enforcement of cfp rules the following expenditure shall be eligible for union financial measures (a) expenditure incurred by member states in implementing the monitoring and control systems applicable to the cfp for (i) investments relating to control activities carried out by the competent national authorities by administrative bodies or by the private sector in the purchase and/or development of technology including hardware and software vessel detection systems (vds) and it networks enabling the gathering administration validation analysis and exchange of and the development of sampling methods for data related to fisheries including the development of websites related to control the purchase and/or development of the components necessary to ensure the transmission to the relevant member state and union authorities of data from actors involved in fishing and the marketing of fisheries products including the necessary components for electronic recording and reporting systems (ers) vessel monitoring systems (vms) and automatic identification systems (ais) the implementation of programmes for the exchange and analysis of data between member states the purchase and modernisation of control means (ii) programmes for the training and exchange including between member states of personnel responsible for monitoring control and surveillance of fisheries activities (iii) the implementation of pilot projects related to fisheries control (iv) cost/benefit analysis as well as assessment of audits performed and expenditure incurred by competent authorities in carrying out monitoring control and surveillance (v) initiatives including seminars and media tools aimed at raising awareness both among fishermen and other players such as inspectors public prosecutors and judges and among the general public of the need to fight illegal unreported and unregulated fishing and on the implementation of the cfp rules (b) expenditure relating to administrative arrangements with the joint research centre or any other union consultative body for the purpose of assessing and developing new control technologies (c) all operational expenditure related to inspection by commission inspectors of the implementation of the cfp by the member states and in particular inspection missions safety equipment and training of inspectors meetings and the charter or purchase by the commission of inspection means (d) the contribution to the budget of the cfca in order to cover staff administrative and operating expenditure relating to the annual work plan of the cfca +for each project the annual fisheries control programme shall specify the measure referred to in article 8(a) to which it relates the aim of the project and a detailed description thereof including the following particulars the owner the location the estimated cost the timetable for completion of the project and the public procurement procedure to be followed when a project is conducted jointly by more than one member state the annual fisheries control programme shall also include a list of the member states conducting the project the estimated total costs for the project as well as the estimated costs per member state (b) in paragraph 3 point (b) is replaced by the following (b) how many hours or days over the course of a year they are likely to be used for fishery control purposes and which system is in place in the member state in order to make it possible for the commission or the court of auditors to check their effective use for control purposes (c) the following paragraph is added member states shall provide the information requested in paragraphs 1 2 and 3 by submitting both electronically and as a hardcopy the electronic form communicated to them by the commission the heading of section 2 of chapter v is replaced by the following procedures in the area of data collection management and use article 22 is replaced by the following article 22 introductory provision the union financial contribution to the expenditure incurred by the member states for the collection management and use of the basic data referred to in article 9 shall be provided in accordance with the procedures set out in this section article 23 is deleted article 24 is amended as follows (a) the heading is replaced by the following commission financing decision (b) paragraph 1 is replaced by the following on the basis of the multiannual programmes submitted by the member states in accordance with article 4 of regulation (ec) no 199/2008 and approved by the commission in accordance with article 6 of that regulation decisions on the union financial contribution to the national programmes shall be taken each year in accordance with the examination procedure referred to in article 30(2) (c) paragraph 2 is deleted article 30 is replaced by the following article 30 committee procedure the commission shall be assisted by the committee for fisheries and aquaculture established by article 30 of regulation (ec) no 2371/ that committee shall be a committee within the meaning of regulation (eu) no 182/2011 of the european parliament and of the council of 16 february 2011 laying down the rules and general principles concerning mechanisms for control by member states of the commissions exercise of implementing powers (13) +in order to ensure uniform conditions for the implementation of the measures in the area of control and enforcement and more particularly as regards expenditure incurred by member states in implementing the monitoring and control systems applicable to the cfp as well as measures in the area of basic data collection management and use implementing powers should be conferred on the commission those powers should be exercised in accordance with regulation (eu) no 182/2011 of the european parliament and of the council of 16 february 2011 laying down the rules and general principles concerning mechanisms for control by member states of the commissions exercise of implementing powers (11) +the programming measures in the field of data collection and scientific advice are set out in regulation (ec) no 199/2008 and commission regulation (ec) no 665/2008 of 14 july 2008 laying down detailed rules for the application of council regulation (ec) no 199/2008 (7) +expenditure in the area of scientific advice should include expenditure for partnership contracts with international bodies in charge of stock assessment +council regulation (ec) no 199/2008 of 25 february 2008 concerning the establishment of a community framework for the collection management and use of data in the fisheries sector and support for scientific advice regarding the common fisheries policy has enlarged the scope of data collection in order to cover the collection the management and the use of data and that should be explicitly acknowledged in this regulation +21 7 2011 en official journal of the european union l 190/26 commission implementing regulation (eu) no 701/2011 of 20 july 2011 correcting regulation (eu) no 1004/2010 operating deductions from certain quotas for 2010 on account of overfishing in the previous year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1224/2009 of 20 november 2009 establishing a community control system for ensuring compliance with the rules of the common fisheries policy amending regulations (ec) no 847/96 (ec) no 2371/2002 (ec) no 811/2004 (ec) no 768/2005 (ec) no 2115/2005 (ec) no 2166/2005 (ec) no 388/2006 (ec) no 509/2007 (ec) no 676/2007 (ec) no 1098/2007 (ec) no 1300/2008 (ec) no 1342/2008 and repealing regulations (eec) no 2847/93 (ec) no 1627/94 and (ec) no 1966/2006 (1) and in particular article 105 thereof whereas in the annex to commission regulation (eu) no 1004/2010 (2) two lines should be corrected because landings made by estonia vessels in spain and denmark were misreported +the corrections should take effect from the date of entry into force of this regulation in so far as they impose burdens on the individuals concerned has adopted this regulation article 1 the table in the annex to regulation (eu) no 1004/2010 is amended as follows the seventh line is replaced by the following est red n3m redfish opano 3m y 1 540 00 0 0 1 540 00 0 0 1 642 76 1 642 76 106 7 102 7 1 571 00 1 468 the eight line est spr 03a sprat iiia y 0 00 0 0 0 00 0 0 0 00 0 00 0 0 0 00 0 00 150 00 150 is deleted +it is necessary for those corrections to take effect from the date of entry into force of regulation (eu) no 1004/2010 in so far as they are advantageous to individuals concerned +regulation (eu) no 1004/2010 should therefore be corrected accordingly +the products eligible for a refund under paragraph 1 shall meet the relevant requirements of regulations (ec) no 852/2004 and (ec) no 853/2004 and in particular shall be prepared in an approved establishment and comply with the marking conditions laid down in section i of annex ii to regulation (ec) no 853/2004 and those defined in point a of annex xiv to regulation (ec) no 1234/2007 +the management committee for the common organisation of agricultural markets has not delivered an opinion within the time limit set by its chair has adopted this regulation article 1 export refunds as provided for in article 164 of regulation (ec) no 1234/2007 shall be granted on the products and for the amounts set out in the annex to this regulation subject to the conditions provided for in paragraph 2 of this article +in view of the current situation on the market in eggs export refunds should be fixed in accordance with the rules and certain criteria provided for in articles 162 163 164 167 and 169 of regulation (ec) no 1234/2007 +21 7 2011 en official journal of the european union l 190/61 commission implementing regulation (eu) no 710/2011 of 20 july 2011 fixing the export refunds on eggs the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (1) and in particular article 164(2) and article 170 in conjunction with article 4 thereof whereas article 162 of regulation (ec) no 1234/2007 provides that the difference between prices on the world market for the products referred to in part xix of annex i to that regulation and prices in the union for those products may be covered by an export refund +article 164 of regulation (ec) no 1234/2007 provides that refunds may vary according to destination especially where the world market situation the specific requirements of certain markets or obligations resulting from agreements concluded in accordance with article 300 of the treaty make this necessary +refunds should be granted only on products which are authorised to move freely within the union and comply with requirements under regulation (ec) no 852/2004 of the european parliament and of the council of 29 april 2004 on the hygiene of foodstuffs and of regulation (ec) no 853/2004 of the european parliament and of the council of 29 april 2004 laying down specific hygiene rules for food of animal origin (3) as well as marking requirements under point a of annex xiv to regulation (ec) no 1234/2007 +the currently applicable refunds have been fixed by commission regulation (eu) no 398/2011 (4) since new refunds should be fixed that regulation should therefore be repealed +the products eligible for a refund under paragraph 1 shall meet the relevant requirements of regulations (ec) no 852/2004 and (ec) no 853/2004 and in particular shall be prepared in an approved establishment and comply with the health marking requirements laid down in annex i section i chapter iii to regulation (ec) no 854/2004 +article 164 of regulation (ec) no 1234/2007 provides that the refund may vary according to destination especially where the world market situation the specific requirements of certain markets or obligations resulting from agreements concluded in accordance with article 300 of the treaty make this necessary +the currently applicable refunds have been fixed by commission regulation (eu) no 399/2011 (5) since new refunds should be fixed that regulation should therefore be repealed +refunds should be granted only on products that are allowed to move freely in the union and that bear the health mark as provided for in article 5(1)(a) of regulation (ec) no 853/2004 of the european parliament and of the council of 29 april 2004 laying down specific hygiene rules for food of animal origin (2) those products must also satisfy the requirements laid down in regulation (ec) no 852/2004 of the european parliament and of the council of 29 april 2004 on the hygiene of foodstuffs and regulation (ec) no 854/2004 of the european parliament and of the council of 29 april 2004 laying down specific rules for the organisation of official controls on products of animal origin intended for human consumption (4) +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 export refunds as provided for in article 164 of regulation (ec) no 1234/2007 shall be granted on the products and for the amounts set out in the annex to this regulation subject to the condition provided for in paragraph 2 of this article +21 7 2011 en official journal of the european union l 190/65 commission implementing regulation (eu) no 712/2011 of 20 july 2011 fixing the export refunds on pigmeat the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 164(2) and article 170 in conjunction with article 4 thereof whereas article 162 of regulation (ec) no 1234/2007 provides that the difference between prices on the world market for the products listed in part xvii of annex i to that regulation and prices for those products on the union market may be covered by an export refund +given the present situation on the market in pigmeat export refunds should therefore be fixed in accordance with the rules and criteria provided for in articles 162 163 164 167 and 169 of regulation (ec) no 1234/2007 +21 7 2011 en official journal of the european union l 190/1 council regulation (eu euratom) no 699/2011 of 18 july 2011 adjusting the correction coefficients applicable to the remuneration and pensions of officials and other servants of the european union the council of the european union having regard to the treaty on the functioning of the european union having regard to the staff regulations of officials of the european union and the conditions of employment of other servants of the union laid down in regulation (eec euratom ecsc) no 259/68 (1) and in particular articles 64 65 of the staff regulations and annexes vii xi and xiii thereto and the first paragraph of article 20 articles 64 and 92 of the conditions of employment of other servants having regard to the proposal from the european commission whereas there was a substantial increase in the cost of living in estonia in the period from june to december 2010 the correction coefficients applied to the remuneration of officials and other servants of the union should therefore be adjusted has adopted this regulation article 1 with effect from 1 january 2011 the correction coefficients applicable under article 64 of the staff regulations to the remuneration of officials and other servants employed in the country listed below shall be as follows estonia 78 5 +21 7 2011 en official journal of the european union l 190/63 commission implementing regulation (eu) no 711/2011 of 20 july 2011 fixing representative prices in the poultrymeat and egg sectors and for egg albumin and amending regulation (ec) no 1484/95 the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 143 thereof having regard to council regulation (ec) no 614/2009 of 7 july 2009 on the common system of trade for ovalbumin and lactalbumin (2) and in particular article 3 thereof whereas commission regulation (ec) no 1484/95 lays down detailed rules for implementing the system of additional import duties and fixes representative prices for poultrymeat and egg products and for egg albumin +in view of the situation on the market this amendment should be applied as soon as possible +regular monitoring of the data used to determine representative prices for poultrymeat and egg products and for egg albumin shows that the representative import prices for certain products should be amended to take account of variations in price according to origin the representative prices should therefore be published +21 7 2011 en official journal of the european union l 190/67 commission implementing regulation (eu) no 713/2011 of 20 july 2011 fixing the rates of the refunds applicable to milk and milk products exported in the form of goods not covered by annex i to the treaty the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 164 thereof whereas article 162(1)b of regulation (ec) no 1234/2007 provides that the difference between prices in international trade for the products referred to in article 1(1)(p) and listed in part xvi of annex i to that regulation and prices within the union may be covered by an export refund where these goods are exported in the form of goods listed in part iv of annex xx to that regulation +article 100 of regulation (ec) no 1234/2007 provides for the payment of aid for union-produced skimmed milk processed into casein if such milk and the casein manufactured from it fulfil certain conditions +commission regulation (eu) no 578/2010 of 29 june 2010 implementing council regulation (ec) no 1216/2009 as regards the system of granting export refunds on certain agricultural products exported in the form of goods not covered by annex i to the treaty and the criteria for fixing the amount of such refunds (2) specifies the products for which a rate of refund is to be fixed to be applied where these products are exported in the form of goods listed in part iv of annex xx to regulation (ec) no 1234/2007 +the currently applicable refunds have been fixed by commission implementing regulation (eu) no 402/2011 (3) since new refunds should be fixed that regulation should therefore be repealed +article 2 implementing regulation (eu) no 402/2011 is hereby repealed +in the case of certain milk products exported in the form of goods not covered by annex i to the treaty there is a danger that if high refund rates are fixed in advance the commitments entered into in relation to those refunds may be jeopardised in order to avert that danger it is therefore necessary to take appropriate precautionary measures but without precluding the conclusion of long-term contracts the fixing of specific refund rates for the advance fixing of refunds in respect of those products should enable those two objectives to be met +article 15 of regulation (eu) no 578/2010 provides that when the rate of the refund is being fixed account is to be taken where appropriate of aids or other measures having equivalent effect applicable in all member states in accordance with the regulation on the common organisation of the agricultural markets to the basic products listed in annex i to regulation (eu) no 578/2010 or to assimilated products +article 162 of regulation (ec) no 1234/2007 lays down that the export refund for a product contained in a good may not exceed the refund applicable to that product when exported without further processing +article 3 this regulation shall enter into force on 21 july this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 20 july for the commission on behalf of the president heinz zourek director-general for enterprise and industry oj l 299 16 11 2007 p +in accordance with article 14 of regulation (eu) no 578/2010 the rate of the refund per 100 kilograms for each of the basic products in question is to be fixed for a period of the same duration as that for which refunds are fixed for the same products exported unprocessed +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 the rates of the refunds applicable to the basic products listed in annex i to regulation (eu) no 578/2010 and in part xvi of annex i to regulation (ec) no 1234/2007 and exported in the form of goods listed in part iv of annex xx to regulation (ec) no 1234/2007 shall be fixed as set out in the annex to this regulation +21 7 2011 en official journal of the european union l 190/57 commission implementing regulation (eu) no 709/2011 of 20 july 2011 fixing the export refunds on milk and milk products the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 164 and article 170 in conjunction with article 4 thereof whereas article 162 of regulation (ec) no 1234/2007 provides that the difference between prices on the world market for the products listed in part xvi of annex i to that regulation and prices for those products on the union market may be covered by an export refund +the currently applicable refunds have been fixed by commission regulation (eu) no 400/2011 (3) since new refunds should be fixed that regulation should therefore be repealed +article 164 of regulation (ec) no 1234/2007 provides that export refunds may vary according to destination especially where the world market situation the specific requirements of certain markets or obligations resulting from agreements concluded in accordance with article 300 of the treaty make this necessary +refunds should be granted only on products that comply with the requirements of commission regulation (ec) no 1187/2009 of 27 november 2009 laying down special detailed rules for the application of council regulation (ec) no 1234/2007 as regards export licences and export refunds for milk and milk products (2) +article 2 regulation (eu) no 400/2011 is hereby repealed +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 export refunds as provided for in article 164 of regulation (ec) no 1234/2007 shall be granted on the products and for the amounts set out in the annex to this regulation subject to the conditions provided for in article 3 of regulation (ec) no 1187/2009 +given the present situation on the market in milk and milk products export refunds should be fixed in accordance with the rules and certain criteria provided for in articles 162 163 164 167 and 169 of regulation (ec) no 1234/2007 +article 2 implementing regulation (eu) no 401/2011 is hereby repealed +commission regulation (eu) no 578/2010 of 29 june 2010 implementing council regulation (ec) no 1216/2009 as regards the system of granting export refunds on certain agricultural products exported in the form of goods not covered by annex i to the treaty and the criteria for fixing the amount of such refunds (2) specifies the products for which a rate of refund is to be fixed to be applied where these products are exported in the form of goods listed in part v of annex xx to regulation (ec) no 1234/2007 +article 162 of regulation (ec) no 1234/2007 lays down that the export refund for a product contained in a good may not exceed the refund applicable to that product when exported without further processing +the management committee for the common organisation of agricultural markets has not delivered an opinion within the time limit set by its chair has adopted this regulation article 1 the rates of the refunds applicable to the basic products listed in annex i to regulation (eu) no 578/2010 and in part xix of annex i to regulation (ec) no 1234/2007 and exported in the form of goods listed in part v of annex xx to regulation (ec) no 1234/2007 shall be fixed as set out in the annex to this regulation +21 7 2011 en official journal of the european union l 190/70 commission implementing regulation (eu) no 714/2011 of 20 july 2011 fixing the rates of the refunds applicable to eggs and egg yolks exported in the form of goods not covered by annex i to the treaty the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural market and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 164 thereof whereas article 162(1)(b) of regulation (ec) no 1234/2007 provides that the difference between prices in international trade for the products referred to in article 1(1)(s) and listed in part xix of annex i to that regulation and prices within the union may be covered by an export refund where these goods are exported in the form of goods listed in part v of annex xx to that regulation +the currently applicable refunds have been fixed by commission implementing regulation (eu) no 401/2011 (3) since new refunds should be fixed that regulation should therefore be repealed +in accordance with article 14 of regulation (eu) no 578/2010 the rate of the refund per 100 kilograms for each of the basic products in question is to be fixed for a period of the same duration as that for which refunds are fixed for the same products exported unprocessed +article 2 this regulation shall enter into force on the day of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 19 december for the commission on behalf of the president jerzy plewa director-general directorate-general for agriculture and rural development oj l 347 20 12 2013 p 671 +regulation (ec) no 1484/95 should therefore be amended accordingly +regular monitoring of the data used to determine representative prices for poultrymeat and egg products and for egg albumin shows that the representative import prices for certain products should be amended to take account of variations in price according to origin +21 12 2018 en official journal of the european union l 327/63 commission implementing regulation (eu) 2018/2044 of 19 december 2018 amending regulation (ec) no 1484/95 as regards fixing representative prices in the poultrymeat and egg sectors and for egg albumin the european commission having regard to the treaty on the functioning of the european union having regard to regulation (eu) no 1308/2013 of the european parliament and of the council of 17 december 2013 establishing a common organisation of the markets in agricultural products and repealing council regulations (eec) no 922/72 (eec) no 234/79 (ec) no 1037/2001 and (ec) no 1234/2007 (1) and in particular article 183(b) thereof having regard to regulation (eu) no 510/2014 of the european parliament and of the council of 16 april 2014 laying down the trade arrangements applicable to certain goods resulting from the processing of agricultural products and repealing council regulations (ec) no 1216/2009 and (ec) no 614/2009 (2) and in particular article 5(6)(a) thereof whereas commission regulation (ec) no 1484/95 lays down detailed rules for implementing the system of additional import duties and fixes representative prices in the poultrymeat and egg sectors and for egg albumin +given the need to ensure that this measure applies as soon as possible after the updated data have been made available this regulation should enter into force on the day of its publication has adopted this regulation article 1 annex i to regulation (ec) no 1484/95 is replaced by the text set out in the annex to this regulation +the measures provided for in this regulation are in accordance with the opinion of the committee for fisheries and aquaculture has adopted this regulation article 1 the fishing quotas fixed for 2011 in regulations (eu) no 1225/2010 (eu) no 1124/2010 (eu) no 1256/2010 and (eu) no 57/2011 are increased as set out in the annex +council regulation (eu) no 1225/2010 of 13 december 2010 fixing for 2011 and 2012 the fishing opportunities for eu vessels for fish stocks of certain deep-sea fish species (6) council regulation (eu) no 1124/2010 of 29 november 2010 fixing for 2011 the fishing opportunities for certain fish stocks and groups of fish stocks applicable in the baltic sea (7) council regulation (eu) no 1256/2010 of 17 december 2010 fixing the fishing opportunities for certain fish stocks applicable in the black sea for 2011 and council regulation (eu) no 57/2011 of 18 january 2011 fixing for 2011 the fishing opportunities for certain fish stocks and groups of fish stocks applicable in eu waters and for eu vessels in certain non eu waters (9) fix quotas for certain stocks for 2011 +21 7 2011 en official journal of the european union l 190/2 commission implementing regulation (eu) no 700/2011 of 20 july 2011 adding to the 2011 fishing quotas certain quantities withheld in the year 2010 pursuant to article 4 of council regulation (ec) no 847/96 the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 847/96 of 6 may 1996 introducing additional conditions for year-to-year management of tacs and quotas (1) and in particular article 4 thereof whereas according to article 4 of regulation (ec) no 847/96 member states may ask the commission before 31 october in the year of application of a fishing quota to withhold a maximum of 10 of that quota to be transferred to the following year the commission shall add to the relevant quota the quantity withheld +council regulation (ec) no 1359/2008 of 28 november 2008 fixing for 2009 and 2010 the fishing opportunities for community fishing vessels for certain deep-sea fish stocks (2) council regulation (ec) no 1226/2009 of 20 november 2009 fixing the fishing opportunities and associated conditions for certain fish stocks and groups of fish stocks applicable in the baltic sea for 2010 (3) council regulation (ec) no 1287/2009 of 27 november 2009 fixing the fishing opportunities and the conditions relating thereto for certain fish stocks applicable in the black sea for 2010 and council regulation (eu) no 53/2010 of 14 january 2010 fixing for 2010 the fishing opportunities for certain fish stocks and groups of fish stocks applicable in eu waters and for eu vessels in waters where catch limitations are required (5) fix quotas for certain stocks for 2010 and specify which stocks may be subject to the measures provided for in regulation (ec) no 847/96 +certain member states have requested before 31 october of 2010 pursuant to article 4 of regulation (ec) no 847/96 that part of their quotas for 2010 be withheld and transferred to the following year within the limits indicated in that regulation the quantities withheld should be added to the quota for 2011 +21 7 2011 en official journal of the european union l 190/54 commission implementing regulation (eu) no 707/2011 of 20 july 2011 on setting the final amount of aid for dried fodder for the 2010/2011 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 90(c) in conjunction with article 4 thereof whereas article 88 of regulation (ec) no 1234/2007 sets the amount for aid to be paid to processors for dried fodder up to the maximum guaranteed quantity laid down in article 89 of that regulation +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 the final amount of the aid for dried fodder for the 2010/2011 marketing year shall be eur 33 per tonne +in accordance with the second subparagraph of article 33 of commission regulation (ec) no 382/2005 of 7 march 2005 laying down detailed rules for the application of council regulation (ec) no 1786/2003 on the common organisation of the market in dried fodder (2) the member states have notified the commission of the quantities of dried fodder in respect of which entitlements to aid have been recognised for the 2010/2011 marketing year these notifications indicate that the maximum guaranteed quantity for dried fodder has not been exceeded +therefore in accordance with article 88 of regulation (ec) no 1234/2007 the amount of the aid for dried fodder is eur 33 per tonne +submission of further applications for licences for order numbers 09 4325 and 09 4380 should be suspended until the end of the marketing year in accordance with regulation (ec) no 891/2009 has adopted this regulation article 1 the quantities for which import licence applications have been lodged under regulation (ec) no 891/2009 from 1 to 7 july 2011 shall be multiplied by the allocation coefficients set out in the annex to this regulation +submission of further applications for licences which correspond to the order numbers indicated in the annex shall be suspended until the end of the marketing year 2010/11 +in these circumstances an allocation coefficient for licences to be issued regarding order number 09 4380 should be fixed in accordance with regulation (ec) no 1301/2006 +20 7 2011 en official journal of the european union l 189/12 commission implementing regulation (eu) no 698/2011 of 19 july 2011 fixing the allocation coefficient for the issuing of import licences applied for from 1 to 7 july 2011 for sugar products under certain tariff quotas and suspending submission of applications for such licences the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 1301/2006 of 31 august 2006 laying down common rules for the administration of import tariff quotas for agricultural products managed by a system of import licences (2) and in particular article 7 thereof having regard to commission regulation (ec) no 891/2009 of 25 september 2009 opening and providing for the administration of certain community tariff quotas in the sugar sector (3) and in particular article 5 thereof whereas quantities covered by applications for import licences submitted to the competent authorities from 1 to 7 july 2011 in accordance with regulation (ec) no 891/2009 exceed the quantity available under order number 09 4380 +quantities covered by applications for import licences submitted to the competent authorities from 1 to 7 july 2011 in accordance with regulation (ec) no 891/2009 are equal to the quantity available under order number 09 4325 +20 7 2011 en official journal of the european union l 189/9 commission implementing regulation (eu) no 696/2011 of 19 july 2011 on the issue of import licences for applications submitted in the first seven days of july 2011 under the tariff quota for high-quality beef administered by regulation (ec) no 620/2009 the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 1301/2006 of 31 august 2006 laying down common rules for the administration of import tariff quotas for agricultural products managed by a system of import licences (2) and in particular article 7 thereof whereas commission regulation (ec) no 620/2009 of 13 july 2009 providing for the administration of an import tariff quota for high-quality beef sets out detailed rules for the submission and issue of import licences +in order to ensure sound management of the procedure for issuing import licences this regulation should enter into force immediately after its publication has adopted this regulation article 1 each import licence application in respect of subquota iii as referred to in regulation (ec) no 1067/2008 and lodged between 1 july 2011 at 13 00 and 8 july 2011 at 13 00 (brussels time) shall give rise to the issue of a licence for the quantities applied for multiplied by an allocation coefficient of 50 926778 +the notification made under article 4 of regulation (ec) no 1067/2008 shows that the applications lodged between 1 july 2011 at 13 00 and 8 july 2011 at 13 00 (brussels time) in accordance with the second subparagraph of article 4 of that regulation exceed the quantities available the extent to which import licences may be issued should therefore be determined and the allocation coefficient to be applied to the quantities applied for should be fixed +commission implementing regulation (ec) no 632/2011 derogates from article 3 of regulation (ec) no 1067/2008 for 2011 by merging subperiods 3 and 4 of subquota iii (order number 09 4125) and fixes the quantity at 1 189 193 tonnes for subperiod 3 which runs from 1 july to 31 december 2011 +import licences should no longer be issued under subquota iii as referred to in regulation (ec) no 1067/2008 for the current quota period +14 7 2011 en official journal of the european union l 184/5 commission implementing regulation (eu) no 675/2011 of 13 july 2011 fixing the allocation coefficient to be applied to applications for import licences lodged from 1 july 2011 to 8 july 2011 under subquota iii in the context of the tariff quota opened by regulation (ec) no 1067/2008 for common wheat of a quality other than high quality the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 1301/2006 of 31 august 2006 laying down common rules for the administration of import tariff quotas for agricultural products managed by a system of import licences (2) and in particular article 7 thereof whereas commission regulation (ec) no 1067/2008 opens an overall annual import tariff quota of 2 989 240 tonnes of common wheat of a quality other than high quality that quota is divided into three subquotas +article 3 of regulation (ec) no 1067/2008 divides subquota iii (order number 09 4125) into four quarterly subperiods and has fixed the quantity at 594 597 tonnes for subperiod 3 for the period from 1 july to 30 september 2011 +commission regulation (eu) no 397/2010 of 7 may 2010 fixing the quantitative limit for the exports of out-of-quota sugar and isoglucose until the end of the 2010/2011 marketing year sets the above mentioned limits +the quantities of sugar covered by applications for export licences exceed the quantitative limit fixed by regulation (eu) no 397/ an acceptance percentage should therefore be set for quantities applied for on 4 5 6 7 and 8 july all export-licence applications for sugar lodged after 8 july 2011 should accordingly be rejected and the lodging of export-licence applications should be suspended has adopted this regulation article 1 export licences for out-of-quota sugar for which applications were lodged between 4 july and 8 july 2011 shall be issued for the quantities applied for multiplied by an acceptance percentage of 71 122263 +applications for out-of-quota sugar export licences submitted on 11 12 13 14 and 15 july 2011 are hereby rejected +14 7 2011 en official journal of the european union l 184/4 commission implementing regulation (eu) no 674/2011 of 13 july 2011 fixing an acceptance percentage for the issuing of export licences rejecting export-licence applications and suspending the lodging of export-licence applications for out-of-quota sugar the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 7e in conjunction with article 9 thereof whereas according to article 61 first subparagraph point (d) of regulation (ec) no 1234/2007 the sugar produced during the marketing year in excess of the quota referred to in article 56 of that regulation may be exported only within the quantitative limit fixed by the commission +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +14 7 2011 en official journal of the european union l 184/7 commission implementing regulation (eu) no 676/2011 of 13 july 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 663/2011 (4) +the applications for import licences lodged in respect of groups nos 1 2 4 6 7 and 8 during the first seven days of july 2011 for the subperiod from 1 october to 31 december 2011 relate for some quotas to quantities exceeding those available the extent to which import licences may be issued should therefore be determined by establishing the allocation coefficient to be applied to the quantities requested +20 7 2011 en official journal of the european union l 189/7 commission implementing regulation (eu) no 695/2011 of 19 july 2011 on the issue of import licences and the allocation of import rights for applications lodged during the first seven days of july 2011 under the tariff quotas opened by regulation (ec) no 616/2007 for poultrymeat the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 1301/2006 of 31 august 2006 laying down common rules for the administration of import tariff quotas for agricultural products managed by a system of import licences (2) and in particular article 7 thereof whereas commission regulation (ec) no 616/2007 opened tariff quotas for imports of poultrymeat products originating in brazil thailand and other third countries +the applications for import rights lodged during the first seven days of july 2011 for the subperiod from 1 october to 31 december 2011 in respect of group no 5 relate to quantities exceeding those available the extent to which import rights may be allocated should therefore be determined by establishing the allocation coefficient to be applied to the quantities requested has adopted this regulation article 1 the quantities for which import licence applications have been lodged pursuant to regulation (ec) no 616/2007 for the subperiod from 1 october to 31 december 2011 in respect of groups nos 1 2 4 6 7 and 8 shall be multiplied by the allocation coefficients set out in the annex hereto +the quantities for which a licence applications have been lodged by traditional importers and by new importers during the first seven working days of july 2011 pursuant to article 10 of regulation (ec) no 341/2007 exceed the quantities available for products originating in china and all third countries other than china and argentina +therefore in accordance with article 7 of regulation (ec) no 1301/2006 it is now necessary to establish the extent to which the a licence applications sent to the commission by 14 july 2011 can be met in accordance with article 12 of regulation (ec) no 341/2007 +20 7 2011 en official journal of the european union l 189/10 commission implementing regulation (eu) no 697/2011 of 19 july 2011 on the issue of licences for the import of garlic in the subperiod from 1 september 2011 to 30 november 2011 the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 1301/2006 of 31 august 2006 laying down common rules for the administration of import tariff quotas for agricultural products managed by a system of import licences (2) and in particular article 7 thereof whereas commission regulation (ec) no 341/2007 opens and provides for the administration of tariff quotas and introduces a system of import licences and certificates of origin for garlic and other agricultural products imported from third countries +it is therefore necessary to prohibit fishing activities for that stock has adopted this regulation article 1 quota exhaustion the fishing quota allocated to the member state referred to in the annex to this regulation for the stock referred to therein for 2018 shall be deemed to be exhausted from the date set out in that annex +article 2 prohibitions fishing activities for the stock referred to in the annex to this regulation by vessels flying the flag of or registered in the member state referred to therein shall be prohibited from the date set out in that annex in particular it shall be prohibited to retain on board relocate tranship or land fish from that stock caught by those vessels after that date +article 3 entry into force this regulation shall enter into force on the day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 17 december for the commission on behalf of the president jo o aguiar machado director-general directorate-general for maritime affairs and fisheries oj l 343 22 12 2009 p +according to the information received by the commission catches of the stock referred to in the annex to this regulation by vessels flying the flag of or registered in the member state referred to therein have exhausted the quota allocated for 2018 +21 12 2018 en official journal of the european union l 327/46 commission regulation (eu) 2018/2039 of 17 december 2018 establishing a prohibition of fishing for ling in union and international waters of 1 and 2 by vessels flying the flag of france the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1224/2009 of 20 november 2009 establishing a union control system for ensuring compliance with the rules of the common fisheries policy (1) and in particular article 36 thereof whereas council regulation (eu) 2018/120 lays down quotas for 2018 +regulation (ec) no 968/2006 should therefore be amended accordingly +certain sugar producers will not be able to fully dismantle their production facilities in time unless that deadline is extended even further however the extension should not go beyond of what is absolutely necessary to finish the remaining dismantling works based on the information available to the commission the deadline shall accordingly be extended until 31 march 2012 at the latest +14 7 2011 en official journal of the european union l 184/1 commission implementing regulation (eu) no 672/2011 of 13 july 2011 amending regulation (ec) no 968/2006 laying down detailed rules for the implementation of council regulation (ec) no 320/2006 establishing a temporary scheme for the restructuring of the sugar industry in the community the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 320/2006 of 20 february 2006 establishing a temporary scheme for the restructuring of the sugar industry in the community and amending regulation (ec) no 1290/2005 on the financing of the common agricultural policy (1) and in particular article 12 thereof whereas article 6 of commission regulation (ec) no 968/2006 provides that the period for dismantling production facilities and for complying with the social and environmental commitments referred to in article 3(3)(c) and article 3(4)(c) of regulation (ec) no 320/2006 may be extended until 30 september 2011 at the latest +the measures provided for in this regulation are in accordance with the opinion of the committee on the agricultural funds has adopted this regulation article 1 in article 6 of regulation (ec) no 968/2006 the second subparagraph is replaced by the following by way of derogation from point (b) of the first subparagraph upon a motivated request of the undertaking concerned the member states can grant an extension of the deadline fixed in that point until 31 march 2012 at the latest in such case the undertaking shall submit an amended restructuring plan according to article 11 +the council has concluded that the persons groups and entities listed in the annex to this regulation have been involved in terrorist acts within the meaning of article 1 and of council common position 2001/931/cfsp of 27 december 2001 on the application of specific measures to combat terrorism (5) that a decision has been taken with respect to them by a competent authority within the meaning of article 1 of that common position and that they should continue to be subject to the specific restrictive measures provided for in regulation (ec) no 2580/2001 +the council has provided all the persons groups and entities for which it was practically possible with statements of reasons explaining why they were listed in implementing regulation (eu) no 83/2011 +on 31 january 2011 by implementing regulation (eu) no 83/2011 (3) the council established an updated list of persons groups and entities to which regulation (ec) no 2580/2001 applies and repealed implementing regulation (eu) no 610/2010 except in so far as it concerns the group mentioned in entry number 25 in part 2 of the annex thereto +19 7 2011 en official journal of the european union l 188/2 council implementing regulation (eu) no 687/2011 of 18 july 2011 implementing article 2 of regulation (ec) no 2580/2001 on specific restrictive measures directed against certain persons and entities with a view to combating terrorism and repealing implementing regulations (eu) no 610/2010 and (eu) no 83/2011 the council of the european union having regard to council regulation (ec) no 2580/2001 of 27 december 2001 on specific restrictive measures directed against certain persons and entities with a view to combating terrorism (1) and in particular article 2 thereof whereas on 12 july 2010 the council adopted implementing regulation (eu) no 610/2010 implementing article 2 of regulation (ec) no 2580/2001 by establishing an updated list of persons groups and entities to which regulation (ec) no 2580/2001 applies +article 2 implementing regulation (eu) no 610/2010 in so far as it concerns the group mentioned in entry number 25 in part 2 of the annex thereto and implementing regulation (eu) no 83/2011 are hereby repealed +the list of the persons groups and entities to which regulation (ec) no 2580/2001 applies should be updated accordingly has adopted this regulation article 1 the list provided for in article 2 of regulation (ec) no 2580/2001 shall be replaced by the list set out in the annex to this regulation +the council has carried out a complete review of the list of persons groups and entities to which regulation (ec) no 2580/2001 applies as required by article 2 of that regulation when doing so the council took account of observations submitted to it by the persons groups and entities concerned +by way of a notice published in the official journal of the european union (4) the council informed the persons groups and entities listed in implementing regulation (eu) no 83/2011 that it had decided to keep them on the list the council also informed the persons groups and entities concerned that it was possible to request a statement of the councils reasons for putting them on the list where one had not already been communicated to them in relation to certain persons and groups an amended statement of reasons was made available +the council has concluded that there are no longer grounds for keeping certain persons and groups on the list of persons groups and entities to which regulation (ec) no 2580/2001 applies +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +19 7 2011 en official journal of the european union l 188/10 commission implementing regulation (eu) no 690/2011 of 18 july 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 685/2011 (4) +article 3(2)(a) of regulation (ec) no 3/2008 specifies that the products that may be the subject of information provision and promotion measures financed in full or in part from the budget of the european union and to be carried out in third countries are specifically those for which export opportunities or potential new market outlets exist especially where export refunds will not be required +this crisis of confidence has also led to acute economic difficulties such that the economic survival of a significant number of farms in the eu fresh fruit and vegetable sector is in jeopardy the opportunities for exporting fresh fruit and vegetable products produced in the eu to third countries should therefore be increased +there is therefore reason to derogate for 2011 for information and promotion programmes for fresh fruit and vegetables on the internal market and in third countries from regulation (ec) no 501/2008 +19 7 2011 en official journal of the european union l 188/6 commission implementing regulation (eu) no 688/2011 of 18 july 2011 derogating for 2011 from regulation (ec) no 501/2008 by establishing an additional timetable for presenting and selecting information and promotion programmes for fresh fruit and vegetables on the internal market and in third countries the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 3/2008 of 17 december 2007 on information provision and promotion measures for agricultural products on the internal market and in third countries (1) and in particular article 15 thereof whereas article 3(1)(c) of regulation (ec) no 3/2008 specifies that the sectors or products which may be the subject of information provision and promotion measures financed in full or in part from the budget of the european union are to be determined bearing in mind in particular the need to tackle specific or short-term difficulties in individual sectors +the management committee for the common organisation of agricultural markets has not issued an opinion within the time limit set by its chairman has adopted this regulation article 1 for 2011 and notwithstanding the usual annual timetable provided for in the second subparagraph of article 8 and in article 11 and of regulation (ec) no 501/2008 the following additional timetable shall be applied for information and promotion programmes for fresh fruit and vegetables on the internal market and in third countries (a) the trade and inter-branch organisations representing the fresh fruit and vegetable sector may submit their programmes to the member states by 16 august 2011 (b) member states shall notify the commission of the provisional list of the programmes selected by 15 september 2011 (c) the commission shall decide which programmes it can part-finance by 15 november 2011 at the latest +in this context it is appropriate to offer trade organisations representing the fresh fruit and vegetable sector the opportunity to benefit from eu part-financing under regulation (ec) no 3/2008 and to that end they should be allowed to submit information and promotion programmes to the competent national authorities within the next few weeks with a view to their selection and possible adoption by the commission before the end of this year these programmes may be submitted independently of the annual timing for adopting programmes and the usual timetable laid down in articles 8 and 11 of commission regulation (ec) no 501/2008 of 5 june 2008 laying down detailed rules for the application of council regulation (ec) no 3/2008 on information provision and promotion measures for agricultural products on the internal market and in third countries (2) +the fresh fruit and vegetable sector is being adversely affected by an unprecedented crisis on account of an epidemic caused by the escherichia coli bacteria this epidemic has led to a crisis of confidence among consumers which has led to a substantial drop in consumption consumer confidence in fresh fruit and vegetable products produced in the eu should therefore be strengthened +including tusk the quotas for norway are ling 6 140 tonnes and tusk 2 923 tonnes and are interchangeable of up to 2 000 tonnes and may only be fished with long-lines in vb vi and vii of which no more than the following quotas may be taken in vii (porcupine bank unit 16) (nep/ 07u16) spain 377 france 241 ireland 454 united kingdom 188 eu 1 260 including 242 tonnes to be taken in norwegian waters south of 62 n (mac/ 04n-) +further to the consultations concluded on 17 march 2011 between coastal states (faroe islands greenland and iceland) and other north east atlantic fisheries convention (neafc) parties (union and norway) on the management of redfish in the irminger sea and adjacent waters it is necessary to establish tacs for redfish in those areas while respecting the agreed time and area restrictions annex ib to regulation (eu) no 57/2011 should be amended accordingly +article 4 of regulation (ec) no 847/96 does not apply germany 0 france 0 the netherlands 0 united kingdom 0 eu 0 tac not relevant (f) the entry for greenland halibut in greenland waters of nafo 0 and 1 is replaced by the following species greenland halibut reinhardtius hippoglossoides zone greenland waters of nafo 0 and 1 (ghl/n01grn) germany 1 850 analytical tac article 3 of regulation (ec) no 847/96 does not apply +within this tac the following catch limits and allocation between member states shall apply to catches of bluefin tuna between 8 kg/75 cm and 30 kg/115 cm by the vessels referred to in point 1 of annex iv (bft/ 8301) spain 350 51 france 158 14 eu 508 65 within this tac the following catch limits and allocation between member states shall apply to catches of bluefin tuna weighing no less than 6 4 kg or measuring no less than 70 cm by the vessels referred to in point 1 of annex iv (bft/ 641) france 45 () eu 45 () this quantity may be revised by the commission upon request from france up to an amount of 100 tonnes as indicated by iccat recommendation 08-05 +when fishing in norwegian waters by-catches of cod haddock pollack and whiting and saithe are to be counted against the quotas for these species +article 4 of regulation (ec) no 847/96 does not apply united kingdom 309 eu 7 000 tac not relevant (h) the entry for redfish in eu and international waters of v international waters of xii and xiv is replaced by the following species redfish (shallow pelagic) sebastes spp zone eu and international waters of v international waters of xii and xiv (red/51214s) estonia 0 analytical tac article 3 of regulation (ec) no 847/96 does not apply +regulation (eu) no 57/2011 applies in general from 1 january however the fishing effort limits are laid down for a 1-year period starting from 1 february in order to follow the year-to-year regime of reporting on fishing opportunities the provisions of this regulation concerning catch limits and allocations should apply from 1 january 2011 and the provisions concerning fishing effort limits should apply from 1 february 2011 except where indicated otherwise such retroactive application is without prejudice to the principle of legal certainty as the fishing opportunities concerned have not yet been exhausted for reasons of urgency this regulation should enter into force immediately after its publication has adopted this regulation article 1 amendments to regulation (eu) no 57/2011 regulation (eu) no 57/2011 is amended as follows article 1 is replaced by the following article 1 subject matter this regulation fixes the following fishing opportunities (a) for the year 2011 catch limits for certain fish stocks and groups of fish stocks (b) for the period from 1 february 2011 to 31 january 2012 certain effort limits (c) for the periods set out in articles 20 21 and 22 and in annexes ie and v fishing opportunities for certain stocks in the convention area of the convention on the conservation of antarctic marine living resources (ccamlr) (d) for the periods set out in article 28 fishing opportunities for certain stocks in the convention area of the inter american tropical tuna commission (iattc) and (e) additional fishing opportunities for mackerel resulting from uncaught quota in 2010 annex ia is amended as follows (a) the entry for sandeel and associated by-catches in eu waters of iia iiia and iv is replaced by the following species sandeel and associated by-catches ammodytes spp zone eu waters of iia iiia and iv (san/2a3a4 ) denmark 334 324 analytical tac united kingdom 7 308 germany 511 sweden 12 277 eu 354 420 norway 20 000 tac 374 420 special conditions within the limits of the abovementioned quotas no more than the quantities given below may be taken in the following sandeel management areas as defined in annex iid zone eu waters of sandeel management areas 1 2 3 4 5 6 7 (san/ 234_1) (san/ 234_2) (san/ 234_3) (san/ 234_4) (san/ 234_5) (san/ 234_6) (san/ 234_7) denmark 282 989 32 072 9 434 9 434 0 395 0 united kingdom 6 186 701 206 206 0 9 0 germany 433 49 14 14 0 1 0 sweden 10 392 1 178 346 346 0 15 0 eu 300 000 34 000 10 000 10 000 0 420 0 norway 20 000 0 0 0 0 0 0 total 320 000 34 000 10 000 10 000 0 420 0 (b) the entry for herring in iiia is replaced by the following species herring clupea harengus zone iiia (her/03a ) denmark 12 608 analytical tac article 3 of regulation (ec) no 847/96 does not apply +includes 323 tonnes of quota transferred from unused 2010 fishing opportunities special condition within the limits of the abovementioned quotas no more than the quantities given below may be taken in the following zones iiia (mac/ 03a ) iiia and ivbc (mac/ 3a4bc) ivb (mac/ 04b ) ivc (mac/ 04c ) vi international waters of iia from 1 january to 31 march 2011 and in december 2011 (mac/ 2a6 ) denmark 0 4 130 0 0 9 764 () france 0 490 0 0 0 the netherlands 0 490 0 0 0 sweden 0 0 390 10 1 847 united kingdom 0 490 0 0 0 norway 3 000 0 0 0 0 () includes 183 tonnes of quota transferred from unused 2010 fishing opportunities includes 183 tonnes of quota transferred from unused 2010 fishing opportunities may be fished in iia via north of 56 30 n iva viid viie viif and viih +includes 674 tonnes of quota omitted from the 2010 fishing opportunities special condition within the limits of the abovementioned quotas no more than the quantities given below may be taken in the following zones and periods specified below eu and norwegian waters of iva (mac/ 04a-en) during the periods from 1 january to 15 february 2011 and from 1 september to 31 december 2011 norwegian waters of iia (mac/ 2an-) germany 8 326 849 france 5 551 566 ireland 27 754 2 832 the netherlands 12 142 1 238 united kingdom 76 325 7 789 eu 130 098 13 274 quantities subject to exchanges with other member states may be taken in viiia viiib and viiid (mac/ 8abd ) however the quantities provided by spain portugal or france for exchange purposes and to be taken in viiia viiib and viiid shall not exceed 25 of the quotas of the donor member state special condition within the limits of the abovementioned quotas no more than the quantities given below may be taken in the following zone viiib (mac/ 08b ) spain 2 570 france 17 portugal 531 catches taken in iva (mac/ 4a ) and in iia (mac/ 02a ) to be reported separately +to be deducted from norways share of the tac (access quota) this amount includes norways share in the north sea tac of the amount of 47 197 tonnes this quota may be fished in iva only except for 3 000 tonnes that may be fished in iiia +article 4 of regulation (ec) no 847/96 does not apply france 1 950 eu 7 000 tac not relevant (e) the entry for saithe in faroese waters of vb is replaced by the following species saithe pollachius virens zone faroese waters of vb (pok/05b-f ) belgium 0 analytical tac article 3 of regulation (ec) no 847/96 does not apply +at least 98 of landings counted against the tac must be of sandeel by-catches of dab mackerel and whiting are to be counted against the remaining 2 of the tac special conditions within the limits of the abovementioned quotas no more than the quantities given below may be taken in the following sandeel management areas as defined in annex iid zone eu waters of sandeel management areas 1 2 3 4 5 6 7 (san/ 234_1) (san/ 234_2) (san/ 234_3) (san/ 234_4) (san/ 234_5) (san/ 234_6) (san/ 234_7) denmark 282 989 32 072 9 434 9 434 0 395 0 united kingdom 6 186 701 206 206 0 9 0 germany 433 49 14 14 0 1 0 sweden 10 392 1 178 346 346 0 15 0 eu 300 000 34 000 10 000 10 000 0 420 0 norway 20 000 0 0 0 0 0 0 total 320 000 34 000 10 000 10 000 0 420 0 landings of herring taken in fisheries using nets with mesh sizes equal to or larger than 32 mm +annex iic to regulation (eu) no 57/2011 sets fishing effort limitations for the purposes of council regulation (ec) no 509/2007 of 7 may 2007 establishing a multi-annual plan for the sustainable exploitation of the stock of sole in the western channel (2) it is necessary to align the wording of that annex with the wording of article 5 of regulation (ec) no 509/2007 +excluding waters within six miles of uk baselines at shetland fair isle and foula +special rules apply in accordance with article 1 of regulation (ec) no 1288/2009 () and point 7 of annex iii to regulation (ec) no 43/2009 () +article 4 of regulation (ec) no 847/96 does not apply france 0 united kingdom 0 eu 0 tac not relevant (d) the entry for northern prawn in greenland waters of v and xiv is replaced by the following species northern prawn pandalus borealis zone greenland waters of v and xiv (pra/514grn) denmark 1 950 analytical tac article 3 of regulation (ec) no 847/96 does not apply +article 2 entry into force and applicability this regulation shall enter into force on the day following its publication in the official journal of the european union points 1 to 7 and point 10 of article 1 shall apply from 1 january points 8 and 9 of article 1 shall apply from 1 february this regulation shall be binding in its entirety and directly applicable in all member states done at luxembourg 17 june for the council the president matolcsy gy +article 4 of regulation (ec) no 847/96 does not apply eu 2 650 tac not relevant (g) the entry for greenland halibut in greenland waters of v and xiv is replaced by the following species greenland halibut reinhardtius hippoglossoides zone greenland waters of v and xiv (ghl/514grn) germany 5 867 analytical tac article 3 of regulation (ec) no 847/96 does not apply +may also be taken in norwegian waters of iva +includes 272 tonnes of quota transferred from unused 2010 fishing opportunities including sandeel +preliminary tac the final tac will be established in the light of new scientific advice during the first half of 2011 +annex iib to regulation (eu) no 57/2011 sets fishing effort limitations for the recovery of certain southern hake and norway lobster stocks in ices divisions viiic and ixa excluding the gulf of cadiz it is appropriate to clarify the wording of a special condition set out in the framework of those fishing effort limitations and the consequences of receiving an unlimited number of days for landings in the 2011 management period +at least 98 of landings counted against the tac must be of sprat by-catches of dab and whiting are to be counted against the remaining 2 of the tac up to 5 of this quota fished in eu waters of iia or iva before 30 june 2011 may be accounted for as fished under the quota concerning eu waters of ivb ivc and viid however the use of this special condition must be notified in advance to the commission (jax/ 4bc7d) +article 4 of regulation (ec) no 847/96 does not apply france 26 united kingdom 37 eu 5 227 tac not relevant (j) the entry for other species in faroese waters of vb is replaced by the following species other species zone faroese waters of vb (oth/05b-f ) germany 0 analytical tac article 3 of regulation (ec) no 847/96 does not apply +article 4 of regulation (ec) no 847/96 does not apply germany 202 sweden 13 189 eu 25 999 tac 30 000 (c) the entry for herring in eu and international waters of vb vib and vian is replaced by the following species herring clupea harengus zone eu and international waters of vb vib and vian (her/5b6anb) germany 2 513 analytical tac france 475 ireland 3 396 the netherlands 2 513 united kingdom 13 584 eu 22 481 tac 22 481 (d) the entry for blue whiting in eu and international waters of i ii iii iv v vi vii viiia viiib viiid viiie xii and xiv is replaced by the following species blue whiting micromesistius poutassou zone eu and international waters of i ii iii iv v vi vii viiia viiib viiid viiie xii and xiv (whb/1x14) denmark 1 533 analytical tac germany 596 spain 1 300 france 1 067 ireland 1 187 the netherlands 1 869 portugal 121 sweden 379 united kingdom 1 990 eu 10 042 tac 40 100 (e) the entry for blue ling in eu waters and international waters of vb vi vii is replaced by the following species blue ling molva dypterygia zone eu waters and international waters of vb vi vii (bli/5b67-) germany 20 analytical tac article 13 of this regulation applies estonia 3 spain 62 france 1 422 ireland 5 lithuania 1 poland 1 united kingdom 362 others 5 eu 1 717 norway 150 tac 2 032 (f) the entry for ling in eu and international waters of vi vii viii ix x xii and xiv is replaced by the following species ling molva molva zone eu and international waters of vi vii viii ix x xii and xiv (lin/6x14 ) belgium 30 analytical tac article 13 of this regulation applies denmark 5 germany 109 spain 2 211 france 2 357 ireland 591 portugal 5 united kingdom 2 716 eu 8 024 norway 6 140 tac 14 164 (g) the entry for norway lobster in zone vii is replaced by the following species norway lobster nephrops norvegicus zone vii (nep/07 ) spain 1 306 analytical tac france 5 291 ireland 8 025 united kingdom 7 137 eu 21 759 tac 21 759 (h) the entry for mackerel in iiia and iv eu waters of iia iiib iiic and subdivisions 22-32 is replaced by the following species mackerel scomber scombrus zone iiia and iv eu waters of iia iiib iiic and iiid (mac/2a34 ) belgium 517 article 3 of regulation (ec) no 847/96 does not apply denmark 18 084 germany 539 france 1 629 the netherlands 1 640 sweden 4 860 united kingdom 1 518 eu 28 787 norway 169 019 tac not relevant special condition within the limits of the abovementioned quotas no more than the quantities given below may be taken in the following zones iiia (mac/ 03a ) iiia and ivbc (mac/ 3a4bc) ivb (mac/ 04b ) ivc (mac/ 04c ) vi international waters of iia from 1 january to 31 march 2011 and in december 2011 (mac/ 2a6 ) denmark 0 4 130 0 0 9 764 () france 0 490 0 0 0 the netherlands 0 490 0 0 0 sweden 0 0 390 10 1 847 united kingdom 0 490 0 0 0 norway 3 000 0 0 0 0 () includes 183 tonnes of quota transferred from unused 2010 fishing opportunities (i) the entry for mackerel in vi vii viiia viiib viiid and viiie eu and international waters of vb international waters of iia xii and xiv is replaced by the following species mackerel scomber scombrus zone vi vii viiia viiib viiid and viiie eu and international waters of vb international waters of iia xii and xiv (mac/2cx14-) germany 20 694 analytical tac article 3 of regulation (ec) no 847/96 does not apply spain 22 estonia 172 france 13 797 ireland 68 978 latvia 127 lithuania 127 the netherlands 30 177 poland 1 457 united kingdom 189 694 eu 325 245 norway 14 050 tac not relevant within the limits of the abovementioned quotas no more than the quantities given below may be taken in the following zones and periods specified below eu and norwegian waters of iva (mac/ 04a-en) during the periods from 1 january to 15 february 2011 and from 1 september to 31 december 2011 norwegian waters of iia (mac/ 2an-) germany 8 326 849 france 5 551 566 ireland 27 754 2 832 the netherlands 12 142 1 238 united kingdom 76 325 7 789 eu 130 098 13 274 (j) the entry for mackerel in viiic ix and x eu waters of cecaf 34 1 1 is replaced by the following species mackerel scomber scombrus zone viiic ix and x eu waters of cecaf 34 1 1 (mac/8c3411) spain 30 609 analytical tac article 3 of regulation (ec) no 847/96 does not apply france 203 portugal 6 327 eu 37 139 tac not relevant special condition within the limits of the abovementioned quotas no more than the quantities given below may be taken in the following zone viiib (mac/ 08b ) spain 2 570 france 17 portugal 531 (k) the entry for mackerel in norwegian waters of iia and iva is replaced by the following species mackerel scomber scombrus zone norwegian waters of iia and iva (mac/2a4a-n ) denmark 13 018 analytical tac article 3 of regulation (ec) no 847/96 does not apply eu 13 018 tac not relevant (l) the entry for sprat and associated by-catches in eu waters of iia and iv is replaced by the following species sprat and associated by-catches sprattus sprattus zone eu waters of iia and iv (spr/2ac4-c) belgium 1 835 precautionary tac denmark 145 273 germany 1 835 france 1 835 the netherlands 1 835 sweden 1 330 united kingdom 6 057 eu 160 000 norway 10 000 tac 170 000 (m) the entry for horse mackerel and associated by-catches in eu waters of iia iva vi viia-c viie-k viiia viiib viiid and viiie eu and international waters of vb international waters of xii and xiv is replaced by the following species horse mackerel and associated by-catches trachurus spp zone eu waters of iia iva vi viia-c viie-k viiia viiib viiid and viiie eu and international waters of vb international waters of xii and xiv (jax/2a-14) denmark 15 781 analytical tac germany 12 314 spain 16 795 france 6 338 ireland 41 010 the netherlands 49 406 portugal 1 618 sweden 675 united kingdom 14 850 eu 158 787 tac 158 787 annex ib is amended as follows (a) the entry for cod and haddock in faroese waters of vb is replaced by the following species cod and haddock gadus morhua and melanogrammus aeglefinus zone faroese waters of vb (c/h/05b-f ) germany 0 analytical tac article 3 of regulation (ec) no 847/96 does not apply +an additional 33 804 tonnes of access quota may be fished by norway north of 56 30 n and counted against its catch limit +to be fished in eu waters of iia iv vb vi and vii +may only be fished in eu waters of iv +article 4 of regulation (ec) no 847/96 does not apply france 0 united kingdom 0 eu 0 tac not relevant (k) the entry for flatfish in faroese waters of vb is replaced by the following species flatfish zone faroese waters of vb (flx/05b-f ) germany 0 analytical tac article 3 of regulation (ec) no 847/96 does not apply +article 4 of regulation (ec) no 847/96 does not apply germany 0 france 0 the netherlands 0 united kingdom 0 eu 0 tac 40 100 (c) the entry for ling and blue ling in faroese waters of vb is replaced by the following species ling and blue ling molva molva and molva dypterygia zone faroese waters of vb (b/l/05b-f ) germany 0 analytical tac article 3 of regulation (ec) no 847/96 does not apply +it is desirable to implement flexible arrangements regarding the use of blue whiting quotas across the two main management areas provided for in annex ia to regulation (eu) no 57/2011 for that fishery (namely the area consisting of eu and international waters of ices zones i ii iii iv v vi vii viiia viiib viiid viiie xii and xiv and the area consisting of ices zones viiic ix and x and eu waters of cecaf 34 1 1) since those two areas are subject to the same scientific advice and considered part of the same biological stock +this quantity may be revised by the commission upon request from france up to an amount of 100 tonnes as indicated by iccat recommendation 08-05 +at least 95 of landings counted against the tac must be of horse mackerel by-catches of boarfish haddock whiting and mackerel are to be counted against the remaining 5 of the tac tac agreed by the union faroe islands norway and iceland of which 3 100 tonnes are allocated to norway of which 800 tonnes are allocated to norway to be fished in nafo 1 only of which 824 tonnes are allocated to norway may not be fished from 1 january to 9 may 2011 +at its annual meeting in 2010 the western and central pacific fisheries commission decided to maintain the limits imposed for that year on swordfish catches and on the number of vessels authorised to fish for swordfish with effect from 1 january it is necessary to implement those measures in union law +up to 50 of this amount may be fished in eu waters of iv reference is to the herring stock in via north of 56 00 n and in that part of via which is situated east of 07 00 w and north of 55 00 n excluding the clyde of which up to 68 may be fished in the norwegian economic zone or in the fishery zone around jan mayen (whb/ nzjm1) +article 4 of regulation (ec) no 847/96 does not apply germany 0 spain 0 france 0 ireland 0 latvia 0 the netherlands 0 poland 0 portugal 0 united kingdom 0 eu 0 tac 0 species redfish (deep pelagic) sebastes spp zone eu and international waters of v international waters of xii and xiv (red/51214d) estonia 177 analytical tac article 3 of regulation (ec) no 847/96 does not apply +council regulation (ec) no 43/2009 of 16 january 2009 fixing for 2009 the fishing opportunities and associated conditions for certain fish stocks and groups of fish stocks applicable in community waters and for community vessels in waters where catch limitations are required (oj l 22 26 1 2009 p 1) of which an incidental catch of other species of 25 per ship at any moment is authorised in vb vi and vii however this percentage may be exceeded in the first 24 hours following the beginning of the fishing on a specific ground the total incidental catch of other species in vi and vii shall not exceed 3 000 tonnes +transfers of this quota may be effected to viiic ix and x eu waters of cecaf such transfers must be notified in advance to the commission exclusively for by-catches no directed fisheries are permitted under this quota +up to 5 of this quota may be fished in viid however the use of this special condition must be notified in advance to the commission (jax/ 07d) +during the third international meeting held in may 2007 for the creation of a regional fisheries management organisation (rfmo) in the high seas of the south pacific (sprfmo) the participants accepted interim measures including fishing opportunities in order to regulate pelagic fishing activities as well as bottom fisheries in that area until the establishment of such rfmo new interim measures have been accepted at the second preparatory conference for the sprfmo commission held in january those interim measures are voluntary and not legally binding under international law it is however appropriate in accordance with the cooperation and conservation obligations enshrined in the international law of the sea to implement those measures in union law by establishing an overall quota for the union for the purpose of allocating the union quota among the member states it is appropriate to establish a new and final allocation key on the basis of sound fair and objective criteria of the past fishing performance of the member states in 2009 and 2010 which is a recent and sufficiently representative period during which all member states concerned were present on the fishing grounds +article 4 of regulation (ec) no 847/96 does not apply france 0 united kingdom 0 eu 0 tac not relevant (b) the entry for blue whiting in faroese waters is replaced by the following species blue whiting micromesistius poutassou zone faroese waters (whb/2a4axf) denmark 0 analytical tac article 3 of regulation (ec) no 847/96 does not apply +consultations on fishing opportunities between the union and the faroe islands failed to result in an agreement for after a further round of consultations with norway in march 2011 the fishing opportunities reserved for the consultations with the faroe islands can now be allocated to member states therefore article 1 of regulation (eu) no 57/2011 and the relevant tacs in annexes ia and ib thereto should be amended in order to distribute the non-allocated quota and to reflect the traditional allocation of mackerel in the north-east atlantic +article 4 of regulation (ec) no 847/96 does not apply france 0 united kingdom 0 eu 0 tac not relevant in annex ic the entry for northern prawn in zone nafo 3l is replaced by the following species northern prawn pandalus borealis zone nafo 3l (pra/n3l ) estonia 214 analytical tac article 3 of regulation (ec) no 847/96 does not apply +16 7 2011 en official journal of the european union l 187/1 council regulation (eu) no 683/2011 of 17 june 2011 amending regulation (eu) no 57/2011 as regards fishing opportunities for certain fish stocks the council of the european union having regard to the treaty on the functioning of the european union and in particular article 43 thereof having regard to the proposal from the european commission whereas council regulation (eu) no 57/2011 fixes for 2011 the fishing opportunities for certain fish stocks and groups of fish stocks applicable in eu waters and for eu vessels in certain non-eu waters +annex ia to regulation (eu) no 57/2011 establishes general quotas for norway lobster in ices zone vii and specific quotas for norway lobster in the area of the porcupine bank located within that zone it is necessary to fix those specific quotas anew for the year 2011 on the basis of updated data on historic catches +article 136 of regulation (ec) no 1234/2007 lays down that for the purposes of calculating the import duty referred to in paragraph 1 of that article representative cif import prices are to be established on a regular basis for the products in question +16 7 2011 en official journal of the european union l 187/24 commission implementing regulation (eu) no 686/2011 of 15 july 2011 fixing the import duties in the cereals sector applicable from 16 july 2011 the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (eu) no 642/2010 of 20 july 2010 laying down detailed rules for the application of council regulation (ec) no 1234/2007 in respect of import duties in the cereals sector (2) and in particular article 2 thereof whereas article 136 of regulation (ec) no 1234/2007 states that the import duty on products falling within cn codes 1001 10 00 1001 90 91 ex 1001 90 99 (high quality common wheat) 1002 ex 1005 other than hybrid seed and ex 1007 other than hybrids for sowing is to be equal to the intervention price valid for such products on importation increased by 55 minus the cif import price applicable to the consignment in question however that duty may not exceed the rate of duty in the common customs tariff +import duties should be fixed for the period from 16 july 2011 and should apply until new import duties are fixed and enter into force has adopted this regulation article 1 from 16 july 2011 the import duties in the cereals sector referred to in article 136 of regulation (ec) no 1234/2007 shall be those fixed in annex i to this regulation on the basis of the information contained in annex ii +pursuant to article 2 of regulation (eu) no 642/2010 the price to be used for the calculation of the import duty on products of cn codes 1001 10 00 1001 90 91 ex 1001 90 99 (high quality common wheat) 1002 00 1005 10 90 1005 90 00 and 1007 00 90 is the daily cif representative import price determined as specified in article 5 of that regulation +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +16 7 2011 en official journal of the european union l 187/22 commission implementing regulation (eu) no 685/2011 of 15 july 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 676/2011 (4) +according to the advice provided by ices limited on-board observations show that the percentage of roughhead grenadier has been less than 1 of the reported catches of roundnose grenadier on the basis of those considerations ices advises that there should be no directed fisheries for roughhead grenadier and that bycatches should be counted against the tac for roundnose grenadier in order to minimise the potential for species misreporting ices indicates that there are considerable differences of more than one order of magnitude (more than ten times) between the relative proportions of roundnose and roughhead grenadier reported in the official landings and the observed catches and scientific surveys in the areas where the fishery for roughhead grenadier currently occurs there is very limited data available for this species and some of the reported landing data are considered by ices to be species misreporting as a consequence it is not possible to establish an accurate historical record of catches of roughhead grenadier therefore any bycatches for roughhead grenadier should be limited to 1 of each member state s quota of roundnose grenadier and counted against that quota in line with the scientific advice if roughhead grenadier is considered a bycatch only to roundnose grenadier and belongs to the same tac there will no longer be any misreporting +regulation (eu) 2017/2403 of the european parliament and of the council of 12 december 2017 on the sustainable management of external fishing fleets and repealing council regulation (ec) no 1006/2008 (oj l 347 28 12 2017 p 81) annex the references to fishing zones are references to ices zones unless otherwise specified part 1 definition of species and species groups in the list set out in part 2 of this annex fish stocks are referred to following the alphabetical order of the latin names of the species however the deep-sea sharks are placed at the beginning of that list for the purposes of this regulation the following comparative table of common names and latin names is provided common name alpha-3 code scientific name black scabbardfish bsf aphanopus carbo alfonsinos alf beryx spp roundnose grenadier rng coryphaenoides rupestris roughhead grenadier rhg macrourus berglax red seabream sbr pagellus bogaraveo for the purposes of this regulation deep-sea sharks means the following list of species common name alpha-3 code scientific name deep-water catsharks api apristurus spp frilled shark hxc chlamydoselachus anguineus gulper shark cwo centrophorus spp portuguese dogfish cyo centroscymnus coelolepis longnose velvet dogfish cyp centroscymnus crepidater black dogfish cfb centroscyllium fabricii birdbeak dogfish dca deania calcea kitefin shark sck dalatias licha great lanternshark etr etmopterus princeps velvet belly etx etmopterus spinax mouse catshark gam galeus murinus bluntnose sixgill shark sbl hexanchus griseus sailfin roughshark (sharpback shark) oxn oxynotus paradoxus knifetooth dogfish syr scymnodon ringens greenland shark gsk somniosus microcephalus part 2 annual fishing opportunities (in tonnes live weight) species deep-sea sharks zone union and international waters of 5 6 7 8 and 9 (dws/56789-) year 2019 2020 union 7 7 tac 7 7 precautionary tac article 3 of regulation (ec) no 847/96 shall not apply species deep-sea sharks zone union and international waters of 10 (dws/10-) year 2019 2020 portugal 7 7 union 7 7 tac 7 7 precautionary tac article 3 of regulation (ec) no 847/96 shall not apply species deep-sea sharks zone union waters of cecaf 34 1 1 34 1 2 and 34 2 (dws/f3412c) year 2019 2020 union 7 7 tac 7 7 precautionary tac article 3 of regulation (ec) no 847/96 shall not apply species black scabbardfish aphanopus carbo zone union and international waters of 5 6 7 and 12 (bsf/56712-) year 2019 2020 germany 28 28 estonia 14 14 ireland 71 71 spain 140 140 france 1 976 1 976 latvia 92 92 lithuania 1 1 poland 1 1 united kingdom 140 140 others 7 7 union 2 470 2 470 tac 2 470 2 470 precautionary tac species black scabbardfish aphanopus carbo zone union and international waters of 8 9 and 10 (bsf/8910-) year 2019 2020 spain 9 9 france 22 22 portugal 2 801 2 801 union 2 832 2 832 tac 2 832 2 832 precautionary tac species black scabbardfish aphanopus carbo zone union and international waters of cecaf 34 1 2 (bsf/c3412-) year 2019 2020 portugal to be established to be established union to be established to be established tac to be established to be established precautionary tac article 4 of this regulation applies species alfonsinos beryx spp zone union and international waters of 3 4 5 6 7 8 9 10 12 and 14 (alf/3x14-) year 2019 2020 ireland 8 8 spain 57 57 france 15 15 portugal 164 164 united kingdom 8 8 union 252 252 tac 252 252 precautionary tac species roundnose grenadier coryphaenoides rupestris zone union and international waters of 3 (rng/03-) year 2019 2020 denmark 48 48 germany 0 0 sweden 2 2 union 50 50 tac 50 50 precautionary tac species roundnose grenadier coryphaenoides rupestris zone union and international waters of 5b 6 and 7 (rng/5b67-) year 2019 2020 germany 5 5 estonia 37 37 ireland 166 166 spain 41 41 france 2 108 2 108 lithuania 48 48 poland 24 24 united kingdom 124 124 others 5 5 union 2 558 2 558 tac 2 558 2 558 precautionary tac species roundnose grenadier coryphaenoides rupestris zone union and international waters of 8 9 10 12 and 14 (rng/8x14-) year 2019 2020 germany 15 15 ireland 3 3 spain 1 638 1 638 france 76 76 latvia 26 26 lithuania 3 3 poland 513 513 united kingdom 7 7 union 2 281 2 281 tac 2 281 2 281 precautionary tac species red seabream pagellus bogaraveo zone union and international waters of 6 7 and 8 (sbr/678-) year 2019 2020 ireland 3 3 spain 94 84 france 5 4 united kingdom 12 11 others 3 3 union 117 105 tac 117 105 precautionary tac species red seabream pagellus bogaraveo zone union and international waters of 9 (sbr/9-) year 2019 2020 spain 117 117 portugal 32 32 union 149 149 tac 149 149 precautionary tac species red seabream pagellus bogaraveo zone union and international waters of 10 (sbr/10-) year 2019 2020 spain 5 5 portugal 566 566 united kingdom 5 5 union 576 576 tac 576 576 precautionary tac exclusively for bycatches in fisheries for black scabbardfish that use longlines no directed fisheries are permitted under this quota +in view of the ices advice it is appropriate that the tac for red seabream in ices subareas 6 7 and 8 (north-western waters) be kept as a bycatch-only tac +the tac to be determined by portugal shall (a) be consistent with the principles and rules of the common fisheries policy in particular the principle of the sustainable exploitation of the stock and (b) result (i) if an analytical assessment is available in the exploitation of the stock consistent with maximum sustainable yield from 2019 onwards with as high a probability as possible or (ii) if an analytical assessment is unavailable or incomplete in the exploitation of the stock consistent with the precautionary approach to fisheries management +established at the same quantity as the quota for portugal +no directed fisheries of roughhead grenadier are permitted bycatches of roughhead grenadier (rhg/03-) shall be counted against this quota they may not exceed 1 of the quota +fishing opportunities should be in accordance with international agreements and principles such as the 1995 united nations agreement concerning the conservation and management of straddling stocks and highly migratory fish stocks (3) and the detailed management principles laid down in the 2008 international guidelines for the management of deep-sea fisheries in the high seas of the food and agriculture organisation of the united nations according to which in particular a regulator should be more cautious when information is uncertain unreliable or inadequate the absence of adequate scientific information should not be used as a reason for postponing or failing to take conservation and management measures +article 6 conditions for landing catches and bycatches catches that are not subject to the landing obligation established in article 15 of regulation (eu) no 1380/2013 shall be retained on board or landed only if they (a) have been taken by vessels flying the flag of a member state having a quota and that quota has not been exhausted or (b) consist of a share in a union quota which has not been allocated by quota among member states and that union quota has not been exhausted +no directed fisheries of roughhead grenadier are permitted bycatches of roughhead grenadier (rhg/5b67-) shall be counted against this quota they may not exceed 1 of the quota +a maximum of 10 of each quota may be fished in union and international waters of 5b 6 7 (rng/ 5b67- for roundnose grenadier rhg/ 5b67- for roughhead grenadier bycatches) +article 3 tacs and allocations the tacs for deep-sea species caught by union fishing vessels in union waters or in certain non-union waters the allocation of such tacs among member states and the conditions functionally linked thereto where appropriate are set out in the annex +article 9 entry into force this regulation shall enter into force on the date following that of its publication in the official journal of the european union it shall apply from 1 january this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 17 december for the council the president e k stinger regulation (eu) no 1380/2013 of the european parliament and of the council of 11 december 2013 on the common fisheries policy amending council regulations (ec) no 1954/2003 and (ec) no 1224/2009 and repealing council regulations (ec) no 2371/2002 and (ec) no 639/2004 and council decision 2004/585/ec (oj l 354 28 12 2013 p 22) +20 12 2018 en official journal of the european union l 325/7 council regulation (eu) 2018/2025 of 17 december 2018 fixing for 2019 and 2020 the fishing opportunities for union fishing vessels for certain deep-sea fish stocks the council of the european union having regard to the treaty on the functioning of the european union and in particular article 43 thereof having regard to the proposal from the european commission whereas article 43 of the treaty provides that the council on a proposal from the commission is to adopt measures on the fixing and allocation of fishing opportunities +the tacs for roundnose grenadier in ices subareas 1 2 and 4 (north sea) and greater forkbeard in ices subareas 1 to 10 12 and 14 should no longer be set the ices advice establishes that the absence of tacs would result in no or a low risk of unsustainable exploitation +for red seabream in ices subarea 10 no ices advice has been provided for however fishing opportunities should be set for both 2019 and it is possible that an appropriate amendment to the fishing opportunities established by this regulation will be needed when the scientific advice is issued for 2020 +no directed fisheries of roughhead grenadier are permitted bycatches of roughhead grenadier (rhg/8x14-) shall be counted against this quota they may not exceed 1 of the quota +a maximum of 10 of each quota may be fished in union and international waters of 8 9 10 12 and 14 (rng/ 8x14- for roundnose grenadier rhg/ 8x14- for roughhead grenadier bycatches) +article 7 prohibition it shall be prohibited for union fishing vessels to fish for orange roughy (hoplostethus atlanticus) in union and international waters of ices subareas 1 to 10 12 and 14 and to retain on board to tranship or to land orange roughy caught in that area +in view of the low uptake and the fact that no targeted fishing is taking place the tac for black scabbardfish in ices subareas 1 to 4 (north sea and skagerrak) should no longer be set +where a tac relating to a stock is allocated to one member state only it is appropriate to empower that member state in accordance with article 2 of the treaty to determine the level of such tac provisions should be made to ensure that when fixing that tac level the member state concerned acts in a manner fully consistent with the principles and rules of the cfp +ices advises that there should be no catches of orange roughy until it is appropriate for the fishing retaining on board transhipping and landing of that species to be prohibited as the stock is depleted and is not recovering ices notes that there have been no directed union fisheries for orange roughy in the north-east atlantic since 2010 +article 4 tacs to be determined by member states the tac for black scabbardfish in cecaf 34 1 2 shall be determined by portugal +it shall be prohibited for union fishing vessels to fish for deep-sea sharks in ices subareas 5 to 9 in union and international waters of ices subarea 10 in international waters of ices subarea 12 and in union waters of cecaf 34 1 1 34 1 2 and 34 2 and to retain on board tranship relocate or land deep-sea sharks caught in those areas with the exception of cases where tacs apply for bycatches in fisheries for black scabbardfish that use longlines as set out in the annex +agreement on the implementation of the provisions of the united nations convention on the law of the sea of 10 december 1982 relating to the conservation and management of straddling fish stocks and highly migratory fish stocks (oj l 189 3 7 1998 p 16) +article 16 of regulation (eu) no 1380/2013 provides that when the landing obligation in respect of a fish stock is introduced fishing opportunities are to be fixed taking into account the change from fixing fishing opportunities that reflect landings to fixing fishing opportunities that reflect catches however specific exemptions from the landing obligation are granted in accordance with article 15 to of that regulation on the basis of the joint recommendations submitted by the member states and in accordance with article 15 of that regulation the commission adopted a number of delegated regulations laying down specific discard plans applicable for an initial period of no more than three years renewable for a further total period of three years implementing the landing obligation +in order to avoid the interruption of fishing activities and to ensure the livelihood of the fishermen of the union this regulation should apply from 1 january in order to allow the member states to ensure a timely application of this regulation it should enter into force immediately after its publication has adopted this regulation article 1 subject matter this regulation fixes for the years 2019 and 2020 the annual fishing opportunities available to union fishing vessels for fish stocks of certain deep-sea species in union waters and in certain non-union waters where catch limits are required +the total allowable catches (tacs) should be established on the basis of available scientific advice taking into account biological and socioeconomic aspects whilst ensuring fair treatment between fishing sectors as well as in the light of the opinions expressed during the consultation of stakeholders and in particular the advisory councils concerned +council regulation (ec) no 847/96 of 6 may 1996 introducing additional conditions for year-to-year management of tacs and quotas (oj l 115 9 5 1996 p 3) +by 15 march in each year of the application of this regulation portugal shall submit the following information to the commission (a) the tac adopted (b) the data collected and assessed by portugal on which the tac adopted is based (c) details on how the tac adopted complies with paragraph 2 +regulation (ec) no 216/2009 of the european parliament and of the council of 11 march 2009 on the submission of nominal catch statistics by member states fishing in certain areas other than those of the north atlantic (oj l 87 31 3 2009 p 1) +it is incumbent upon the council to adopt measures on the fixing and allocation of fishing opportunities including certain conditions functionally linked thereto as appropriate fishing opportunities should be distributed among member states in such a way as to assure each member state relative stability of fishing activities for each stock or fishery and having due regard to the objectives of the common fisheries policy (cfp) established by regulation (eu) no 1380/2013 +article 8 data transmission when pursuant to articles 33 and 34 of regulation (ec) no 1224/2009 member states submit to the commission data relating to landings of quantities of stocks caught they shall use the stock codes set out in the annex to this regulation +stocks which are subject to precautionary or analytical tacs are identified in the annex to this regulation for the purposes of the year-to-year management of tacs and quotas provided for in regulation (ec) no 847/96 +articles 3 and 4 of regulation (ec) no 847/96 shall not apply where a member state uses the year-to-year flexibility provided for in article 15 of regulation (eu) no 1380/2013 +the landing obligation referred to in article 15 of regulation (eu) no 1380/2013 is introduced on a fishery-by-fishery basis in the regions covered by this regulation all species subject to catch limits should be landed as of 1 january 2019 +for the purposes of this regulation the following zone definitions shall apply (a) ices (international council for the exploration of the sea) zones are the geographical areas specified in annex iii to regulation (ec) no 218/2009 of the european parliament and of the council (4) (b) cecaf (committee for eastern central atlantic fisheries) zones are the geographical areas specified in annex ii to regulation (ec) no 216/2009 of the european parliament and of the council (5) +exclusively for bycatches in fisheries for black scabbardfish that use longlines no directed fisheries are permitted under this quota +article 3 of regulation (ec) no 847/96 shall apply to stocks subject to precautionary tacs whereas article 3 and and article 4 of that regulation shall apply to stocks subject to analytical tacs except where otherwise specified in the annex to this regulation +exclusively for bycatches no directed fisheries are permitted under this quota +council regulation (ec) no 847/96 introduced additional conditions for year-to-year management of tacs including under articles 3 and 4 of that regulation flexibility provisions for precautionary and analytical tacs under article 2 of that regulation when fixing the tacs the council is to decide to which stocks article 3 or 4 of that regulation is not to apply in particular on the basis of the biological status of the stocks more recently a further year-to-year flexibility mechanism was introduced by article 15 of regulation (eu) no 1380/2013 for all stocks that are subject to the landing obligation therefore in order to avoid excessive flexibility that would undermine the principle of rational and responsible exploitation of marine biological resources hinder the achievement of the objectives of the cfp and result in the deterioration of the biological status of the stocks it should be established that articles 3 and 4 of regulation (ec) no 847/96 apply to analytical tacs only where the year-to-year flexibility provided for in article 15 of regulation (eu) no 1380/2013 is not used +the tac and the union quota for black scabbardfish in union and international waters of 5 6 7 and 12 should be set taking into account that there are third-country catches from that stock and that the union should have fishing opportunities corresponding to the share of historic catches from that stock +exclusively for bycatches no directed fisheries are permitted +article 2 definitions for the purposes of this regulation the definitions referred to in article 4 of regulation (eu) no 1380/2013 shall apply in addition the following definitions apply (a) total allowable catch (tac) means (i) in fisheries subject to the exemption of the landing obligation referred to in article 15 to of regulation (eu) no 1380/2013 the quantity of fish that can be landed from each stock each year (ii) in all other fisheries the quantity of fish that can be caught from each stock each year (b) quota means a proportion of the tac allocated to the union or a member state (c) international waters means waters falling outside the sovereignty or jurisdiction of any state (d) analytical assessment means quantitative evaluations of trends in a given stock based on data about the stock s biology and exploitation which scientific review has indicated to be of sufficient quality to provide scientific advice on options for future catches +regulation (eu) no 1380/2013 of the european parliament and of the council requires that conservation measures be adopted taking into account available scientific technical and economic advice including where relevant reports drawn up by the scientific technical and economic committee for fisheries (stecf) +regulation (ec) no 218/2009 of the european parliament and of the council of 11 march 2009 on the submission of nominal catch statistics by member states fishing in the north-east atlantic (oj l 87 31 3 2009 p 70) +catches of red seabream are taken from the relevant fishery committee for the eastern central atlantic (cecaf) and general fisheries commission for the mediterranean (gfcm) areas which border on ices subarea given that ices data for those adjacent areas are incomplete the scope of the tac should remain limited to ices subarea nevertheless with a view to ensuring that management decisions are made on the best available basis provisions have been made for data reporting for those adjacent areas +ices advises that the fishing mortality of deep-sea sharks should be minimised and no targeted fishing should be permitted the deep-sea sharks are long-lived species with low reproductive rates and have quickly become overexploited fishing opportunities for such species should therefore be fully restricted through a general prohibition on fishing those species however directed artisanal deep-sea fisheries for black scabbardfish that use longlines have unavoidable bycatches of deep-sea sharks which are currently discarded dead longlines are recognised as a selective fishing gear in such fisheries even with this gear however accidental bycatches of deep-sea sharks have proved to be unavoidable therefore a restrictive tac for unavoidable bycatches of those species in directed fisheries for black scabbardfish that use longlines should be maintained the member states concerned should further develop regional management measures for the fishing of black scabbardfish with a view to reducing bycatches of deep-sea sharks in addition they should establish specific data-collection measures for deep-sea sharks in order to ensure that those stocks are closely monitored fixing a union bycatch allowance for deep-sea sharks in union and international waters of ices subareas 5 to 9 in union and international waters of ices subarea 10 and in union waters of cecaf 34 1 1 34 1 2 and 34 2 is without prejudice to the principle of relative stability as regards deep-sea sharks in those areas +article 5 special provisions on the allocation of fishing opportunities the allocation of fishing opportunities among member states as set out in this regulation shall be without prejudice to (a) exchanges made pursuant to article 16 of regulation (eu) no 1380/2013 (b) deductions and reallocations made pursuant to article 37 of council regulation (ec) no 1224/2009 (6) (c) reallocations made pursuant to article 12 of regulation (eu) 2017/2403 of the european parliament and of the council (7) (d) additional landings allowed under article 3 of regulation (ec) no 847/96 and 15 of regulation (eu) no 1380/2013 (e) quantities withheld in accordance with article 4 of regulation (ec) no 847/96 and article 15 of regulation (eu) no 1380/2013 (f) deductions made pursuant to articles 105 106 and 107 of regulation (ec) no 1224/2009 +in view of the international council for the exploration of the sea (ices) advice concerning a decrease in fishing opportunities given a high quota uptake and in the light of the introduction of the full landing obligation in 2019 directed fisheries should not be allowed for alfonsinos in subareas 3 to 10 12 and 14 (north sea north- and south-western waters) and the tac should be set for bycatches only +where the vehicle is fitted with an enclosure type body the following shall apply (a) the loading of the goods shall be possible by a rear door a tailgate or a panel or other means (b) the minimum height of the loading aperture shall be at least 800 mm and the aperture shall show a surface of at least 12 800 cm2 (c) the minimum length of the cargo area shall be at least 40 of the wheelbase +it is also appropriate to update the annexes to directive 2007/46/ec in order to lay down technical requirements for special purpose vehicles to be type-approved +when seat anchors for a removable seat are present in a vehicle the removable seat shall be counted in the determination of the number of the seating positions +categorisation into vehicle categories the manufacturer is responsible for the categorisation of a type of vehicle into a specific category for such purposes all the relevant criteria described in this annex shall be met +category m1 vehicles of category m comprising not more than eight seating positions in addition to the drivers seating position vehicles belonging to category m1 shall have no space for standing passengers the number of seating positions may be restricted to one (i e the drivers seating position) +the procedure for checking compliance with the geometrical provisions referred to in this section shall be set out in appendix 1 +as the type of bodywork has to be specified in the certificate of conformity which is intended to facilitate the registration of new vehicles in the member states the use of harmonised codes for each kind of bodywork should constitute a simplification in the registration process a list of appropriate codes should be assigned to the kinds of bodywork in order to allow the data processing to be automated +category o trailers designed and constructed for the carriage of goods or of persons as well as for the accommodation of persons +at the request of the manufacturer and under the conditions specified in annex xvi the gradeability of a vehicle type may be demonstrated by virtual testing +variant a variant within a vehicle type shall group the vehicles which have all of the following construction features in common (a) the body structural concept or type of bodywork as referred to in section 3 of part c and in appendix 2 (only for complete and completed vehicles) (b) the stage of completion (e g complete/incomplete/completed) (c) the power plant with regard to the following construction features (i) the type of energy supply (internal combustion engine electric motor or other) (ii) the working principle (positive ignition compression ignition or other) (iii) the number and arrangement of cylinders in the case of internal combustion engine (l6 v8 or other) (d) the number and interconnection of powered axles (e) the number of steered axles +version a version within a variant shall group the vehicles which have all the following features in common (a) the technically permissible maximum laden mass (b) the engine capacity in the case of internal combustion engine (c) the maximum engine power output or maximum continuous rated power (electric motor) (d) the nature of the fuel (petrol gas oil lpg bi-fuel or other) (e) the maximum number of seating positions (f) drive-by sound level (g) exhaust emission level (for example euro 5 euro 6 or other) (h) combined or weighted combined co2 emissions (i) electric energy consumption (weighted combined) (j) combined or weighted combined fuel consumption +by way of derogation from the requirements of point 1 1 1(b) when the manufacturer uses the floor portion of the body structure as well as the essential constituent elements forming the front part of the body structure located directly in front of the windscreen bay in the construction of different kinds of bodywork (for example a saloon and a coupe) those vehicles may be considered as belonging to the same type evidence thereof shall be provided by the manufacturer +in accordance with article 8 of regulation (ec) no 443/2009 of the european parliament and of the council of 23 april 2009 setting emission performance for new passenger cars as part of the communitys integrated approach to reduce co2 emissions from light-duty vehicles (4) member states are required to keep a register containing data relating to inter alia the type variant and version of each particular vehicle with regard to its specific emissions of co2 for each new vehicles registered in its territory it is essential to specify the criteria in accordance with which a light-duty vehicle has to be type-approved as m1 or as n1 vehicle these criteria should be objective and constitute guidance for vehicle manufacturers as well as for type-approval and registration authorities in accordance with article 13 of regulation (ec) no 443/2009 the presence of innovative technologies fostering further co2 emission reduction must be identified this should be achieved by means of a code assigned to the vehicle by the manufacturer so that each type/variant/version corresponds to a unique set of innovative technologies identification of those innovative technologies should thus be possible from the definition of the type-variant-version it is therefore appropriate to add the corresponding entry into annex ii to directive 2007/46/ec +armoured vehicle sb a vehicle intended for the protection of conveyed persons or goods with anti-bullet armour plating +the following requirements apply for the counting of the seating positions (a) each individual seat shall be counted as one seating position (b) in the case of a bench seat any space having a width of at least 400 mm measured at the seat cushion level shall be counted as one seating position this condition shall not prevent the manufacturer from using the general provisions referred to in point 1 1 (c) however a space as referred to in point (b) shall not be counted as one seating position where (i) the bench seat includes features that prevent the bottom of the manikin from sitting in a natural way - for example the presence of a fixed console box an unpadded area or an interior trim interrupting the nominal seating surface (ii) the design of the floor pan located immediately in front of a presumed seating position (for example the presence of a tunnel) prevents the feet of the manikin from being positioned in a natural way +category n3 vehicles of category n having a maximum mass exceeding 12 tonnes +criteria for the categorisation of vehicles in category n the categorisation of a vehicle type in category n shall be based on the technical features of the vehicle as referred to in points 3 2 to 3 6 +hearse sd a vehicle of category m intended for the transport of deceased persons and having special equipment for such purpose +in addition to the general criteria referred to in points 3 2 to 3 6 the criteria specified in points 3 8 2 1 to 3 8 2 3 5 shall be met for the categorisation of vehicles for which the compartment where the driver is located and the load are within a single unit (i e bodywork bb ) +test conditions and pass-fail criterion until 31 october 2014 the conditions set out in section 7 5 of annex i to directive 97/27/ec shall apply as from 1 november 2014 test conditions adopted under regulation (ec) no 661/2009 of the european parliament and of the council in accordance with article 14 of that regulation shall apply +categories o1 and o2 vehicle type a vehicle type shall consist of vehicles which have all of the following features in common (a) the manufacturers company name a change in the legal form of ownership of the company does not require that a new approval has to be granted (b) the category (c) the concept as defined in section 4 of part c (d) the following aspects of construction and design (i) the design and construction of the essential constituent elements forming the chassis (ii) the design and construction of the essential constituent elements forming the body structure in the case of a self-supporting body (e) the number of axles (f) in the case of multi-stage built vehicles the manufacturer and the type of the previous stage vehicle +exceptional load transport trailer sk a vehicle of category o4 intended for the transport of indivisible loads that is subject to speed and traffic restrictions because of its dimensions under this term are also included hydraulic modular trailers irrespective of the number of modules +where the vehicle is fitted with an open type cargo area only the provisions referred to in points 3 8 3 1(a) and (c) shall apply +ac station wagon a vehicle defined in term 3 1 1 4 of standard iso 3833 1977 +goods means primarily any movable things the term goods includes products in bulk manufactured goods liquids living animals crops indivisible loads +given the harmonisation work in progress in the world forum for harmonisation of vehicle regulations it is essential to take account of the most recent developments laid down in resolution r e 3 on classification and definition of power-driven vehicles and trailers in the framework of the agreement of the unece concerning the adoption of uniform prescriptions for wheeled vehicles equipment and parts which can be fitted to and/or used on wheeled vehicles and the conditions for reciprocal recognition of approvals granted on the basis of these prescriptions (revised 1958 agreement) as well as the special resolution s r 1 concerning the common definitions of vehicle categories masses and dimensions in the framework of the unece agreement concerning the establishing of global technical regulations for wheeled vehicles equipment and parts which can be fitted and/or be used on wheeled vehicles (parallel or 1998 agreement) only the inclusion of those developments in the framework directive can ensure the proper functioning of the european type-approval system it is therefore necessary to introduce new criteria for determining whether a vehicle type should be categorised in an m category or an n category +in accordance with the principles enshrined in the communications from the commission entitled action plan simplifying and improving the regulatory environment and action programme for reducing administrative burdens in the european union (3) it is appropriate to reconsider the criteria to be used for the definition of the variants and versions within a vehicle type with a view to reducing the administrative burden placed on vehicle manufacturers this would result moreover in making the type-approval process more transparent for the competent authorities of the member states +version a version within a variant shall group the vehicles which have all the following features in common (a) the technically permissible maximum laden mass (b) the engine capacity in the case of internal combustion engine (c) the maximum engine power output or the maximum continuous rated power (electric motor) (d) the nature of the fuel (petrol gas oil lpg bi-fuel or other) (e) the maximum number of seating positions (f) drive-by sound level (g) exhaust emission level (for example euro 5 euro 6 or other) (h) combined or weighted combined co2 emissions (i) electric energy consumption (weighted combined) (j) combined or weighted combined fuel consumption (k) the existence of a unique set of innovative technologies as specified in article 12 of regulation (ec) no 443/2009 (3) +af multi-purpose vehicle a vehicle other than ag and those mentioned in aa to ae intended for carrying persons and their luggage or occasionally goods in a single compartment +common requirements for all vehicle categories when a vehicle falls into several categories because of its maximum mass or the number of seating positions or both the manufacturer may select to use the criteria of one or the other vehicle category for the definition of the variants and the versions +the test shall be conducted by the technical service on a vehicle representative of the type to be tested +db drawbar trailer a trailer having at least two axles of which at least one is a steered axle (a) equipped with a towing device which can move vertically (in relation to the trailer) and (b) that transmits less than 100 dan as a static vertical load to the towing vehicle +criteria for the categorisation of vehicles as n1 +1 3 4 category o4 vehicles of category o having a maximum mass exceeding 10 tonnes +the requirements of point 3 8 2 3 2 shall not apply when the vehicle is fitted with a wall or a partition +experience shows that the current criteria for determining whether a new model of vehicle is to be considered a new type are too vague this lack of certainty can delay the implementation of new requirements laid down in eu legislation regarding new vehicle types moreover experience shows that it is possible to circumvent the eu small series legislation by dividing a vehicle type into several sub-types under different type-approvals consequently the number of new vehicles that may be put into service in the european union under the small series regime can exceed what is permissible it is therefore important to specify which vehicle technical features are to be used as criteria in determining what constitutes a new type +since the provisions of those annexes are sufficiently detailed and need no further transposition measures by member states it is therefore appropriate to replace annex ii and amend annexes iv ix and xi by means of a regulation in accordance with article 39 of directive 2007/46/ec +annex ii should be replaced and annexes iv ix and xi should be amended accordingly +the requirements referred to in points 3 2 to 3 6 shall be met for all variants and versions within the vehicle type +category m3 vehicles of category m comprising more than eight seating positions in addition to the drivers seating position and having a maximum mass exceeding 5 tonnes vehicles belonging to category m3 may have space for standing passengers +ground clearance beneath one axle ground clearance beneath one axle means the distance beneath the highest point of the arc of a circle passing through the centre of the tyre footprint of the wheels on one axle (the inner wheels in the case of twin tyres) and touching the lowest fixed point of the vehicle between the wheels +article 3 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union it shall apply to new vehicle types for which approval will be granted on and after 29 october however the requirements set out in annex ii and in points 1 and 2 of annex iv shall apply from 9 april 2011 +as regards vehicles of categories m the type of bodywork shall consist of two letters as specified in sections 1 and 2 +where necessary (especially for the types of bodywork referred to respectively in points 3 1 and 3 6 and in points 4 1 to 4 4) they shall be supplemented by two digits +the criteria shall be as follows (a) the loading of the goods shall be possible by a rear door a tailgate or a side-door designed and constructed for that purposes (b) in the case of a rear door or a tailgate the loading aperture shall meet the following requirements (i) in the case the vehicle is fitted with only one row of seats or with only the driver seat the minimum height of the loading aperture shall be at least 600 mm (ii) in the case the vehicle is fitted with two or more rows of seats the minimum height of the loading aperture shall be at least 800 mm and the aperture shall show a surface of at least 12 800 cm2 (c) the cargo area shall meet the following requirements cargo area means the part of the vehicle located behind the row(s) of seats or behind the driver seat when the vehicle is fitted with only one driver seat (i) the loading surface of the cargo area shall be generally flat (ii) where the vehicle is fitted with only one row of seats or with one seat the minimum length of the cargo area shall be at least 40 of the wheelbase (iii) where the vehicle is fitted with two or more rows of seats the minimum length of the cargo area shall be at least 30 of the wheelbase where the seats of the last row of seats can be easily removed from the vehicle without the use of special tools the requirements regarding the length of the cargo area shall be met with all the seats installed in the vehicle (iv) the requirements regarding the length of the cargo area shall be met when the seats of the first row or of the last row as the case may be are upright in their normal position for use by the vehicle occupants +categories n2 and n3 vehicle type a vehicle type shall consist of vehicles which have all of the following essential features in common (a) the manufacturers company name a change in the legal form of ownership of the company does not require that a new approval has to be granted (b) the category (c) the design and construction of the chassis that are common to a single line of product (d) the number of axles (e) in the case of multi-stage built vehicles the manufacturer and the type of the previous stage vehicle +for the application of the provisions referred to in point 3 8 3 the definitions in point 3 8 2 shall apply mutatis mutandis +a vehicle representative of the type shall be submitted to the technical service in the conditions specified in point 1 1 or the vehicle shall be in a stationary position with its wheels set straight ahead the ground on which measurements are made shall be as flat and horizontal (maximum of inclination 0 5 ) as possible +vehicle conditions (a) the vehicle shall be in loaded conditions corresponding to its maximum mass (b) the vehicle shall be with its wheels straight ahead +criteria for the subcategorisation of vehicles as off-road vehicles m1 or n1 vehicles shall be subcategorised as off-road vehicles if they satisfy at the same time the following conditions (a) at least one front and at least one rear axle designed to be driven simultaneously irrespective of whether one powered axle can be disengaged (b) at least one differential locking mechanism or a mechanism having similar effect is fitted (c) they are able to climb at least a 25 gradient as solo vehicle (d) they satisfy five out of the following six requirements (i) the approach angle shall be at least 25 degrees (ii) the departure angle shall be at least 20 degrees (iii) the ramp angle shall be at least 20 degrees (iv) the ground clearance under the front axle shall be at least 180 mm (v) the ground clearance under the rear axle shall be at least 180 mm (vi) the ground clearance between the axles shall be at least 200 mm +dc centre-axle trailer a trailer where the axle(s) is (are) positioned close to the centre of gravity of the vehicle (when uniformly loaded) so that only a small static vertical load not exceeding 10 of that corresponding to the maximum mass of the trailer or a load of 1 000 dan (whichever is the lesser) is transmitted to the towing vehicle +variant a variant within a vehicle type shall group the vehicles which have all of the following construction features in common (a) the kind of bodywork as referred to in appendix 2 (for complete and completed vehicles) (b) the stage of completion (e g complete/incomplete/completed) (c) the type of braking system (e g unbraked/inertia/power) +the mass of equipment that is fitted to the vehicle in order to accommodate goods (e g tank bodywork etc ) to handle goods (e g crane lift etc ) and to secure goods (e g cargo securing devices) shall be included in m the mass of equipment that is not used for the purposes referred to above (such as a compressor a winch an electric power generator broadcasting equipment etc ) shall not be included in m for the purposes of the application of the above formulae +m3 or n3 vehicles whose maximum mass exceeds 12 tonnes shall be subcategorised as off-road vehicles if they satisfy the condition set out in point (a) or both conditions set out in points (b) and (c) (a) all their axles are driven simultaneously irrespective of whether one or more powered axles can be disengaged (b) (i) at least half of the axles (or two axles out of the three in the case of a three axle vehicle and mutatis mutandis in the case of a five axle vehicle) is designed to be driven simultaneously irrespective of whether one powered axle can be disengaged (ii) there is at least one differential locking mechanism or a mechanism having similar effect (iii) they are able to climb a 25 gradient as solo vehicle (c) they satisfy at least four out of the following six requirements (i) the approach angle shall be at least 25 degrees (ii) the departure angle shall be at least 25 degrees (iii) the ramp angle shall be at least 25 degrees (iv) the ground clearance under the front axle shall be at least 250 mm (v) the ground clearance between axles shall be at least 300 mm (vi) the ground clearance under the rear axle shall be at least 250 mm +versions a version within a variant shall group the vehicles which have all the following features in common (a) the technically permissible maximum laden mass (b) the subdivisions or combination of subdivisions referred to in points 3 2 and 3 3 of annex i to directive 96/53/ec into which the axle spacing between two consecutive axles forming a group belongs (c) the definition of the axles in the following respects (i) lift axles (number and position) (ii) loadable axles (number and position) (iii) steered axle (number and position) +where appropriate the measurement of ground clearance shall be conducted on each of the several axles of a group of axles +the term seat covers both an individual seat and a bench seat +they do not apply to seats that are designed for use when the vehicle is stationary and which are clearly identified to users either by means of a pictogram or a sign with an appropriate text +version a version within a variant shall group the vehicles which have all the following features in common (a) the technically permissible maximum laden mass (b) the ability or not to tow a trailer as follows (i) an unbraked trailer (ii) a trailer with an inertia (or overrun) braking system as defined in point 2 12 of unece regulation no 13 (iii) a trailer with a continuous or semi-continuous braking system as defined in points 2 9 and 2 10 of unece regulation no 13 (iv) a trailer of category o4 that results in a maximum mass of the combination not exceeding 44 tonnes (v) a trailer of category o4 that results in a maximum mass of the combination exceeding 44 tonnes (c) the engine capacity (d) the maximum engine power output (e) the nature of the fuel (petrol gas oil lpg bi-fuel or other) (f) drive-by sound level (g) exhaust emission level (for example euro iv euro v or other) +measurement of ground clearance ground clearance between the axles ground clearance between the axles means the shortest distance between the ground plane and the lowest fixed point of the vehicle for the application of the definition the distance between the last axle of a front group of axle and the first axle of a rear group of axle shall be considered +it is appropriate with a view to ensuring the proper operation of the type-approval system to update the annexes to directive 2007/46/ec in order to adapt them to the development of scientific and technical knowledge +the departure angle shall be measured in accordance with item 6 11 of standard iso 612 1978 +vehicles shall show a goods-carrying capacity equal or higher than the person-carrying capacity expressed in kg +an area intended for an occupied wheelchair shall be regarded as one seating position +in addition to the general criteria referred to in points 3 2 to 3 6 the criteria specified in points 3 8 3 1 to 3 8 3 4 shall be met for the categorisation of vehicles for which the compartment where the driver is located and the load are not within a single unit (i e bodywork be ) +vehicles belonging to category m2 or m3 ref code name definition ca single-deck vehicle a vehicle where the spaces provided for persons are arranged in a single level or in a way that they do not constitute two superimposed levels cb double-deck vehicle a vehicle defined in point 2 1 6 of annex i to directive 2001/85/ec cc single-deck articulated vehicle a vehicle defined in point 2 1 3 of annex i to directive 2001/85/ec with a single deck cd double-deck articulated vehicle a vehicle defined in point 2 1 3 1 of annex i to directive 2001/85/ec ce low-floor single-deck vehicle a vehicle defined in point 2 1 4 of annex i to directive 2001/85/ec with a single deck cf low-floor double-deck vehicle a vehicle defined in point 2 1 4 of annex i to directive 2001/85/ec with a double deck cg articulated low-floor single-deck vehicle a vehicle that combines the technical features of entries 2 3 and 2 5 ch articulated low-floor double-deck vehicle a vehicle that combines the technical features of entries 2 4 and 2 6 ci open top single deck vehicle a vehicle with partial roof or without roof cj open top double deck vehicle a vehicle without roof over all or part of its upper deck cx bus chassis an incomplete vehicle with just chassis rails or tube assembly power train axles which is intended to be completed with bodywork customised to the needs of the transport operator +special purpose vehicles name code definition motor caravan sa a vehicle of category m with living accommodation space which contains the following equipment as a minimum (a) seats and table (b) sleeping accommodation which may be converted from the seats (c) cooking facilities (d) storage facilities this equipment shall be rigidly fixed to the living compartment however the table may be designed to be easily removable +new technical developments are currently in progress in order to cope with the demand for new solutions in the transport of goods it is therefore necessary to include new definitions in the framework legislation in order to permit subsequently appropriate technical rules to be laid down in the relevant regulatory acts listed in annex iv or xi to directive 2007/46/ec it is important to make clear that no ec type-approval should be granted for such vehicles until the type-approval legislation is amended for such purposes +the requirements referred to in point 3 4 may be verified by a statement of compliance provided by the manufacturer +mobile crane sf a vehicle of category n3 not fitted for the carriage of goods provided with a crane whose lifting moment is equal to or higher than 400 knm +the complete alphanumeric tvv shall not contain more than 75 characters +seat means a complete structure with trim integral or not with the vehicle body structure which is intended to seat one person +article 2 this regulation shall not invalidate any vehicle type-approval granted before 29 october 2012 nor prevent extension of such approvals +measurement of the length of the cargo area (a) when the vehicle is not fitted with a partition or a wall the length shall be measured from a vertical plane tangent to the rear outermost point of the top of the seat back to the rear internal pane or door or tailgate in closed position (b) when the vehicle is fitted with a partition or a wall the length shall be measured from a vertical plane tangent to the rear outermost point of the partition or the wall to the rear internal pane or door or tailgate as the case may be in closed position (c) the requirements concerning the length shall be fulfilled at least along an horizontal line situated in the longitudinal vertical plane passing through the centreline of the vehicle at the level of the load floor +a type shall consist of at least one variant and one version +the fact that a wall or a partition complete or partial is fitted between a seat row and the cargo area shall not rule out the obligation to meet the required criteria +category n2 vehicles of category n having a maximum mass exceeding 3 5 tonnes but not exceeding 12 tonnes +variant a variant within a vehicle type shall group the vehicles which have all of the following construction features in common (a) the type of bodywork as defined in section 2 of part c (b) the class or combination of classes of vehicles as defined in point 2 1 1 of annex i to directive 2001/85/ec (only in the case of complete and completed vehicles) (c) the stage of completion (e g complete/incomplete/completed) (d) the power plant with regard to the following construction features (i) the type of energy supply (internal combustion engine electric motor or other) (ii) the working principle (positive ignition compression ignition or other) (iii) the number and arrangement of cylinders in the case of internal combustion engine (l6 v8 or other) +category n1 vehicle type a vehicle type shall consist of vehicles which have all of the following features in common (a) the manufacturers company name a change in the legal form of ownership of the company does not require that a new approval has to be granted (b) the design and assembly of the essential parts of the body structure in the case of a self-supporting body (c) the design and the construction of the essential constituent elements forming the chassis in the case of a non self-supporting body (d) in the case of multi-stage built vehicles the manufacturer and the type of the previous stage vehicle +remarks type-approval shall not be granted (a) to converter dolly as defined in section 5 of part a of this annex (b) to rigid drawbar trailers as defined in section 4 of part c of this annex (c) to trailers in which persons may be carried when travelling on the road +one of the objectives of directive 2007/46/ec is to extend the european vehicle type-approval system to all vehicle categories annex ii to directive 2007/46/ec that includes the necessary specific definitions has to be redesigned in order to take technical progress into account it is therefore necessary to amend existing definitions or to establish new definitions +de rigid drawbar trailer a trailer with one axle or one group of axles fitted with a drawbar which transmits a static load not exceeding 4 000 dan to the towing vehicle due to its construction and which does not meet the definition of a centre-axle trailer the coupling to be used for a vehicle combination shall not consist of a king pin and a fifth wheel appendix 1 procedure for checking whether a vehicle can be categorised as off-road vehicle general for the purposes of classification of a vehicle as off-road vehicle the procedure described in this appendix shall apply +maximum mass in the case of a tractor unit for semi-trailer the maximum mass to be considered for classifying the vehicle shall include the maximum mass of the semi-trailer borne by the fifth wheel coupling +for special purpose vehicles the type of bodywork to be used shall be linked to the category of the vehicle +paragraph 6 1 is without prejudice to the provisions of article 23 on national small series type-approval part b criteria for vehicle types variants and versions category m1 vehicle type a vehicle type shall consist of vehicles which have all of the following features in common (a) the manufacturers company name a change in the legal form of ownership of the company does not require that a new approval has to be granted (b) the design and assembly of the essential parts of the body structure in the case of a self-supporting body the same shall apply mutatis mutandis to vehicles the bodywork of which is bolted on or welded to a separate frame (c) in the case of multi-stage built vehicles the manufacturer and the type of the previous stage vehicle +the approval authority may request from the manufacturer appropriate additional information with the aim of demonstrating that a vehicle type needs to be categorised as special purpose vehicle in the special group ( sg code ) part a criteria for vehicle categorisation vehicle categories for the purposes of european and national type-approval as well as individual approval vehicles shall be categorised according to the following classification (it is understood that approval can only be granted for the categories referred to in points 1 1 1 to 1 1 3 1 2 1 to 1 2 3 and 1 3 1 to 1 3 4 ) category m motor vehicles designed and constructed primarily for the carriage of persons and their luggage +vehicles other than those referred to in point 1 1 shall be loaded to their technically permissible maximum laden mass the distribution of the mass on the axles shall be the one that represents the worst case with respect to compliance with the respective criteria +category m2 vehicles of category m comprising more than eight seating positions in addition to the drivers seating position and having a maximum mass not exceeding 5 tonnes vehicles belonging to category m2 may have space for standing passengers in addition to the seating positions +a vehicle of category n may be type-approved against the provisions required for category m1 or m2 as the case may be when it is intended to be converted into a vehicle of that category during the next step of a multi-stage type-approval procedure +variant a variant within a vehicle type shall group the vehicles which have all of the following construction features in common (a) the number of lateral doors or the type of bodywork as defined in section 1 of part c when the manufacturer uses the criterion of point 1 1 2 (b) the power plant with regard to the following construction features (i) the type of energy supply (internal combustion engine electric motor or other) (ii) the working principle (positive ignition compression ignition or other) (iii) the number and arrangement of cylinders in the case of internal combustion engine (l4 v6 or other) (c) the number of axles (d) the number and interconnection of powered axles (e) the number of steered axles (f) the stage of completion (e g complete/incomplete) +the measures provided for in this regulation are in accordance with the opinion of the technical committee motor vehicles has adopted this regulation article 1 directive 2007/46/ec shall be amended as follows annex ii is replaced by the text set out in annex i to this regulation annex iv is amended as set out in annex ii to this regulation annex ix is amended as set out in annex iii to this regulation annex xi is amended as set out in annex iv to this regulation +category o3 vehicles of category o having a maximum mass exceeding 3 5 tonnes but not exceeding 10 tonnes +number of characters for the tvv the number of characters shall not exceed (a) 15 for the code of the vehicle type (b) 25 for the code of one variant (c) 35 for the code of one version +to the effect of checking the gradeability of an incomplete and a complete vehicle of category m2 m3 n2 and n3 a test shall be performed +special equipment vehicles fitted primarily with fixed equipment such as machinery or apparatus shall be regarded as n or o category +the ramp angle shall be measured in accordance with item 6 9 of standard iso 612 1978 +when measuring the departure angle rear underrun protection devices which are adjustable in height may be set in the upper position +securing devices - lashing devices - intended for securing the load as required in point 3 3 as well as partitioning systems intended for vehicles up to 7 5 tonnes shall be designed in accordance with the provisions of sections 3 and 4 of standard iso 27956 2009 road vehicles securing of cargo in delivery vans requirements and test methods +seat adjustments (a) the seats shall be adjusted at their rear outermost positions (b) the seat back if adjustable shall be adjusted as to accommodate the three-dimensional h-point machine at a torso angle of 25 degrees (c) the seat back if not adjustable shall be in the position designed by the vehicle manufacturer (d) when the seat is adjustable in height it shall be adjusted to its lowest position +the same manufacturer shall not use the same code in order to define a vehicle type for more than one type-approval within the same vehicle category +special purpose vehicles special purpose vehicle (spv) means a vehicle of category m n or o having specific technical features in order to perform a function which requires special arrangements and/or equipment for incomplete vehicles that are intended to fall into the spv subcategory the letter s shall be added as suffix to the letter and numeral identifying the vehicle category the various types of special purpose vehicles are defined and listed in section 5 +maximum mass means the technically permissible maximum laden mass as specified in point 2 8 of annex i +motor vehicles of category n1 n2 or n3 ref code name definition ba lorry a vehicle which is designed and constructed exclusively or principally for conveying goods it may also tow a trailer +bb van a lorry with the compartment where the driver is located and cargo area within a single unit bc tractor unit for semi-trailer a towing vehicle which is designed and constructed exclusively or principally to tow semi-trailers bd road tractor a towing vehicle which is designed and constructed exclusively to tow trailers other than semi-trailers be pick-up truck a vehicle of a maximum mass not exceeding 3 500 kg in which the seating positions and the cargo area are not located in a single compartment bx chassis-cab or chassis-cowl an incomplete vehicle with just a cabin (complete or partial) chassis rails power train axles which is intended to be completed with bodywork customised to the needs of the transport operator +wheelchair accessible vehicle sh a vehicle of category m1 constructed or converted specifically so that they accommodate one or more persons seated in their wheelchairs when travelling on the road +folding seats and removable seats are included in this definition +in the case of a converter dolly the maximum mass to be considered for classifying the vehicle shall include the maximum mass of the semi-trailer borne by the fifth wheel coupling +categories m2 and m3 vehicle type a vehicle type shall consist of vehicles which have all of the following features in common (a) the manufacturers company name a change in the legal form of ownership of the company does not require that a new approval has to be granted (b) the category (c) the following aspects of construction and design (i) the design and construction of the essential constituent elements forming the chassis (ii) the design and construction of the essential constituent elements forming the body structure in the case of a self-supporting body (d) the number of decks (single or double) (e) the number of sections (rigid/articulated) (f) the number of axles (g) the mode of energy supply (on-board or off-board) (h) in the case of multi-stage built vehicles the manufacturer and the type of the previous stage vehicle +variant a variant within a vehicle type shall group the vehicles which have all of the following construction features in common (a) the number of lateral doors or the type of bodywork as defined in section 3 of part c (for complete and completed vehicles) when the manufacturer uses the criterion of point 3 1 2 (b) the stage of completion (e g complete/incomplete/completed) (c) the power plant with regard to the following construction features (i) the type of energy supply (internal combustion engine electric motor or other) (ii) the working principle (positive ignition compression ignition or other) (iii) the number and arrangement of cylinders in the case of internal combustion engine (l6 v8 or other) (d) the number of axles (e) the number and interconnection of powered axles (f) the number of steered axles +version a version within a variant shall group the vehicles which have all the following features in common (a) the technically permissible maximum laden mass (b) the concept of the suspension (air steel or rubber suspension torsion bar or other) (c) the concept of the drawbar (triangle tube or other) +in the case of a motor vehicle that can tow a centre-axle trailer or a rigid drawbar trailer the maximum mass to be considered for classifying the motor vehicle shall include the maximum mass transferred to the towing vehicle by the coupling +see page 76 of this official journal annex i annex ii general definitions criteria for vehicle categorisation vehicle types and types of bodywork introductory part general definitions and general provisions definitions seating position means any location capable of accommodating one person seated who is at least as large as (a) the manikin of the 50th percentile male in the case of the driver (b) the manikin of the 5th percentile adult female in all other cases +the list of digits shall be laid down in appendix 2 to this annex +the whole code shall be designated type-variant-version or tvv +test conditions for geometric measurements vehicles belonging to category m1 or n1 shall be in unloaded conditions with a manikin of the 50th percentile male installed on the drivers seat and fitted with coolant fluid lubricants fuel tools spare-wheel (if fitted as oem equipment) the manikin may be replaced by a similar device having the same mass +by way of derogation from the requirements of point 3 2 persons and goods may be transported in the same compartment under the condition that the loading area is provided with securing devices designed to protect persons transported against the displacement of the load during driving including severe braking and cornering +examples (a) a vehicle a may be type-approved as n1 (3 5 tonnes) and n2 (4 2 tonnes) in relation to its maximum mass in such a case the parameters mentioned in category n1 may be used also for the vehicle that falls into category n2 (or vice-versa) (b) a vehicle b may be type-approved as m1 and m2 in relation to the number of seating positions (7 1 or 10 1) the parameters mentioned in category m1 may be used also for the vehicle that falls into category m2 (or vice-versa) +trailer caravan se a vehicle of category o as defined in term 3 2 1 3 of standard iso 3833 1977 +as regards vehicles of categories n and o the type of bodywork shall consist of two letters as referred to in sections 3 and 4 +ae convertible a vehicle defined in terms no 3 1 1 6 of standard iso 3833 however a convertible may have no door +the same manufacturer may use the same code in order to define a vehicle type when the latter falls in two or more categories +ag truck station wagon a vehicle defined in terms no 3 1 1 4 1 of standard iso 3833 however the luggage compartment must be completely separated from the passenger compartment in addition the reference point of the drivers seating position needs not to be at least at 750 mm above the surface supporting the vehicle +as trailers designed especially for abnormal load transport cannot meet all the provisions of the regulatory acts listed in annex iv to directive 2007/46/ec that are required to be complied with for the purpose of european type-approval it is appropriate to include those trailers in the category of special purposes vehicles given their technical features for the purposes of type-approval a simplified set of rules should be laid down in order to make their type-approval at european level possible consequently it is necessary to add a new appendix to annex xi to directive 2007/46/ec +vehicles of category o ref code name definition da semi-trailer a trailer which is designed and constructed to be coupled to a tractor unit or to a converter dolly and to impose a substantial vertical load on the towing vehicle or on the converter dolly the coupling to be used for a vehicle combination shall consist of a king pin and a fifth wheel +category n motor vehicles designed and constructed primarily for the carriage of goods +gradeability gradeability means the ability of a vehicle to negotiate a gradient +by way of derogation from paragraph 1 second subparagraph manufacturers may as from 4 august 2011 apply any provision of this regulation this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 14 july for the commission the president jos manuel barroso oj l 263 9 10 2007 p +category n1 vehicles of category n having a maximum mass not exceeding 3 5 tonnes +an error occurred in the adoption of commission directive 2010/19/eu of 9 march 2010 amending for the purposes of adaptation to technical progress in the field of spray-suppression systems of certain categories of motor vehicles and their trailers council directive 91/226/eec and directive 2007/46/ec of the european parliament and of the council in so far as annexes iv and xi to directive 2007/46/ec were also amended by that directive those annexes had previously been replaced by commission regulation (ec) no 1060/2008 of 7 october 2008 replacing annexes i iii iv vi vii xi and xv to directive 2007/46/ec of the european parliament and of the council establishing a framework for the approval of motor vehicles and their trailers and of systems components and separate technical units intended for such vehicles (framework directive) (6) in the interest of legal certainty any partial amendment to those annexes should henceforth only be introduced by a regulation as the corresponding article 2 of directive 2010/19/eu has been deleted by commission decision 2011/415/eu of 14 july 2011 correcting directive 2010/19/eu amending for the purposes of adaptation to technical progress in the field of spray-suppression systems of certain categories of motor vehicles and their trailers council directive 91/226/eec and directive 2007/46/ec of the european parliament and of the council as regards the amendment of the annexes to directive 2007/46/ec in order to remedy that error it is appropriate to effectuate the amendments previously contained in that article by way of this regulation +ab hatchback a saloon as defined in 1 1 with a hatch at the rear end of the vehicle +a vehicle shall be categorised as n1 when all the applicable criteria are met when one or more of the criteria are not met the vehicle shall be categorised as m1 +in the case of a semi-trailer a centre-axle trailer and a rigid drawbar trailer the maximum mass to be considered for classifying the vehicle shall correspond to the maximum mass transmitted to the ground by the wheels of an axle or group of axles when coupled to the towing vehicle +converter dolly sj a vehicle of category o equipped with a fifth-wheel coupling to support a semi-trailer with a view to converting the latter into a trailer +by way of derogation from the requirements of point 3 1 1(b) when the manufacturer uses the floor portion of the body structure as well the essential constituent elements forming the front part of the body structure located directly in front of the windscreen bay in the construction of different kinds of bodywork (for example a van and a chassis-cab different wheelbases and different roof heights) those vehicles may be considered as belonging to the same type evidence thereof shall be provided by the manufacturer +the prescription in point 2 4 shall not be construed as an obligation for the base vehicle to be fitted with a rear underrun protection as original equipment however the base vehicle manufacturer shall inform the next stage manufacturer that the vehicle has to comply with the requirements on departure angle when fitted with a rear underrun protection +given the trends for globalisation on the automotive sector the work of the world forum for harmonisation of vehicle regulations the working party 29 (wp 29) - is increasingly significant as it is essential in order to meet the recommendations of the cars 21 high level group to incorporate regulations of the economic commission for europe of the united nations (unece) into eu law or even to replace eu directives or regulations by unece regulations as well as to incorporate global technical regulations into eu law the consistency of the legislation of the european union with the unece regulations should be ensured +as a matter of principle the compartment(s) where all the seating positions are located shall be completely separated from the loading area +m2 n2 or m3 vehicles whose maximum mass does not exceed 12 tonnes shall be subcategorised as off-road vehicles if they satisfy the condition set out in point (a) or both conditions set out in points (b) and (c) (a) all their axles are driven simultaneously irrespective of whether one or more powered axles can be disengaged (b) (i) at least one front and at least one rear axle are designed to be driven simultaneously irrespective of whether one powered axle can be disengaged (ii) at least one differential locking mechanism or a mechanism having the same effect is fitted (iii) they are able to climb a 25 gradient as a solo vehicle (c) they satisfy at least five out of the following six requirements if their maximum mass does not exceed 7 5 tonnes and at least four if their maximum mass exceeds 7 5 tonnes (i) the approach angle shall be at least 25 degrees (ii) the departure angle shall be at least 25 degrees (iii) the ramp angle shall be at least 25 degrees (iv) the ground clearance under the front axle shall be at least 250 mm (v) the ground clearance between axles shall be at least 300 mm (vi) the ground clearance under the rear axle shall be at least 250 mm +type- variant- and version designations the manufacturer shall allocate an alphanumeric code to each vehicle type variant and version made up of roman letters and/or arabic numerals the use of brackets and hyphens is permitted provided they do not replace a letter or a numeral +the tvv shall clearly and unequivocally identify a unique combination of technical features in relation to the criteria defined in part b of this annex +no rigid part of the vehicle may project into the shaded area shown on the figure +15 7 2011 en official journal of the european union l 185/30 commission regulation (eu) no 678/2011 of 14 july 2011 replacing annex ii and amending annexes iv ix and xi to directive 2007/46/ec of the european parliament and of the council establishing a framework for the approval of motor vehicles and their trailers and of systems components and separate technical units intended for such vehicles (framework directive) (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to directive 2007/46/ec of the european parliament and of the council of 5 september 2007 establishing a framework for the approval of motor vehicles and their trailers and of systems components and separate technical units intended for such vehicles (framework directive) (1) and in particular article 39 and thereof whereas directive 2007/46/ec establishes a harmonised framework containing the administrative provisions and general technical requirements for all new vehicles systems components and separate technical units in particular it includes the specific definitions concerning vehicles that are necessary for the proper functioning of the european type-approval system +category o1 vehicles of category o having a maximum mass not exceeding 0 75 tonnes category o2 vehicles of category o having a maximum mass exceeding 0 75 tonnes but not exceeding 3 5 tonnes +this option shall only be permitted for incomplete vehicles such vehicles shall be identified by a specific variant code given by the manufacturer of the base vehicle +special group sg a special purpose vehicle which does not enter in any of the definitions mentioned in this section +when the tvv is used as a whole a space shall be left between the type the variant and the version example of such tvv 159af space 0054 space 977k(be) part c definitions of types of bodywork general the type of bodywork referred to in section 9 of annex i and part 1 of annex iii as well as the code for bodywork referred to in item 38 of annex ix shall be indicated by means of codes the list of codes shall apply primarily to complete and completed vehicles +the number of seating positions excluding the drivers seating position shall not exceed (a) 6 in the case of n1 vehicles (b) 8 in the case of n2 or n3 vehicles +units unless otherwise stated any unit of measurement and associated symbol shall conform to the provisions of council directive 80/181/eec (2) +version a version within a variant shall group the vehicles which have all the following features in common (a) the technically permissible maximum laden mass (b) the ability of the vehicle to tow a trailer or not (c) the engine capacity in the case of internal combustion engine (d) the maximum engine power output or the maximum continuous rated power (electric motor) (e) the nature of the fuel (petrol gas oil lpg bi-fuel or other) (f) drive-by sound level (g) exhaust emission level (for example euro iv euro v or other) +with respect to vehicles covered by directive 2001/85/ec of the european parliament and of the council of 20 november 2001 relating to special provisions for vehicles used for the carriage of passengers comprising more than eight seats in addition to the drivers seat and amending directives 70/156/eec and 97/27/ec (1) the dimension referred to in point 2 1 3(b) shall be aligned with the minimum space required for one person in relation to the various classes of vehicles +variants a variant within a vehicle type shall group the vehicles which have all of the following construction and design features in common (a) the kind of bodywork as referred to in appendix 2 (for complete and completed vehicles) (b) the stage of completion (e g complete/incomplete/completed) (c) the concept of the suspensions (steel air or hydraulic suspension) (d) the following technical features (i) the capability or not for the chassis to be extendible (ii) the deck height (normal low loader semi-low loader etc ) +this provision shall be without prejudice to the requirements of point 3 6 1 and point 3 7 of annex vii to directive 2001/85/ec +categories o3 and o4 vehicle type a vehicle type shall consist of vehicles which have all of the following features in common (a) the manufacturers company name a change in the legal form of ownership of the company does not require that a new approval has to be granted (b) the category (c) the concept of the trailer with relation to the definitions in section 4 of part c (d) the following aspects of construction and design (i) the design and construction of the essential constituent elements forming the chassis (ii) the design and construction of the essential constituent elements forming the body structure in the case of trailers with a self-supporting body (e) the number of axles (f) in the case of multi-stage built vehicles the manufacturer and the type of the previous stage vehicle +as an alternative to the requirements of point 3 4 the manufacturer may demonstrate to the satisfaction of the approval authority that the securing devices fitted show an equivalent level of protection as provided in the referred standard +measurement of approach departure and ramp angles the approach angle shall be measured in accordance with item 6 10 of standard iso 612 1978 +vehicles belonging to category m1 ref code name definition aa saloon a vehicle defined in term 3 1 1 1 of standard iso 3833 1977 fitted with at least four side windows +however the requirements concerning the length of the cargo area shall be fulfilled along a horizontal line situated in the longitudinal plane passing through the centreline of the vehicle at the level of the load floor +general provisions number of seating positions the requirements regarding the number of seating positions apply to seats that are designed for use when the vehicle is travelling on the road +article 38 of regulation (ec) no 1974/2006 provides for the possibility of paying advances for the running costs of local action groups it has been proven that in order to ensure the cash flow needs of local action groups it is necessary to extend the possibility to pay advances to cover the costs related to acquiring skills and animating the territory as referred to in article 63(c) of regulation (ec) no 1698/2005 +article 62(1)(b) of regulation (ec) no 1698/2005 provides that at the decision-making level of the local action group economic and social partners as well as other representatives of civil society are to make up at least 50 of the local partnership member states should ensure that local action groups comply with this minimum percentage with respect to voting too in order to prevent the public sector from dominating decision-making furthermore it should be ensured that project promoters are not able to influence the project selection decision effective safeguards should therefore be established to avoid any conflict of interests with regard to the appraisal and vote on project proposals the transparency of the decision making should also be guaranteed with the appropriate visibility +15 7 2011 en official journal of the european union l 185/57 commission implementing regulation (eu) no 679/2011 of 14 july 2011 amending regulation (ec) no 1974/2006 laying down detailed rules for the application of council regulation (ec) no 1698/2005 on support for rural development by the european agricultural fund for rural development (eafrd) the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1698/2005 of 20 september 2005 on support for rural development by the european agricultural fund for rural development (eafrd) (1) and in particular article 91 thereof whereas regulation (ec) no 1698/2005 established a single legal framework for the european agricultural fund for rural development (eafrd) support for rural development throughout the union that legal framework has been complemented by implementing rules laid down by commission regulation (ec) no 1974/2006 (2) in the light of experience gained and problems that have arisen in the implementation of rural development programmes it is necessary to amend certain provisions of that regulation and to introduce certain additional implementing rules +article 27 of regulation (ec) no 1974/2006 provides that adjustment of agri-environment or animal welfare commitments may take the form of an extension of the duration of the commitment in order to avoid overlapping with the following programming period such adjustment should be limited to the end of the premium period to which the 2013 payment claim refers +as regards guarantee funds in the context of financial engineering under subsection 3 of section 1 of chapter iv of regulation (ec) no 1974/2006 additional details on the method of calculating the eligible expenses of the operation related to such interventions should be provided to ensure the most efficient use of union resources +article 24 of commission regulation (eu) no 65/2011 shall not apply for the payment referred to in the first subparagraph +article 46 of regulation (ec) no 1974/2006 provides for a revision clause in case of amendments to the baseline for certain measures a revision clause should also be provided in case the duration of new agri-environment animal welfare or forest-environmental commitments undertaken for a period between 5 and 7 years extends beyond the end of the current programming period in order to avoid inconsistencies with the legal and policy framework to be laid down for the period following the current programming period +resources returned to the operation during the programming period from investments undertaken by funds or left over after a guarantee has been honoured shall be reused by the fund according to the funding agreement referred to in article 51 of this regulation or cleared in the context of the annual accounts after the final date of eligibility of the rural development programme resources returned to the operation from investments undertaken by funds or left over after all guarantees have been honoured shall be used by the member states concerned for the benefit of individual undertakings interest generated by payments from rural development programmes to funds shall be used according to the first subparagraph in article 53(1) the first subparagraph is replaced by the following where appropriate member states may fix the level of support provided for in articles 27 31 37 to 41 and 43 to 49 of regulation (ec) no 1698/2005 on the basis of standard costs and standard assumptions of income foregone in article 54(1) the introductory phrase of the first subparagraph is replaced by the following contributions in kind from a public or private beneficiary namely the provision of goods or services for which no cash payment supported by invoices or documents of equivalent probative value is made may be eligible expenditure provided that the following conditions are fulfilled article 55 is replaced by the following in the case of agricultural investments the purchase of agricultural production rights payment entitlements animals annual plants and their planting shall not be eligible for investment support simple replacement investments shall not be eligible expenditure however in cases of restoration of agricultural production potential damaged by natural disasters pursuant to article 20(b)(vi) of regulation (ec) no 1698/2005 expenditure for the purchase of animals and replacement investments may be eligible expenditure article 56 is replaced by the following article 56 by way of derogation from article 24 of regulation (eu) no 65/2011 member states may upon request pay an advance to the beneficiaries of investment support as regards public beneficiaries such an advance may be paid to municipalities and associations thereof to regional authorities and to public law bodies +in article 27(12) the second subparagraph is replaced by the following such adjustments may also take the form of an extension of the duration of the commitment the extension may not go beyond the end of the period to which the 2013 payment claim refers the following article 32a is inserted article 32a for the purpose of article 47 of regulation (ec) no 1698/2005 member states may allow forest-environmental commitments to be extended until the end of the period to which the 2013 payment claim refers in article 37 the following paragraph is added for the purposes of article 62 of regulation (ec) no 1698/2005 decisions on the selection of projects by the decision-making body of local action groups shall be taken by a vote in which the economic and social partners as well as other representatives of the civil society as provided for in article 62(1)(b) of that regulation shall make up at least 50 of the votes as regards the decision-making process with regard to project selection appropriate rules to guarantee transparency and to avoid situations of conflicts of interest shall be respected in article 38 paragraph 2 is replaced by the following member states may upon request pay an advance to local action groups the amount of the advance shall not exceed 20 of the public aid related to the costs referred to in article 63(c) of regulation (ec) no 1698/2005 and its payment shall be subject to the establishment of a bank guarantee or an equivalent guarantee corresponding to 110 of the amount of the advance the guarantee shall be released upon closure of the local development strategy at the latest +operations concerning the production of renewable energy on agricultural holdings pursuant to article 26 of regulation (ec) no 1698/2005 may fall outside the scope of article 42 of the treaty in order to ensure compliance with agricultural state aid rules a specific provision should be laid down for investments in the production of renewable energy on agricultural holdings +article 44 of regulation (ec) no 1974/2006 allows member states to take specific measures to ensure that minor changes to the situation of a holding do not lead to inappropriate results in relation to commitments entered into in terms of the obligation of the beneficiary to repay the assistance where a commitment is not taken over by the transferee of a part of the holding in order to ensure legal certainty a definition should be provided of what constitutes a minor change in cases where the area of the holding is reduced +in article 44(3) the following subparagraph is added a reduction in the area of the holding of up to 10 of the area under commitment shall be considered as a minor change for the purpose of the first subparagraph in article 46 the following paragraph is added a revision clause shall be provided from 2012 onwards for commitments undertaken for a period of between 5 and 7 years pursuant to articles 39 40 and 47 of regulation (ec) no 1698/2005 which extend beyond the end of the current programming period to allow for their adjustment to the legal framework of the following programming period however member states may decide to introduce such a revision clause already in the second paragraph shall apply also with respect to this paragraph article 52 is replaced by the following article 52 as regards financial engineering actions referred to in article 51 of this regulation the expenditure declared to the commission in accordance with article 26(3)(a) of regulation (ec) no 1290/2005 shall be the total expenditure paid in establishing or contributing to such funds however when paying the balance and closing the rural development programme in accordance with article 28 of regulation (ec) no 1290/2005 the eligible expenditure shall be the total of (a) any payment for investment in enterprises out of each of the funds concerned or any guarantees provided including amounts committed as guarantees by guarantee funds (b) eligible management costs the co-financing rate to be applied shall correspond to the co-financing rate of the measure to which the fund contributes if the fund contributes to several measures with different co-financing rates these rates shall apply at the ratio of the respective eligible expenditure the difference between the eafrd contribution actually paid pursuant to the first subparagraph and the eligible expenditure under points (a) or (b) of the second subparagraph shall be cleared in the context of the annual accounts of the last year of implementation of the programme these accounts shall include the detailed financial information needed +article 53 of regulation (ec) no 1974/2006 should therefore be adapted accordingly +article 54 of regulation (ec) no 1974/2006 provides for the conditions under which contributions in kind may be considered as eligible expenditure in its present form article 54 considers contributions in kind to be eligible only for investment operations experience has shown that this condition is too restrictive for the efficient implementation of measures therefore it should be provided that contributions in kind may be eligible for all types of operation +while acknowledging the specificities of rural development relating essentially to the small scale of supported operations it is necessary in order to maximise the leverage effect of the financial engineering tool to clarify the reuse of the resources returned to the financial engineering operation during the programming period as well as to make a distinction between it and the reuse after the final date of eligibility of the rural development programme +taking into account the nature of some investments in forestry and the fact that payments could in certain cases be area-related it should be possible to use standard costs calculations as an alternative to the invoice-based system used to determine the level of support for the measure referred to in article 27 of regulation (ec) no 1698/2005 +article 47 of regulation (ec) no 1698/2005 provides that forest-environmental commitments are to be undertaken as a general rule for a period between 5 and 7 years in order to avoid a situation in which renewed commitments overlap with the following programming period it should be provided that member states may allow such commitments to be extended to the end of the premium period to which the 2013 payment claim refers +in order to clarify the application of article 52 of regulation (ec) no 1974/2006 the basis on which the co-financing rate is applied in the case of financial engineering should be set out +regulation (ec) no 1974/2006 should therefore be amended accordingly +the guarantee may be released when the competent paying agency establishes that the amount of actual expenditure corresponding to the public aid related to the investment exceeds the amount of the advance +where eafrd co-finances operations comprising guarantee funds for repayable investments pursuant to article 50 of this regulation an appropriate ex ante assessment of expected losses shall be carried out taking into account current market practices for similar operations for the type of investments and market concerned the assessment of the expected losses may be reviewed if justified by subsequent market conditions the resources committed to honour guarantees shall reflect such an assessment +the amount of the advances shall not exceed 50 of the public aid related to the investment and its payment shall be subject to the establishment of a bank guarantee or an equivalent guarantee corresponding to 110 of the amount of the advance a facility provided as a guarantee by a public authority shall be considered equivalent to the guarantee referred to in the first subparagraph provided that the authority undertakes to pay the amount covered by that guarantee should entitlement to the advance paid not be established +to make the best use of advances it should be left to the competent paying agency to define when guarantees are released +in order to increase the impact of advances in the context of the ongoing financial crisis taking due account of the specific role of regional governments in implementing rural development policy the possibility for advance payments provided for in article 56 of regulation (ec) no 1974/2006 should be opened up to regional authorities as well +the measures provided for in this regulation are in accordance with the opinion of the rural development committee has adopted this regulation article 1 regulation (ec) no 1974/2006 is amended as follows the following article 16a is inserted article 16a for the purpose of article 26 of regulation (ec) no 1698/2005 where investments are made in the production of thermal energy and/or electricity from renewable sources on agricultural holdings renewable energy production facilities shall be eligible for support only if their production capacity is no more than equivalent to the combined average annual energy consumption of thermal energy and electricity on the agricultural holding including the farm household where investments are made in the production of biofuels within the meaning of directive 2009/28/ec of the european parliament and of the council on agricultural holdings renewable energy production facilities shall be eligible for support only if their production capacity is no more than equivalent to the annual average transport fuel consumption on the agricultural holding +to facilitate the implementation of investment projects in the context of the ongoing economic and financial crisis the maximum ceiling for advance payments was raised to 50 for investments in 2009 and in order to take account of the continuing negative effects of the economic and financial crisis this higher ceiling should be maintained until the end of the programming period in order to ensure continuity in the implementation of rural development programmes between the end of 2010 and the entry into force of this regulation the relevant provision should be applied retroactively from 1 january 2011 +article 2 this regulation shall enter into force on the third day following its publication in the official journal of the european union +article 55 of regulation (ec) no 1974/2006 lays down a set of rules for the definition of eligible expenditure for investment operations in order to bring additional clarity to the implementation of this article the acquisition of payment entitlements should be explicitly excluded from eligibility it should also be clarified that given their nature investments replacing agricultural production potential after natural disasters constitute eligible expenditure +to take account of the relatively small size of rural development projects and the difficulty such projects have in obtaining bank guarantees for advance payments measures should be taken allowing those guarantees to be replaced by written guarantees from public authorities +for member states applying the single area payment scheme the 2011 budgetary ceilings applicable to transitional payments for fruit and vegetables payments in 2011 in accordance with article 128 and of regulation (ec) no 73/2009 should be published on the basis of their notification +the budgetary ceilings for 2011 referred to in articles 69 and 131 of regulation (ec) no 73/2009 are set out in annex iii to this regulation +the budgetary ceilings for 2011 for the support provided for in points (i) (ii) (iii) and (iv) of article 68(1)(a) and in article 68(1)(b) and (e) of regulation (ec) no 73/2009 are set out in annex iv to this regulation +the budgetary ceilings for 2011 for the single payment scheme referred to in title iii of regulation (ec) no 73/2009 are set out in annex vi to this regulation +for the member states making use in 2011 of the option provided for in article 87 of regulation (ec) no 73/2009 the budgetary ceilings applicable to the direct payments excluded from the single payment scheme should be fixed for 2011 +for member states implementing in 2011 the single area payment scheme provided for in chapter 2 of title v of regulation (ec) no 73/2009 the annual financial envelopes should be established in accordance with article 123 of that regulation +for the sake of clarity the maximum amount of funds available to member states applying the single area payment scheme for granting separate sugar payments in 2011 pursuant to article 126 of regulation (ec) no 73/2009 established on the basis of their notification should be published +article 69 of regulation (ec) no 73/2009 limits the resources that can be used for any coupled measure provided for in points (i) (ii) (iii) and (iv) of article 68(1)(a) and in article 68(1)(b) and (e) to 3 5 of the national ceiling referred to in article 40 of the same regulation for the sake of clarity the commission should publish the ceiling resulting from the amounts notified by the member states for the measures concerned +15 7 2011 en official journal of the european union l 185/62 commission implementing regulation (eu) no 680/2011 of 14 july 2011 establishing budgetary ceilings for 2011 applicable to certain direct support schemes provided for in council regulation (ec) no 73/2009 the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 73/2009 of 19 january 2009 establishing common rules for direct support schemes for farmers under the common agricultural policy and establishing certain support schemes for farmers amending regulations (ec) no 1290/2005 (ec) no 247/2006 and (ec) no 378/2007 and repealing regulation (ec) no 1782/2003 (1) and in particular the first subparagraph of article 51(2) articles 69(3) 87 and 123(1) the second subparagraph of article 128(1) the second subparagraph of article 128(2) and article 131 thereof whereas for the member states implementing in 2011 the single payment scheme provided for under title iii of regulation (ec) no 73/2009 the budgetary ceilings for each of the payments referred to in articles 52 53 and 54 of that regulation should be established for 2011 +pursuant to article 69(6)(a) of regulation (ec) no 73/2009 the amounts calculated in accordance with article 69 of that regulation have been laid down in annex iii to commission regulation (ec) no 1120/2009 of 29 october 2009 laying down detailed rules for the implementation of the single payment scheme provided for in title iii of council regulation (ec) no 73/2009 (2) for the sake of clarity the commission should publish the amounts notified by member states which they intend to use in accordance with article 69(6)(a) of regulation (ec) no 73/2009 +the measures provided for in this regulation are in accordance with the opinion of the management committee for direct payments has adopted this regulation article 1 the budgetary ceilings for 2011 referred to in article 51 of regulation (ec) no 73/2009 are set out in annex i to this regulation +for the sake of clarity the maximum amount of funds available to member states applying the single area payment scheme for granting separate fruit and vegetables payments in 2011 pursuant to article 127 of regulation (ec) no 73/2009 established on the basis of their notification should be published +the budgetary ceilings for 2011 referred to in article 87 of regulation (ec) no 73/2009 are set out in annex ii to this regulation +the maximum amounts of funding available to the czech republic hungary poland and slovakia for granting the separate fruit and vegetables payment in 2011 as referred to in article 127 of regulation (ec) no 73/2009 are set out in annex ix to this regulation the budgetary ceilings for 2011 referred to in the second subparagraph of article 128 and of regulation (ec) no 73/2009 are set out in annex x to this regulation +for the sake of clarity the 2011 budgetary ceilings for the single payment scheme resulting from deduction of the ceilings established for the payments referred to in articles 52 53 54 68 and 87 of regulation (ec) no 73/2009 from the ceilings given in annex viii to the same regulation should be published the amount to be deducted from the said annex viii in order to finance the specific support provided for in article 68 of regulation (ec) no 73/2009 corresponds to the difference between the total amount for the specific support notified by the member states and the amounts notified to finance the specific support in accordance with article 69(6)(a) of the same regulation where a member state implementing the single payment scheme decides to grant the support referred to in point (c) of article 68(1) the amount notified to the commission is to be included in the single payment scheme ceiling as this support takes the form of an increase in the unit value and/or the number of the farmers payment entitlements +the annual financial envelopes for 2011 referred to in article 123 of regulation (ec) no 73/2009 are set out in annex vii to this regulation +for the member states making use in 2011 of the options provided for in article 69 or 131 of regulation (ec) no 73/2009 the budgetary ceilings for the specific support referred to in chapter 5 of title iii of regulation (ec) no 73/2009 should be established for 2011 +the amounts that can be used by the member states in accordance with article 69(6)(a) of regulation (ec) no 73/2009 to cover the specific support provided for in article 68 of the same regulation are set out in annex v to this regulation +the maximum amounts of funding available to the czech republic hungary latvia lithuania poland romania and slovakia for granting the separate sugar payment in 2011 as referred to in article 126 of regulation (ec) no 73/2009 are set out in annex viii to this regulation +on the basis of the tenders received for the first partial invitation to tender a minimum customs duty should be fixed for certain eight digit codes for sugar falling within cn code 1701 and no minimum customs duty should be fixed for the other eight digit codes for sugar falling within that cn code +15 7 2011 en official journal of the european union l 185/74 commission implementing regulation (eu) no 682/2011 of 14 july 2011 on the minimum customs duty to be fixed in response to the first partial invitation to tender within the tendering procedure opened by implementing regulation (eu) no 634/2011 the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 187 in conjunction with article 4 thereof whereas commission implementing regulation (eu) no 634/2011 opened a standing invitation to tender for the 2010/2011 marketing year for imports of sugar of cn code 1701 at a reduced customs duty +in order to give a rapid signal to the market and to ensure efficient management of the measure this regulation should enter into force on the day of its publication in the official journal of the european union +in accordance with article 6 of implementing regulation (eu) no 634/2011 the commission is to decide in the light of the tenders received in response to a partial invitation to tender either to fix a minimum customs duty or not to fix a minimum customs duty per eight digit cn code +regulation (ec) no 174/2005 should therefore be amended accordingly +no authorisations shall be granted for activities that have already taken place +by way of derogation from article 3 the competent authority as listed in annex ii of the member state where the exporter or service provider is established may authorise under such conditions as it deems appropriate the sale supply transfer or export of equipment which might be used for internal repression as listed in annex i which is intended solely for the support of the ivorian process of security sector reform as well as the provision of financing financial assistance or technical assistance related to such equipment +those measures fall within the scope of the treaty on the functioning of the european union and regulatory action at the level of the union is therefore necessary in order to implement them in particular with a view to ensuring their uniform application by economic operators in all member states +the relevant member state shall inform other member states and the european commission of any authorisation made under this article within two weeks of the authorisation +regulation (ec) no 174/2005 imposed restrictions on the supply of assistance related to military activities to c te divoire +decision 2011/412/cfsp amended decision 2010/656/cfsp in the light of united nations security council resolution 1980 (2011) it also provided for a specific derogation in relation to the ban on the supply to c te divoire of internal repression equipment +currently effective import monitoring can be carried out through other means in the interest of simplification and for the purpose of alleviating the administrative burden for member states and operators the requirement of import licences for apples should be abolished at the end of the current trigger period referred to in annex xviii to commission implementing regulation (eu) no 543/2011 of 7 june 2011 laying down detailed rules for the application of council regulation (ec) no 1234/2007 in respect of the fruit and vegetables and processed fruit and vegetables sectors (3) +commission regulation (ec) no 376/2008 introduced a licence obligation for imports of fresh apples falling within cn code 0808 10 80 after apple producers in the european union found themselves in a difficult situation due amongst others to a significant increase in imports of apples from certain third countries of the southern hemisphere +regulation (ec) no 376/2008 should therefore be amended accordingly +the management committee for the common organisation of agricultural markets has not delivered an opinion within the time limit set by its chairman has adopted this regulation article 1 point g in part i of annex ii to regulation (ec) no 376/2008 is replaced by the following g fruit and vegetables (part ix of annex i to regulation (ec) no 1234/2007) cn code description amount of the security period of validity net quantities 0703 20 00 garlic fresh or chilled including products imported under tariff quotas as referred to in article 1(2)(a)(iii) 50 eur/t 3 months from the day of issue in accordance with article 22 ( ) ex 0703 90 00 other alliaceous vegetables fresh or chilled including products imported under tariff quotas as referred to in article 1(2)(a)(iii) 50 eur/t 3 months from the day of issue in accordance with article 22 ( ) ( ) licence or certificate are required for any quantities +article 3 this regulation shall enter into force on the seventh day following its publication in the official journal of the european union it shall apply from 1 september this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 12 july for the commission the president jos manuel barroso oj l 299 16 11 2007 p +article 2 at the request of the interested parties the securities lodged for the issuing of import licences for fresh apples falling within cn code 0808 10 80 shall be released when the following conditions are met (a) the validity of the licences has not expired on the date of application of this regulation (b) the licences have been used only partially or not at all on the date of application of this regulation +13 7 2011 en official journal of the european union l 183/4 commission implementing regulation (eu) no 669/2011 of 12 july 2011 amending regulation (ec) no 376/2008 laying down common detailed rules for the application of the system of import and export licences and advance fixing certificates for agricultural products the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 134 in conjunction with article 4 thereof whereas for the purposes of the management of imports and exports the commission has been given the power to determine the products for which import and/or export will be subject to presentation of a licence when assessing the need for a licence system the commission should take account of the appropriate instruments for the management of the markets and in particular for monitoring the imports +for sake of clarity it is appropriate to lay down the rules concerning the import licences issued for fresh apples falling within cn code 0808 10 80 and still valid on the date of application of this regulation +the register shall be made available to the public paragraphs 1 2 and 3 in article 20 are replaced by the following an application for approval of amendments to the product specification submitted by an applicant as referred to in article 118e of regulation (ec) no 1234/2007 of a protected designation of origin or geographical indication shall be communicated in accordance with article 70a of this regulation +paragraphs 1 and 2 do not apply when the cancellation is initiated by the commission in article 47 paragraph 5 is replaced by the following when a cancellation takes effect the commission shall remove the name concerned from the list set out in the electronic database e-bacchus in article 63 paragraph 1 is replaced by the following member states shall designate the competent authority or authorities responsible for ensuring certification as provided for in article 118z(2)(a) of regulation (ec) no 1234/2007 in accordance with the criteria laid down in article 4 of regulation (ec) no 882/2004 of the european parliament and of the council (7) each member state shall communicate to the commission the following details before 1 october 2011 as well as any amendments to those details in accordance with article 70a of this regulation (a) the name address and contact points including e-mail addresses of the authority or authorities responsible for the application of this article (b) where applicable the name address and contact points including e-mail addresses of all the bodies authorised by an authority for the application of this article (c) the measures they have taken to implement this article where those measures are of specific value for the purposes of cooperation between member states as referred to in regulation (ec) no 555/2008 (d) the wine grape varieties concerned by the application of articles 118z and 120a of regulation (ec) no 1234/ the commission shall draw up and keep up-to-date a list containing the names and addresses of the competent authorities and authorised bodies as well as the authorised wine grape varieties based on information communicated by the member states the commission shall make this list known to the public +the commission shall confirm receipt of the objection and assign a file number to the objection the confirmation of receipt shall include at least the following (a) the file number (b) the date of receipt of the objection article 40 is replaced by the following article 40 general protection if a traditional term for which protection is requested meets the conditions set out in article 118u of regulation (ec) no 1234/2007 and in articles 31 and 35 of this regulation and is not rejected by virtue of articles 36 38 and 39 of this regulation the traditional term is listed and defined in the e-bacchus database in accordance with article 118u of regulation (ec) no 1234/2007 on the basis of the information communicated to the commission in accordance with article 70a of this regulation mentioning the following (a) the language referred to in article 31(1) (b) the grapevine product category or categories concerned by the protection (c) a reference to the national legislation of the member state or third country in which the traditional term is defined and regulated or to the rules applicable to wine producers in the third country including those originating from representative trade organisations in the absence of national legislation in those third countries (d) a summary of the definition or conditions of use (e) the name of the country or countries of origin (f) the date of inclusion in the electronic database e-bacchus +in the interests of effective administrative management and taking account of the experience acquired through the use of information systems put in place by the commission communications should be simplified and the way in which information is managed and made available should be improved under regulation (ec) no 607/2009 in accordance with regulation (ec) no 792/ to this end with a view to giving the competent authorities of the member states the means of becoming familiar with the legislative regulatory and administrative provisions introduced at national level in accordance with articles 118z and 120a of regulation (ec) no 1234/2007 and to simplifying and facilitating the controls and the cooperation between member states provided for by commission regulation (ec) no 555/2008 (4) member states should be asked to communicate to the commission certain information that is of specific interest for the certification of products with a view to the commissions making this information available to the competent authorities and to the public where this information is useful for the consumer +it is considered that this system in accordance with regulation (ec) no 792/2009 or by applying mutatis mutandis the principles that it sets out enables certain communications provided for by regulation (ec) no 607/2009 in particular as regards procedures applicable to the protection of geographical indications designations of origin and traditional terms the maintenance of the database of the designations concerned and the registers foreseen for the protection of these designations +if the application has not been completed or has been partially completed or if the supporting documents referred to in paragraph 1 have not been submitted at the same time as the application or some are missing the application shall be inadmissible +in chapter v the new articles 70a and 70b are inserted as follows article 70a method applicable to communications between the commission the member states third countries and other operators as regards the present paragraph the documents and information required for the implementation of this regulation shall be communicated to the commission in accordance with the following method (a) for the competent authorities of member states through the intermediary of the information system made available to them by the commission in accordance with the provisions of regulation (ec) no 792/2009 (b) for the competent authorities and representative trade organisations of third countries as well as natural or legal persons who have a legitimate interest under this regulation through electronic means using the methods and forms made available to them by the commission and made accessible under the conditions specified in annex xviii to this regulation however paper-based communication is also possible using those forms the filing of an application and the content of the communications is a matter for the competent authorities designated by the third countries or the representative trade organisations or the legal or natural persons that are involved as the case may be +regulation (ec) no 607/2009 should therefore be amended accordingly +an application for the approval of the amendment of a product specification under article 118q of regulation (ec) no 1234/2007 shall be admissible if the information required under article 118c of that regulation and the request duly drawn up have been communicated to the commission +the commission shall confirm receipt of the application to the authorities of the member state or of the third country or the applicant established in the third country in question and shall attribute a file number to the application the confirmation of receipt shall include at least the following (a) the file number (b) the traditional term (c) the date of receipt of the request article 34 is replaced by the following article 34 admissibility an application shall be admissible where the application form is duly filled in and the documents required in accordance with the provisions of article 30 are enclosed with the application the application form shall be considered to be duly filled in when all the mandatory fields as presented in the information systems referred to in article 70a have been filled in in this case the application shall be considered admissible on the date on which it is received by the commission the applicant shall be informed this date shall be made known to the public +the commission shall enter the following data in the register (a) the protected designation (b) the file number (c) a record of the fact that the name is protected as either a geographical indication or designation of origin (d) the name of the country or countries of origin (e) the date of registration (f) the reference to the legal instrument protecting the name (g) the reference to the single document +13 7 2011 en official journal of the european union l 183/6 commission implementing regulation (eu) no 670/2011 of 12 july 2011 amending regulation (ec) no 607/2009 laying down certain detailed rules for the implementation of council regulation (ec) no 479/2008 as regards protected designations of origin and geographical indications traditional terms labelling and presentation of certain wine sector products the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 on the common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular points (k) (l) and (m) of the first paragraph of article 121 and article 203b in conjunction with article 4 thereof whereas commission regulation (ec) no 792/2009 of 31 august 2009 laying down detailed rules for the member states notification to the commission of information and documents in implementation of the common organisation of the markets the direct payments regime the promotion of agricultural products and the regimes applicable to the outermost regions and the smaller aegean islands lays down common rules for notifying information and documents by the competent authorities of the member states to the commission those rules cover in particular the obligation for the member states to use the information systems made available by the commission and the validation of the access rights of the authorities or individuals authorised to send notifications in addition that regulation sets common principles applying to the information systems so that they guarantee the authenticity integrity and legibility over time of the documents and provides for personal data protection +where the application is inadmissible the authorities of the member state or those of the third country or the applicant established in the third country in question shall be informed of the reasons for its inadmissibility and that they are entitled to submit another application duly completed article 37 and are replaced by the following the objection shall be communicated in accordance with article 70a(1) the date of submission of an objection to the commission shall be the date on which the application is received by the commission +information shall be communicated and made available by the commission to the authorities and persons affected by this regulation and where applicable to the public through the information systems put in place by the commission the authorities and persons affected by this regulation may contact the commission in accordance with annex xix in order to obtain information on the practicalities of accessing the information systems of communication and of making information available +as regards the implementation of paragraph 1(b) the rights to access the information systems for the competent authorities and the representative trade organisations of third countries as well as for natural or legal persons who have a legitimate interest under this regulation shall be assigned by those responsible for the information systems in the commission those who are responsible for the information systems in the commission shall approve access rights as appropriate on the basis of (a) information regarding the competent authorities designated by the third country with their contact points and e-mail addresses held by the commission under international agreements or communicated to the commission in accordance with these agreements (b) an official request from a third country specifying information regarding the authorities responsible for the communication of the documents and information required for the implementation of paragraph 1(b) as well as the contact points and e-mail addresses of the authorities concerned (c) a request from a representative trade organisation in a third country or a legal or natural person with proof of identity evidence of its legitimate interest and an e-mail address after access rights have been approved they shall be activated by those responsible for the information systems in the commission +article 2 this regulation shall enter into force on the third day following its publication in the official journal of the european union however article 1 point 20 of this regulation concerning article 63 of regulation (ec) no 607/2009 as well as article 1 point 21 of this regulation as regards article 70b of regulation (ec) no 607/2009 shall apply from 1 september communications made by the competent authorities of member states on a voluntary basis via the information systems put in place by the commission in accordance with regulation (ec) no 607/2009 as amended by article 1 of this regulation between 1 june 2011 and the date of entry into force of this regulation shall be considered as having been made in compliance with regulation (ec) no 607/2009 prior to its amendment by this regulation this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 12 july for the commission the president jos manuel barroso oj l 299 16 11 2007 p +furthermore the information systems that have already been put in place operationally by the commission for communicating information regarding the authorities and bodies responsible for the controls to be carried out under the common agricultural policy allow the specific objectives in this area to be met as regards geographical indications designations of origin and traditional terms these systems should be made applicable for the communication of information concerning the authorities responsible for examining applications for the protection of designations at the level of member states or third countries as well as for the communication of information concerning the authorities responsible for certifying wines that do not have a protected designation of origin or a protected geographical indication +the commission has developed in its own internal working procedures and in its relations with the authorities involved in the management of protected designations of origin protected geographical indications and traditional terms in accordance with section ia of chapter i of title ii of regulation (ec) no 1234/2007 an information system allowing the management by electronic means of the documents and procedures required under regulation (ec) no 1234/2007 and commission regulation (ec) no 607/2009 of 14 july 2009 laying down certain detailed rules for the implementation of council regulation (ec) no 479/2008 as regards protected designations of origin and geographical indications traditional terms labelling and presentation of certain wine sector products (3) both with the competent authorities in member states and third countries and with the trade organisations and natural or legal persons that have an interest in the framework of this regulation +in the case of a request submitted by a representative trade organisation established in a third country the applicant shall communicate to the commission the information regarding the representative trade organisation and its members in accordance with article 70a(1) the commission shall make this information public article 33 is replaced by the following article 33 filing of the application the date of submission of an application to the commission shall be the date on which the application is received by the commission +article 5 and articles 6 7 and 8 of regulation (ec) no 792/2009 apply mutatis mutandis to the communication and making available of information referred to in paragraph 1(b) and paragraph 2 of this article +the transitional measures adopted in order to facilitate the transition from the provisions of council regulations (ec) no 1493/1999 and (ec) no 479/2008 to those of regulation (ec) no 1234/2007 present difficulties of interpretation as regards the scope and duration of the applicable procedures moreover the scope of the provisions of article 118s of regulation (ec) no 1234/2007 taken together with those of article 118q as regards the nature of the amendments covered the reference periods and the duration of the transitional period should be made more precise +the commission shall draw up and maintain a list containing the names and addresses of the competent authorities of the member states or third countries on the basis of information communicated by the member states in accordance with paragraph 1 or by third countries in accordance with international agreements concluded with the eu the commission shall make this list known to the public article 71 and are replaced by the following article 71 wine names protected under regulation (ec) no 1493/1999 the documents referred to in article 118s of regulation (ec) no 1234/2007 hereinafter the file and the amendments to a product specification referred to in article 73(1)(c) and (d) and 73 of this regulation shall be sent by the member states in accordance with article 70a of this regulation in accordance with the following rules and procedures (a) the commission shall confirm receipt of the file or of the amendment as indicated in article 9 of this regulation (b) the file or amendment shall be considered as admissible on the date on which it is received by the commission under the conditions set out in article 11 of this regulation and provided that they are received by the commission at the latest on 31 december 2011 (c) the commission shall confirm the registration of the designation of origin or the geographical indication in question in the register in accordance with article 18 of this regulation with any amendments and assigns it a file number (d) the commission shall examine the validity of the application file taking account where applicable of the amendments received in accordance with the time-limit laid down in article 12 of this regulation +the commission shall confirm receipt of the request and assign a file number to the request the confirmation of receipt shall include at least the following (a) the file number (b) the date of receipt of the request +furthermore it is appropriate in the interests of clarity and reducing the administrative burden to determine the content of certain communications provided for by regulation (ec) no 607/2009 and to simplify the procedures +article 70b communication and provision of information regarding the authorities responsible for examining applications at national level member states shall communicate to the commission before 1 october 2011 in accordance with article 70a(1) the name address and contact points including e-mail addresses of the authorities responsible for the implementation of article 118f of regulation (ec) no 1234/2007 as well as any changes to these details +the traditional terms listed in the electronic database e-bacchus shall be made known to the public at article 42(1) the third subparagraph shall be replaced by the following the use of a protected homonymous term shall be subject to there being a sufficient distinction in practice between the homonym protected subsequently and the traditional term listed in the electronic database e-bacchus having regard to the need to treat the producers concerned in an equitable manner and not to mislead the consumer article 45 is replaced by the following article 45 submission of a request for cancellation a duly substantiated request for cancellation may be communicated to the commission by a member state a third country or a natural or legal person having a legitimate interest in accordance with article 70a(1) the date of submission of a request to the commission shall be the date on which the request is received by the commission this date shall be made known to the public +paragraphs 1 and 2 do not apply when the cancellation is initiated by the commission the following paragraph 5 is added to article 22 the communications to the commission referred to in paragraph 3 shall be carried out in accordance with article 70a(1) at article 23(1) the following third subparagraph shall be added the communications to the commission referred to in the first and second subparagraphs shall be carried out in accordance with article 70a(1) at article 28(1) the second subparagraph is replaced by the following the application shall be communicated in accordance with article 70a(1) the date of submission of an application for conversion to the commission shall be the date on which the application is received by the commission article 30 is replaced by the following article 30 application for protection the application for protection of a traditional term shall be communicated by the competent authorities of the member states or those of the third countries or by the representative trade organisations in accordance with article 70a(1) the application shall be accompanied by the legislation of the member states or rules applicable to wine producers in third countries governing the use of the term in question and the reference to that legislation or those rules +the procedure set out in article 118q of regulation (ec) no 1234/2007 does not apply to amendments to a product specification submitted to a member state on or after 1 august 2009 and sent to the commission by that member state before 30 june 2014 where these amendments are concerned exclusively with bringing the product specification sent to the commission under article 118s of regulation (ec) no 1234/2007 into compliance with article 118c of regulation (ec) no 1234/2007 of this regulation +if the form has not been completed or has only been partially completed or if the documents referred to in paragraph 1 were not submitted at the same time as the application or some are missing the application shall be inadmissible +where the application is inadmissible the competent authorities of the member state or those of the third country or the applicant established in the third country in question shall be informed of the reasons for its inadmissibility and that they are entitled to submit another application duly completed article 12 is replaced by the following if an admissible application does not meet the requirements laid down in articles 118b and 118c of regulation (ec) no 1234/2007 the commission shall inform the member state or authorities of the third country or the applicant established in the third country in question of the grounds for refusal setting a deadline of at least 2 months for the withdrawal or amendment of the application or for the submission of comments article 14 is replaced by the following article 14 submission of objections under community procedure the objections referred to in article 118h of regulation (ec) no 1234/2007 shall be communicated in accordance with article 70a of this regulation the date of submission of an objection to the commission shall be the date on which the objection is received by the commission this date shall be made known to the authorities and persons concerned by the present regulation +wines placed on the market or labelled before 31 december 2010 that comply with the relevant provisions applicable before 1 august 2009 may be marketed until stocks are exhausted annexes i to ix xi and xii are deleted annexes xviii and xix are replaced by the texts set out in annexes i and ii hereto +a designation of origin or geographical indication that has been accepted shall be recorded in the register in the case of names registered under article 118s of regulation (ec) no 1234/2007 the commission shall enter in the register the data provided for in paragraph 3 of this article +the commission may decide to withdraw the designation of origin or geographical indication concerned in accordance with article 118s of regulation (ec) no 1234/2007 on the basis of the documents available to it under article 118s of that regulation article 73 is replaced by the following article 73 transitional provisions the procedure set out in article 118s of regulation (ec) no 1234/2007 shall apply in the following cases (a) for any wine designation submitted to a member state as a designation of origin or geographical indication and approved by that member state before 1 august 2009 (b) for any wine designation submitted to a member state as a designation of origin or geographical indication before 1 august 2009 and approved by that member state before 31 december 2011 (c) for any modification to the product specification submitted to a member state before 1 august 2009 and sent to the commission by that member state before 31 december 2011 (d) for any minor modification to the product specification submitted to a member state on or after 1 august 2009 and sent to the commission by that member state before 31 december 2011 +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 regulation (ec) no 607/2009 is hereby amended as follows article 3 is replaced by the following article 3 application for protection an application for the protection of a designation of origin or of a geographical indication shall comprise the documents required in articles 118c and 118d of regulation (ec) no 1234/2007 the product specification and the single document the application and the single document shall be communicated to the commission in accordance with article 70a of this regulation article 9 is replaced by the following article 9 filing of the application the date of submission of an application to the commission shall be the date on which the application is received by the commission +for the purposes of applying the first sentence of article 118q of regulation (ec) no 1234/2007 articles 9 to 18 of this regulation shall apply mutatis mutandis article 21 is replaced by the following article 21 submission of a request for cancellation a request for cancellation submitted in accordance with article 118r of regulation (ec) no 1234/2007 shall be communicated in accordance with article 70a of this regulation the date of submission of request for cancellation to the commission shall be the date on which the request is received by the commission this date shall be made known to the public +the commission shall confirm receipt of the application to the competent authorities of the member state or those of the third country or the applicant established in the third country in question and shall attribute a file number to the application the confirmation of receipt shall include at least the following (a) the file number (b) the name to be registered (c) the date of receipt of the request article 11 is replaced by the following article 11 admissibility of the application an application shall be admissible when the single document is duly completed and the supporting documents are enclosed the single document shall be considered to be duly completed when all the mandatory fields as presented in the information systems referred to in article 70a have been filled in in this case the application shall be considered admissible on the date on which it is received by the commission the applicant shall be informed this date shall be made known to the public +regulation (ec) no 1013/2006 should therefore be amended accordingly +the united kingdom submitted a request to the commission that mixtures of wastes classified under basel entry b3020 be considered for inclusion in annex iiia to regulation (ec) no 1013/2006 +the measures provided for in this regulation are in accordance with the opinion of the committee established by article 39 of directive 2008/98/ec of the european parliament and of the council (2) has adopted this regulation article 1 annex iiia to regulation (ec) no 1013/2006 is amended in accordance with the annex to this regulation +the commission received comments from belgium czech republic denmark germany italy luxembourg netherlands austria poland portugal romania slovenia finland and sweden with regard to the acceptability of mixing waste corresponding to different indents or sub-indents of basel entries b1010 b2010 b2030 b3010 b3020 b3030 b3040 and b3050 to be considered for inclusion in annex iiia to regulation (ec) no 1013/ taking into account those comments the commission selected a list of mixtures of wastes classified under one single basel entry for inclusion in annex iiia to regulation (ec) no 1013/2006 +12 7 2011 en official journal of the european union l 182/2 commission regulation (eu) no 664/2011 of 11 july 2011 amending regulation (ec) no 1013/2006 of the european parliament and of the council on shipments of waste to include certain mixtures of wastes in annex iiia thereto (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1013/2006 of the european parliament and of the council of 14 june 2006 on shipments of waste (1) and in particular point (c) of article 58 thereof whereas finland submitted a request to the commission that mixtures of wastes classified under basel entries b3040 and b3080 be considered for inclusion in annex iiia to regulation (ec) no 1013/2006 +article 2 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union however in the case of exports to countries to which the oecd decision does not apply point 3 of annex iiia to regulation (ec) no 1013/2006 as amended by this regulation shall apply as of 1 august this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 11 july for the commission the president jos manuel barroso oj l 190 12 7 2006 p +it is important to clarify which procedures are applicable to shipments of mixtures of wastes classified under one single basel entry in order to allow the export of some of those mixtures of wastes to countries to which decision c 107/final of the oecd council concerning the revision of decision c 39/final on control of transboundary movements of wastes destined for recovery operations (the oecd decision) does not apply using the general information requirements laid down in article 18 of regulation (ec) no 1013/2006 a transitional period for those countries is necessary before they can inform the commission whether relevant mixtures of wastes may be exported to that country and of the applicable control procedure if any +the commission assessed the requests by finland and the united kingdom and the comments of member states and on the basis of that assessment a list of mixtures of wastes classified under individual basel entries for inclusion in annex iiia to regulation (ec) no 1013/2006 was selected +regulation (eu) no 965/2012 should therefore be amended accordingly so as to take account of the new rules applicable to operations with sailplanes and to clarify which provisions of that regulation continue applying to operations with sailplanes +performance-based navigation (pbn) one line is used for each complex pbn specific approval (e g rnp ar apch) with appropriate limitations listed in the specifications and/or remarks columns procedure-specific approvals of specific rnp ar apch procedures may be listed in the operations specifications or in the operations manual in the latter case the related operations specifications must have a reference to the related page in the operations manual +20 12 2018 en official journal of the european union l 326/53 commission implementing regulation (eu) 2018/1975 of 14 december 2018 amending regulation (eu) no 965/2012 as regards air operations requirements for sailplanes and electronic flight bags the european commission having regard to the treaty on the functioning of the european union having regard to regulation (eu) 2018/1139 of the european parliament and of the council of 4 july 2018 on common rules in the field of civil aviation and establishing a european union aviation safety agency and amending regulations (ec) no 2111/2005 (ec) no 1008/2008 (eu) no 996/2010 (eu) no 376/2014 and directives 2014/30/eu and 2014/53/eu of the european parliament and of the council and repealing regulations (ec) no 552/2004 and (ec) no 216/2008 of the european parliament and of the council and council regulation (eec) no 3922/91 (1) and in particular article 31 thereof whereas commission regulation (eu) no 965/2012 establishes the conditions for the safety of several types of air operations with different categories of aircraft including sailplane operations +other type of transportation to be specified (e g emergency medical service) +insertion of the particular airframe/engine combination +extended range operations (etops) currently applies only to two-engined aircraft therefore the not applicable (n/a) box may be checked if the aircraft model has more or less than two engines +insertion of the list of type b efb applications together with the reference of the efb hardware (for portable efbs) either this list is contained in the operations specifications or in the operations manual in the latter case the related operations specifications must make a reference to the related page in the operations manual +training organisations referred to in article 10a of regulation (eu) no 1178/2011 and having their principal place of business in a member state shall when conducting flight training into within or out of the union operate (a) complex motor-powered aeroplanes and helicopters in accordance with the provisions specified in annex vi (b) other aeroplanes and helicopters in accordance with the provisions specified in annex vii +in 2014 icao also introduced in annex 6 part ii and part iii section iii provisions for the use of electronic flight bags in general aviation those provisions contain generic requirements for the use of electronic flight bags and also a requirement for contracting states to establish criteria for the use of electronic flight bag applications used for the safe operation of aircraft therefore it is necessary to align regulation (eu) no 965/2012 with icao provisions by introducing for non-commercial operations with complex motor-powered aircraft and for specialised operations with complex motor-powered aircraft new rules containing generic requirements for the use of electronic flight bags and requirements for the use of electronic flight bag applications with a failure condition classified as minor or below furthermore this regulation amends regulation (eu) no 965/2012 by aligning the requirements for portable electronic devices for non-commercial operations with other-than-complex motor-powered aircraft with the generic icao provisions for electronic flight bag equipment +insertion of the operators registered name and the operators trading name if different insert dba before the trading name (for doing business as ) +the european union aviation safety agency prepared draft implementing rules related to specific rules for the operation of sailplanes and submitted them as an opinion to the commission in accordance with points (b) and (c) of article 75 and article 76 of regulation (eu) 2018/1139 +in 2014 icao introduced in annex 6 part i and part iii section ii provisions for the use of electronic flight bags for commercial air transport operations those provisions contain generic requirements for the use of electronic flight bags and also a requirement for an operational approval for the use of electronic flight bag applications used for the safe operation of aircraft therefore it is necessary to align regulation (eu) no 965/2012 with icao provisions by introducing a new rule containing generic requirements for the use of electronic flight bags for commercial air transport and new provisions supporting an operational approval for the use of electronic flight bag applications that have a failure condition classified as minor or below +issue date of the operations specifications (dd-mm-yyyy) and signature of the competent authority representative +operators shall only operate an aeroplane or a helicopter for the purpose of commercial specialised operations in accordance with the requirements in annexes iii and viii article 6 is amended as follows (a) paragraph 3 is replaced by the following by way of derogation from article 5 of this regulation and without prejudice to point (b) of article 18 of regulation (eu) 2018/1139 and to subpart p of annex i to commission regulation (eu) no 748/2012 ( 2) concerning the permit to fly the following flights shall continue to be operated under the requirements specified in the national law of the member state in which the operator has its principal place of business or where the operator has no principal place of business the place where the operator is established or resides (a) flights related to the introduction or modification of aeroplane or helicopter types conducted by design or production organisations within the scope of their privileges (b) flights carrying no passengers or cargo where the aeroplane or helicopter is ferried for refurbishment repair maintenance checks inspections delivery export or similar purposes ( 2) commission regulation (eu) no 748/2012 of 3 august 2012 laying down implementing rules for the airworthiness and environmental certification of aircraft and related products parts and appliances as well as for the certification of design and production organisations (oj l 224 21 8 2012 p 1) (b) paragraph 4a is amended as follows (i) the introductory wording is replaced by the following 4a by way of derogation from article 5 and (6) the following operations with other-than-complex motor-powered aeroplanes and helicopters may be conducted in accordance with annex vii (ii) point (c) is replaced by the following (c) introductory flights parachute dropping sailplane towing or aerobatic flights performed either by a training organisation having its principal place of business in a member state and referred to in article 10a of regulation (eu) no 1178/2011 or by an organisation created with the aim of promoting aerial sport or leisure aviation on the condition that the aircraft is operated by the organisation on the basis of ownership or dry lease that the flight does not generate profits distributed outside of the organisation and that whenever non-members of the organisation are involved such flights represent only a marginal activity of the organisation article 10 is amended as follows (a) in paragraph 1 the paragraph numbering is deleted and the second subparagraph is replaced by the following it shall apply from 28 october 2012 (b) paragraphs 2 to 6 are deleted +commission implementing regulation (eu) 2018/1976 of 14 december 2018 laying down detailed rules for the operation of sailplanes pursuant to regulation (eu) 2018/1139 (see page 64 of this official journal) +approval to conduct the training course and examination to be completed by applicants for a cabin crew attestation as specified in annex v (part-cc) to regulation (eu) no 1178/2011 +article 2 entry into force and application this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union it shall apply from 9 july this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 14 december for the commission the president jean-claude juncker oj l 212 22 8 2018 p +listing of geographical area(s) of authorised operation (by geographical coordinates or specific routes flight information region or national or regional boundaries) +the european union aviation safety agency prepared draft implementing rules related to the use of electronic flight bags and submitted them as an opinion to the commission in accordance with points (b) and (c) of article 75 and article 76 regulation (eu) 2018/1139 +annexes i ii iii iv v vi vii and viii are amended in accordance with the annex to this regulation +commission implementing regulation (eu) 2018/1976 lays down specific rules for the operation of sailplanes from the date of application of that regulation such operations should no longer be subject to the general rules for air operations laid down in regulation (eu) no 965/ however the rules in respect of oversight of air operations by the competent authorities of the member states set out in article 3 of regulation (eu) no 965/2012 and annex ii thereto should continue to apply with respect to air operations with sailplanes as those requirements are not specific to any particular air operation activity but apply horizontally in respect of all such activities +commission regulation (eu) no 965/2012 of 5 october 2012 laying down technical requirements and administrative procedures related to air operations pursuant to regulation (ec) no 216/2008 of the european parliament and of the council (oj l 296 25 10 2012 p 1) +insertion of associated air operator certificate (aoc) number +opinion no 07/2017 of the european aviation safety agency of 23 august 2017 for a draft commission regulation on the revision of the operational rules for sailplanes +approval to issue cabin crew attestations as specified in annex v (part-cc) to regulation (eu) no 1178/2011 +considering the close link between provisions of implementing regulation (eu) 2018/1976 and provisions of this regulation their date of application should be aligned +listing of applicable special limitations (e g vfr only day only etc ) +operators involved in the operation of aircraft referred to in points (b)(i) and (ii) of article 2 of regulation (eu) 2018/1139 are required to comply with the relevant essential requirements set out in annex v to that regulation +insertion of applicable precision approach category lts cat i cat ii ots cat ii cat iiia cat iiib or cat iiic insertion of minimum runway visual range (rvr) in meters and decision height (dh) in feet one line is used per listed approach category +the measures provided for in this regulation are in accordance with the opinion of the committee established by article 127 of regulation (eu) 2018/1139 has adopted this regulation article 1 amendments to regulation (eu) no 965/2012 regulation (eu) no 965/2012 is amended as follows article 1 is amended as follows (a) paragraphs 1 2 and 3 are replaced by the following this regulation lays down detailed rules for air operations with aeroplanes and helicopters including ramp inspections of aircraft of operators under the safety oversight of another state when landed at aerodromes located in the territory subject to the provisions of the treaties +either the registration marks are listed in the operations specifications or in the operations manual in the latter case the related operations specifications must make a reference to the related page in the operation manual in case not all specific approvals apply to the aircraft model the registration marks of the aircraft may be entered in the remark column to the related specific approval +insertion of icao designation of the aircraft make model and series or master series if a series has been designated (e g boeing-737-3k2 or boeing-777-232) +not applicable (n/a) box may be checked only if the aircraft maximum ceiling is below fl290 +the threshold distance may also be listed (in nm) as well as the engine type +specify if the specific approval is limited to certain runway ends and/or aerodromes +list in this column the most permissive criteria for each approval or the approval type (with appropriate criteria) +insertion of approved minimum take-off rvr in metres one line per approval may be used if different approvals are granted +following an application from wrigley gmbh submitted pursuant to article 14(1)(a) of regulation (ec) no 1924/2006 the authority was required to deliver an opinion on a health claim related to the effects of sugar-free chewing gum and reduction of tooth demineralisation (question no efsa-q-2010-00119) (2) the claim proposed by the applicant was worded as follows chewing of sugar-free chewing gum remineralises tooth enamel which reduces the risk of dental caries +12 7 2011 en official journal of the european union l 182/5 commission regulation (eu) no 665/2011 of 11 july 2011 on the authorisation and refusal of authorisation of certain health claims made on foods and referring to the reduction of disease risk (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1924/2006 of the european parliament and of the council of 20 december 2006 on nutrition and health claims made on foods (1) and in particular article 17 thereof whereas pursuant to regulation (ec) no 1924/2006 health claims made on foods are prohibited unless they are authorised by the commission in accordance with that regulation and included in a list of permitted claims +regulation (ec) no 1924/2006 also provides that applications for authorisations of health claims may be submitted by food business operators to the national competent authority of a member state the national competent authority is to forward valid applications to the european food safety authority (efsa) hereinafter referred to as the authority +article 3 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 11 july for the commission the president jos manuel barroso oj l 404 30 12 2006 p +one of the objectives of regulation (ec) no 1924/2006 is to ensure that health claims are truthful clear and reliable and useful to the consumer and that wording and presentation are taken into account in that respect therefore where the wording of claims has the same meaning for consumers as that of an authorised health claim because they demonstrate the same relationship that exists between a food category a food or one of its constituents and health they should be subject to the same conditions of use as indicated in annex i +on the basis of the data presented the authority concluded in its opinion received by the commission and the member states on 7 september 2010 that a cause and effect relationship had not been established between the consumption of opc plus and the claimed effect accordingly as the claim does not comply with the requirements of regulation (ec) no 1924/2006 it should not be authorised +article 2 the health claim listed in annex ii to this regulation shall not be included in the union list of permitted claims as provided for in article 14 of regulation (ec) no 1924/2006 +following receipt of an application the authority is to inform without delay the other member states and the commission thereof and to deliver an opinion on the health claim concerned +article 16 of regulation (ec) no 1924/2006 provides that an opinion in favour of authorising a health claim should include certain particulars accordingly those particulars should be set out in annex i to this regulation as regards the authorised claims and include as the case may be the revised wording of the claims specific conditions of use of the claims and where applicable conditions or restrictions of use of the food and/or an additional statement or warning in accordance with the rules laid down in regulation (ec) no 1924/2006 and in line with the opinions of the authority +the commission is to decide on the authorisation of health claims taking into account the opinion delivered by the authority +following an application from gp international holding bv submitted pursuant to article 14(1)(a) of regulation (ec) no 1924/2006 the authority was required to deliver an opinion on a health claim related to the effects of opc plus on the reduction of the risk of chronic venous insufficiency (question no efsa-q-2009-00751) (4) the claim proposed by the applicant was worded as follows opc plus has been shown to increase the microcirculation and may therefore reduce the risk of chronic venous insufficiency +on the basis of the data presented the authority concluded in its opinion received by the commission and the member states on 1 october 2010 that a cause and effect relationship has been established between the consumption of sugar-free chewing gum and the claimed effect accordingly a health claim reflecting this conclusion should be considered as complying with the requirements of regulation (ec) no 1924/2006 and it should be included in the union list of permitted claims +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health and neither the european parliament nor the council have opposed them has adopted this regulation article 1 the health claims listed in annex i to this regulation may be made on foods on the european union market in compliance with the conditions laid down in that annex +following an application from wrigley gmbh submitted pursuant to article 14(1)(a) of regulation (ec) no 1924/2006 the authority was required to deliver an opinion on a health claim related to the effects of sugar-free chewing gum and neutralisation of plaque acids which reduces the risk of dental caries (question no efsa-q-2010-00120) (3) the claim proposed by the applicant was worded as follows chewing of sugar-free chewing gum neutralises plaque acids which reduces the risk of dental caries +the health claims referred to in paragraph 1 shall be included in the union list of permitted claims as provided for in article 14 of regulation (ec) no 1924/2006 +the three opinions referred to in this regulation are related to applications for reduction of disease risk claims as referred to in article 14(1)(a) of regulation (ec) no 1924/2006 +the comments from the applicants and the members of the public received by the commission pursuant to article 16 of regulation (ec) no 1924/2006 have been considered when setting the measures provided for in this regulation +12 7 2011 en official journal of the european union l 182/8 commission regulation (eu) no 666/2011 of 11 july 2011 refusing to authorise certain health claims made on foods other than those referring to the reduction of disease risk and to childrens development and health (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1924/2006 of the european parliament and of the council of 20 december 2006 on nutrition and health claims made on foods (1) and in particular article 18 thereof whereas pursuant to regulation (ec) no 1924/2006 health claims made on foods are prohibited unless they are authorised by the commission in accordance with that regulation and included in a list of permitted claims +regulation (ec) no 1924/2006 also provides that applications for authorisations of health claims may be submitted by food business operators to the national competent authority of a member state the national competent authority is to forward valid applications to the european food safety authority (efsa) hereinafter referred to as the authority +following receipt of an application the authority is to inform without delay the other member states and the commission thereof and to deliver an opinion on the health claim concerned +in order to ensure that this regulation is fully complied with both food business operators and the national competent authorities should take the necessary actions to ensure that at the latest 6 months following the entry into force of this regulation products bearing the health claims listed in its annex are no longer present on the market +following an application from milte italia spa submitted pursuant to article 13 of regulation (ec) no 1924/2006 the authority was required to deliver an opinion on a health claim related to the effects of silymarin bio-c on increase in production of breast milk (question no efsa-q-2009-00957) (3) the claim proposed by the applicant was worded inter alia as follows suggested for improving the physiological production of breast milk during breast feeding +on 28 september 2010 the commission and the member states received the scientific opinion from the authority which concluded that on the basis of the data presented a cause and effect relationship had not been established between the consumption of silymarin bio-c and the claimed effect accordingly as the claim does not comply with the requirements of regulation (ec) no 1924/2006 it should not be authorised +the commission is to decide on the authorisation of health claims taking into account the opinion delivered by the authority +however products bearing these health claims placed on the market or labelled prior to the date of entry into force of this regulation may remain on the market for a maximum period of 6 months after that date +all the health claims subject to this regulation are health claims as referred to in point (a) of article 13 of regulation (ec) no 1924/2006 and may benefit from the transition period laid down in article 28 of that regulation as the authority concluded that cause and effect relationships have not been established between the foods and the respective claimed effects the two claims do not comply with regulation (ec) no 1924/2006 and therefore they may not benefit from the transition period provided for in that article +following an application from synbiotec s r l submitted pursuant to article 13 of regulation (ec) no 1924/2006 the authority was required to deliver an opinion on a health claim related to the effects of synbio on maintenance and improvement of intestinal well-being (question no efsa-q-2009-00889) (2) the claim proposed by the applicant was worded as follows synbio persists in the intestinal tract and favours the natural regularity contributing to maintain and improve human intestinal well-being +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health and neither the european parliament nor the council have opposed them has adopted this regulation article 1 the health claims listed in the annex to this regulation shall not be included in the union list of permitted claims as provided for in article 13 of regulation (ec) no 1924/2006 +on 27 september 2010 the commission and the member states received the scientific opinion from the authority which concluded that on the basis of the data presented a cause and effect relationship had not been established between the consumption of synbio and the claimed effect accordingly as the claim does not comply with the requirements of regulation (ec) no 1924/2006 it should not be authorised +article 2 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 11 july for the commission the president jos manuel barroso oj l 404 30 12 2006 p +the comments from the applicants and the members of the public received by the commission pursuant to article 16 of regulation (ec) no 1924/2006 have been considered when setting the measures provided for in this regulation +9 7 2011 en official journal of the european union l 181/22 commission regulation (eu) no 661/2011 of 8 july 2011 amending regulation (ec) no 1418/2007 concerning the export for recovery of certain waste to certain non-oecd countries (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1013/2006 of the european parliament and of the council of 14 june 2006 on shipments of waste (1) and in particular the third subparagraph of article 37 thereof after consultation of the countries concerned whereas the commission has received further information relating to bosnia and herzegovina and malaysia the annex to commission regulation (ec) no 1418/2007 should therefore be amended to take this into account has adopted this regulation article 1 the annex to regulation (ec) no 1418/2007 is amended in accordance with the annex to this regulation +article 2 this regulation shall enter into force on the day following its publication in the official journal of the european union it shall apply from 1 september this regulation shall be binding in its entirety and directly applicable in all member states done at luxembourg 9 june for the council the president pint r s +a new protocol to the partnership agreement was initialled on 22 december 2010 (hereinafter referred to as the new protocol) the new protocol provides eu vessels with fishing opportunities in the waters over which cape verde has sovereignty or jurisdiction in respect of fisheries +regulation (ec) no 1006/2008 shall apply without prejudice to the fisheries partnership agreement between the european community and the republic of cape verde +the method for allocating the fishing opportunities among the member states should be defined for the period of application of the new protocol +if applications for fishing authorisations from the member states referred to in paragraph 1 do not cover all the fishing opportunities set out in the protocol the commission shall consider applications for fishing authorisations from any other member state in accordance with article 10 of regulation (ec) no 1006/ the deadline referred to in article 10 of that regulation shall be set at 10 working days +in accordance with article 10 of council regulation (ec) no 1006/2008 of 29 september 2008 concerning authorisations for fishing activities of community fishing vessels outside community waters and the access of third country vessels to community waters (3) if it appears that the fishing opportunities allocated to the union under the new protocol are not fully utilised the commission is to inform the member states concerned the absence of a reply within the deadline to be set by the council is to be considered as confirmation that the vessels of the member state concerned are not making full use of their fishing opportunities in the given period that deadline should be set +on 9 june 2011 the council adopted decision 2011/405/eu on the signing and on the provisional application of the new protocol +given that the current protocol is due to expire on 31 august 2011 this regulation should enter into force on the day following its publication in the official journal of the european union and apply from 1 september 2011 has adopted this regulation article 1 the fishing opportunities set by the protocol agreed between the european union and the republic of cape verde setting out the fishing opportunities and the financial contribution provided for in the fisheries partnership agreement between the two parties currently in force (hereinafter referred to as the protocol) shall be allocated among the member states as follows (a) tuna seiners spain 16 vessels france 12 vessels (b) surface longliners spain 26 vessels portugal 9 vessels (c) pole-and-line tuna vessels spain 7 vessels france 4 vessels +9 7 2011 en official journal of the european union l 181/20 council regulation (eu) no 660/2011 of 9 june 2011 concerning the allocation of fishing opportunities under the protocol agreed between the european union and the republic of cape verde setting out the fishing opportunities and the financial contribution provided for in the fisheries partnership agreement between the two parties currently in force the council of the european union having regard to the treaty on the functioning of the european union and in particular article 43 thereof having regard to the proposal from the european commission whereas on 19 december 2006 the council adopted regulation (ec) no 2027/2006 on the conclusion of the fisheries partnership agreement between the european community and the republic of cape verde (hereinafter referred to as the partnership agreement) +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +9 7 2011 en official journal of the european union l 181/27 commission implementing regulation (eu) no 663/2011 of 8 july 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 659/2011 (4) +article 2 annex iii to regulation (ec) no 1185/2009 is replaced by the annex to this regulation +in accordance with article 5 of regulation (ec) no 1185/2009 the commission should adapt on a regular basis and at least every five years the list of substances to be covered and their classification in categories of products and chemical classes as set out in annex iii it is necessary to update the list annexed to the said regulation as it was last updated in 2006 to cover the period 2010 to 2015 +the measures provided for in this regulation are in accordance with the opinion of the european statistical system committee has adopted this regulation article 1 the term area treated referred to in section 2 of annex ii of regulation (ec) no 1185/2009 means the basic area treated defined as the physical area of the crop treated at least once with a given active substance independently of the number of applications +8 7 2011 en official journal of the european union l 180/3 commission regulation (eu) no 656/2011 of 7 july 2011 implementing regulation (ec) no 1185/2009 of the european parliament and of the council concerning statistics on pesticides as regards definitions and list of active substances (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1185/2009 of the european parliament and of the council of 25 november 2009 concerning statistics on pesticides (1) and in particular article 5 and 5(3) whereas regulation (ec) no 1185/2009 establishes a new framework for the production of comparable european statistics on pesticide sales and use +in accordance with article 5 of regulation (ec) no 1185/2009 it is necessary to adopt the definition of the term area treated referred to in section 2 of annex ii to the said regulation as it should be understood and applied in a uniform manner throughout the union in the interests of comparability +article 3 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 7 july for the commission the president jos manuel barroso oj l 324 10 12 2009 p +the number of substances and the complexity involved in identifying the right compounds and classification make it difficult for the national statistical authorities to build up properly the necessary tools for collecting the information on use and placing on the markets hence only those substances that have been allocated an identification number by one or both of the two major internationally recognised institutions for registering chemical compounds or pesticides chemical abstracts service of the american chemical society (cas) and collaborative international pesticides analytical council (cipac) should be included +8 7 2011 en official journal of the european union l 180/39 commission implementing regulation (eu) no 657/2011 of 7 july 2011 amending regulation (eu) no 297/2011 imposing special conditions governing the import of feed and food originating in or consigned from japan following the accident at the fukushima nuclear power station (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 178/2002 of the european parliament and of the council of 28 january 2002 laying down the general principles and requirements of food law establishing the european food safety authority and laying down procedures in matters of food safety (1) and in particular article 53 (b)(ii) thereof whereas article 53 of regulation (ec) no 178/2002 provides for the possibility to adopt appropriate union emergency measures for food and feed imported from a third country in order to protect public health animal health or the environment where the risk cannot be contained satisfactorily by means of measures taken by the member states individually +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health has adopted this regulation article 1 regulation (eu) no 297/2011 is amended as follows in article 2 paragraphs 3 and 4 are replaced by the following each consignment of the products referred to in article 1 which leaves japan from the date of entry into force of this regulation shall be accompanied by a declaration attesting that (a) the product has been harvested and/or processed before 11 march 2011 or (b) the product originates in and is consigned from a prefecture other than fukushima gunma ibaraki tochigi miyagi nagano yamanashi saitama tokyo chiba kanagawa and shizuoka or (c) the product is consigned from fukushima gunma ibaraki tochigi miyagi nagano yamanashi saitama tokyo chiba kanagawa and shizuoka prefectures but does not originate in one of those prefectures and has not been exposed to radioactivity during transiting or (d) where a product originates in fukushima gunma ibaraki tochigi miyagi nagano yamanashi saitama tokyo chiba kanagawa and shizoka prefectures the product does not contain levels of radionuclides iodine-131 caesium-134 and caesium-137 above the maximum levels provided for in annex ii to this regulation that provision applies also to products caught or harvested in the coastal waters of those prefectures irrespective of where such products are landed +annex i is replaced by the text set out in the annex to this regulation +it is therefore appropriate to amend regulation (eu) no 297/2011 accordingly whilst keeping the date of applicability of the regulation unchanged +the declaration referred to in paragraph 3 and as set out in annex i shall be signed by an authorised representative of the competent authority of japan for the products referred to in point (d) of paragraph 3 the declaration shall be accompanied by an analytical report +on 14 june 2011 the commission was informed of the finding of a high level of radioactive caesium in green tea leaves originating in the shizuoka prefecture that was confirmed on 15 june 2011 by five other findings of high level of radioactive caesium in green tea leaves from shizuoka prefecture that prefecture is not among the prefectures of the affected zone where a testing of all feed and food originating from those prefectures is required before export to the union given these recent findings it is appropriate to add shizuoka prefecture to the affected zone +a significant number of samples taken by the japanese authorities from food produced in niigata and yamagata prefectures show that the production of feed and food in those prefectures is only to a very limited extent affected by the accident at the fukushima nuclear power station as none of the samples had non-compliant levels of radioactivity nearly all samples had non-detectable levels of radioactivity and only in few samples low levels of radioactivity were detected therefore it is appropriate to remove those prefectures from the zone where a testing of all feed and food originating from those prefectures is required before export to the union +following the accident at the fukushima nuclear power station on 11 march 2011 the commission was informed that radionuclide levels in certain food products originating in japan such as milk and spinach exceeded the action levels in food applicable in japan such contamination may constitute a threat to public and animal health in the union and therefore commission implementing regulation (eu) no 297/2011 imposing special conditions governing the import of feed and food originating in or consigned from japan following the accident at the fukushima nuclear power station was adopted +the commission considers that the present proceeding should be terminated since the review investigation has not brought to light any considerations showing that such termination would not be in the union interest interested parties were informed accordingly and were given the opportunity to comment no comments were received indicating that such termination would not be in the union interest +grounds for the review the commission was informed that the sole producer of coumarin which constituted the union industry in the investigation which led to the imposition of the existing measures decided to discontinue production of coumarin within the union at the end of august 2010 +product under review the product under review is coumarin originating in the peoples republic of china currently falling within cn code ex 2932 21 00 (the product concerned) +the commission advised officially the union producers and the representatives of the peoples republic of china of the initiation of the review investigation interested parties were given the opportunity to make their views known in writing and to request a hearing within the time limit set in the notice of initiation +the commission therefore concludes that the anti-dumping proceeding concerning imports of the the product concerned into the union should be terminated has adopted this regulation article 1 the anti-dumping measures concerning imports of coumarin currently falling within cn code ex 2932 21 00 and originating in the peoples republic of china as extended to imports consigned from india thailand indonesia and malaysia whether declared as originating in india thailand indonesia and malaysia or not are hereby repealed and the proceeding concerning these imports is terminated +8 7 2011 en official journal of the european union l 180/1 council implementing regulation (eu) no 655/2011 of 28 june 2011 terminating the anti-dumping measures applicable to imports of coumarin originating in the peoples republic of china the council of the european union having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1225/2009 of 30 november 2009 on protection against dumped imports from countries not members of the european community (the basic regulation) and in particular articles 9 and 11 thereof having regard to the proposal submitted by the european commission after having consulted the advisory committee whereas procedure measures in force the measures currently in force are a definitive anti-dumping duty imposed by council regulation (ec) no 654/2008 on imports of coumarin originating in the peoples republic of china as extended to imports of coumarin consigned from india thailand indonesia and malaysia whether declared as originating in india thailand indonesia and malaysia or not and an undertaking accepted from one indian producer (atlas fine chemicals pvt ltd) (3) +initiation accordingly the commission after consultation of the advisory committee initiated by a notice published in the official journal of the european union (4) a partial interim review limited to injury aspects of the anti-dumping measures applicable to imports of coumarin originating in the peoples republic of china as extended to imports of coumarin consigned from india thailand indonesia and malaysia whether declared as originating in india thailand indonesia and malaysia or not +findings and termination of the proceeding the investigation has confirmed that the only union producer of the product concerned has permanently closed its production facility in august 2010 +applicants for a cpl having passed the relevant theoretical knowledge examinations for an ir or eir in the same category of aircraft are credited towards the theoretical knowledge requirements in the communications subject +instrument flight procedures (section 5) shall be performed only by applicants wishing to renew or revalidate an ir(h) or extend the privileges of that rating to another type an ffs or an ftd 2/3 may be used for this purpose +european plan for aviation safety 2018-2022 pt +where the letter m appears in the skill test or proficiency check column this will indicate a mandatory exercise +6 1 rejected take-off at minimum authorised runway visual range (rvr) p ----- ---- x an aeroplane shall not be used for this exercise m 6 2 cat ii/iii approaches in simulated instrument flight conditions down to the applicable dh using flight guidance system standard procedures of crew coordination (task sharing call-out procedures mutual surveillance information exchange and support) shall be observed p----- ----- m 6 3 go-around after approaches as indicated in 6 2 on reaching dh the training shall also include a go-around due to (simulated) insufficient rvr wind shear aeroplane deviation in excess of approach limits for a successful approach ground/airborne equipment failure prior to reaching dh and go-around with simulated airborne equipment failure p----- ----- m 6 4 landing(s) with visual reference established at dh following an instrument approach depending on the specific flight guidance system an automatic landing shall be performed p----- ----- m note cat ii/iii operations shall be performed in accordance with the applicable air operations requirements +atc liaison compliance r/t procedures section 3 3 en route procedures vfr flight plan dead reckoning and map reading maintenance of altitude heading and speed orientation timing and revision of etas use of radio navigation aids (if applicable) flight management (flight log routine checks including fuel systems and icing) atc liaison compliance r/t procedures section 4 4 arrivals and landings aerodrome arrival procedure (amphibians only) normal landing flapless landing crosswind landing (if suitable conditions) approach and landing with idle power from up to 2 000 above the water (single-engine aeroplanes only) go-around from minimum height glassy water landing rough water landing atc liaison compliance r/t procedures section 5 5 abnormal and emergency procedures (this section may be combined with sections 1 through 4 ) rejected take-off at a reasonable speed simulated engine failure after take-off (single-engine aeroplanes only) simulated forced landing without power (single-engine aeroplanes only) simulated emergencies (i) fire or smoke in flight and (ii) systems malfunctions as appropriate +single-pilot high-performance non-complex aeroplanes before starting flight training applicants for the issue of a class or type rating for a single-pilot aeroplane classified as a high-performance aeroplane shall (i) have at least 200 hours of total flying experience of which 70 hours as pic in aeroplanes and (ii) comply with one of the following requirements (a) hold a certificate of satisfactory completion of a course for additional theoretical knowledge undertaken at an ato or (b) have passed the atpl(a) theoretical knowledge examinations in accordance with this annex (part-fcl) or (c) hold in addition to a licence issued in accordance with this annex (part-fcl) an atpl(a) or cpl(a)/ir with theoretical knowledge credit for atpl(a) issued in accordance with annex 1 to the chicago convention +2 6 go-around or landing following simulated engine failure before decision point p ---- m section 3 normal and abnormal operations of the following systems and procedures 3 normal and abnormal operations of the following systems and procedures (may be completed in an fstd if qualified for the exercise) m a mandatory minimum of 3 items shall be selected from this section 3 1 engine p ---- ---- 3 2 pressurisation and air conditioning (heating ventilation) p ---- ---- 3 3 pitot/static system p ---- ---- 3 4 fuel system p ---- ---- 3 5 electrical system p ---- ---- 3 6 hydraulic system p ---- ---- 3 7 flight control and trim system p ---- ---- 3 8 anti-icing and de-icing system glare shield heating (if fitted) p ---- ---- 3 9 autopilot/flight director p --- --- 3 10 stall warning devices or stall avoidance devices and stability augmentation devices p ---- ---- 3 11 weather radar radio altimeter transponder ground proximity warning system (if fitted) p ---- ---- 3 12 landing gear system p ----- ----- 3 13 apu p ---- ---- 3 14 radio navigation equipment instruments and fms p ---- ---- 3 15 flap system p ---- ---- section 4 abnormal and emergency procedures 4 abnormal and emergency procedures (may be completed in an fstd if qualified for the exercise) m a mandatory minimum of 3 items shall be selected from this section 4 1 fire drills engine apu cargo compartment flight deck and electrical fires including evacuation if applicable p ---- ---- 4 2 smoke control and removal p ---- ---- 4 3 engine failures shutdown and restart (an aircraft shall not be used for this exercise) including one engine inoperative conversion from helicopter to aeroplane modes and vice versa p ---- ---- ffs only 4 4 fuel dumping (simulated if fitted) p ---- ---- 4 5 wind shear at take-off and landing (an aircraft shall not be used for this exercise) p ffs only 4 6 simulated cabin pressure failure/emergency descent (an aircraft shall not be used for this exercise) p ---- ---- ffs only 4 7 acas event (an aircraft shall not be used for this exercise) p ---- ---- ffs only 4 8 incapacitation of crew member p ---- ---- 4 9 transmission malfunctions p ---- ---- ffs only 4 10 recovery from a full stall (power on and off) or after activation of stall warning devices in climb cruise and approach configurations (an aircraft shall not be used for this exercise) p ---- ---- ffs only 4 11 other emergency procedures as detailed in the appropriate flight manual p ---- ---- section 5 instrument flight procedures (to be performed in imc or simulated imc) 5 1 instrument take-off transition to instrument flight is required as soon as possible after becoming airborne p ---- ---- 5 1 1 simulated engine failure during departure after decision point p ---- ---- m 5 2 adherence to departure and arrival routes and atc instructions p ---- ---- m 5 3 holding procedures p ---- ---- 5 4 precision approach down to a decision height not less than 60 m (200 ft) p ---- ---- 5 4 1 manually without flight director p ---- ---- m (skill test only) 5 4 2 manually with flight director p ---- ---- 5 4 3 with use of autopilot p ---- ---- 5 4 4 manually with one engine simulated inoperative engine failure has to be simulated during final approach before passing the om and continued either to touchdown or until completion of the missed approach procedure p ---- ---- m 5 5 non-precision approach down to the mda/h p ---- ---- m 5 6 go-around with all engines operating on reaching da/h or mda/mdh p ---- ---- 5 6 1 other missed approach procedures p ---- ---- 5 6 2 go-around with one engine simulated inoperative on reaching da/h or mda/mdh p m 5 7 imc autorotation with power recovery to land on runway in helicopter mode only (an aircraft shall not be used for this exercise) p ---- ---- m ffs only 5 8 recovery from unusual attitudes (this one depends on the quality of the ffs) p ---- ---- m section 6 additional authorisation on a type rating for instrument approaches down to a decision height of less than 60 m (200 ft) (cat ii/iii) 6 additional authorisation on a type rating for instrument approaches down to a decision height of less than 60 m (cat ii/iii) the following manoeuvres and procedures are the minimum training requirements to permit instrument approaches down to a dh of less than 60 m (200 ft) during the following instrument approaches and missed approach procedures all powered-lift aircraft equipment required for the type certification of instrument approaches down to a dh of less than 60 m (200 ft) shall be used +should applicants choose to terminate a skill test for reasons considered inadequate by the examiner they shall retake the entire skill test if the test is terminated for reasons considered adequate by the examiner only those sections not completed shall be tested in a further flight +20 12 2018 en official journal of the european union l 326/1 commission implementing regulation (eu) 2018/1974 of 14 december 2018 amending regulation (eu) no 1178/2011 laying down technical requirements and administrative procedures related to civil aviation aircrew pursuant to regulation (eu) 2018/1139 of the european parliament and of the council (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (eu) 2018/1139 of the european parliament and of the council of 4 july 2018 on common rules in the field of civil aviation and establishing a european union aviation safety agency and amending regulations (ec) no 2111/2005 (ec) no 1008/2008 (eu) no 996/2010 (eu) no 376/2014 and directives 2014/30/eu and 2014/53/eu of the european parliament and of the council and repealing regulation (ec) no 552/2004 and (ec) no 216/2008 of the european parliament and of the council and council regulation (eec) no 3922/91 (1) and in particular article 23 thereof whereas commission regulation (eu) no 1178/2011 lays down technical requirements for the certification of flight simulation training devices the certification of pilots involved in the operation of certain aircraft and the certification of persons and organisations involved in the pilot training testing and checking +further to the introduction of the new course related to the development of advanced pilot competencies in upset prevention and recovery the requirements for instructor certificates should be revised in order to ensure that persons instructing on this course are appropriately qualified +it is in the interest of aviation safety that the new uprt elements should be implemented as soon as possible transitional provisions should be put in place to allow training courses that have started before these uprt-related amendments to the requirements on pilot training become effective to be completed without any further adaptation in this context it should be considered that pilots flying for commercial air operators in accordance with commission regulation (eu) no 965/2012 need to undergo regular operator training which already today contains uprt elements additionally pilot training organisations should be given a transitional period to adapt their training programmes to comply with the new uprt requirements at the end of that transitional period all relevant training courses should be conducted in accordance with the new uprt requirements +the practical training shall be conducted at least at the training equipment level shown as (p) or may be conducted up to any higher equipment level shown by the arrow (---- ) +the measures provided for in this regulation are in accordance with the opinion of the committee established by article 127 of regulation (eu) 2018/1139 has adopted this regulation article 1 regulation (eu) no 1178/2011 is amended as follows after article 4a the following article 4b is inserted article 4b upset prevention and recovery training upset prevention and recovery training shall become a mandatory part of a training course for a multi-crew pilot licence (mpl) an integrated training course for airline transport pilots for aeroplanes (atp(a)) a training course for a commercial pilot licence for aeroplanes (cpl(a)) and training courses for a class or type rating for (a) single-pilot aeroplanes operated in multi-pilot operations (b) single-pilot non-high-performance complex aeroplanes (c) single-pilot high-performance complex aeroplanes or (d) multi-pilot aeroplanes in accordance with annex i (part-fcl) +commission regulation (eu) no 1178/2011 of 3 november 2011 laying down technical requirements and administrative procedures related to civil aviation aircrew pursuant to regulation (ec) no 216/2008 of the european parliament and of the council (oj l 311 25 11 2011 p 1) +except in the case of skill tests for the issue of an atpl when so defined in the osd for the specific aircraft credit may be given for skill test items common to other types or variants where the pilots are qualified conduct of the test/check the examiner may choose between different skill test or proficiency check scenarios containing simulated relevant operations full-flight simulators and other training devices shall be used as established in this annex (part-fcl) +applicants for the issue of an atpl(a) having passed the relevant theoretical examination for a cpl(a) are credited towards the theoretical knowledge requirements in the subject communications +applicants for the issue of a cpl having passed the relevant theoretical knowledge examinations for an ir in the same category of aircraft are credited towards the theoretical knowledge requirements in human performance and meteorology unless they have completed the ir training course in accordance with appendix 6 section aa to this annex (part-fcl) +for the issue of a ppl a bpl or an spl holders of an lapl in the same category of aircraft shall be credited in full towards the theoretical knowledge instruction and examination requirements +the practical training shall be conducted at least at the training equipment level shown as (p) or may be conducted up to any higher equipment level shown by the arrow (---- ) the following abbreviations are used to indicate the training equipment used ffs full-flight simulator ftd flight training device h helicopter the starred items ( ) shall be flown in actual or simulated imc only by applicants wishing to renew or revalidate an ir(h) or extend the privileges of that rating to another type +failure to achieve a pass in all sections of the test in two attempts will require further training +6 1 rejected take-off at minimum authorised rvr p ---- m 6 2 ils approaches in simulated instrument flight conditions down to the applicable dh using flight guidance system standard operating procedures (sops) of crew coordination shall be observed p ---- ---- m 6 3 go-around after approaches as indicated in 6 2 on reaching dh the training shall also include a go-around due to (simulated) insufficient rvr wind shear aircraft deviation in excess of approach limits for a successful approach ground/airborne equipment failure prior to reaching dh and go-around with simulated airborne equipment failure p ---- ---- m 6 4 landing(s) with visual reference established at dh following an instrument approach depending on the specific flight guidance system an automatic landing shall be performed p ---- m section 7 optional equipment 7 use of optional equipment p ---- ---- e specific requirements for the airship category in the case of skill tests or proficiency checks for airship type ratings applicants shall pass sections 1 to 5 and 6 (as applicable) of the skill test or proficiency check failure in more than five items will require applicants to repeat the entire test or check applicants failing not more than five items shall take the failed items again failure in any item in the case of a retest or a recheck or failure in any other items already passed will require applicants to repeat the entire test or check again all sections of the skill test or proficiency check shall be completed within 6 months flight test tolerance applicants shall demonstrate the ability to (a) operate the airship within its limitations (b) complete all manoeuvres with smoothness and accuracy (c) exercise good judgement and airmanship (d) apply aeronautical knowledge (e) maintain control of the airship at all times in such a manner that the successful outcome of a procedure or manoeuvre is never in doubt (f) understand and apply crew coordination and incapacitation procedures and (g) communicate effectively with the other crew members +instructors holding the privileges specified in point (e) may act as instructors for a course as specified in point (e)(1)(ii) provided that they (i) have 25 hours of flight instruction experience during training according to fcl745 a (ii) have completed an assessment of competence for this privilege and (iii) comply with the recency requirements in point (e)(2) +there is no limit to the number of skill tests that may be attempted content of the training/skill test/proficiency check unless otherwise determined in the operational suitability data established in accordance with annex i (part-21) to regulation (eu) no 748/2012 (osd) the syllabus of flight instruction the skill test and the proficiency check shall comply with this appendix the syllabus skill test and proficiency check may be reduced to give credit for previous experience on similar aircraft types as determined in the osd +the privileges referred to in point (e) shall only be exercised if instructors have during the last year received refresher training at an ato during which the competence required to instruct on a course in accordance with point fcl 745 a is assessed to the satisfaction of the ht +cpl applicants for the issue of a cpl holding a cpl in another category of aircraft shall have received theoretical knowledge bridge instruction at an ato on an approved course according to the differences identified between the cpl syllabi for different aircraft categories +negotiations between the union and certain third countries are currently still ongoing including on the conversion of pilot licences and associated medical certificates in order to ensure that member states may continue to recognise third country licences and medical certificates for an interim period in light of those negotiations it is necessary to prolong the period during which member states may decide not to apply the provisions of regulation (eu) no 1178/2011 in their territory to pilots holding a licence and associated medical certificate issued by a third country involved in the non-commercial operation of certain aircraft +the following abbreviations are used to indicate the training equipment used ffs full-flight simulator ftd flight training device otd other training device pl powered-lift aircraft (a) applicants for the skill test for the issue of the powered-lift aircraft type rating shall pass sections 1 to 5 and if applicable section (b) applicants for the revalidation or renewal of the powered-lift aircraft type rating proficiency check shall pass sections 1 to 5 and if applicable section 6 and/or section (c) the starred items ( ) shall be flown solely by reference to instruments if this condition is not met during the skill test or proficiency check the type rating will be restricted to vfr only +in the case of proficiency check for an ir applicants shall pass section 5 of the proficiency check failure in more than 3 items will require applicants to repeat the entire section applicants failing not more than 3 items shall repeat the failed items failure in any item in the case of a recheck or failure in any other items of section 5 already passed will require applicants to repeat the entire check flight test tolerance applicants shall demonstrate the ability to (a) operate the helicopter within its limitations (b) complete all manoeuvres with smoothness and accuracy (c) exercise good judgement and airmanship (d) apply aeronautical knowledge (e) maintain control of the helicopter at all times in such a manner that the successful outcome of a procedure or manoeuvre is never in doubt (f) understand and apply crew coordination and incapacitation procedures if applicable and (g) communicate effectively with the other crew members if applicable +applicants for the issue of an atpl(a) having passed the relevant theoretical examination for an ir(a) are credited towards the theoretical knowledge requirements in the subject communications +hours flown as an examiner during skill tests or proficiency checks shall be credited in full towards revalidation requirements for all instructor certificates held (d) credit for extension to further types shall take into account the relevant elements as defined in the operational suitability data established in accordance with annex i (part-21) to regulation (eu) no 748/2012 (osd) (e) additional requirements for instructing in a training course in accordance with fcl 745 a in addition to (b) before acting as instructors for a training course according to fcl 745 a holders of an instructor certificate shall (i) have at least 500 hours of flight time as pilots of aeroplanes including 200 hours of flight instruction (ii) after complying with the experience requirements in point (e)(1)(i) have completed a uprt instructor training course at an ato during which the competence of applicants shall have been assessed continuously and (iii) upon completion of the course have been issued with a certificate of course completion by the ato whose head of training (ht) shall have entered the privileges specified in point (e) in the logbook of the applicants +the following abbreviations are used to indicate the training equipment used ffs full-flight simulator ftd flight training device otd other training device as airship (a) applicants for the skill test for the issue of the airship shall pass sections 1 to 5 and if applicable section (b) applicants for the revalidation or renewal of the airship type rating proficiency check shall pass sections 1 to 5 and if applicable section (c) the starred items ( ) shall be flown solely by reference to instruments if this condition is not met during the skill test or proficiency check the type rating will be restricted to vfr only +atpl applicants for the issue of an atpl holding an atpl in another category of aircraft shall have received theoretical knowledge bridge instruction at an ato on an approved course according to the differences identified between the atpl syllabi for different aircraft categories +at the discretion of the examiner any manoeuvre or procedure of the test may be repeated once by the applicants the examiner may stop the test at any stage if it is considered that the applicants demonstration of flying skill requires a complete retest applicants shall be required to fly the aircraft from a position where the pic or co-pilot functions as relevant can be performed under single-pilot conditions the test shall be performed as if there was no other crew member present during preflight preparation for the test applicants are required to determine power settings and speeds applicants shall indicate to the examiner the checks and duties carried out including the identification of radio facilities checks shall be completed in accordance with the checklist for the aircraft on which the test is being taken and if applicable with the mcc concept performance data for take-off approach and landing shall be calculated by applicants in compliance with the operations manual or flight manual for the aircraft used decision heights/altitudes minimum descent heights/altitudes and missed approach point shall be agreed upon with the examiner the examiner shall take no part in the operation of the aircraft except where intervention is necessary in the interests of safety or to avoid unacceptable delay to other traffic specific requirements for the skill test/proficiency check for multi-pilot aircraft type ratings for single-pilot aeroplane type ratings when operated in multi-pilot operations for mpl and atpl the skill test for a multi-pilot aircraft or a single-pilot aeroplane when operated in multi-pilot operations shall be performed in a multi-crew environment another applicant or another type rated qualified pilot may function as the second pilot if an aircraft is used the second pilot shall be the examiner or an instructor applicants shall operate as pf during all sections of the skill test except for abnormal and emergency procedures which may be conducted as pf or pm in accordance with mcc applicants for the initial issue of a multi-pilot aircraft type rating or atpl shall also demonstrate the ability to act as pm applicants may choose either the left-hand or the right-hand seat for the skill test if all items can be executed from the selected seat the following matters shall be specifically checked by the examiner for applicants for the atpl or a type rating for multi-pilot aircraft or for multi-pilot operations in a single-pilot aeroplane extending to the duties of a pic irrespective of whether the applicants act as pf or pm (a) managing crew cooperation (b) maintaining a general survey of the aircraft operation by appropriate supervision and (c) setting priorities and making decisions in accordance with safety aspects and relevant rules and regulations appropriate to the operational situation including emergencies the test or check should be accomplished under ifr if the ir rating is included and as far as possible be accomplished in a simulated commercial air transport environment an essential element to be checked is the ability to plan and conduct the flight from routine briefing material when the type rating course has included less than 2 hours of flight training in the aircraft the skill test may be conducted in an ffs and may be completed before the flight training in the aircraft the approved flight training shall be performed by a qualified instructor under the responsibility of (a) an ato or (b) an organisation holding an aoc issued in accordance with annex iii (part-oro) to regulation (eu) no 965/2012 and specifically approved for such training or (c) the instructor in cases where no aircraft flight training for sp aircraft at an ato or aoc holder is approved and the aircraft flight training was approved by the applicants competent authority a certificate of completion of the type rating course including the flight training in the aircraft shall be forwarded to the competent authority before the new type rating is entered in the applicants licence for the upset recovery training stall event means either an approach-to-stall or a stall an ffs can be used by the ato to either train recovery from a stall or demonstrate the type-specific characteristics of a stall or both provided that (a) the ffs has been qualified in accordance with the special evaluation requirements in cs-fstd(a) and (b) the ato has successfully demonstrated to the competent authority that any negative transfer of training is mitigated b specific requirements for the aeroplane category pass marks in the case of single-pilot aeroplanes with the exception of single-pilot high-performance complex aeroplanes applicants shall pass all sections of the skill test or proficiency check failure in any item of a section will cause applicants to fail the entire section if they fail only one section they shall repeat only that section failure in more than one section will require applicants to repeat the entire test or check failure in any section in the case of a retest or recheck including those sections that have been passed on a previous attempt will require applicants to repeat the entire test or check again for single-pilot multi-engine aeroplanes section 6 of the relevant test or check addressing asymmetric flight shall be passed +commission regulation (eu) 2015/445 of 17 march 2015 amending regulation (eu) no 1178/2011 as regards technical requirements and administrative procedures related to civil aviation aircrew (oj l 74 18 3 2015 p 1) +these privileges shall be entered in the logbook of the instructors and signed by the examiner appendix 1 is replaced by the following appendix 1 crediting of theoretical knowledge crediting of theoretical knowledge in the same or another category of aircraft bridge instruction and examination requirements lapl ppl bpl and spl for the issue of an lapl holders of an lapl in another category of aircraft shall be fully credited with theoretical knowledge on the common subjects established in fcl 120(a) +for training courses referred to in paragraph 1 that commence before 20 december 2019 at an approved training organisation (ato) upset prevention and recovery training shall not be mandatory provided that (a) cpl(a) atp(a) or mpl training course is otherwise completed in accordance with annex i (part-fcl) and the skill test is completed in compliance with points fcl 320 (cpl) fcl 620 (ir) or fcl 415 a (mpl) of annex i (part-fcl) by 20 december 2021 at the latest or (b) class or type rating training course for the aeroplanes is otherwise completed in accordance with annex i (part-fcl) and the skill test is completed in compliance with the second subparagraph of paragraph (c) of point fcl 725 of annex i (part-fcl) to this regulation by 20 december 2021 at the latest for the purpose of paragraph 1 the competent authority may on its own assessment and pursuant to a recommendation from an ato give credit for any upset prevention and recovery training completed before 20 december 2019 under national training requirements in article 12 paragraph 4 is replaced by the following by way of derogation from paragraph 1 member states may decide not to apply the provisions of this regulation until 20 june 2020 to pilots holding a licence and associated medical certificate issued by a third country involved in the non-commercial operation of aircraft as specified in article 2(1)(b) points (i) or (ii) of regulation (eu) 2018/ member states shall make those decisions publicly available article 12 paragraph 8 is replaced by the following by way of derogation from paragraph 1 point fcl 315 a the second sentence of paragraph (a) of point fcl 410 a and paragraph (c) of point fcl 725 a of annex i (part-fcl) shall apply from 20 december 2019 annex i to regulation (eu) no 1178/2011 is amended in accordance with the annex to this regulation +notwithstanding point 1 2 for the issue of an lapl(a) holders of an lapl(s) with tmg extension shall demonstrate an adequate level of theoretical knowledge for the sep(land) class in accordance with fcl 135 a(a)(2) +applicants for the issue of an atpl(h) having passed the relevant theoretical examinations for a cpl(h) are credited towards the theoretical knowledge requirements in the following subjects air law principles of flight (helicopter) and communications +since the last decade aeroplane upset or loss of control have been identified among the major risk factors that could lead to fatal accidents in commercial air transport operations and its prevention became a strategic priority in europe and at a global level this included new training requirements to better prepare pilots for adverse situations of aircraft upset and loss of control +ir applicants for the issue of an ir or an eir having passed the relevant theoretical examinations for a cpl in the same aircraft category are credited towards the theoretical knowledge requirements in the following subjects human performance meteorology and communications +article 2 this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union however (a) article 1 shall apply from 20 december (b) article 1 shall apply from 20 december (c) notwithstanding point (b) above points (2) (4) and of the annex to this regulation shall apply from 31 january this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 14 december for the commission violeta bulc member of the commission regulation (eu) 2018/1139 of the european parliament and of the council of 4 july 2018 on common rules in the field of civil aviation and establishing a european union aviation safety agency and amending regulations (ec) no 2111/2005 (ec) no 1008/2008 (eu) no 996/2010 (eu) no 376/2014 and directives 2014/30/eu and 2014/53/eu of the european parliament and of the council and repealing regulations (ec) no 552/2004 and (ec) no 216/2008 of the european parliament and of the council and council regulation (eec) no 3922/91 (oj l 212 22 8 2018 p 1) +uprt needs to be integrated at various stages of a professional pilot s career and should be reflected in the privileges stated in the individual pilot licence a well-developed and well-maintained competence of professional pilots in upset prevention and recovery should be ensured uprt should become a mandatory part of the multi-crew pilot licence (mpl) training course and the integrated training course for airline transport pilots for aeroplanes (atp(a)) and a training course for a commercial pilot licence for aeroplanes (cpl(a)) as well as for class and type-ratings for single-pilot aeroplanes operated in multi-pilot operations single-pilot non-high-performance complex high-performance complex aeroplanes and multi-pilot aeroplanes ratings in order to allow pilots to develop advanced competencies in upset prevention and recovery the relevant training course should include related air exercises in an aeroplane +point fcl 720 a is replaced by the following fcl 720 a experience requirements and prerequisites for the issue of class or type ratings aeroplanes unless otherwise determined in the operational suitability data established in accordance with annex i (part-21) to regulation (eu) no 748/2012 (osd) applicants for the issue of a class or type rating shall comply with the following experience requirements and prerequisites for the issue of the relevant rating (a) single-pilot aeroplanes applicants for the issue of a first class or type rating on a single-pilot aeroplane seeking the privilege to operate the aeroplane in multi-pilot operations shall meet the requirements in points (b) and (b)(5) additionally for single-pilot multi-engine aeroplanes applicants for the issue of a first class or type rating on a single-pilot multi-engine aeroplane shall have completed at least 70 hours as pic in aeroplanes +by commission regulation (eu) 2015/445 (4) the existing training requirements for commercial pilots were updated to include upset prevention and recovery training (uprt) as a mandatory constituent of the theoretical knowledge of pilots further detailed training elements and training objectives are needed to improve pilot competencies for both prevention of and recovery from aeroplane upsets that can lead to a loss of control and eventually to a fatal accident +this regulation reflects the provisions adopted by the international civil aviation organisation (icao) in 2014 on uprt for multi-crew pilot licences and for multi-pilot aeroplane type ratings through the amendment to annex 1 to the chicago convention on personnel licensing +pre-start checks external/internal engine start-up and shutdown normal malfunctions taxiing step taxiing mooring beach jetty pier buoy engine-off sailing pre-departure checks engine run-up (if applicable) take-off procedure normal with flight manual flap settings and crosswind (if conditions are available) +atc liaison compliance r/t procedures section 6 6 simulated asymmetric flight (this section may be combined with sections 1 through 5 ) simulated engine failure during take-off (at a safe altitude unless carried out in an ffs and an fnpt ii) engine shutdown and restart (me skill test only) asymmetric approach and go-around asymmetric approach and full-stop landing atc liaison compliance r/t procedures c specific requirements for the helicopter category in the case of skill test or proficiency check for type ratings and the atpl applicants shall pass sections 1 to 4 and 6 (as applicable) of the skill test or proficiency check failure in more than five items will require applicants to repeat the entire test or check applicants failing not more than five items shall repeat the failed items failure in any item in the case of a retest or a recheck or failure in any other items already passed will require the applicants to repeat the entire test or check again all sections of the skill test or proficiency check shall be completed within 6 months +the european union aviation safety agency submitted draft implementing rules to the european commission together with its opinion no 06/2017 +single-pilot high-performance complex aeroplanes applicants for the issue of a type rating for a complex single-pilot aeroplane classified as a high-performance aeroplane shall in addition to meeting the requirements in point (2) hold or have held a single- or multi-engine ir(a) as appropriate and as established in subpart g and shall meet the requirements in point (b)(5) (b) multi-pilot aeroplanes applicants for the issue of the first type rating course for a multi-pilot aeroplane shall be student pilots currently undergoing training on an mpl training course or comply with the following requirements have at least 70 hours of flight experience as pic in aeroplanes hold or have held a multi-engine ir(a) have passed the atpl(a) theoretical knowledge examinations in accordance with this annex (part-fcl) except when the type rating course is combined with an mcc course (i) hold a certificate of satisfactory completion of an mcc course in aeroplanes or (ii) hold a certificate of satisfactory completion of mcc in helicopters and have more than 100 hours of flight experience as pilots of multi-pilot helicopters or (iii) have at least 500 hours as pilots of multi-pilot helicopters or (iv) have at least 500 hours as pilots in multi-pilot operations on single-pilot multi-engine aeroplanes in commercial air transport in accordance with the applicable air operations requirements and have completed the training course specified in fcl 745 a (c) notwithstanding point (b) a member state may issue a type rating with restricted privileges for a multi-pilot aeroplane that allows holders of such a rating to act as cruise relief co-pilots above flight level 200 provided that two other members of the crew have a type rating in accordance with point (b) (d) when so determined in the osd the exercise of the privileges of a type rating may be initially limited to flight under the supervision of an instructor the flight hours under supervision shall be entered in the pilots logbook or equivalent record and signed by the instructor the limitation shall be removed when pilots demonstrate that the hours of flight under supervision required in the osd have been completed point fcl 725 a is replaced by the following fcl 725 a theoretical knowledge and flight instruction for the issue of class and type ratings aeroplanes unless otherwise determined in in the operational suitability data established in accordance with annex i (part-21) to regulation (eu) no 748/2012 (a) for single-pilot multi-engine aeroplanes the theoretical knowledge course for a single-pilot multi-engine class rating shall include at least 7 hours of instruction in multi-engine aeroplane operations and the flight training course for a single-pilot multi-engine class or type rating shall include at least 2 hours and 30 minutes of dual flight instruction under normal conditions of multi-engine aeroplane operations and not less than 3 hours 30 minutes of dual flight instruction in engine failure procedures and asymmetric flight techniques (b) for single-pilot aeroplanes (sea) the training course for single-pilot aeroplane (sea) ratings shall include theoretical knowledge and flight instruction and the flight training for a class or type rating (sea) for single-pilot aeroplanes (sea) shall include at least 8 hours of dual flight instruction if applicants hold the land version of the relevant class or type rating or 10 hours if applicants do not hold such a rating and (c) for single-pilot non-high-performance complex aeroplanes single-pilot high-performance complex aeroplanes and multi-pilot aeroplanes the training courses shall include uprt theoretical knowledge and flight instruction related to the specificities of the relevant class or type a new point fcl 745 a is inserted as follows fcl 745 a advanced uprt course aeroplanes (a) the advanced uprt course shall be completed at an ato and shall comprise at least 5 hours of theoretical knowledge instruction preflight briefings and postflight debriefings and 3 hours of dual flight instruction with a flight instructor for aeroplanes fi(a) qualified in accordance with point fcl 915 (e) and consisting of advanced uprt in an aeroplane qualified for the training task (b) upon completion of the uprt course applicants shall be issued with a certificate of completion by the ato point (b) of point fcl 900 is replaced by the following the competent authority may issue a specific certificate granting privileges for flight instruction when compliance with the requirements established in this subpart is not possible in the case of the introduction of (i) new aircraft in the member states or in an operator s fleet or (ii) new training courses in this annex (part-fcl) such a certificate shall be limited to the training flights necessary for the introduction of the new type of aircraft or the new training course and its validity shall not in any case exceed 1 year point fcl 915 is amended as follows fcl 915 general prerequisites and requirements for instructors (a) general applicants for the issue of an instructor certificate shall be at least 18 years of age (b) additional requirements for instructors providing flight instruction in aircraft applicants for the issue of or holders of an instructor certificate with privileges to conduct flight instruction in an aircraft shall for licence training hold at least the licence or in the case of point fcl 900(c) the equivalent licence for which flight instruction is to be given for a rating training hold the relevant rating or in the case of point fcl 900(c) the equivalent rating for which flight instruction is to be given except in the case of flight test instructors (ftis) have (i) completed at least 15 hours of flight time as pilots of the class or type of aircraft on which flight instruction is to be given of which a maximum of 7 hours may be in an fstd representing the class or type of aircraft if applicable or (ii) passed an assessment of competence for the relevant category of instructor on that class or type of aircraft and be entitled to act as pic in the aircraft during such flight instruction (c) credit towards further ratings and for the purpose of revalidation applicants for further instructor certificates may be credited with the teaching and learning skills already demonstrated for the instructor certificate held +applicants for the issue of an atpl(h) with an ir(h) having passed the relevant theoretical examinations for a cpl(h) are credited towards the theoretical knowledge requirements in the following subjects principles of flight (helicopter) and communications +in the case of multi-pilot and single-pilot high-performance complex aeroplanes applicants shall pass all sections of the skill test or proficiency check failure in more than five items will require applicants to take the entire test or check again applicants failing 5 or fewer items shall take the failed items again failure in any item on the retest or recheck including those items that have been passed on a previous attempt will require applicants to repeat the entire check or test again section 6 is not part of the atpl or mpl skill test if applicants only fail or do not take section 6 the type rating will be issued without cat ii or cat iii privileges to extend the type rating privileges to cat ii or cat iii applicants shall pass the section 6 on the appropriate type of aircraft flight test tolerance applicants shall demonstrate the ability to (a) operate the aeroplane within its limitations (b) complete all manoeuvres with smoothness and accuracy (c) exercise good judgement and airmanship (d) apply aeronautical knowledge (e) maintain control of the aeroplane at all times in such a manner that the successful outcome of a procedure or manoeuvre is never in doubt (f) understand and apply crew coordination and incapacitation procedures if applicable and (g) communicate effectively with the other crew members if applicable +during the proficiency check the examiner shall verify that holders of the class or type rating maintain an adequate level of theoretical knowledge +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +8 7 2011 en official journal of the european union l 180/45 commission implementing regulation (eu) no 659/2011 of 7 july 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 650/2011 (4) +annex iii to regulation (ec) no 748/2008 lays down the authorities in argentina empowered to issue the certificates of authenticity +annex ii to regulation (ec) no 810/2008 lays down the list of the authorities in exporting countries empowered to issue certificates of authenticity +7 7 2011 en official journal of the european union l 179/1 commission implementing regulation (eu) no 653/2011 of 6 july 2011 amending annex i to regulation (ec) no 1439/95 annex iii to regulation (ec) no 748/2008 and annex ii to regulation (ec) no 810/2008 as regards the authority empowered to issue documents and certificates in argentina the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1095/96 of 18 june 1996 on the implementation of the concessions set out in schedule cxl drawn up in the wake of the conclusion of the gatt xxiv 6 negotiations (1) having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (2) having regard to commission regulation (ec) no 1439/95 of 26 june 1995 laying down detailed rules for the application of council regulation (eec) no 3013/89 as regards the import and export of products in the sheepmeat and goatmeat sector (3) and in particular article 12 thereof having regard to commission regulation (ec) no 748/2008 of 30 july 2008 on the opening and administration of an import tariff quota for frozen thin skirt of bovine animals falling within cn code 0206 29 91 (4) and in particular article 6 thereof having regard to commission regulation (ec) no 810/2008 of 11 august 2008 opening and providing for the administration of tariff quotas for high-quality fresh chilled and frozen beef and for frozen buffalo meat (5) and in particular article 7 thereof whereas annex i to regulation (ec) no 1439/95 lays down the list of the authorities of the third countries empowered to issue documents of origin +argentina has notified the commission that from 1 july 2011 the new authority empowered to issue the documents of origin and the certificates of authenticity for beef sheepmeat and goatmeat originating in argentina is the ministry of economy and finance +article 16 network management board the network management board shall be responsible for (a) endorsing the network strategy plan prior to adoption in accordance with article 5 of regulation (ec) no 549/2004 (b) approving the 3 to 5 year and the annual network operations plans (c) approving the cooperative decision-making processes the consultation processes as well as detailed working arrangements and processes for operations for the network functions after a positive opinion of the single sky committee (d) approving the rules of procedure of the european aviation crisis coordination cell provided for in article 18(4) after a positive opinion of the single sky committee (e) monitoring progress in the implementation of the plans and addressing any potential deviations from initial plans (f) monitoring the consultation process of operational stakeholders (g) monitoring activities related to the management of the network functions (h) monitoring network manager activities related to network crises (i) approving the annual report referred to in article this report shall include but not be limited to the implementation of the network strategy plan and the network operations plan (j) addressing issues which were not solved at individual network function level (k) assessing if the network manager has the appropriate competences resources and impartiality to carry out independently the tasks assigned to it including security liability and contingency arrangements (l) endorsing the network managers annual budget after a positive opinion of the single sky committee (m) approving its rules of procedure after a positive opinion of the single sky committee (n) addressing any additional subject it identifies as relevant +the network manager shall also recommend measures on other issues required by the performance of the network +safety requirements for the network functions have to be of comparable level with the european aviation safety agency (the agency) requirements on air navigation service provision these requirements as well as the requirements on the safety oversight should be provided +the cooperative decision-making process shall be supported by appropriate permanent detailed working arrangements to be settled at expert level by the network manager with the participation of all stakeholders the consultation arrangements will be organised with a periodicity that reflects the needs of the european route network design function +as the efficiency of network management depends on immediate commencement of network functions the member states have already entrusted eurocontrol with the performance of atfm +in order to facilitate operational interconnectivity between functional airspace blocks the network manager shall establish in close cooperation with all the functional airspace blocks harmonised processes procedures and interfaces including changes on aspects related to activities of the network manager +the commission should ensure an appropriate oversight of the network manager +in accordance with article 13 of regulation (ec) no 549/2004 this regulation shall not prevent the application of measures by a member state to the extent to which these are needed to safeguard essential security or defence policy interests +the consideration and involvement of third countries in the establishment and implementation of the network functions should contribute to the pan-european dimension of the single european sky +the arrangements shall at least specify (a) the criteria for the assessment of operational requirements and their prioritisation (b) minimum timescales for the coordination of new or amended radio frequency assignments (c) mechanisms to ensure that the relevant european union-wide performance targets are met by the network manager and the national frequency managers (d) that enhanced frequency management procedures criteria and processes do not adversely affect those applied by other countries in the context of icao regional procedures (e) requirements to ensure that appropriate consultation on new or amended management arrangements is conducted by the member states with all affected stakeholders at a national and european level +article 17 role of the single sky committee the network manager shall refer regulatory issues to the commission the commission shall inform the single sky committee of those issues +the network manager shall comply with ad hoc requests for information advice analysis or other similar ancillary tasks linked to the various functions on request of the commission or the agency +ssr transponder codes shall be allocated through the network manager to the member states and the air navigation service providers in a manner that optimises their safe and efficient distribution taking the following into account (a) the operational requirements of all operational stakeholders (b) the actual and predicted levels of air traffic (c) the required use of ssr transponder codes in compliance with relevant provisions of the icao regional air navigation plan european region facilities and services implementation document and guidance material +air navigation service providers cooperating in a functional airspace block shall ensure that consolidated views are formulated related to operational issues of the network functions +a centralised ssr transponder code assignment and management system for the automatic assignment of ssr transponder codes to general air traffic may be operated by the network manager on behalf of the member states and air navigation service providers +for the purpose of network management this regulation shall apply in particular to member states european aviation safety agency (the agency) airspace users air navigation service providers airport operators airport slot coordinators and operating organisations at national or functional airspace block level +article 26 amendments to regulation (eu) no 691/2010 regulation (eu) no 691/2010 is amended as follows in article 3(3) the following point (m) is added (m) the assessment of the performance plan of the network manager including its consistency with the european-union wide performance targets the following article 5a is inserted article 5a network manager the network manager established by article 3 of commission regulation (eu) no 677/2011 shall carry out the following tasks in relation to the performance scheme (a) support the commission by providing relevant input for the preparation of european union-wide performance targets before the reference periods and for monitoring during the reference period in particular the network manager shall draw the commissions attention to any significant and persistent drops in operational performance (b) in accordance with article 20(5) provide access for the commission to all data listed in annex iv (c) support member states and air navigation service providers in reaching their performance target during reference periods (d) elaborate a performance plan which shall be adopted as part of the network strategy plan before the beginning of each reference period this performance plan shall be public and shall (i) contain an environment performance target that shall be consistent with the european union-wide performance target for the entire reference period with annual values to be used for monitoring purposes (ii) contain performance targets for other relevant key performance areas consistent with the european union-wide performance targets for the entire reference period with annual values to be used for monitoring purposes (iii) contain a description of the actions planned to meet the targets (iv) contain where necessary or where decided by the commission additional key performance indicators and targets +in order to adopt measures related to the governance of the network functions and to monitor their performance the network manager shall establish a network management board provided for in article 16 +the following data and information shall be provided to the network manager by air navigation service providers as required within agreed timescales prescribed by the network manager to support the provision of the network function for ssr transponder codes (a) enhanced tactical flow management systems correlated position reports containing ssr transponder code assignments for general air traffic conducting flights under instrument flight rules (b) reports of any actual unplanned conflict or hazard caused by an actual operational ssr transponder code assignment including information of how the conflict was resolved +the network manager should be involved with aspects of member state or functional airspace blocks air traffic management (atm) plans actions and performance in particular when it can be expected that it has or is likely to have a material effect on the performance of the network +member states shall inform the network manager where their sovereignty and responsibilities prevent the adoption of individual measures under article 7(1) +the network manager shall ensure that the detailed working arrangements and processes for operations contain rules for notification of interested parties concerned +operational needs as expressed by the different stakeholders including military network operational performance enhancement plans and actions at network level description of the plans and actions expected to be implemented at network level including airspace scarce resources and atfm description of the operational performance contributions of each of the plans and actions +performance planning the performance plan shall be based on the following structure introduction description of the situation (scope of the plan functions covered etc ) description of the macroeconomic scenario for the reference period including overall assumptions (traffic forecast etc ) description of the outcome of the stakeholder consultation to prepare the performance plan (main issues raised by the participants and if possible agreed compromises) performance targets at network-manager level performance targets in each relevant key performance area set by reference to each relevant key performance indicator for the entire reference period with annual values to be used for monitoring and incentive purposes description and explanation of the contribution and impact of the nm performance targets on the european union-wide performance targets contribution of each function individual performance targets for each function (atfm ernd ssr transponder codes frequencies) military dimension description of the civil-military dimension of the plan describing the performance of flexible use of airspace application in order to increase capacity with due regard to military operation effectiveness and if deemed appropriate relevant performance indicators and targets consistent with the indicators and targets of the performance plan analysis of sensitivity and comparison with the previous performance plan sensitivity to external assumptions comparison with the previous performance plan +risk assessment description of the risks associated with the implementation of the plan description of the monitoring process (including potential deviation from initial objectives) recommendations identification of the actions to be taken by the union and member states to support the implementation of the plan annex v template for network operations plan the network operations plan shall be based on the following general structure (that will be tailored to the various individual functions and to the time horizon of the network operations plan to reflect its rolling nature and its 3 to 5 year annual seasonal weekly and daily periods) introduction scope of the network operations plan (geographical and time period) preparation of the plan and validation process description of the network operations plan operational targets and objectives including the collaborative aspect of the participating operational stakeholders in terms of roles and responsibilities indicating how the operational targets and objectives will be covered in the tactical pre-tactical short-term and medium-term phases of the network operations plan and other performance targets set under the performance regulation priorities set and resources needed for the planning period indicating the impact on the atm industry and other concerned areas +the following data and information shall be provided to the network manager by member states as required within agreed timescales prescribed by the network manager to support the provision of the network function for ssr transponder codes (a) an up-to-date record of the allocation and use of all ssr transponder codes within their area of responsibility subject to any security constraints concerning full disclosure of specific military code allocations not used for general air traffic (b) justification to demonstrate that existing and requested allocations of ssr transponder codes are the minimum necessary to meet operational requirements (c) details of any allocations of ssr transponder codes that are no longer operationally required and that can be released for re-allocation within the network (d) reports of any actual unplanned shortfall in ssr transponder code allocations (e) details of any change in the installation planning or in the operational status of systems or constituents that may impact on the assignment of ssr transponder codes to flights +the network functions should be a service of general interest exercised for the european aviation network and contributing to the sustainable development of the air transport system by ensuring the required level of performance compatibility and coordination of activities including those to ensure the optimal use of scarce resources +coordination on the strategic and tactical use of radio frequencies with adjacent countries not participating in the work of the network manager shall be conducted through the icao regional working arrangements this will be done with a view to enable access of adjacent countries to the services of the network manager +an impartial and competent body (the network manager) should be established to perform the tasks necessary for the execution of the network functions provided for in regulation (ec) no 551/2004 +the single sky committee may advise the commission when agreement cannot be reached on issues of major network significance by the network management board chapter iv network crisis management article 18 establishment of the european aviation crisis coordination cell the management of network crises shall be supported by the establishment of a european aviation crisis coordination cell (the eaccc) +procedures and tools for the regular evaluation and assessment of the actual use of ssr transponder codes by member states and air navigation service providers shall be implemented by the network manager plans and procedures shall be agreed between the network manager member states and air navigation service providers to support the periodic analysis and identification of future ssr transponder code requirements this analysis shall include the identification of potential performance impacts created by any predicted shortfalls in the allocations of ssr transponder codes operations manuals containing the necessary instructions and information to enable the network function to be conducted in accordance with the requirements of this regulation shall be developed and maintained these operations manuals shall be distributed and maintained in accordance with appropriate quality and documentation management processes part b requirements for the specific consultation mechanism a dedicated mechanism for the coordination and consultation of detailed ssr transponder code allocation arrangements shall be established by the network manager that (a) ensures the impact of the use of ssr transponder codes in third countries is taken into account through participation in the ssr transponder code management working arrangements set out in the relevant provisions of the icao regional air navigation plan european region facilities and services implementation document (b) ensures the ssr transponder code allocation list laid down in point 3 of part a is compatible with the code management plan set out in the relevant provisions of the icao regional air navigation plan european region facilities and services implementation document (c) specifies requirements to ensure that appropriate consultation on new or amended ssr transponder code management arrangements is conducted with the member states concerned (d) specifies requirements to ensure that appropriate consultation on new or amended ssr transponder code management arrangements is conducted by member states with all stakeholders concerned at a national level (e) ensures coordination with third countries on the strategic and tactical use of ssr transponder codes is conducted through the ssr transponder code management working arrangements set out in the relevant provisions of the icao regional air navigation plan european region facilities and services implementation document (f) specifies minimum timescales for the coordination and consultation of proposed new or amended ssr transponder code allocations (g) ensures changes to the ssr transponder code allocation list are subject to the approval of those member states concerned by the change (h) specifies requirements to ensure that changes to the ssr transponder code allocation list are communicated to all stakeholders immediately after its approval without prejudice to national procedures for the communication of information on the use of ssr transponder codes by military authorities +the design of the european route network and the coordination of scarce resources according to regulation (ec) no 551/2004 should be without prejudice to member states sovereignty over their airspace and to the requirements of the member states relating to public order public security and defence matters according to regulation (ec) no 549/2004 +the network functions should be provided in a cost-efficient manner in particular avoiding any duplication of efforts and therefore enabling the provision of these functions at reduced or at least not higher financial and human resources requirements in the member states in the context of this regulation compared to the situation before a network manager was nominated +the network manager shall ensure appropriate arrangements in all activities to allow civil-military coordination in the cooperative decision-making process +the network strategy plan shall be updated if appropriate +the national frequency managers and the network manager shall assess and prioritise frequency requests on the basis of operational requirements and agreed criteria furthermore their impact on the network shall be determined by the network manager in conjunction with the national frequency managers the network manager shall establish such criteria in consultation with the national frequency managers within 12 months after the adoption of this regulation and maintain and update them thereafter as necessary where there is an impact on the network the network manager shall identify suitable frequency(ies) to satisfy the request taking into account the following requirements (a) the need to provide safe communication navigation and surveillance infrastructure services (b) the need to optimise the use of finite radio spectrum resources (c) the need for cost-effective fair and transparent access to the radio spectrum (d) the operational requirements of the applicant(s) and operational stakeholders (e) the predicted future demand for radio spectrum (f) the provisions contained in the icao european frequency management manual where there is no impact on the network the national frequency managers shall determine suitable frequency(ies) to satisfy the request taking into account the requirements of point when a frequency request cannot be satisfied the national frequency managers may request the network manager to undertake a specific frequency search in order to identify a solution for the national frequency managers the network manager supported by the national frequency managers may undertake a specific examination of the frequency usage situation in the concerned geographical area the national frequency manager shall assign suitable frequency(ies) identified in points 10 11 or the national frequency manager shall register each assignment in the central register by including the following information (a) data as defined in the icao european frequency management manual including relevant associated technical and operational data (b) enhanced data requirements resulting from point 7 (c) a description of the operational use of the frequency assignment (d) the contact details of the operational stakeholder making use of the assignment when making the assignment to the applicant the national frequency manager shall include conditions of use as a minimum these conditions shall specify that the frequency assignment (a) remains valid as long as it is being used to meet the operational requirements described by the applicant (b) may be subject to a frequency shift request and that such shifts will need to be implemented within a limited timeframe (c) is subject to modification once the operational use described by the applicant changes the national frequency manager(s) shall ensure that any required frequency shift modification or release is performed within the agreed timeframe and that the central register is updated accordingly the national frequency manager(s) shall forward appropriate justification to the network manager when these actions cannot be performed the national frequency managers shall ensure that the operational technical and administrative details referred to in point 14 of all frequency assignments used in the european aviation network are available in the central register by 31 december 2011 at the latest the network manager and the national frequency manager(s) shall perform monitoring and evaluations of aviation frequency bands and frequency assignments based on transparent procedures in order to ensure their correct and efficient usage the network manager shall set up such procedures in consultation with the national frequency managers at the latest 12 months after the adoption of this regulation and maintain and update them thereafter as necessary in particular the network manager shall identify any discrepancy between the central register the operational purpose and the actual use of the frequency assignment the network manager shall notify the national frequency manager of such discrepancies for their resolution within an agreed timeframe the network manager shall ensure the availability of common tools to support central and national planning coordination registration auditing and optimisation in particular tools shall be developed to support the analysis of the central register data to monitor the efficiency of the function and to design and implement the frequency optimisation process under point part b requirements for the organisation of the function the cooperative decision-making between national frequency managers and the network manager shall be based on arrangements subject to approval by the network management board in accordance with article 16 of this regulation after a positive opinion of the single sky committee in accordance with article 5 of regulation (ec) no 549/2004 +the network strategy plan shall aim at achieving the performance targets for network functions provided for in regulation (eu) no 691/2010 +the network manager member states functional airspace blocks and air navigation service providers as part of functional airspace blocks or individually shall ensure coherent integration of agreed airspace design projects agreed through the cooperative decision-making process in the european route network improvement plan +safety the network manager shall have a safety management system which covers all the network functions it performs according to the following principles it shall (a) describe the overall philosophies and principles of the organisation with regard to safety and in such a way as to meet the needs of relevant stakeholders as closely as possible (hereinafter the policy) (b) set up a compliance monitoring function that contains procedures designed to verify that all functions are being provided in accordance with applicable requirements standards and procedures compliance monitoring shall include a feedback system of findings to the responsible management personnel to ensure effective and timely implementation of corrective actions as necessary (c) provide evidence of the functioning of the management system by means of manuals and monitoring documents (d) appoint management representatives to monitor compliance with and adequacy of procedures to ensure safe and efficient operational practices (e) perform reviews of the management system in place and take remedial actions as appropriate (f) manage the safety of all network functions allocated to it in doing so it shall establish formal interfaces with all the relevant stakeholders to be able to identify the aviation safety hazards entailed by its activities to evaluate them and to manage the associated risks as appropriated (g) contain procedures for managing the safety when introducing new functional systems or changing the existing functional systems +the work of the international civil aviation organization (icao) and eurocontrol in route design frequency and secondary surveillance radar (ssr) transponder code management is recognised and should be used as a basis when optimising the development and operation of the network at union level +1 annex i the european route network design (ernd) function part a objective the ernd function shall (a) achieve an european route network improvement plan for the safe and efficient operation of air traffic taking due account of the environmental impact (b) facilitate within the european route network improvement plan the development of an airspace structure offering the required level of safety capacity flexibility responsiveness environmental performance and seamless provision of expeditious air navigation services with due regard to security and defence needs (c) ensure regional interconnectivity and interoperability of the european route network within the icao eur region and with adjacent icao regions +regulation (ec) no 551/2004 requires the adoption of detailed implementing rules to coordinate and harmonise the processes and procedures to enhance the efficiency of aeronautical frequency management and a central function to coordinate the early identification and resolution of frequency needs to support the design and operation of the network +the network manager shall take in its area of responsibility measures aiming to ensure that applicable european union-wide performance targets referred to in article 9 of regulation (eu) no 691/2010 are met +article 14 consultation process a process shall be established to organise the appropriate and regular consultation of the member states and operational stakeholders +the european route network improvement plan is a rolling plan that shall reflect all the elements necessary to ensure that european airspace is designed as a single entity and meets the applicable performance targets +the network functions should be without prejudice to article 13 of regulation (ec) no 549/2004 aiming at safeguarding essential security or defence policy interests or the application of flexible use of airspace provided for in article 7 of regulation (ec) no 551/2004 +responses by member states and air navigation service providers to the coordination of proposed amendments to ssr code transponder allocations and updates of the ssr transponder code allocation list shall as a minimum (a) identify whether or not any conflict or hazard between ssr transponder code allocations is foreseen (b) confirm whether or not operational requirements or efficiency will be adversely affected (c) confirm that amendments to ssr transponder code allocations can be implemented in accordance with required timescales annex iv template for network strategy plan the network strategy plan shall be based on the following structure introduction scope of the network strategy plan (geographical and time period) preparation of the plan and validation process overall context and requirements description of the current and planned network situation including ernd atfm airports and scarce resources challenges and opportunities related to the time period of the plan (including traffic demand forecast and worldwide evolution) performance objectives and business requirements as expressed by the different stakeholders and the european union-wide performance targets strategic vision description of the strategic way the network will develop and progress to successfully respond to the performance targets and business requirements compliance with the performance scheme compliance with the european atm master plan strategic objectives description of the network strategic objectives including the cooperative aspects of the participating operational stakeholders in terms of roles and responsibilities indicating how the strategic objectives will answer the requirements identifying how progress towards these objectives will be measured indicating how the strategic objectives will impact the industry and other concerned areas +the member states shall ensure appropriate military involvement in all activities related to the network functions +the network manager shall perform the following functions (a) the design of the european route network as set out in annex i (b) the coordination of scarce resources in particular (i) radio frequencies within aviation frequency bands used by general air traffic as set out in annex ii (ii) ssr transponder codes as set out in annex iii the commission may add other functions to the network manager under articles 6 or (4)(c) of regulation (ec) no 551/2004 +in case of disagreement on the arrangements referred to in paragraph 1 of part b of this annex the network manager or the member states concerned shall bring the matter to the commission for action the commission shall act in accordance with the procedure referred to in article 5 of regulation (ec) no 549/2004 +article 8 relations with operational stakeholders in order to perform its tasks of monitoring and improvement of the overall performance of the network the network manager shall develop appropriate working arrangements provided for in article 15 with the operational stakeholders +as air traffic flow management (atfm) is an integral part of the network functions an appropriate link to commission regulation (eu) no 255/2010 of 25 march 2010 laying down common rules on air traffic flow management is required +overall network operations planning process description of the overall network operations planning process description of the strategic way the network operations plan will evolve and progress to successfully respond to the operational performance requirements and other performance targets set under the performance regulation description of tools and data used +where agreement cannot be reached on issues of major network significance the network management board shall refer the case to the commission for further action the commission shall inform the single sky committee +the network manager shall confirm or modify the measures concerned within 5 working days or within 48 hours in case of network crisis +to ensure appropriate connectivity of the european route network improvement plan the network manager and the member states shall include third countries in the cooperative decision-making process in accordance with article appropriate cooperation shall be ensured between on the one hand the network manager and its expert level detailed working arrangements supporting the development of the european route network improvement plan and on the other hand the relevant icao expert level working arrangements covering route network improvements at the interface +the members listed in points (a) (b) and (c) of paragraph 3 shall have the right to reject proposals which impact on (a) sovereignty and responsibilities of member states in particular relating to public order public security and defence matters as set out in article 13 of regulation (ec) no 549/2004 (b) the compatibility of network management board activities with the aims and objectives of this regulation (c) the impartiality and equity of the network management board +the initial arrangements for the coordination of radio frequencies shall be fully compatible with the existing ones evolution of these arrangements shall be specified in cooperation with the national frequency managers and reduce overheads as far as practical +article 10 relations with functional airspace blocks member states shall ensure close cooperation and coordination between the functional airspace block and the network manager such as in strategic planning level and tactical daily flow and capacity management +the function of european route network design shall be executed without prejudice to the reservations or restrictions of a volume of airspace for exclusive or specific use by the member states the network manager shall encourage and coordinate the availability of conditional routes through those areas in accordance with commission regulation (ec) no 2150/2005 (8) +the network manager and national frequency managers shall agree on overall priorities for the function to improve the design and operation of the european aviation network these priorities shall be documented in the form of a frequency part of the network strategy plan and the network operations plan upon which stakeholders are to be consulted in particular prioritisation may consider specific bands areas and services +security the network manager shall have a security management system which covers all the network functions it performs according to the following principles it shall (a) ensure the security of its facilities and personnel so as to prevent an unlawful interference that could impact the safety of the network functions it manages (b) ensure the security of operational data it receives or produces or otherwise employs so that access to it is restricted only to those authorised (c) define the procedures relating to security risk assessment and mitigation security monitoring and improvement security reviews and lesson dissemination (d) define the means designed to detect security breaches and to alert personnel with appropriate security warnings (e) define the means of containing the effects of security breaches and to identify recovery action and mitigation procedures to prevent reoccurrence +the voting members of the network management board shall be appointed upon proposals from their organisations after a positive opinion of the single sky committee +article 11 civil-military cooperation the network manager shall ensure that appropriate arrangements are in place to allow and support adequate coordination with national military authorities +the nomination of the network manager shall take the form of a commission decision after consultation of the single sky committee in accordance with article 5 of regulation (ec) no 549/2004 and not later than 3 months after the adoption of this regulation that decision shall include the terms and conditions of the nomination including the financing and the conditions of its withdrawal the commission shall assess compliance with those conditions at the end of each reference period referred to in paragraph 2 +the consultation shall focus on the detailed working arrangements provided for in article 15 the network strategy plan the network operations plan progress in the implementation of the plans reports to the commission and on operational issues as appropriate +a cooperative decision-making process shall include (a) a consultation process provided for in article 14 (b) detailed working arrangements and processes for operations provided for in article 15 +strategic planning description of the short/medium term planning the priorities for each of the strategic objectives the implementation of each of the strategic objectives in terms of required deployment of technology architectural impact human aspects involved cost benefits as well as the necessary governance resources and regulation the required operational stakeholder participation on each element of the plan including their roles and responsibilities the agreed level of involvement of the network manager to support the implementation of each element of the plan for each individual function +in accordance with article 1 of regulation (ec) no 551/2004 and without prejudice to the operation of state aircraft under article 3 of the chicago convention on international civil aviation member states shall apply this regulation in airspace placed under their responsibility in icao eur and afi regions +before the establishment of a functional airspace block member states and air navigation service providers shall cooperate in such a way that consolidated views are formulated on aspects related to activities of the network manager +the events linked to the eruption of the eyjafjallaj kull volcano in april 2010 have demonstrated the need to create a central entity that can take the lead in coordinating the management of mitigating measures at local regional and network level in order to secure the provision of a timely response to future crisis situations affecting aviation +the national frequency managers shall report to the network manager radio interference cases that impact the european aviation network the network manager shall record their occurrence and support their assessment the network manager shall at the request of national frequency manager(s) coordinate or provide any support necessary to resolve or mitigate such cases including actions with the commission and the cept +there should be coordination between the network functions and the operations organised at level of functional airspace blocks +member states and functional airspace blocks shall ensure that prior to implementation national and functional airspace blocks airspace design projects are compatible and consistent with the european route network improvement plan and are coordinated with those states impacted by them and the network manager +the network operations plan shall identify operational constraints bottlenecks measures of improvement and solutions for remediation or mitigation +the length of the term of the network manager shall coincide with the reference periods for the performance scheme provided for in article 7 of regulation (eu) no 691/ it shall be sufficiently long to enable maturity to develop in performance of these functions it shall not be shorter than two reference periods and may be renewed +the network strategy plan shall provide information set out in annex iv +having due regard to military operation effectiveness civil-military cooperation and coordination are of utmost importance in order to achieve the required objectives whilst decisions relating to the content scope or carrying out of military operations and training performed under the operational air traffic regime do not fall within the sphere of competence of the union it is important to cover the interfaces between these operations and those covered by this regulation in the interest of safety and mutual efficiency +the network manager with the support of the eaccc shall be responsible for (a) coordinating the management of response to the network crisis in accordance with the eaccc rules of procedure involving close cooperation with corresponding structures in member states (b) supporting the activation and coordination of contingency plans at member state level (c) the elaboration of mitigating measures at network level to secure the provision of a timely response to such network crisis situations to protect and ensure the continued and safe operation of the network for this purpose the network manager shall (i) monitor the network situation with regard to network crises on a 24-hour basis (ii) ensure an effective information management and communication through the dissemination of accurate timely and consistent data to support the application of risk management principles and processes in decision-making processes (iii) facilitate the organised collection and centralised storage of that data (d) highlighting where appropriate to the commission the agency or member states opportunities for additional support for mitigation of the crisis including liaising with operators of other modes of transport who may identify and implement intermodal solutions (e) monitoring and reporting on the network recovery and sustainability chapter v monitoring reporting and oversight article 20 monitoring and reporting the network manager shall establish a process of continuous monitoring of (a) the operational network performance (b) the measures taken and the performance outcome achieved by the operational stakeholders and states (c) the effectiveness and efficiency of each of the functions covered by this regulation +the continuous monitoring shall identify any potential deviation from the network strategy plan and network operations plans the operational stakeholders shall assist the network manager in this task by performing certain tasks including but not limited to the provision of data +the network manager member states functional airspace blocks and air navigation service providers as part of functional airspace blocks or individually through the cooperative decision-making process shall ensure that the following principles apply in relation to airspace utilisation and capacity management (a) airspace structures shall be planned to facilitate flexible and timely airspace use and management with regard to routing options traffic flows sector configuration schemes and the configuration of other airspace structures (b) airspace structures should accommodate the establishment of additional route options while ensuring their compatibility (capacity considerations and sector design limitations) part d on-going monitoring of performance achievements at network level to ensure the regular performance improvements the network manager in close cooperation with states functional airspace blocks and operational stakeholders shall undertake a regular review of the effectiveness of the implemented airspace structures +the single sky committee shall give an opinion on (a) the nomination of the network manager (b) the appointment of the chairperson of the network management board (c) the appointment of the voting members of the network management board (d) the rules of procedure of the network management board (e) the network strategy plan and in particular the objectives of this plan at an early stage (f) the annual budget of the network manager (g) the rules of procedure of the european aviation crisis coordination cell (h) the cooperative decision-making processes the consultation processes as well as the detailed working arrangements and processes for operations for the network functions +to fulfil its tasks the network manager shall ensure the following (a) the availability operations and sharing of tools processes and consistent data to support the cooperative decision-making process at network level including but not limited to flight plan processing and data management systems (b) the facilitation and coordination between operational stakeholders and support to these stakeholders in the deployment and implementation of the plans and the related network measures following cooperative decision-making (c) the appropriate operational coordination as well as optimisation interoperability and interconnectivity within its area of responsibility (d) the coordination of proposals for amendments to the appropriate icao documents relating to the network functions (e) the reporting in accordance with article 20 of all operational performance aspects including scarce resources (f) an appropriate liaison with other modes of transport +the composition of the eaccc may be enhanced on a case-by-case basis by experts depending on the nature of the specific crisis +article 15 detailed working arrangements and processes for operations the network manager shall develop detailed working arrangements and processes for operations to address planning and operational aspects taking into account in particular the specificity and requirements of the individual network functions as specified in annexes i to vi +these detailed working arrangements and processes for operations need to respect the separation of service provision and regulatory issues and to ensure that member states are involved when required +the implementation of network functions should be without prejudice to council regulation (eec) no 95/93 of 18 january 1993 on common rules for the allocation of slots at community airports (5) +the following shall be voting members of the network management board (a) one representative of air navigation service providers per functional airspace block established or under establishment with a total number of four votes for all air navigation service providers (b) four representatives of commercial and non-commercial civil airspace users (c) two representatives of the airport operators (d) two representatives of the military as air navigation service providers and airspace users +article 5 network strategy plan to guide its long term perspective the network manager shall develop maintain and implement a network strategy plan which shall be aligned with the reference period provided for in article 7 of regulation (eu) no 691/ it shall contain the performance plan and targets for the next reference period and shall give an outlook for future reference periods +the network manager shall collect consolidate and analyse all relevant data identified in annexes i to vi it shall provide this data to the commission the agency or performance review body provided for in regulation (eu) no 691/2010 as requested +operations manuals the network manager shall establish and keep up-to-date operations manuals relating to its operations for the use and guidance of operations personnel it shall ensure that (a) operations manuals contain instructions and information required by the operations personnel to perform their duties (b) relevant parts of the operations manuals are accessible to the personnel concerned (c) the operations personnel are expeditiously informed of the amendments to the operations manual applying to their duties as well as of their entry into force +the network operations plan shall include military requirements if provided by members states +the following shall also be members of the network management board (a) the chairperson appointed on the basis of technical competence and expertise upon a proposal by the commission based in particular on proposals from the voting members of the network management board and after a positive opinion of the single sky committee (b) one representative of the commission (c) one representative of eurocontrol (d) one representative of the network manager +member states will remain responsible for the detailed development approval and establishment of the airspace structures for the airspace under their responsibility part b planning principles without prejudice to member states sovereignty over the airspace and to the requirements of the member states relating to public order public security and defence matters the network manager member states third countries airspace users functional airspace blocks and air navigation service providers as part of functional airspace blocks or individually shall develop using a cooperative decision-making process the european route network improvement plan while applying the airspace design principles set out in this annex the european route network improvement plan shall meet the performance targets set for the network manager in the performance scheme +military airspace requirements military atm service providers responsible for areas of reserved or segregated airspace shall exchange with the network manager through the relevant airspace management cell the following information according to national rules airspace availability default days/times of availability of reserved airspace ad hoc requests for unplanned use of reserved airspace release of reserved airspace to civil use whenever not required giving as much notice as possible +article 12 general requirements for network functions the network manager shall ensure that the general requirements for network functions set out in annex vi are met those requirements shall apply as from the date of adoption of the nomination decision and the network manager shall comply with them within 12 months after such date chapter iii governance of network functions article 13 cooperative decision-making network functions shall be managed through cooperative decision-making +article 2 definitions for the purposes of this regulation the definitions in article 2 of regulation (ec) no 549/2004 shall apply in addition the following definitions shall apply airport operator means the managing body of an airport as defined in point (j) of article 2 of regulation (eec) no 95/93 airport slot coordinator means the function established at coordinated airports in application of regulation (eec) no 95/93 airspace design means a process to contribute to the achievement of network related performance targets and to cater for airspace users needs as well as to ensure or increase the established safety level and increase the airspace capacity and environmental performance through the development and implementation of advanced navigational capabilities and techniques improved route networks and associated sectorisation optimised airspace structures and capacity enhancing atm procedures airspace reservation means a defined volume of airspace temporarily reserved for exclusive or specific use by categories of users airspace restriction means a defined volume of airspace within which variously activities dangerous to the flight of aircraft may be conducted at specified times (a danger area) or such airspace situated above the land areas or territorial waters of a state within which the flight of aircraft is restricted in accordance with certain specified conditions (a restricted area) or such airspace situated above the land areas or territorial waters of a state within which the flight of aircraft is prohibited (a prohibited area) airspace structure means a specific volume of airspace designed to ensure the safe and optimal operation of aircraft airspace utilisation means the way that airspace is operationally used airspace users representative means any legal person or entity representing the interests of one or several categories of users of air navigation services aviation frequency band means an entry in the itu radio regulations table of frequency allocations of a given frequency band in which frequency assignments are made for the purpose of general air traffic atc sector means a defined volume of airspace for which an associated controller(s) has atc responsibility at any given time air traffic service route (ats route) means a specified part of the airspace structure designed for channelling the flow of traffic as necessary for the provision of air traffic services civil-military coordination means the interaction between civil and military authorities and components of air traffic management necessary to ensure safe efficient and harmonious use of the airspace conditional route (cdr) means an ats route that is only available for flight planning and use under specified conditions cooperative decision making means a process in which decisions are made based on a constant interaction and consultation with member states operational stakeholders and other actors as appropriate network crisis means a state of inability to provide air navigation service at required level resulting in a major loss of network capacity or a major imbalance between network capacity and demand or a major failure in the information flow in one or several parts of the network following an unusual and unforeseen situation european route network improvement plan means the plan developed by the network manager in coordination with the operational stakeholders that includes the result of its operational activities with respect to route network design on short and medium terms in accordance with the guiding principles of the network strategy plan free route airspace means a specific airspace within which users can freely plan their routes between an entry point and an exit point without reference to the ats route network frequency assignment means authorisation given by a member state to use a radio frequency or radio frequency channel under specified conditions impact on the network means in the context of the radio frequency function set out in annex ii a situation when a radio frequency assignment will degrade obstruct or interrupt the functioning of one or more radio frequency assignments of the network or will counter the optimal use of aviation frequency bands within the scope of this regulation multiple route options means the availability to the airspace user of more than one routing option on the ats route network third countries means non-member states that are members of eurocontrol or have concluded an agreement with the union on the implementation of the single european sky or are participating in a functional airspace block network manager means the body established under article 6 of regulation (ec) no 551/2004 to perform the duties provided for in that article and this regulation network operations plan means the plan developed by the network manager in coordination with the operational stakeholders to organise its operational activities in the short and medium term in accordance with the guiding principles of the network strategic plan for the european route network design (ernd)-specific part of the network operations plan it includes the european route network improvement plan network strategy plan means the plan developed by the network manager consistent with the european atm master plan in coordination with member states and the operational stakeholders defining the guiding principles for the network operation and its long term perspective operating organisation means an organisation responsible for the provision of engineering and technical services supporting air traffic communication navigation or surveillance services operational requirements means the requirements of the network in terms of safety capacity and efficiency operational stakeholders means the civil and military airspace users civil and military air navigation service providers airport operators airport slot coordinators and operating organisations and any additional stakeholder groups considered relevant for the individual functions sector configuration means a scheme combining sectors that are constructed and best placed to satisfy the operational requirements and airspace availability user required route means the desirable routing that is declared by the aircraft operators at the airspace design stage to meet their needs chapter ii organisation and management of network functions article 3 establishment of a network manager for the purpose of the performance of the tasks necessary for the execution of functions provided for in article 6 of regulation (ec) no 551/2004 and in the annexes to this regulation an impartial and competent body (the network manager) shall be established +member states cooperating in a functional airspace block shall ensure that consolidated views are formulated related to the network functions +article 19 responsibilities of the network manager and the eaccc the network manager in conjunction with the eaccc members shall be responsible for activating and deactivating the eaccc +where the network manager finds its actions hindered by one or several parties the matter shall be referred to the network management board for resolution +the icao has developed guidance material relevant for the ssr transponder code and radio frequency functions and operates a system of registering frequency assignments for general air traffic purposes in the icao european region currently facilitated by eurocontrol +operational stakeholders concerned with the individual measures taken by the network manager under article 7 may request the revision of such measures within 5 working days of their adoption the request of revision shall not suspend the individual measures +the data regarding the changes to projects that require checking for compatibility and that need to be made available to the network manager include but are not limited to (a) changes in route alignment (b) changes in route direction (c) changes in route purpose (d) free route airspace description including associated utilisation rules (e) route utilisation rules and availability (f) changes in vertical or horizontal sector boundary (g) addition or removal of significant points (h) changes in cross-border airspace utilisation (i) changes to the coordinates of significant points (j) changes affecting data transfer (k) changes affecting data published in aeronautical information publications (l) changes affecting letters of agreement with regard to airspace design and utilisation the network manager and member states shall in the context of this annex through the cooperative decision-making process develop common proposals for amendment of the appropriate icao documents in particular for amendments of icao documents related to ats routes over high seas member states shall apply the applicable icao coordination procedures the network manager member states airspace users airport operators functional airspace blocks and air navigation service providers as part of functional airspace blocks or individually shall through the cooperative decision-making process continuously review the european route network improvement plan to take into account new or changing demands on the airspace continuous coordination will be ensured with the military authorities part c airspace design principles with the development of the european route network improvement plan the network manager member states third countries functional airspace blocks and air navigation service providers as part of functional airspace blocks or individually shall within the cooperative decision-making process adhere to the following airspace design principles (a) the establishment and configuration of airspace structures shall be based on operational requirements irrespective of national or functional airspace block borders or fir boundaries and shall not necessarily be bound by the division level between upper and lower airspace (b) the design of airspace structures shall be a transparent process showing decisions made and their justification through taking into account the requirements of all users whilst reconciling safety capacity environmental aspects and with due regard to military and national security needs (c) the present and forecast traffic demand at network and local level and the performance targets shall be the input for the european route network improvement plan with a view to satisfying the needs of the main traffic flows and airports (d) ensure vertical and horizontal connectivity including terminal airspace and the airspace structure at the interface (e) the possibility for flights to operate along or as near as possible to user required routes and flight profiles in the en route phase of flight (f) the acceptance for assessment and possible development of all airspace structures proposals including free route airspace multiple route options and cdrs received from stakeholders having an operational requirement in that area (g) the design of airspace structures including free route airspace and atc sectors shall take into account existing or proposed airspace structures designated for activities which require airspace reservation or restriction to that end only such structures that are in accordance with the application of fua shall be established such structures shall be harmonised and made consistent to the largest possible extent across the entire european network (h) atc sector design development shall commence with the required route or traffic flow alignments within an iterative process that will ensure compatibility between routes or flows and sectors (i) atc sectors shall be designed to enable the construction of sector configurations that satisfy traffic flows and are adaptable and commensurate with variable traffic demand (j) agreements on service provision shall be established in cases where atc sectors require for operational reasons to be designed across national or functional airspace block borders or fir boundaries +article 23 financing of the network manager member states shall take the necessary measures for the funding of the network functions entrusted to the network manager based on air navigation charges the network manager shall establish its costs in a transparent manner +the development of an european route network improvement plan shall rely on a cooperative decision-making process the european route network improvement plan shall form the ernd-specific part of the network operations plan and present detailed rules implementing the ernd-part of the network strategy plan +member states shall ensure that the use of aviation frequency bands by military users is appropriately coordinated with the national frequency managers and the network manager annex iii the transponder code function part a requirements for the transponder code function the objectives of this function are (a) to improve the robustness of the code allocation process through allocation of clear roles and responsibilities to all involved stakeholders with the overall network performance at the centre of code allocation determination (b) to provide increased transparency of code allocations and of the actual code usage enabling the better assessment of the overall network efficiency (c) through enshrinement in regulation to provide the regulatory basis allowing better enforcement and oversight +article 6 network operations plan to implement the network strategy plan at operational level the network manager shall develop a detailed network operations plan +the network operations plan shall include the european route network improvement plan and the equivalent for radio frequencies and the ssr transponder codes +special events overview of special events with significant atm impact individual special events and their handling from an network perspective major military exercises +personnel requirements the network manager shall employ appropriately skilled personnel to ensure that the network functions allocated to it are performed in a safe efficient continuous and sustainable manner in this context it shall establish policies for the training of personnel +implementation of the performance plan description of the measures put in place by the network management board to achieve the performance targets such as monitoring mechanisms to ensure that the safety activities and business plans are implemented measures to monitor and report on the implementation of the performance plans including how to address the situation if targets are not met during the reference period +this review shall include but it is not limited to (a) traffic demand evolution (b) capacity and flight efficiency performance and constraints at state functional airspace block or network level (c) evaluation of airspace utilisation aspects from both a civil and military perspective (d) evaluation of sectorisation and sector configurations used (e) evaluation of airspace structures integrity and continuity (f) informing the commission in cases where the required remedial action exceeds the scope of network managers competencies annex ii the radio frequency function part a requirements for the execution of the function member states shall nominate a competent person authority or organisation as national frequency manager with the responsibility for ensuring that frequency assignments are made modified and released in accordance with this regulation member states shall notify the commission and the network manager of the names and addresses of those persons at latest 4 months after the adoption of this regulation +the network manager shall submit annually a report to the commission and the agency on the measures taken to fulfil its tasks the report shall address individual network functions as well as the total network situation and shall be closely linked to the content of the network strategy plan and the network operations plan the commission shall inform the single sky committee +the network manager in coordination with national military authorities shall ensure that the necessary measures are taken to ascertain that the allocation and use of ssr transponder codes for military needs have no detrimental impact on the safety or efficient flow of general air traffic part c requirements for the provision of data applications submitted for new or amended allocations of ssr transponder codes shall comply with the format and data conventions completeness accuracy timeliness and justification requirements of the process laid down in point 4 of part a +the network operations plan shall provide the information set out in annex v +15 7 2011 en official journal of the european union l 185/1 commission regulation (eu) no 677/2011 of 7 july 2011 laying down detailed rules for the implementation of air traffic management (atm) network functions and amending regulation (eu) no 691/2010 (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 549/2004 of the european parliament and of the council of 10 march 2004 laying down the framework for the creation of the single european sky (the framework regulation) (1) and in particular article 11 thereof having regard to regulation (ec) no 551/2004 of the european parliament and of the council of 10 march 2004 on the organisation and use of the airspace in the single european sky (the airspace regulation) (2) and in particular article 6 thereof whereas regulation (ec) no 551/2004 aims at supporting the concept of a progressively more integrated operating airspace within the context of the common transport policy and to establish common procedures for design planning and management ensuring the efficient and safe performance of air traffic management network functions should be aimed at supporting initiatives at national level and at the level of functional airspace blocks +the commission may appoint independent and recognised experts as advisors who shall serve in their personal capacity and represent a broad range of disciplines encompassing major aspects of the network functions states participating in the work of the network manager shall propose candidates to that effect +article 4 tasks of the network manager to support the execution of the functions listed in article 3 the network manager shall perform the following tasks with a view to a continuous improvement of the network operations in the single european sky contributing to the european union-wide performance targets provided for in regulation (eu) no 691/2010 and in particular (a) develop maintain and implement a network strategy plan specified in article 5 in compliance with the performance scheme provided for in regulation (eu) no 691/2010 and the european atm master plan and taking into account any relevant icao air navigation plans (b) detail the network strategy plan through a network operations plan as further specified in article 6 addressing in particular european union-wide performance targets covering 3 to 5 year annual seasonal weekly and daily periods (c) develop an integrated european route network design set out in annex i (d) provide the central function for the coordination of radio frequencies as required by article 6(4)(b) of regulation (ec) no 551/2004 and set out in annex ii to this regulation (e) coordinate the improvement of the ssr transponder code allocation process set out in annex iii (f) organise the management and operation of the functions and execute in particular the obligations of the central unit for atfm (g) provide a consolidated and coordinated approach to all planning and operational activities of the network including monitoring and improvement of its overall performance (h) provide support for network crisis management (i) support the different operational stakeholders in the execution of the obligations that are placed on them in the deployment of air traffic management and/or air navigation services (atm/ans) systems and procedures in accordance with the european atm master plan (j) provide support to entities entrusted with the investigation of civil aviation accidents and incidents or with the analysis of occurrences as requested by those entities within the scope of regulation (eu) no 996/2010 of the european parliament and of the council (7) (k) ensure coordination with other regions and third countries which do not participate in the work of the network manager +when a frequency assignment is required the applicant shall file a request with the appropriate national frequency manager including all the relevant data and justification +the network functions may be expanded in accordance with article 6 of regulation (ec) no 551/2004 +the network manager and the national frequency managers shall further develop and enhance frequency management procedures planning criteria data sets and processes to optimise the use and occupancy of radio spectrum by general air traffic the network manager shall at the request of member state(s) propose these further at regional level +article 7 competences of the network manager without prejudice to the responsibilities of the member states the network manager shall in the execution of its tasks adopt individual measures which result from the cooperative decision-making process the parties concerned with those measures shall implement them +the eaccc shall prepare its rules of procedure for adoption by the network management board +the consultation process may vary depending on the nature of the individual network functions in order to ensure that regulatory issues can be addressed member states shall be involved when required +the network manager shall make available the resources required for the establishment and operation of the eaccc +article 24 liability the network manager shall put arrangements in place to cover liability related to the execution of its tasks the method employed to provide the cover shall be appropriate to the potential loss and damage in question taking into account the legal status of the network manager and the level of commercial insurance cover available +the member states shall make use of the central register to fulfil their administrative frequency assignment registration obligations towards icao +description of the long term planning the intent to reach each of the strategic objectives in terms of required technology and corresponding r d aspects architectural impact human aspects business case governance required and regulation required as well as the associated safety and economic justification for these investments the required operational stakeholder participation on each element of the plan including their roles and responsibilities +the plan shall include (a) common general principles complemented by technical specifications for airspace design (b) military airspace requirements (c) an agreed european route network and where feasible free route airspace structure designed to meet all user requirements with details covering all the airspace change projects (d) route network and free route airspace utilisation rules and availability (e) indications on recommended atc sectorisation in support of the ats airspace structure to be designed decided and implemented by the member states (f) guidelines for airspace management (g) a detailed development timetable (h) the calendar for a common publication and implementation cycle through the network operations plan (i) an overview of the current and expected network situation including expected performance based on current and agreed plans +where stakeholders are not satisfied with the consultation the issue shall first be referred to the appropriate consultation arrangement at individual function level where resolution of the issue cannot be reached at individual function level the matter shall be referred to the network management board for resolution +member states shall ensure that ssr transponder codes are assigned to aircraft in accordance with the ssr transponder code allocation list contained in point 3 +regulation (eu) no 691/2010 should therefore be amended accordingly +the measures provided for in this regulation are in accordance with the opinion of the single sky committee has adopted this regulation chapter i general provisions article 1 subject matter and scope this regulation lays down detailed rules for the implementation of air traffic management (atm) network functions in accordance with article 6 of regulation (ec) no 551/2004 in order to allow optimum use of airspace in the single european sky and ensure that airspace users can operate preferred trajectories while allowing maximum access to airspaces and air navigation services +article 9 relations with member states in the execution of its tasks the network manager shall take due consideration of the responsibilities of the member states +the operational stakeholders shall ensure that the measures implemented at local or functional airspace block level are compatible with those adopted through the cooperative decision-making process at network level +in article 17 the following paragraph 2a is inserted 2a the commission shall monitor the implementation of the performance plan of the network manager if during the reference period targets are not met the commission shall apply the appropriate measures specified in the performance plan with a view to rectifying the situation for this purpose the annual values in the performance plan shall be used in annex iii paragraphs 3 and 4 are replaced by the following environment route design not applicable during the first reference period during the second reference period assessment of the process on route design used in the performance plan and its consistency with the process for the development of the european route network improvement plan developed by the network manager +the network manager shall develop and maintain a central register which shall be designed to store all radio frequency assignment data as described in point 14 +a formal process for establishing assessing and coordinating the requirements for ssr transponder code allocations shall be implemented by the network manager taking into account all required civil and military uses of ssr transponder codes +the operational stakeholders shall provide the network manager with the relevant data listed in annexes i to vi complying with any deadlines completeness requirements or accuracy requirements agreed with the network manager for its delivery +the network manager shall at the request of national frequency manager(s) undertake actions with the commission and the cept to address any concerns with other industry sectors +the network manager shall prepare and coordinate network related strategic spectrum aspects which are to be appropriately documented in the network strategy plan and the network operations plan the network manager shall support the commission and member states in the preparation of common aviation positions for coordinated member state contributions to international forums and in particular to the european conference of postal and telecommunications administrations (cept) and international telecommunications union (itu) +it is beneficial to entrust a single body to coordinate the various network functions in order to develop consistent short and long term optimisation solutions at network level compliant with the performance objectives however network functions should be delivered by the network manager and at member state and functional airspace block level according to the responsibilities set out by this regulation +the obligations of the member states towards the icao regarding route design frequency and ssr transponder code management should be respected and should be implemented more effectively for the network with coordination by and support from the network manager +the network manager shall contribute to the implementation of the performance scheme in accordance with regulation (eu) no 691/2010 +the network operations plan shall in particular lay down measures for the achievement of the european union-wide performance targets provided for in regulation (eu) no 691/2010 covering a 3 to 5 year an annual a seasonal a weekly and a daily period +applications for ssr transponder code allocations received as part of the process laid down in point 4 shall be checked by the network manager for compliance with the requirements of the process for format and data conventions completeness accuracy timeliness and justification +the execution of the network functions should be subject to specific performance targets which require amendments to commission regulation (eu) no 691/2010 of 29 july 2010 laying down a performance scheme for air navigation services and network functions and amending regulation (ec) no 2096/2005 laying down common requirements for the provision of air navigation services (6) those specific performance targets may be further developed based on practical experience with the execution of the performance scheme +the documents referred to in paragraph 1 shall be adopted by the network management board by simple majority of its voting members +article 27 entry into force this regulation shall enter into force on the 20th day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 7 july for the commission the president jos manuel barroso oj l 96 31 3 2004 p +effective stakeholder consultations should take place at national functional airspace block and network levels +permanent members of the eaccc shall consist of one representative of the member state holding the presidency of the council one representative of the commission one representative of the agency one representative of eurocontrol one representative of the military one representative of the air navigation service providers one representative of airports and one representative of the airspace users +the formal process laid down in point 4 shall include as a minimum relevant agreed procedures timescales and performance targets for the completion of the following activities (a) submission of applications for ssr transponder code allocations (b) assessments of applications for ssr transponder code allocations (c) coordination of proposed amendments to ssr code transponder allocations with member states and third countries in accordance with the requirements laid down in part b (d) periodic audit of the ssr code allocations and needs with a view to optimisation of the situation including re-allocation of existing code allocations (e) periodic amendment approval and distribution of the overall ssr code transponder allocation list laid down in point 3 (f) notification assessment and resolution of unplanned conflicts between assignments of ssr transponder codes (g) notification assessment and resolution of wrong assignments of ssr transponder codes detected at code retention checks (h) notification assessment and resolution of unplanned shortfalls in allocations of ssr transponder codes (i) provision of data and information in accordance with the requirements laid down in part c +the european route network should be designed to optimise routings from a gate-to-gate perspective in all phases of flight taking in particular into account flight efficiency and environmental aspects +air navigation service providers functional airspace blocks and airport operators shall ensure that their operation plans are aligned with the network operations plan the network manager shall ensure the coherence of the network operations plan +where a member states responsibilities prevent the adoption of such individual measures the network manager shall refer such a case to the commission for further consideration +capacity delay level comparison of the expected level of en route atfm delay used in the performance plans with a reference value provided by the capacity planning process of eurocontrol and in the network operations plan of the network manager +contingency plans the network manager shall establish contingency plans for all the functions it provides in the case of events which result in significant degradation or interruption of its operations +airports being entry and exit points to the network are key contributors to overall network performance therefore the network functions should liaise through the union observatory on airports capacity with airport operators acting as ground coordinators with the objective to optimise capacity on the ground thus improving the overall network capacity +an ssr transponder code allocation list that describes the complete and up-to-date allocation of ssr codes in the airspace laid down in article 1 shall be made available to member states air navigation service providers and third countries at all times by the network manager +decision no 676/2002/ec of the european parliament and of the council of 7 march 2002 on a regulatory framework for radio spectrum policy in the european community (radio spectrum decision) creates a policy and legal framework for that area +the member states shall ensure appropriate representation of the military air navigation service providers and military airspace users in all operational working and consultation arrangements established by the network manager +the allocation of radio spectrum takes place in the context of the international telecommunication union (itu) the member states have a responsibility to highlight the civil aviation requirements and to subsequently use the resource allocated to general air traffic in an optimal manner +when member states are involved in operational issues related to the network functions they shall be part of the cooperative decision-making process and shall implement the results agreed in this process at national level +article 25 review the commission shall review the effectiveness of the execution of the network functions by 31 december 2013 at the latest and regularly thereafter taking appropriate account of the reference periods for the performance scheme provided for in regulation (eu) no 691/2010 +members shall have an alternate +article 21 oversight of the network manager the commission assisted by the agency in matters related to safety shall ensure the oversight of the network manager in particular in respect of the requirements contained in this regulation and other union legislation the commission shall report to the single sky committee annually or when so specifically requested chapter vi final provisions article 22 relations with third countries third countries together with their operational stakeholders may participate in the work of the network manager +the network operations plan shall be updated at regular intervals taking into account all relevant developments in the needs and requirements of the network functions +the network manager shall also perform the atfm function referred to in article 6 of regulation (ec) no 551/2004 and in regulation (eu) no 255/2010 +operational performance enhancement plans and actions at local level including description of each of the plans and actions expected to be implemented at local level description of the operational performance contributions of each of the plans and actions description of relations with third countries and work related to icao +the participants of pcf may establish subgroups to work on specific issues it would like to address within the scope of the pcf preferably by correspondence the subgroups shall report back to the pcf +the secretariat on behalf of the chairperson shall ensure that the necessary expertise and advice is provided to the participants of the pcf facilitate the elaboration of proposals by the participants of the pcf and provide its own proposals as appropriate facilitate the elaboration and evaluation of common technical-operational solutions +any supporting technical documentation agreed during the meeting may also be annexed to the minutes +the commission shall receive all pcf documentation and the results of correspondence work as per article 8 of these rules +the secretariat for the pcf shall be provided by emsa +such third parties may be reimbursed by emsa subject to emsas prior agreement and available funding for their participation expenses in accordance with the agencys rules or participate at their own expenditure before any such participation the secretariat shall notify the concerned third party on the conditions of participation +the approved minutes shall be the only official record of the meeting +by letter of its executive director dated 20 december 2010 addressed to the european commission services the european maritime safety agency has accepted to provide the secretariat for the permanent cooperation framework and to fund at least one meeting per year +directive 2009/18/ec requires the commission to adopt the rules of procedure of this permanent cooperation framework +article 12 minutes and summary records of meetings minutes reflecting the salient points of the meeting shall be drafted by the secretariat under the responsibility of the chairperson for circulation among members commission and observers +funding of meetings other than the annual meeting referred to in paragraph 1 of this article shall be subject to prior approval of emsa and availability of emsa resources or of other funding +following a vote dissenting members and/or observers have the right to have their position noted in the minutes +official correspondence to the participants shall be sent to the address which they provide for that purpose +by fulfilling its objective as per paragraph 1 above pcf also provides a means enabling the european maritime safety agency (emsa) to facilitate cooperation as provided for in article 2(e) of regulation (ec) no 1406/2002 of the european parliament and of the council (1) +the secretariat shall make available to the public a summary record of the meeting drawn up by it under the responsibility of the chairperson this record shall summarise conclusions reached under each agenda item +the members of the pcf shall establish a work programme foreseeing priorities and targets related to the above objectives at regular intervals +emsa will reimburse members states and observers states the expenses for the annual meeting referred to in paragraph 1 incurred by only one designated representative for the purpose of the pcf meeting in accordance with the agencys rules members states and observers states bear the expenses of additional accompanying persons +article 4 participation of third parties the chairperson may in close coordination with the secretariat invite third parties such as representatives of other states and organisations or individuals to participate in a pcf meeting as practicable and appropriate +article 7 agreement upon best modalities of cooperation the work within the pcf will primarily focus on agreement on the best modalities for cooperation as foreseen in article 10 of directive 2009/18/ec it shall endeavour to achieve the broadest agreement possible +unless otherwise agreed by the participants the pcf and subgroups shall meet at emsa premises +the secretariat shall circulate the draft minutes within 30 calendar days of the meeting the members commission and observers may send any comments to the secretariat within 30 calendar days of receipt of the draft minutes the minutes shall be formally approved at the following meeting +in urgent and/or exceptional cases the chairperson may depart from the timeline laid down in paragraphs 3 and if another matter is requested to be considered during a meeting the chairperson will decide whether to put it on the agenda documents in support of urgent and/or exceptional matters may be submitted at any time prior to or during a meeting +the commission may request the pcf to provide information and assistance on matters related to cooperation in accident investigation and to advise it on implementation and application matters related to cooperation as necessary to attain the objectives of directive 2009/18/ec +the members and observers may propose to the pcf any agenda items submissions and presentations they wish to be considered +the agenda shall be subject to approval as the first item of business of the meeting +documents for the meeting in the format presented in the appendix shall be submitted by members commission and observers to the chairperson and secretariat before distribution of the agenda +having a substantial interest the european commission hereinafter referred to as the commission may nominate representatives to participate in all meetings or other activities of the pcf +the following countries shall be entitled to designate a representative to participate in the pcf as observers hereinafter referred to as the observers eea countries with duly designated representatives of their relevant investigative bodies member states which only have an independent focal point as referred to in article 8 of directive 2009/18/ec they shall receive meeting documents and may submit proposals and participate in the discussions +article 6 secretariat the secretariat shall assist the chairperson in carrying out his/her responsibilities arranging meetings and other activities distributing all relevant documents pertaining to meetings and correspondence work +article 2 participation in the pcf each member state with an investigative body shall duly designate a representative of its investigative body as referred to in article 8 of directive 2009/18/ec as member of the pcf hereinafter referred to as the members in accordance with the work programme and meeting agenda of the pcf the members shall be authorised to discuss agree and vote upon the best modalities of cooperation as foreseen under article 10 of the directive only members have voting rights +the chairperson shall exercise his/her responsibilities within the ambit of the objectives set out in article during meetings the chairperson shall act in accordance with customary practice the chairperson shall open and close the meetings execute the meetings agenda give the floor to speakers strive to seek consensus and summarise the discussions and conclusions of meetings +article 3 participation of the commission the commission may participate in the discussions propose agenda items submissions and presentations for pcf meetings or in other pcf activities +if consensus cannot be reached the dissenting members or observers have the right to reserve their position +the members the commission and the observers may be accompanied by additional persons subject to the consent of the chairperson of pcf when appropriate requests for additional representation should be channelled and confirmed through the secretariat +the measures provided for in this regulation are in accordance with the opinion of the committee on safe seas and the prevention of pollution from ships has adopted this regulation article 1 the rules of procedure and organisation arrangements for the permanent cooperation framework referred to in article 10 of directive 2009/18/ec are set out in the annex to this regulation +the chairperson shall endeavour to achieve consensus on all issues otherwise decisions will be made on a simple majority +article 10 attendance list at each meeting the secretariat shall draw up an attendance list specifying the participant names their government authority organisation or body that they belong to +article 14 language the working language of the pcf is english it will be used for presentations discussions and printed materials translations may not be provided +article 11 confidentiality the discussions of the participants of pcf shall be confidential +article 13 correspondence official correspondence from participants with regards to the pcf shall be addressed to the chairperson and secretariat +associated documents and the agenda shall be distributed by the secretariat to members commission and observers at least 14 calendar days prior to the meeting +article 8 meetings and subgroups meetings of the pcf shall be convened by the chairperson at least once a year in emsa premises additional meetings may be called either on his or her own initiative or at a written request supported by at least one third of the members +the deputy-chairperson shall automatically take the place of the chairperson if the chairperson is unable to attend to his/her duties if both the chairperson and deputy-chairperson are absent or unable to attend a meeting the meeting shall adopt a chairperson ad hoc +member states european commission and relevant eea countries shall be represented by no more than one person and shall notify the secretariat of the designation of their representatives and of any changes therein +article 9 meeting documents the invitation and provisional agenda to a meeting shall be sent by the secretariat to members commission and observers at least 28 calendar days prior to the meeting +article 2 this regulation shall enter into force on the 20th day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 5 july for the commission the president jos manuel barroso oj l 131 28 5 2009 p annex permanent cooperation framework for the investigation of accidents in the maritime transport sector rules of procedure and organisation arrangements for the permanent cooperation framework referred to in article 10 of directive 2009/18/ec article 1 objectives the objective of the permanent cooperation framework for the investigation of accidents in the maritime transport sector established by the member states in close cooperation with the commission hereinafter referred to as the pcf is to provide an operational platform enabling the member states investigative bodies to cooperate as referred to in article 10 of directive 2009/18/ec +the commission may address the pcf on any related issue of maritime safety as appropriate +the secretariat may participate in pcf discussions present its own submissions propose agenda items and presentations for pcf meetings or in other pcf activities +where the chairperson deems a proposal ready for a vote the secretariat shall present it for conclusion +the secretariat shall draw up the provisional agenda under the responsibility of the chairperson +article 5 chairperson and deputy-chairperson the members shall elect a chairperson and a deputy-chairperson from amongst them by vote in two separate secret ballots during a meeting the chairperson and deputy-chairperson shall hold office for a term of 2 years and shall be eligible for re-election for up to 2 further consecutive terms of office the chairperson and deputy-chairperson shall conduct their functions until their successors have been elected +6 7 2011 en official journal of the european union l 177/18 commission implementing regulation (eu) no 651/2011 of 5 july 2011 adopting the rules of procedure of the permanent cooperation framework established by member states in cooperation with the commission pursuant to article 10 of directive 2009/18/ec of the european parliament and of the council (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to directive 2009/18/ec of the european parliament and of the council of 23 april 2009 establishing the fundamental principles governing the investigation of accidents in the maritime transport sector and amending council directive 1999/35/ec and directive 2002/59/ec of the european parliament and of the council (1) and in particular article 10 thereof whereas directive 2009/18/ec requires the establishment by member states in close cooperation with the commission of a permanent cooperation framework enabling their respective investigative bodies to cooperate among themselves to the extent necessary to attain the objective of the directive +it shall apply from 1 january this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 4 may for the commission the president jos manuel barroso oj l 153 18 6 2010 p +where the information relating to a specific model being a combination of indoor and outdoor unit(s) has been obtained by calculation on the basis of design and/or extrapolation from other combinations the documentation should include details of such calculations and/or extrapolations and of tests undertaken to verify the accuracy of the calculations undertaken (including details of the mathematical model for calculating performance of such combinations and of measurements taken to verify this model) +the model of the air conditioner except single and double ducts shall be considered to comply with the provisions set out in annex i as applicable to this regulation if the average of the three units for the seasonal energy efficiency ratio (seer) or seasonal coefficient of performance (scop) if applicable is not less than the declared value minus 8 the seer and scop values shall be established in accordance with annex ii the model of a single and double duct air conditioner shall be considered to comply with the provisions set out in annex i as applicable to this regulation if the average of the results of the three units for off-mode and standby-mode conditions do not exceed the limit values by more than 10 and if the average of the energy efficiency ratio (eerrated) or coefficient of performance (coprated) is not less than the declared value minus 10 the eer and cop values shall be established in accordance with annex ii the model of the air conditioner shall be considered to comply with the provisions set out in this regulation as applicable if the average of the results of the three units for sound power level does not exceed more than 2 db(a) of the declared value +article 9 transitional provision air conditioners placed on the market before 1 january 2013 shall comply with the provisions set out in directive 2002/31/ec +the energy efficiency ratio (eerrated) and when applicable coefficient of performance (coprated) for double ducts and single ducts shall be established at the standard rating conditions as defined in table 2 of this annex +article 6 verification procedure for market surveillance purposes when member states assess the conformity of the declared energy efficiency class the annual or hourly energy consumption as appropriate and the noise emissions they shall apply the procedure laid down in annex viii +cooling-only single duct air conditioners classified in energy efficiency classes a to d (a) the following information shall be included in the label i suppliers name or trade mark ii suppliers model identifier iii text eer with a blue fan and air wave indication iv the energy efficiency the head of the arrow containing the energy efficiency class of the appliance shall be placed at the same height as the head of the arrow of the relevant energy efficiency class v rated capacity for cooling in kw rounded up to one decimal vi eerrated rounded up to one decimal vii hourly energy consumption in kwh per 60 minutes rounded up to one decimal viii sound power level for indoor unit expressed in db(a) re1 pw rounded to the nearest integer all the requested values shall be determined in accordance with annex vii (b) the design of the label shall be in accordance with point by way of derogation where a model has been granted an eu eco-label under regulation (ec) no 66/2010 a copy of the eu eco-label may be added +heating-only double duct air conditioners classified in energy efficiency classes a to d (a) the following information shall be included in the label i suppliers name or trade mark ii suppliers model identifier iii text cop with red fan and air wave indication iv the energy efficiency the head of the arrow containing the energy efficiency class of the appliance shall be placed at the same height as the head of the arrow of the relevant energy efficiency class v rated capacity for heating in kw rounded up to one decimal vi coprated rounded up to one decimal vii hourly energy consumption in kwh per 60 minutes rounded up to the nearest integer viii sound power level for indoor unit expressed in db(a) re1 pw rounded to the nearest integer all the requested values shall be determined in accordance with annex vii (b) the design of the label shall be in accordance with point by way of derogation where a model has been granted an eu eco-label under regulation (ec) no 66/2010 a copy of the eu eco-label may be added +this regulation introduces two energy efficiency scales based on the primary function and on specific aspects important to consumer given that air conditioners are used mainly in part-load conditions the efficiency testing should be changed to a seasonal efficiency measurement method except for single and double duct air conditioners the seasonal measurement method takes better into account the benefits of the inverter driven technology and the conditions in which these appliances are used the new efficiency calculation method with an ecodesign implementing measure setting minimum energy efficiency requirements higher than the current a level will lead to a reclassification of these appliances consequently split window and wall air conditioners should have a new a-g energy efficiency class scale with a added on the top of the scale every two years until the a class has been reached +cooling-only air conditioners classified in energy efficiency classes a to d (a) the information listed in point 2 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 2 5 +label of single duct air conditioners reversible single duct air conditioners classified in energy efficiency classes a to d (a) the following information shall be included in the label i suppliers name or trade mark ii suppliers model identifier iii text eer and cop for cooling and heating with a blue fan and air wave indication for eer and red fan and air wave indication for cop iv the energy efficiency the head of the arrow containing the energy efficiency class of the appliance shall be placed at the same height as the head of the arrow of the relevant energy efficiency class energy efficiency must be indicated for cooling and heating v rated capacity for cooling and heating mode in kw rounded up to one decimal vi eerrated and coprated rounded up to one decimal vii hourly energy consumption in kwh per 60 minutes for cooling and heating rounded up to one decimal viii sound power level for indoor unit expressed in db(a) re1 pw rounded to the nearest integer all the requested values shall be determined in accordance with annex vii (b) the design of the label shall be in accordance with point by way of derogation where a model has been granted an eu eco-label under regulation (ec) no 66/2010 a copy of the eu eco-label may be added +it is appropriate to provide for a review of the provisions of this regulation taking into account technological progress +heating-only single duct air conditioners classified in energy efficiency classes a to d (a) the following information shall be included in the label i suppliers name or trade mark ii suppliers model identifier iii text cop with red fan and air wave indication iv the energy efficiency the head of the arrow containing the energy efficiency class of the appliance shall be placed at the same height as the head of the arrow of the relevant energy efficiency class v rated capacity for heating in kw rounded up to one decimal vi coprated rounded up to one decimal vii hourly energy consumption in kwh per 60 minutes rounded to the nearest integer viii sound power level for indoor unit expressed in db(a) re1 pw rounded to the nearest integer all the requested values shall be determined in accordance with annex vii (b) the design of the label shall be in accordance with point by way of derogation where a model has been granted an eu eco-label under regulation (ec) no 66/2010 a copy of the eu eco-label may be added +article 10 entry into force and application this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union +the determination of the seasonal energy consumption and seasonal energy efficiency ratio (seer) and seasonal coefficient of performance (scop) shall take into account (a) european seasonal conditions as defined in table 1 of this annex (b) reference design conditions as defined in table 3 of this annex (c) electric energy consumption for all relevant modes of operation using time periods as defined in table 4 of this annex (d) effects of the degradation of the energy efficiency caused by on/off cycling (if applicable) depending on the type of control of the cooling and/or heating capacity (e) corrections on the seasonal coefficients of performance in conditions where the heating load can not be met by the heating capacity (f) the contribution of a back-up heater (if applicable) in the calculation of the seasonal efficiency of a unit in heating mode +this regulation shall not apply to a) appliances that use non-electric energy sources b) air conditioners of which the condensor- or evaporator-side or both do not use air for heat transfer medium +heating-only air conditioners classified in energy efficiency classes a to f (a) the information listed in point 3 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 3 5 +for double duct and single duct air conditioners steady-state energy efficiency performance indicators should continue to be applied as there are currently no inverter units on the market as no reclassification of these appliances is appropriate single and double duct air conditioners should have an a -d scale while these inherently less efficient than split appliances can go only up to an a energy efficiency class in a scale of a -d the more efficient split appliances can reach up to the a energy efficiency class +article 8 repeal directive 2002/31/ec is repealed from 1 january 2013 +technological developments in the energy efficiency improvement of air conditioners have been very rapid in recent years this has allowed several third-countries to introduce stringent minimum energy efficiency requirements and led to a process of introducing new energy labelling schemes based on seasonal performance today s appliances excluding single and double duct air conditioners that achieve the highest efficiency levels have largely surpassed the a efficiency levels established by directive 2002/31/ec +label of double duct air conditioners reversible double duct air conditioners classified in energy efficiency classes a to d (a) the following information shall be included in the label i suppliers name or trade mark ii suppliers model identifier iii text eer and cop for cooling and heating with a blue fan and air wave indication for eer and red fan and air wave indication for cop iv the energy efficiency the head of the arrow containing the energy efficiency class of the appliance shall be placed at the same height as the head of the arrow of the relevant energy efficiency class energy efficiency must be indicated for cooling and heating v rated capacity for cooling and heating mode in kw rounded up to one decimal vi eerrated and coprated rounded up to one decimal vii hourly energy consumption in kwh per 60 minutes for cooling and heating mode rounded up to the nearest integer viii sound power level for indoor unit expressed in db(a) re1 pw rounded to the nearest integer all the requested values shall be determined in accordance with annex vii (b) the design of the label shall be in accordance with point by way of derogation where a model has been granted an eu eco-label under regulation (ec) no 66/2010 a copy of the eu eco-label may be added +for the air conditioners except for single and double duct air conditioners the format of the label set out in annex iii shall be applied according to the following timetable (a) as regards air conditioners except single duct and double duct air conditioners placed on the market from 1 january 2013 labels with energy efficiency classes a b c d e f g shall be in accordance with point 1 1 of annex iii for reversible air conditioners with point 2 1 of annex iii for cooling-only air conditioners and with point 3 1 of annex iii for heating-only air conditioners (b) as regards air conditioners except single duct and double duct air conditioners placed on the market from 1 january 2015 labels with energy efficiency classes a a b c d e f shall be in accordance with point 1 2 of annex iii for reversible air conditioners with point 2 2 of annex iii for cooling-only air conditioners and with point 3 2 of annex iii for heating-only air conditioners (c) as regards air conditioners except single duct and double duct air conditioners placed on the market from 1 january 2017 labels with energy efficiency classes a a a b c d e shall be in accordance with point 1 3 of annex iii for reversible air conditioners with point 2 3 of annex iii for cooling-only air conditioners and with point 3 3 of annex iii for heating-only air conditioners (d) as regards air conditioners except single duct and double duct air conditioners placed on the market from 1 january 2019 labels with energy efficiency classes a a a a b c d shall be in accordance with point 1 4 of annex iii for reversible air conditioners with point 2 4 of annex iii for cooling-only air conditioners and with point 3 4 of annex iii for heating-only air conditioners +article 4 responsibilities of dealers dealers shall ensure that (a) air conditioners at the point of sale bear the label provided by suppliers in accordance with article 3 on the outside of the front or top of the appliance in such a way as to be clearly visible (b) air conditioners offered for sale hire or hire purchase where the end-user cannot be expected to see the product displayed are marketed with the information provided by suppliers in accordance with annexes v and vi (c) any advertisement for a specific model of air conditioner contains a reference to the energy efficiency class if the advertisement discloses energy-related or price information where more than one efficiency class is possible the supplier/manufacturer will declare the energy efficiency class at least in average season zone (d) any technical promotional material concerning a specific model which describes the technical parameters of an air conditioner includes a reference to the energy efficiency class(es) of the model and the instructions for use provided by the supplier where more than one efficiency class is possible the supplier/manufacturer will declare the energy efficiency class at least in average season zone (e) single ducts shall be named local air conditioners in packaging product documentation and in any promotional or advertisement material whether electronic or in paper +additionally the following information shall be included in the product fiche on air conditioners on the cooling mode when efficiency is declared on the basis of the seasonal energy efficiency ratio (seer) (a) the seer and the energy efficiency class of the model (model of a unit or of a combination of units) determined in accordance with definitions and test procedures in annex i and vii for the cooling mode as well as with the class limits defined in annex ii (b) the indicative annual electricity consumption qce in kwh/a during the cooling season determined in accordance with definitions and test procedures in annex i and vii respectively it shall be described as energy consumption xyz kwh per year based on standard test results actual energy consumption will depend on how the appliance is used and where it is located (c) the design load pdesignc in kw of the appliance in cooling mode determined in accordance with definitions and test procedures in annex i and vii respectively additionally the following notes define the information to be included in the fiche on the heating mode when efficiency is declared on the basis of seasonal coefficient of performance (scop) (a) the scop and the energy efficiency class of the model or combination in heating mode determined in accordance with definitions and test procedures in annex i and vii respectively as well as with the class limits defined in annex ii (b) the indicative annual electricity consumption for an average heating season qhe in kwh/a determined in accordance with definitions and test procedures in annex i and vii respectively it shall be described as energy consumption xyz kwh per year based on standard test results actual energy consumption will depend on how the appliance is used and where it is located (c) other designated heating seasons for which the unit is declared fit for purpose with options of warmer (optional) or colder (optional) seasons as defined in annex i (d) the design load pdesignh in kw of the appliance in heating mode determined in accordance with definitions and test procedures in annex i and vii (e) the declared capacity and an indication of the back up heating capacity assumed for the calculation of scop at reference design conditions +annex iv product fiche the information in the product fiche shall be given in the order specified below (a) supplier s name or trade mark (b) model identifier of the indoor air conditioner or of the indoor and outdoor elements of the air conditioner (c) without prejudice to any requirements under the union eco-label scheme where a model has been granted a european union eco-label under regulation (ec) no 66/2010 a copy of the eco-label may be added (d) inside and outside sound power levels at standard rating conditions on cooling and/or heating modes (e) the name and gwp of the refrigerant used and a standard text as follows refrigerant leakage contributes to climate change refrigerant with lower global warming potential (gwp) would contribute less to global warming than a refrigerant with higher gwp if leaked to the atmosphere this appliance contains a refrigerant fluid with a gwp equal to xxx this means that if 1 kg of this refrigerant fluid would be leaked to the atmosphere the impact on global warming would be xxx times higher than 1 kg of co2 over a period of 100 years never try to interfere with the refrigerant circuit yourself or disassemble the product yourself and always ask a professional +this regulation should ensure that consumers get more accurate comparative information about the performance of air conditioners +in order to facilitate the transition from directive 2002/31/ec to this regulation air conditioners labelled in accordance with this regulation should be considered compliant with directive 2002/31/ec +additionally the following notes define the information to be included in the fiche of air conditioners when efficiency is declared on the basis of energy efficiency ratio (eerrated) or coefficient of performance (coprated) (a) the energy efficiency class of the model determined in accordance with definitions and test procedures in annex i and vii as well as the class limits defined in annex ii (b) for double ducts the indicative hourly electricity consumption qdd in kwh/60 minutes determined in accordance with definitions and test procedures in annex i and vii it shall be described as energy consumption x y kwh per 60 minutes based on standard test results actual energy consumption will depend on how the appliance is used and where it is located (c) for single ducts the indicative hourly electricity consumption qsd in kwh/60 minutes determined in accordance with definitions and test procedures in annex i and vii it shall be described as energy consumption x y kwh per 60 minutes based on standard test results actual energy consumption will depend on how the appliance is used and where it is located (d) the cooling capacity prated in kw of the appliance determined in accordance with definitions and test procedures in annex i and vii (e) the heating capacity prated in kw of the appliance determined in accordance with definitions and test procedures in annex i and vii +directive 2002/31/ec should be repealed and new provisions should be laid down by this regulation in order to ensure that the energy label provides dynamic incentives for manufacturers to further improve the energy efficiency of air conditioners and to accelerate the market transformation towards energy-efficient technologies +the information provided on the label should be obtained through reliable accurate and reproducible measurement procedures which take into account the recognised state of the art measurement methods including where available harmonised standards adopted by the european standardisation bodies as listed in annex i to directive 98/34/ec of the european parliament and of the council of 22 june 1998 laying down a procedure for the provision of information in the field of technical standards and regulations (4) +moreover this regulation should specify requirements as to the information to be provided for any form of distance selling advertisements and technical promotional material of air conditioners +ipcc third assessment climate change a report of the intergovernmental panel on climate change http //www ipcc ch/publications_and_data/publications_and_data_reports shtml climate change the ipcc scientific assessment j t houghton g j jenkins j j ephraums (ed ) cambridge university press cambridge (uk) 1990 +heating-only air conditioners classified in energy efficiency classes a to e (a) the information listed in point 3 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 3 5 +cooling-only air conditioners classified in energy efficiency classes a to e (a) the information listed in point 2 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 2 5 +if the result referred to in point 2 is not achieved the market surveillance authority shall randomly select three additional units of the same model for testing +the electricity used by air conditioners accounts for a significant part of total household and commercial electricity demand in the union in addition to the energy efficiency improvements already achieved the scope for further reducing the energy consumption of air conditioners is substantial +article 3 responsibilities of suppliers suppliers shall take action as described in points (a) to (g) (a) a printed label is provided for each air conditioner respecting energy efficiency classes as set out in annex ii the label shall comply with the format and content of information as set out in annex iii for air conditioners except single and double duct air conditioners a printed label must be provided at least in the packaging of the outdoor unit for at least one combination of indoor and outdoor units at capacity ratio for other combinations the information can be alternatively provided on a free access web site (b) a product fiche as set out in annex iv is made available for air conditioners except single and double duct air conditioners a product fiche must be provided at least in the packaging of the out door unit for at least one combination of indoor and outdoor units at capacity ratio for other combinations the information can be alternatively provided on a free access web site (c) technical documentation as set out in annex v is made available electronically on request to the authorities of the member states and to the commission (d) any advertisement for a specific model of an air conditioner shall contain the energy efficiency class if the advertisement discloses energy-related or price information where more than one efficiency class is possible the supplier or the manufacturer as appropriate shall declare the energy efficiency class for heating at least in average heating season information in the cases where end-users cannot be expected to see the product displayed is to be provided as set out in annex vi (e) any technical promotional material concerning a specific model of an air conditioner which describes its specific technical parameters shall include the energy efficiency class of that model as set out annex ii (f) instructions for use are made available (g) single ducts shall be named local air conditioners in packaging product documentation and in any advertisement material whether electronic or in paper +the energy efficiency class shall be determined as set out in annex vii +one fiche may cover a number of appliance models supplied by the same supplier +this regulation should specify a uniform design and requirements as to the content of labels for air conditioners +where other information contained in the product information fiche is also provided it shall be in the form and order specified in annex iv +the size and font in which all the information referred in this annex is printed or shown shall be legible annex vii measurements and calculations for the purposes of compliance and verification of compliance with the requirements of this regulation measurements and calculations shall be made using harmonised standards the reference numbers of which have been published in the official journal of european union or other reliable accurate and reproducible method which takes into account the generally recognised state of the art methods and whose results are deemed to be of low uncertainty +cooling-only double duct air conditioners classified in energy efficiency classes a to d (a) the following information shall be included in the label i suppliers name or trade mark ii suppliers model identifier iii text eer with a blue fan and air wave indication iv the energy efficiency the head of the arrow containing the energy efficiency class of the appliance shall be placed at the same height as the head of the arrow of the relevant energy efficiency class v rated capacity for cooling in kw rounded up to one decimal vi eerrated rounded up to one decimal vii hourly energy consumption in kwh per 60 minutes rounded up to the nearest integer viii sound power level for indoor unit expressed in db(a) re1 pw rounded to the nearest integer all the requested values shall be determined in accordance with annex vii (b) the design of the label shall be in accordance with point by way of derogation where a model has been granted an eu eco-label under regulation (ec) no 66/2010 a copy of the eu eco-label may be added +provisions for the energy labelling of air conditioners were established by commission directive 2002/31/ec of 22 march 2002 implementing council directive 92/75/eec with regard to energy labelling of household air-conditioners (2) the implementing directive establishes different labelling scales for air conditioners using different technologies and the determination of energy efficiency is based on full load operation only +reversible air conditioners classified in energy efficiency classes a to d (a) the information listed in point 1 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 1 5 +cooling-only air conditioners classified in energy efficiency classes a to f (a) the information listed in point 2 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 2 5 +article 5 measurement methods the information to be provided under article 3 shall be obtained by reliable accurate and reproducible measurement procedures which take into account the recognised state of the art calculation and measurement methods as set out in annex vii +article 7 revision the commission shall review this regulation in the light of technological progress no later than five years after its entry into force in particular attention will be paid to any significant changes in market shares of various types of appliances +reversible air conditioners classified in energy efficiency classes a to f (a) the information listed in point 1 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 1 5 +label of air conditioners except single duct and double duct air conditioners heating-only air conditioners classified in energy efficiency classes a to g (a) the following information shall be included in the label i suppliers name or trade mark ii suppliers model identifier iii text scop with red fan and air wave indication iv the energy efficiency the head of the arrow containing the energy efficiency class of the appliance shall be placed at the same height as the head of the arrow of the relevant energy efficiency class energy efficiency for average heating season is mandatory indication of efficiency for warmer and colder climates is optional v design load for heating in kw for up to 3 heating seasons rounded up to one decimal values for heating seasons for which design load is not provided shall be indicated as x vi seasonal coefficient of performance (scop) for up to 3 heating seasons rounded up to one decimal values for heating seasons for which scop is not provided shall be indicated as x vii annual energy consumption in kwh per year rounded up to the nearest integer values for heating seasons for which annual energy consumption is not provided shall be indicated as x viii sound power levels for indoor and outdoor units expressed in db(a) re1 pw rounded to the nearest integer ix european map with a display of three indicative heating seasons and corresponding colour squares all the requested values shall be determined in accordance with annex vii (b) the design of the label shall be in accordance with point by way of derogation where a model has been granted an eu eco-label under regulation (ec) no 66/2010 a copy of the eu eco-label may be added +the format of the label for double duct air conditioners placed on the market from 1 january 2013 with energy efficiency classes a a a a b c d shall be in accordance with point 4 1 of annex iii for reversible double duct air conditioners with point 4 3 of annex iii for cooling-only double duct air conditioners and with point 4 5 of annex iii for heating-only double duct air conditioners +the provisions of this regulation should apply to air-to-air air conditioners up to 12 kw cooling power output (or heating power output if only heating function is provided) +in addition this regulation should specify requirements as to the technical documentation and the fiche for air conditioners +heating-only air conditioners classified in energy efficiency classes a to d (a) the information listed in point 3 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 3 5 +directive 2002/31/ec should therefore be repealed has adopted this regulation article 1 subject matter and scope this regulation establishes requirements for the labelling and the provision of supplementary product information for electric mains-operated air conditioners with a rated capacity of 12 kw for cooling or heating if the product has no cooling function +article 2 definitions in addition to the definitions set out in article 2 of directive 2010/30/eu of the european parliament and of the council (5) the following definitions shall apply air conditioner means a device capable of cooling or heating or both indoor air using a vapour compression cycle driven by an electric compressor including air conditioners that provide additional functionalities such as dehumidification air-purification ventilation or supplemental air-heating by means of electric resistance heating and appliances that may use water (either condensate water that is formed on the evaporator side or externally added water) for evaporation on the condensor provided that the device is also able to function without the use of additional water using air only double duct air conditioner means an air conditioner in which during cooling or heating the condensor or evaporator intake air is introduced from the outdoor environment to the unit by a duct and rejected to the outdoor environment by a second duct and which is placed wholly inside the space to be conditioned near a wall single duct air conditioner means an air conditioner in which during cooling or heating the condensor or evaporator intake air is introduced from the space containing the unit and discharged outside this space rated capacity (prated ) means the cooling or heating capacity of the vapour compression cycle of the unit at standard rating conditions end-user means a consumer buying or expected to buy an air conditioner point of sale means a location where air conditioners are displayed or offered for sale hire or hire-purchase additional definitions for the purpose of annexes ii to viii are set out in annex i +label of air conditioners except single duct and double duct air conditioners cooling-only air conditioners classified in energy efficiency classes a to g (a) the following information shall be included in the label i suppliers name or trade mark ii suppliers model identifier iii text seer with a blue fan and air wave indication iv the energy efficiency the head of the arrow containing the energy efficiency class of the appliance shall be placed at the same height as the head of the arrow of the relevant energy efficiency class v design load for cooling in kw rounded up to one decimal vi seasonal energy efficiency ratio (seer value) rounded up to one decimal vii annual energy consumption in kwh per year rounded up to the nearest integer viii sound power levels for indoor and outdoor units expressed in db(a) re1 pw rounded to the nearest integer all the requested values shall be determined in accordance with annex vii (b) the design of the label shall be in accordance with point by way of derogation where a model has been granted an eu eco-label under regulation (ec) no 66/2010 a copy of the eu eco-label may be added +the authorities of the member state shall test one single unit +the noise level of an air conditioner could be an important aspect for end-users in order to enable them to make an informed decision information on noise emissions should be included on the label of air conditioners +reversible air conditioners classified in energy efficiency classes a to e (a) the information listed in point 1 1 shall be included in the label (b) the design aspects of the label shall be in accordance with point 1 5 +the format of the label for single duct air conditioners placed on the market from 1 january 2013 with energy efficiency classes a a a a b c d shall be in accordance with point 5 1 of annex iii for reversible single duct air conditioners with point 5 3 of annex iii for cooling-only single ducts air conditioners and with point 5 5 of annex iii heating-only single duct air conditioners +suppliers wishing to place on the market air conditioners that can meet the requirements for higher energy efficiency classes should be allowed to provide labels showing those classes in advance of the date for mandatory display of such classes +6 7 2011 en official journal of the european union l 178/1 commission delegated regulation (eu) no 626/2011 of 4 may 2011 supplementing directive 2010/30/eu of the european parliament and of the council with regard to energy labelling of air conditioners the european commission having regard to the treaty on the functioning of the european union having regard to directive 2010/30/eu of 19 may 2010 of the european parliament and of the council on the indication by labelling and standard product information of the consumption of energy and other resources energy-related products (1) and in particular article 10 thereof whereas directive 2010/30/eu requires the commission to adopt delegated acts as regards the labelling of energy-related products representing significant potential for energy savings and having a wide disparity in performance levels with equivalent functionality +the combined effect of energy labeling set out in this regulation and of regulation implementing directive 2009/125/ec of the european parliament and of the council with regard to ecodesign requirements for air conditioners is expected to result in annual electricity savings of 11 twh by 2020 compared to the situation if no measures are taken +the format of the label for air conditioners except for single and double duct air conditioners shall be as set out in annex iii +the model of the air conditioner except single and double ducts shall be considered to comply with the provisions set out in annex i as applicable to this regulation if its seasonal energy efficiency ratio (seer) or seasonal coefficient of performance (scop) if applicable is not less than the declared value minus 8 the seer and scop values shall be established in accordance with annex ii the model of a single and double duct air conditioner shall be considered to comply with the provisions set out in annex i as applicable to this regulation if the results for off-mode and standby-mode conditions do not exceed the limit values by more than 10 and if the energy efficiency ratio (eerrated) or coefficient for performance (coprated) if applicable is not less than the declared value minus 10 the eer and cop values shall be established in accordance with annex ii the model of the air conditioner shall be considered to comply with the provisions set out in this regulation as applicable if the maximum sound power level does not exceed more than 2 db(a) of the declared value +the information contained in the fiche may be given in the form of a copy of the label either in colour or in black and white where this is the case the information listed in points 1-4 not already displayed on the label shall also be provided annex v technical documentation the technical documentation referred to in article 3 (1)(c) shall include at least the following items (a) the name and address of the supplier (b) a general description of the appliance model sufficient for it to be unequivocally and easily identified single ducts shall be referred to as local air conditioners (c) where appropriate the references for the harmonised standards applied (d) where appropriate the other calculation methods measurement standards and specifications used (e) identification and signature of the person empowered to bind the supplier (f) where appropriate the technical parameters for measurements established in accordance with annex vii (i) overall dimensions (ii) specification of the type of the air conditioner (iii) specification whether the appliance is designed for cooling or heating only or for both (iv) the energy efficiency class of the model as defined in annex ii (v) the energy efficiency ratio (eerrated) and coefficient of performance (coprated) for single and double duct air conditioners or seasonal energy efficiency ratio (seer) and seasonal coefficient of performance (scop) for other air conditioners (vi) the heating season for which the appliance is declared fit for purpose (vii) sound power levels expressed in db(a) re1 pw rounded to the nearest integer (viii) the name and gwp of refrigerant used (g) the results of calculations performed in accordance with annex vii suppliers may include additional information at the end of the above list where the information included in the technical documentation file for a particular air conditioner model has been obtained by calculation on the basis of design or extrapolation from other equivalent appliances or both the documentation shall include details of such calculations or extrapolations or both and of tests undertaken by suppliers to verify the accuracy of the calculations undertaken the information shall also include a list of all other equivalent appliance models where the information was obtained on the same basis annex vi information to be provided in the cases where end-users cannot be expected to see the product displayed the information referred to in article 4(b) shall be provided in the following order (a) the energy efficiency class of the model as defined in annex ii (b) for air conditioners other than single ducts and double ducts (i) the seasonal energy efficiency ratio (seer) and/or seasonal coefficient of performance (scop) (ii) the design load (in kw) (iii) the annual electricity consumption (iv) the cooling and/or each heating (average colder warmer) season the appliance is declared fit for purpose (c) for single duct and double duct air conditioners (i) the energy efficiency ratio (eer) and/or coefficient of performance (cop) (ii) the rated capacity (kw) (iii) for double ducts the hourly electricity consumption for cooling and/or heating (iv) for single ducts the hourly electricity consumption for cooling and/or heating (d) sound power levels expressed in db(a) re1 pw rounded to the nearest integer (e) name and gwp of refrigerant used +5 7 2011 en official journal of the european union l 176/17 commission regulation (eu) no 647/2011 of 4 july 2011 correcting the slovenian version of regulation (eu) no 258/2010 imposing special conditions on the imports of guar gum originating in or consigned from india due to contamination risks by pentachlorophenol and dioxins and repealing decision 2008/352/ec (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 178/2002 of the european parliament and of the council of 28 january 2002 laying down the general principles and requirements of food law establishing the european food safety authority and laying down procedures in matters of food safety (1) and in particular article 53 (b) (ii) thereof whereas on 25 march 2010 the commission adopted regulation (eu) no 258/2010 imposing special conditions on the imports of guar gum and repealing decision 2008/352/ec in the slovenian language version of that regulation the wording feed and food business operators was translated incorrectly and therefore a correction of that language version is necessary the other language versions are not affected +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health has adopted this regulation article 1 this correcting regulation concerns only the slovenian language version +regulation (eu) no 258/2010 should therefore be corrected accordingly +the measures provided for in this regulation are in accordance with the opinion of the standing committee on the food chain and animal health has adopted this regulation article 1 in the introductory phrase of article 9a of regulation (ec) no 1266/2007 the date 30 june 2011 is replaced by 30 june 2012 +regulation (ec) no 1266/2007 as amended by regulation (eu) no 1142/2010 (3) prolonged the period of application of the transitional measures provided for in article 9(a) of regulation (ec) no 1266/2007 for another 6 months until 30 june at the time of adoption of regulation (eu) no 1142/2010 it was expected that new rules on criteria for vector protected establishments would have been laid down in annex iii to regulation (ec) no 1266/2007 and that those transitional measures would therefore no longer be necessary however those planned amendments to annex iii to that regulation have not yet been made +article 8 of that regulation provides that movements of animals their semen ova and embryos from a holding or semen collection or storage centre located in a restricted zone to another holding or semen collection or storage centre are to be exempted from that exit ban provided that they comply with the conditions set out in annex iii to that regulation or with any other appropriate animal health guarantees based on a positive outcome of a risk assessment of measures against the spread of the bluetongue virus and protection against attacks by vectors required by the competent authority of the place of origin and approved by the competent authority of the place of destination prior to the movement of such animals +article 8 of regulation (ec) no 1266/2007 lays down conditions for exemption from the exit ban provided for in directive 2000/75/ec +accordingly it is necessary to prolong the period of application of the transitional measures provided for in article 9(a) of regulation (ec) no 1266/2007 for another year pending the adoption of the amendments to annex iii to regulation (ec) no 1266/2007 on vector protected establishments +5 7 2011 en official journal of the european union l 176/18 commission implementing regulation (eu) no 648/2011 of 4 july 2011 amending regulation (ec) no 1266/2007 as regards the period of application of the transitional measures concerning the conditions for exempting certain animals from the exit ban provided for in council directive 2000/75/ec (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to council directive 2000/75/ec of 20 november 2000 laying down specific provisions for the control and eradication of bluetongue (1) and in particular article 9(1)(c) articles 11 and 12 and the third paragraph of article 19 thereof whereas commission regulation (ec) no 1266/2007 of 26 october 2007 on implementing rules for council directive 2000/75/ec as regards the control monitoring surveillance and restrictions on movements of certain animals of susceptible species in relation to bluetongue lays down rules for the control monitoring surveillance and restrictions on movements of animals in relation to bluetongue in and from the restricted zones +regulation (ec) no 1266/2007 should therefore be amended accordingly +article 9(a) of regulation (ec) no 1266/2007 provides that as a transitional measure and by way of derogation from the conditions set out in annex iii to that regulation member states of destination may require that the movement of certain animals which are covered by the exemption provided for in article 8 thereof be subjected to additional conditions on the basis of a risk assessment taking into account the entomological and epidemiological conditions in which animals are being introduced those additional conditions specify that the animals must be less than 90 days old they must have been kept since birth in vector protected confinement and they must have been subject to certain tests referred to in annex iii to that regulation +article 2 if the validation of an environmental statement or updated environmental statement is due to be carried out under regulation (ec) no 1221/2009 after the date of entry into force of this regulation but before 9 january 2020 the statement may on that occasion in agreement with the environmental verifier and the competent body be validated disregarding the amendment made by article 1 of this regulation if a non-validated updated environmental statement is due to be forwarded to a competent body under article 7 of regulation (ec) no 1221/2009 after the date of entry into force of this regulation but before 9 january 2020 the statement may on that occasion in agreement with the competent body be prepared disregarding the amendment made by article 1 of this regulation +regulation (ec) no 1221/2009 should therefore be amended accordingly +annex annex iv environmental reporting a introduction environmental information shall be presented in a clear and coherent manner and should preferably be available in electronic form the organisation shall determine the best format to make this information available to their interested parties in a user-friendly way b environmental statement the environmental statement shall contain at least the elements and shall meet the minimum requirements as set out below (a) a summary of the organisation s activities products and services the organisation s relationship to any parent organisations as appropriate and a clear and unambiguous description of the scope of the emas registration including a list of the sites included in this registration (b) the environmental policy and a brief description of the governance structure supporting the environmental management system of the organisation (c) a description of all the significant direct and indirect environmental aspects which result in significant environmental impacts of the organisation a brief description of the approach used to determine their significance and an explanation of the nature of the impacts as related to these aspects (d) a description of the environmental objectives and targets in relation to the significant environmental aspects and impacts (e) a description of the actions implemented and planned to improve environmental performance achieve the objectives and targets and ensure compliance with legal requirements related to the environment where available reference should be made to the relevant best environmental management practices presented in the sectoral reference documents as referred to in article 46 (f) a summary of the data available on the environmental performance of the organisation with respect to its significant environmental aspects reporting shall be on both the core environmental performance indicators and the specific environmental performance indicators as set out in section c where environmental objectives and targets exist the respective data shall be reported (g) a reference to the main legal provisions to be taken into account by the organisation to ensure compliance with legal requirements related to the environment and a statement regarding legal compliance (h) a confirmation regarding the requirements of art 25 para 8 and the name and accreditation or licence number of the environmental verifier and the date of validation the declaration as referred to in annex vii signed by the environmental verifier may be used instead the updated environmental statement shall contain at least the elements and shall meet the minimum requirements as set out in points (e) to (h) organisations may decide to integrate in their environmental statement additional factual information related to the activities products and services of the organisation or to their compliance with specific requirements all information contained in the environmental statement shall be validated by the environmental verifier the environmental statement may be integrated in other reporting documents of the organisation (e g management sustainability or corporate social responsibility reports) when integrated in such reporting documents a clear distinction shall be made between validated and non-validated information the environmental statement shall be clearly identified (for example by using the emas logo) and the document shall include a short explanation of the validation process in the context of emas c reporting based on environmental performance indicators and qualitative information introduction both in the environmental statement and the updated environmental statement organisations shall report on their significant direct and indirect environmental aspects by using the core environmental performance indicators and the specific environmental performance indicators as set out below in the event that no quantitative data are available organisations shall report qualitative information as described in point the reporting shall provide data on actual input and output if disclosure would adversely affect the confidentiality of commercial or industrial information of the organisation where such confidentiality is provided for by national or community law to protect a legitimate economic interest the organisation may be permitted to index this information in its reporting e g by establishing a baseline year (with the index number 100) from which the development of the actual input/output would appear the indicators shall (a) give an accurate appraisal of the organisation s environmental performance (b) be readily understood and unambiguous (c) allow for a year on year comparison in order to assess whether the organisation s environmental performance has improved to enable this comparison the reporting shall cover at least 3 years of activity provided the data are available (d) allow for comparison with sector national or regional benchmarks as appropriate (e) allow for comparison with regulatory requirements as appropriate to support this the organisation shall briefly define the scope (including the organisational and material boundaries applicability and calculation methodology) covered by each of the indicator +20 12 2018 en official journal of the european union l 325/18 commission regulation (eu) 2018/2026 of 19 december 2018 amending annex iv to regulation (ec) no 1221/2009 of the european parliament and of the council on the voluntary participation by organisations in a community eco-management and audit scheme (emas) (text with eea relevance) the european commission having regard to the treaty on the functioning of the european union having regard to regulation (ec) no 1221/2009 of the european parliament and of the council of 25 november 2009 on the voluntary participation by organisations in a community eco-management and audit scheme (emas) repealing regulation (ec) no 761/2001 and commission decisions 2001/681/ec and 2006/193/ec (1) and in particular article 48 thereof whereas an eco-management and audit scheme (emas) has been established under regulation (ec) no 1221/ the objective of emas is to promote continuous improvements in the environmental performance of organisations by the establishment and implementation of environmental management systems by organisations evaluation of the performance of such systems provision of information on environmental performance an open dialogue with the public and other interested parties and the active involvement of employees to achieve this objective annexes i to iv to that regulation set out specific requirements to be observed by those organisations wishing to participate in emas and obtain emas registration +article 3 this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 19 december for the commission the president jean-claude juncker oj l 342 22 12 2009 p +annex iv to regulation (ec) no 1221/2009 sets out the requirements on environmental reporting that annex should be amended to address improvements identified in the light of experience gained in the operation of emas given the number and nature of these amendments it is appropriate to replace annex iv in its entirety in the interests of clarity +the measures provided for in this regulation are in accordance with the opinion of the committee established by article 49 of regulation (ec) no 1221/2009 has adopted this regulation article 1 annex iv to regulation (ec) no 1221/2009 is replaced by the text in the annex to this regulation +organisations registered under emas are required either to prepare or update an environmental statement in accordance with annex iv to regulation (ec) no 1221/2009 on a yearly basis except in the case of small organisations exempted under article 7 of that regulation the environmental statement or updated environmental statement has to be validated by an accredited or licensed environmental verifier as part of the verification of that organisation in accordance with article 18 of that regulation organisations preparing for registration under emas are also required to submit a validated environmental statement as part of their application for registration a transitional period is therefore needed to provide organisations with sufficient time to address the transition to the changes made by this regulation +specific environmental performance indicators each organisation shall also report annually on its performance relating to the significant direct and indirect environmental aspects and impacts that are related to its core business activities that are measurable and verifiable and that are not covered already by the core indicators reporting on those indicators shall be done in accordance with the requirements set in the introduction to this section where available the organisation shall take account of sectoral reference documents as referred to in article 46 to facilitate the identification of relevant sector specific indicators +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +5 7 2011 en official journal of the european union l 176/22 commission implementing regulation (eu) no 650/2011 of 4 july 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 646/2011 (4) +four products with cn and taric codes 2933399970 2933399980 8507803040 and 8507803050 which are currently listed in the annex to regulation (ec) no 1255/96 should be deleted because it is no longer in the interest of the union to maintain the suspension of autonomous common customs tariff duties for those products +experience has shown that it is necessary to provide an expiry date for the suspensions set out in the annex to regulation (ec) no 1255/96 to ensure that account is taken of technological and economic changes this should not exclude the premature termination of certain measures or their continuation beyond the expiry date if economic justification is provided in accordance with the principles laid down in the commission communication of 1998 concerning autonomous tariff suspensions and quotas (2) +the suspensions for which those technical modifications are necessary should be deleted from the list of suspensions set out in the annex to regulation (ec) no 1255/96 and should be reinserted in that list using new product descriptions or new taric codes +in the interest of clarity the modified entries should be marked with an asterisk in the lists of inserted and deleted suspensions set out in annex i and annex ii to this regulation +30 6 2011 en official journal of the european union l 170/4 council regulation (eu) no 631/2011 of 21 june 2011 amending regulation (ec) no 1255/96 temporarily suspending the autonomous common customs tariff duties on certain industrial agricultural and fishery products the council of the european union having regard to the treaty on the functioning of the european union and in particular article 31 thereof having regard to the proposal from the european commission whereas it is in the interest of the union to suspend totally the autonomous common customs tariff duties on a certain number of new products currently not listed in the annex to council regulation (ec) no 1255/96 (1) +regulation (ec) no 1255/96 should therefore be amended accordingly +it is necessary to modify the product description of 15 suspensions in the annex to regulation (ec) no 1255/96 in order to take account of technical product developments and economic trends on the market those suspensions should be deleted from the list in that annex and reinserted as new suspensions using new descriptions moreover taric codes for 12 products should be changed +since the suspensions laid down in this regulation have to take effect from 1 july 2011 this regulation should apply from that date and enter into force immediately has adopted this regulation article 1 the annex to regulation (ec) no 1255/96 is hereby amended as follows the rows for the products listed in annex i to this regulation are inserted the rows for the products for which the cn and taric codes are set out in annex ii to this regulation are deleted +annex annex i to regulation (ec) no 881/2002 is amended as follows the following entries under the heading legal persons groups and entities are deleted (a) meadowbrook investments limited address 44 upper belgrave road clifton bristol bs8 2xn united kingdom other information (a) registration number 05059698 (b) associated with mohammed benhammedi date of designation referred to in article 2a(4)(b) (b) ozlam properties limited address 88 smithdown road liverpool l7 4jq united kingdom other information (a) registration number 05258730 (b) associated with mohammed benhammedi date of designation referred to in article 2a(4)(b) (c) sara properties limited (alias sara properties) address (a) 104 smithdown road liverpool merseyside l7 4jq united kingdom (b) 2a hartington road liverpool l8 osg united kingdom other information (a) registration number 4636613 (b) associated with mohammed benhammedi date of designation referred to in article 2a(4)(b) 7 2 2006 +article 2 this regulation shall enter into force on the day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 30 june for the commission on behalf of the president head of the service for foreign policy instruments oj l 139 29 5 2002 p +annex i to regulation (ec) no 881/2002 should therefore be updated accordingly has adopted this regulation article 1 annex i to regulation (ec) no 881/2002 is amended in accordance with the annex to this regulation +1 7 2011 en official journal of the european union l 173/1 commission implementing regulation (eu) no 640/2011 of 30 june 2011 amending for the 152nd time council regulation (ec) no 881/2002 imposing certain specific restrictive measures directed against certain persons and entities associated with usama bin laden the al-qaida network and the taliban the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 881/2002 of 27 may 2002 imposing certain specific restrictive measures directed against certain persons and entities associated with usama bin laden the al-qaida network and the taliban and repealing council regulation (ec) no 467/2001 prohibiting the export of certain goods and services to afghanistan strengthening the flight ban and extending the freeze of funds and other financial resources in respect of the taliban of afghanistan and in particular article 7(1)(a) and 7a thereof whereas annex i to regulation (ec) no 881/2002 lists the persons groups and entities covered by the freezing of funds and economic resources under that regulation +on 22 june 2011 the sanctions committee of the united nations security council decided to remove five natural persons and three legal persons from its list of persons groups and entities to whom the freezing of funds and economic resources should apply +the quota volumes previously established for autonomous tariff quotas of the union with order numbers 09 2767 09 2813 09 2977 09 2628 09 2629 and 09 2635 are insufficient to meet the needs of the union industry consequently those quota volumes should be increased from 1 july 2011 in the case of the tariff quotas with the order numbers 09 2767 and 09 2813 and from 1 january 2011 in the case of tariff quotas with the order numbers 09 2977 09 2628 09 2629 and 09 2635 +regulation (eu) no 7/2010 should therefore be amended accordingly +article 2 this regulation shall enter into force on the day of its publication in the official journal of the european union it shall apply from 1 july however point of article 1 shall apply from 1 january this regulation shall be binding in its entirety and directly applicable in all member states done at luxembourg 21 june for the council the president fazekas s +since some of the measures provided for in this regulation should take effect from 1 january 2011 and others from 1 july 2011 this regulation should apply from those dates respectively and enter into force immediately has adopted this regulation article 1 the annex to regulation (eu) no 7/2010 is hereby amended as follows the rows for the tariff quotas with order numbers 09 2767 09 2813 and 09 2631 are replaced by the rows set out in annex i to this regulation the rows for the tariff quotas with order numbers 09 2977 09 2628 09 2629 and 09 2635 are replaced by the rows set out in annex ii to this regulation the row for the tariff quota with order number 09 2947 is deleted +30 6 2011 en official journal of the european union l 170/1 council regulation (eu) no 630/2011 of 21 june 2011 amending regulation (eu) no 7/2010 opening and providing for the management of autonomous tariff quotas of the union for certain agricultural and industrial products the council of the european union having regard to the treaty on the functioning of the european union and in particular article 31 thereof having regard to the proposal from the european commission whereas in order to ensure sufficient and uninterrupted supplies of certain goods insufficiently produced in the union and to avoid any disturbances on the market for certain agricultural and industrial products autonomous tariff quotas have been opened by council regulation (eu) no 7/2010 within which those products can be imported at reduced or zero duty rates +in addition it is no longer in the interest of the union to continue to grant a tariff quota for the second semester of 2011 in respect of the tariff quota with the order number that quota should therefore be closed with effect from 1 july 2011 and the corresponding row should be deleted from the annex to regulation (eu) no 7/2010 +moreover for the autonomous tariff quota of the union with the order number 09 2631 the product description should be revised +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 regulation (eu) no 642/2010 is amended as follows 1 +article 2 this regulation shall enter into force on the third day following its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 1 july for the commission the president jos manuel barroso oj l 299 16 11 2007 p +article 5 shall be amended as follows (a) the introductory phrase of paragraph 1 is replaced by the following for common wheat of high quality durum wheat and maize referred to in article 2 of this regulation the components determining the representative cif import prices referred to in article 136 of regulation (ec) no 1234/2007 shall be (b) paragraph 4 is replaced by the following the representative cif import prices for durum wheat high quality common wheat and maize shall be the sum of the components referred to in points (a) (b) and (c) of paragraph the representative cif import prices for sorghum and rye shall be those calculated for maize annex iii is replaced by the text set out in the annex to this regulation +trends in the barley market and the minor importance of the united states on the world market for this product mean that barley no longer provides an estimate of the sorghum market furthermore the sources of information on the sorghum market are too few or too unreliable to provide a basis for setting import duties for this product lastly it appears from the sources available that the prices of sorghum and of maize exported from the united states are very close to one another consequently the representative cif import price calculated for maize should be applied to sorghum furthermore the existing equality between the duties that apply to rye and those that apply to sorghum should be maintained +2 7 2011 en official journal of the european union l 175/1 commission implementing regulation (eu) no 643/2011 of 1 july 2011 amending regulation (eu) no 642/2010 as regards import duties on sorghum and rye the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 143 in conjunction with article 4 thereof whereas article 5 of commission regulation (eu) no 642/2010 of 20 july 2010 on rules of application (cereal sector import duties) for council regulation (ec) no 1234/2007 stipulates that the representative cif import price determined for barley shall be used for calculating import duties on sorghum and rye +regulation (eu) no 642/2010 should therefore be amended accordingly +from the 62 unrelated importers that the commission contacted only five companies replied to the sampling questions within the deadline therefore it was considered that no sampling was necessary and questionnaires were sent to all these companies eventually only two importers replied to the questionnaire and cooperated fully in the investigation (c) questionnaire replies and verifications in order to allow sampled exporting producers in the prc to submit a claim for market economy treatment (met) or individual treatment (it) if they so wished the commission sent claim forms to the sampled exporting producers all groups of exporting producers requested met pursuant to article 2 of the basic regulation or it should the investigation establish that they did not meet the conditions for met +effect of the dumped imports between 2006 and the ip the volume of the dumped imports of the product concerned increased in terms of volume by 14 in a market contracting by 35 which resulted in an increase of union market share by 76 from 10 5 to 18 4 +given the high rate of co-operation of chinese exporting producers the all other companies rate is set at the rate of the co-operating company in the sample with the highest rate for the co-operating non-sampled companies listed in the annex the provisional duty rate is set at the weighted average of the rates of the sampled companies on the basis of the above the proposed duty rates are company/companies provisional duty changshu walsin specialty steel co ltd haiyu 71 5 shanghai jinchang stainless steel tube manufacturing co ltd situan 48 2 wenzhou jiangnan steel pipe manufacturing co ltd yongzhong 48 0 companies listed in annex i 56 6 all other companies 71 5 the individual company anti-dumping duty rates specified in this regulation were established on the basis of the findings of the present investigation therefore they reflect the situation found during that investigation with respect to these companies these duty rates (as opposed to the countrywide duty applicable to all other companies) are thus exclusively applicable to imports of products originating in the country concerned and produced by the companies and thus by the specific legal entities mentioned imported products produced by any other company not specifically mentioned in the operative part of this regulation with its name and address including entities related to those specifically mentioned cannot benefit from these rates and shall be subject to the duty rate applicable to all other companies +reports by speciality steel industry of north america above with reference to the tenth 5-year plan of industrial structure adjustment +the investigation established that none of the sampled (groups of) exporting producers in the prc met the requirements of the criteria set forth in article 2(7)(c) of the basic regulation therefore they cannot be granted met +interest of the union industry one union producer opposed the imposition of anti-dumping measures as the company partly sources unworked stainless steel hollows from the prc in order to further process them into finished tubes however the producer represents less than 2 of total union production +in the light of the foregoing it is provisionally concluded that the union industry has suffered material injury within the meaning of article 3 of the basic regulation e causation introduction in accordance with article 3 and article 3 of the basic regulation the commission examined whether the dumped imports have caused injury to the union industry to a degree that enables it to be classified as material known factors other than the dumped imports which could at the same time have injured the union industry were also examined to ensure that possible injury caused by these other factors was not attributed to the dumped imports +as concerns the return on investments (roi) expressed as the profit in percent of the net book value of investments this indicator appears to have followed the profitability trend +the commission sent questionnaires to independent importers and users eventually two importers and one user submitted questionnaire replies within the time limits set +investments during the period considered the investments of the sampled union producers developed as follows table 16 investments sampled producers 2006 2007 2008 2009 ip net investments (indexed) 100 192 406 286 183 as the above table shows the union producers decided to continue to invest despite their above fragile financial situation in 2009 and the ip the reasons for this are that (i) this type of industry normally requires certain multi-annual investments which had to be completed irrespective of the market situation and that (ii) in this sector frequent machinery upgrades are a prerequisite to allow production of larger quantities of higher-end products (as an effort to maintain competitiveness vis- -vis other manufacturers) +parties concerned by the proceeding the commission officially advised the complainant other known union producers the known exporting producers and the representatives of the prc known importers suppliers and users as well as their associations of the initiation of the proceeding the commission also advised producers in the united states (the usa) as it was envisaged as a possible analogue country interested parties were given an opportunity to make their views known in writing and to request a hearing within the time limit set in the notice of initiation +production the union production volumes increased between 2006 and 2008 but they fell sharply between 2008 and the ip this substantial decrease of production was caused by both the market contraction and the increasing pressure of dumped imports table 5 production sampled producers 2006 2007 2008 2009 ip production (indexed) 100 107 121 84 66 production capacity and capacity utilisation the production capacity of the union industry remained relatively stable throughout the period considered however the rate of capacity utilization decreased by 35 between 2006 and the ip in the ip the level of capacity utilization dropped to little more than half of the level reached in table 6 production capacity sampled producers 2006 2007 2008 2009 ip capacity (indexed) 100 98 101 102 101 capacity utilisation (indexed) 100 109 120 82 65 stocks the table below shows that the closing stocks first increased until 2008 when union production was at its peak but then they started decreasing due to the reduced levels of manufacturing activity table 7 stocks sampled producers 2006 2007 2008 2009 ip stocks (indexed) 100 124 168 138 118 union sales volumes (total union industry) the sales volume of all union producers on the eu market decreased on the whole by 39 while chinese exports increased by 14 at the same time as stated in recital above the union sales volumes of union industry developed as follows table 8 union sales (volumes) all eu producers 2006 2007 2008 2009 ip union sales (tonnes) 82 743 91 043 79 418 63 223 50 569 indexed 100 110 96 76 61 market share (total union industry) the market share of the union industry decreased by 3 4 percentage points between 2006 and 2007 and remained relatively stable during the rest of the period considered with a small temporary increase in overall the union industry lost 3 6 percentage points of market share whereby as shown in table 3 above the market share of dumped imports from the prc has almost doubled over the period considered table 9 union market share all eu producers 2006 2007 2008 2009 ip market share ( ) 62 7 59 3 59 4 61 5 59 1 indexed 100 95 95 98 94 sales prices as concerns average sales prices the table below shows that in 2007 the union industry increased its sales prices and then gradually reduced them year by year until the ip reaching price levels which are below those of the evolution and the high volatility of their sales prices were partly due to serious fluctuations of raw material costs table 10 union sales (average prices) sampled producers 2006 2007 2008 2009 ip average price per tonne (indexed) 100 135 126 100 92 employment the employment level largely followed the development of the production volumes (see table 5 above) which indicates that the union industry has attempted to rationalise manufacturing costs when it was necessary the union industry tried to adapt their workforce to the worsening market circumstances by reducing working hours rather than reducing their headcount therefore the table below shows the employment level in full-time equivalents (fte) fte employment of the union producers increased by 11 percentage points between 2006 and 2008 followed by a drop of 19 percentage points from 2008 to the ip on the whole the number of fte s decreased by 8 over the period considered table 11 employment sampled producers 2006 2007 2008 2009 ip employment in full-time equivalents (indexed) 100 106 111 95 92 productivity despite the above attempts of the union industry the output per fte of the union producers fell considerably overall by 29 the serious impacts of dumped imports from the prc in the period of a collapsing market demand prevented the union industry from maintaining its productivity levels table 12 productivity sampled producers 2006 2007 2008 2009 ip production volume per fte (indexed) 100 102 109 88 71 labour costs during the period considered the union industry has managed to control the development of labour costs indeed the table below shows that the average annual labour cost slightly increased in 2007 and 2008 but they decreased in 2009 and the ip over the whole period unit labour costs went down by 2 this decrease would have been more pronounced had the amounts of severance payments been excluded from the above trend table 13 labour costs sampled producers 2006 2007 2008 2009 ip annual labour cost per employee (indexed) 100 103 109 100 98 profitability and return on investments (roi) profitability of the union industry was established by expressing the pre-tax net profit of the sales of the like product on the eu market to unrelated customers as a percentage of the turnover of these sales as a result the profitability margins of the union industry developed as follows during the period considered table 14 profitability return on investments (roi) sampled producers 2006 2007 2008 2009 ip net profit (indexed) 100 202 89 147 188 roi (indexed) 100 289 215 107 153 as the above table shows the profitability of the union industry peaked in 2007 due to the extraordinary market conditions from which all market players could benefit the average profitability significantly deteriorated starting from 2007 and profits have turned into a significant loss during 2009 and the ip +conclusion on injury the injury indicators developed negatively during the period considered this is particularly noticeable for the indicators concerning profitability production volumes capacity utilisation sales volumes and market share that have all showed a clearly deteriorating trend +on the basis of the above it can be concluded that imports from third countries other than the prc do not appear to have contributed to the injury suffered by the union industry during the ip +dumping margins the provisional dumping margins were expressed as a percentage of the cif union frontier price duty unpaid (a) for the cooperating sampled exporting producers granted it pursuant to article 2 and of the basic regulation the dumping margins for the sampled cooperating exporting producers granted it were established on the basis of a comparison of a weighted average normal value established on the basis of prices actually paid or payable in the union for the like product duly adjusted to include a reasonable profit as detailed in recitals and above with each companys weighted average export price of the product concerned to the union as established above +taking into account all the above factors it is provisionally concluded that the imposition of anti-dumping measures would be in the interest of the union industry +on this basis the provisional dumping margins expressed as a percentage of the cif union frontier price duty unpaid are sampled companies provisional dumping margins changshu walsin specialty steel co ltd haiyu 83 2 shanghai jinchang stainless steel tube manufacturing co ltd situan 62 5 wenzhou jiangnan steel pipe manufacturing co ltd yongzhong 66 5 (b) for all other cooperating exporting producers the dumping margin for other cooperating exporting producers in the prc not included in the sample was calculated as a weighted average of the sampled exporting producers dumping margins in accordance with article 9 of the basic regulation +article 3 this regulation shall enter into force on the day following that of its publication in the official journal of the european union +union consumption union consumption was established on the basis of the sales volumes of the union industry on the union market based on the information obtained from the defence committee representing the complainants (see recital above) and the import volumes data for the union market obtained from eurostat the latter data had to be slightly adjusted with regard to imports from south africa and japan for certain periods given that those data included some distortions resulting from incorrect reporting of information +interest of unrelated importers in the union as indicated above sampling was not applied for unrelated importers as only two unrelated importers fully cooperated in this investigation by submitting a questionnaire reply only a small part of the turnover of these two importers was related to re-sales of the product concerned from the prc +all interested parties who so requested and showed that there were particular reasons why they should be heard were granted a hearing +it should also be noted that the level of measures is unlikely to prevent chinese imports from continuing to supply the union market albeit at increased non-injurious prices in addition the idle production capacity of the union industry as well as the alternative sources of imports from various other third countries indicate that there is no risk of security of supply for the stainless steel tubes on the union market +however the questionnaire replies and the verification visit revealed that the usa is not an appropriate analogue country market all the co-operating usa producers rely on imports of basic raw materials and finished products from their eu parent companies and maintain a limited production activity in the usa mainly to respond to customized or time critical orders in fact the production volume of the co-operating usa producers is a fraction of their european parent producers most importantly however the usa co-operating producers have high processing costs reflecting their particular manufacturing circumstances those costs translate into high domestic prices on the usa market (b) determination of normal value in accordance with article 2(7)(a) of the basic regulation the normal value shall be determined on the basis of the price or constructed normal value in a market economy third country or the export prices from such country to other countries including the eu given that the normal value could not be established on the basis of prices or constructed values in the usa for the reasons set out in the previous recital the second method was explored however for the reasons set out below this method is also not suitable for the present case just as the usa domestic sales prices the usa export prices will also be tainted by the high production costs and the fact that export volumes would be limited i e less than 2 of the chinese exports to the eu) it would also appear that some of those exports are made to related companies and are thus unreliable for the purposes of normal value determination +as an alternative to the above mentioned two methods article 2(7)(a) of the basic regulation stipulates that normal value can be determined on any other reasonable basis including the price actually paid or payable in the union for the like product duly adjusted if necessary to include a reasonable profit this method has been provisionally used in the present case given that the investigation established at this stage that the usa is not an appropriate analogue country +based on the above it is provisionally concluded that the low-priced dumped imports from the prc which entered the union market in large and overall increasing volumes and which significantly undercut the union industry prices throughout the period considered are causing material injury to the union industry +the imports declared by these two importers however represented a relatively small proportion of all imports from the prc in the ip (much less than 10 ) considering the high margins that the importers achieved on the re-sales of the product concerned in the ip it can be assumed that the imposition of anti-dumping duties could result for them in lower profitability levels however neither of the importers put forward arguments according to which the imposition of anti-dumping duties would be against their interest in addition as they both re-sell stainless steel tubes of non-chinese origin (including tubes of union origin) they may as well decide to shift purchases to non-chinese suppliers which are not affected by the duties +imports from the country concerned volume of dumped imports the volume of imports of the product concerned from the prc into the union market has increased over the period considered overall during the period considered imports from the prc increased by 14 in fact between 2006 and 2007 imports from the prc have almost doubled while they decreased year by year between 2007 and the ip largely due to the fall in consumption (as market share remained stable between 2008 and the ip see recital below) table 2 imports from the prc (volumes) 2006 2007 2008 2009 ip units (tonnes) 13 804 26 790 25 186 17 043 15 757 indexed 100 194 182 123 114 market share of dumped imports the market share of dumped imports from the prc has almost doubled over the period considered increasing by 76 or 7 9 percentage points this markets share growth mainly took place between 2006 and 2007 subsequently maintaining its high level table 3 imports from the prc (market share) 2006 2007 2008 2009 ip market share ( ) 10 5 17 4 18 8 16 6 18 4 indexed 100 167 180 158 176 prices (a) price evolution the table below shows the average price of dumped imports from the prc at the european border duty unpaid as reported by eurostat during the period considered the average price of imports from the prc increased until 2008 and then fell between 2008 and the ip table 4 imports from the prc (prices) 2006 2007 2008 2009 ip average price per tonne (eur) 4 354 5 129 5 506 4 348 3 954 indexed 100 118 126 100 91 (b) price undercutting a type-to-type price comparison was made between the selling prices of the chinese exporting producers and the sampled union producers selling prices in the union to this end the sampled union producers prices to unrelated customers have been compared with the prices of sampled exporting producers of the country concerned adjustments were applied where necessary to take account of differences in the market perception of product quality the level of trade and post-importation costs +none of the companies fulfils the requirements of criterion 1 because of state interference in decisions concerning acquisition of the main raw material (notably stainless steel billets ingots round bars) those raw materials represent well above 50 of the cost of production of the product concerned (seamless stainless steel pipes and tubes) consequently these raw materials are by far the major input in the production of the product concerned +the proceeding was initiated as a result of a complaint lodged on 16 august 2010 by the defence committee of the seamless stainless steel tubes industry of the european union (the defence committee) on behalf of two groups of union producers (the complainants) representing a major proportion in this case more than 50 of the total union production of seamless pipes and tubes of stainless steel the complaint contained prima facie evidence of dumping of the said product and of material injury resulting therefrom which was considered sufficient to justify the initiation of a proceeding +the commission officially disclosed the results of the met findings to the sampled exporting producers concerned in the prc as well as to the sampled union producers +given the above circumstances the economic downturn cannot be considered as a possible factor that would break the causal link between the injury suffered by the union industry and the dumped imports from the prc +in conclusion none of the comments received was such as to alter the findings with regard to met determination +undoubtedly the above drop in consumption resulting from the economic downturn had also an impact on the situation of the union industry it must be noted however that this negative effect was seriously exacerbated by the dumped imports from the prc which significantly undercut the prices of the union industry therefore even if the economic downturn could be considered as a factor contributing to the injury during the ip by no means could this diminish the injurious effects of low priced dumped imports from the prc on the union market in the absence of such unfair competition from the prc and the volume and price pressure that it exerted on the union producers it would have been possible for the latter to maintain the level of their sales prices and profitability at relatively acceptable levels even in a situation of decreasing demand +if measures are imposed it is expected that the price depression and loss of market share will be mitigated and that the sales prices of the union industry will start to recover resulting in a significant improvement of the union industry s financial situation +another claim related to an alleged breach of the wto agreement on subsidies and countervailing measures and the eu basic anti-subsidy regulation +conclusion on causation in conclusion the above analysis has demonstrated that imports from the prc have increased in terms of quantities and gained substantial market share over the period considered moreover these increased quantities which entered the union market at dumped prices severely undercut the union industry prices though for a certain period the union industry had been able to offset the negative effects of this pressure thanks to the exceptionally positive market conditions in the years of 2007 and 2008 this was no longer possible when the economic crisis substantially reduced the level of demand +stainless seamless pipes and tubes are mainly used in the following industries chemical and petrochemical industries fertiliser production power generation civil engineering and construction pharmacology and medical technologies biotechnology water treatment and waste incineration oil and gas exploration and production coal and gas processing food processing +article 1 of this regulation shall apply for a period of six months this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 27 june for the commission the president jos manuel barroso oj l 343 22 12 2009 p 51 +one company further claimed that the discrepancies between the income tax declaration and the financial statement were normal not significant and therefore there was no obligation for explanations in the notes to the financial statement consequently this should thus not have had an impact on the commission s determination it is noted that the discrepancies regarding annual profit are close to 30 million rmb and thus should have been considered as important and therefore to be explained in the notes to the financial statement +comparison the dumping margins were established by comparing the individual ex-works export prices of the sampled exporters to the domestic sales prices of the sampled union producers established as set out in recital above +the next largest sources of imports during the ip were japan and ukraine they both held a market share of 5 2 each india had a market share of 3 0 while imports from the usa had a market share of 2 7 during the ip the following table shows the development of import volumes prices and market shares of the four largest import source countries following the prc and those of the remaining other third county imports all based on eurostat data as already mentioned in recital above eurostat data for japanese imports required slight adjustments to exclude distortions resulting from incorrect reporting of transactions table 17 imports from other countries country 2006 2007 2008 2009 ip japan volumes(tonnes) 5 801 7 211 6 955 6 753 4 445 market share ( ) 4 4 4 7 5 2 6 6 5 2 av price (eur) 7 981 7 396 8 591 11 634 9 596 ukraine volumes(tonnes) 7 820 8 536 7 904 4 659 4 431 market share ( ) 5 9 5 6 5 9 4 5 5 2 av price (eur) 6 775 9 212 8 100 6 336 6 031 india volumes(tonnes) 3 664 4 323 3 461 3 265 2 540 market share ( ) 2 8 2 8 2 6 3 2 3 0 av price (eur) 5 519 6 874 6 789 3 929 4 111 usa volumes(tonnes) 3 739 6 019 2 724 2 740 2 344 market share ( ) 2 8 3 9 2 0 2 7 2 7 av price (eur) 16 235 5 597 12 892 11 175 11 054 other countries volumes(tonnes) 14 394 9 709 8 063 5 183 5 542 market share ( ) 10 9 6 3 6 0 5 0 6 5 av price (eur) 6 643 7 880 8 553 6 695 6 497 total of all third countries except the prc volumes(tonnes) 35 418 35 797 29 107 22 600 19 303 market share ( ) 26 8 23 3 21 8 22 0 22 5 av price (eur) 5 586 7 540 8 453 8 392 7 484 as indicated in the table above during the period considered japan moderately increased its market share by 0 8 percentage points from 4 4 to 5 2 however prices of japanese imports appear to be much more comparable to the union prices than prices of imports from the prc most importantly in the ip japanese import prices were significantly higher than those of the union industry +for the purpose of ensuring a fair comparison between the normal value and the export price due allowance in the form of adjustments was made for differences affecting prices and price comparability in accordance with article 2 of the basic regulation appropriate adjustments were granted in all cases where they were found to be reasonable accurate and supported by verified evidence in particular an adjustment was granted for indirect taxes ocean freight and insurance freight in the exporting country warranty expenses commissions credit costs bank charges level of trade and as elaborated in recital below quality perception +the comparison showed that during the ip imports of the product concerned originating in the prc were sold in the union at prices which undercut the union industry prices when expressed as a percentage of the latter by 21 to 32 +besides despite the recent difficulties of the union industry it continues to be the largest supplier of the user industry in the union without the imposition of measures in case of further deterioration of the financial situation of the union industry the existence of the union industry would be jeopardised which would bring about a risk of supply also for the users within the union +the rate of the provisional anti-dumping duty applicable to the net free-at-union-frontier price before duty of the products described in paragraph 1 and manufactured by the companies listed below shall be as follows company/companies provisional duty taric additional code changshu walsin specialty steel co ltd haiyu 71 5 b120 shanghai jinchang stainless steel tube manufacturing co ltd situan 48 2 b118 wenzhou jiangnan steel pipe manufacturing co ltd yongzhong 48 0 b119 companies listed in annex i 56 6 b121 all other companies 71 5 b999 the application of the individual duty rates specified for the companies mentioned in paragraph 2 shall be conditional upon presentation to the customs authorities of the member states of a valid commercial invoice which shall conform to the requirements set out in the annex ii if no such invoice is presented the duty applicable to all other companies shall apply +for the product types exported by the sampled chinese (groups of) exporting producers for which no sales were made by the sampled union producers the commission provisionally used prices actually paid or payable in the union for the like product duly adjusted if necessary to include a reasonable profit of the closest resembling product types having the same diameter steel grade and product type (e g cold or hot drawn) +given the price difference between chinese domestic and world markets in the absence of the state interference the domestic producers of the above mentioned raw materials would be inclined to export their products to markets with higher prices where they could achieve higher profits indeed the chinese customs statistics confirm that there are virtually no exports of stainless steel billets from the prc to the rest of the world in 2009 the exports of stainless steel ingots and other primary forms of stainless steel amounted to less then 2 tons and in 2010 less then 5 tons this is a further argument demonstrating state interference in the raw materials market +other factors which could have caused injury to the union industry have also been analysed in this respect it was found that imports from other third countries the impact of the economic crisis the export performance of the union industry and other factors including those related to distortions on the prc raw material market do not appear to be such as to break the causal link established between the dumped imports and the injury suffered by the union industry during the ip +normal value (a) analogue country in accordance with article 2 of the basic regulation normal value for exporting producers not granted met shall be established on the basis of domestic prices or constructed normal value in an analogue country +the increase in dumped imports of the product concerned from the prc over the period considered coincided with a downward trend in most injury indicators of the union industry the union industry lost 3 6 percentage points of market share and its sales prices decreased by 8 due to the price pressure exerted by low-priced dumped imports on the union market the significant price undercutting prevented the union industry from passing on the increased production costs in the sales prices to an acceptable extent which resulted in negative profitability levels during the ip +on this basis a non-injurious price was calculated for the union industry of the like product the non-injurious price has been established by deducting the actual profit margin from the ex-works price and adding to the thus calculated break even price the above-mentioned target profit margin +effect of other factors imports from other third countries during the period considered there were limited imports from other third countries the total market share of imports from countries other than the prc has decreased by 4 3 percentage points from 26 8 to 22 5 +on this basis the provisional dumping margins expressed as a percentage of the cif union frontier price duty unpaid is 71 1 (c) all other (non-cooperating) exporting producers given the high level of co-operation in the investigation (the co-operating companies represent around 64 of the total imports recorded in eurostat during the ip) the country wide margin for non-cooperating exporting producers was established by using the highest of the margins found for the sampled (groups of) companies +competitiveness of dumped imports from the prc and cost of production of the union industry the high volatility of the alloy prices as well as the general developments in market demand resulted in considerable fluctuations of the costs of the main raw material for manufacturing the product under investigation the average unit cost of production of the union industry developed as follows during the period considered table 19 union industry cost of production (eur per tonne) sampled producers 2006 2007 2008 2009 ip indexed 100 120 119 124 118 as already stated in recital above the prc market for the main raw materials is highly distorted due to this distortion exporting producers in the prc appear to have the possibility to make export sales of the product concerned to the union market with a pricing that is likely to be less elastic to raw material prices and which results in prices largely undercutting those on the union market in other words due to the distortion on the chinese raw material market the stainless steel tubes manufacturers in the prc have an unfair competitive advantage when compared to the union industry these distortions would have contributed to allowing the chinese producers to keep the low price level of the dumped imports from the prc +indeed the declaration of those products as unworked hollows for use solely in the manufacture of tubes and pipes with other cross-sections and wall thicknesses concerns goods which do not necessarily have different physical characteristics they merely have a different use it was provisionally concluded that there were no grounds to exclude unworked hollows from the product definition +further in relation to criterion 1 one of the companies failed to include in its sampling information and the met claim two related suppliers of raw materials the company claimed that those suppliers supply small quantities and thus the fact that they were not reported could not and would not have any substantial impact on the outcome of the investigation it is noted that that first of all the commission has to obtain a full picture of all companies in a group involved in the production or sales of the product concerned regardless of the size of those companies or the size of their sales it is further noted that the supplies of raw materials are rather fragmented dispersed among several small suppliers it was concluded that the company set aside the distortion of main inputs described above failed to demonstrate that its business decisions were made in response to market signals without significant state interference and costs reflected market values +conclusion on union interest it can be concluded that the imposition of measures on dumped imports of the product concerned from the prc is expected to provide an opportunity for the union industry to improve its situation through increased sales volumes sales prices and market share while some negative effects may occur in the form of cost increases for certain users they are likely to be outweighed by the expected benefits for the producers and their suppliers +like product the product concerned and certain seamless pipes and tubes of stainless steel sold on the domestic market in the prc as well as certain seamless pipes and tubes of stainless steel sold in the union by the union industry were found to have the same basic physical chemical and technical characteristics and the same basic uses they are therefore provisionally considered to be alike within the meaning of article 1 of the basic regulation c dumping market economy treatment pursuant to article 2(7)(b) of the basic regulation in anti-dumping investigations concerning imports originating in the prc normal value shall be determined in accordance with paragraphs 1 to 6 of the said article for those producers which were found to meet all the criteria laid down in article 2(7)(c) of the basic regulation +briefly and for ease of reference only these criteria are set out in summarised form below business decisions and costs are made in response to market conditions and without significant state interference and costs reflect market values firms have one clear set of basic accounting records which are independently audited in line with international accounting standards and applied for all purposes there are no significant distortions carried over from the former non-market economy system legal certainty and stability is provided by bankruptcy and property laws currency exchanges are carried out at the market rate +any claim requesting the application of these individual company anti-dumping duty rates (e g following a change in the name of the entity or following the setting-up of new production or sales entities) should be addressed to the commission forthwith with all relevant information in particular any modification in the company s activities linked to production domestic and export sales associated with for example that name change or that change in the production and sales entities if appropriate the regulation will accordingly be amended by updating the list of companies benefiting from individual duty rates +one company contested commission s calculation of the price difference between raw materials prices on the chinese domestic and world markets following the verification the commission confirms this calculation in particular the company did not take into account the surcharges for alloy applied by the us and eu suppliers the claim thus has to be rejected +export price in all cases the product concerned was exported to independent customers in the union and therefore the export price was established in accordance with article 2 of the basic regulation namely on the basis of export prices actually paid or payable +these chinese practices are to be considered as an underlying factor of state interference in decisions of firms regarding raw materials indeed the current chinese system of high export duties and no vat reimbursement for export of raw materials has essentially lead to a situation where chinese raw material prices continue to be the result of state intervention and will in all likelihood continue to provide in the future a support to the chinese producers of seamless stainless steel pipes and tubes +on the other hand should anti-dumping measures not be imposed it would be likely that the deterioration of the union industry s market and financial situation would continue in such a scenario the union industry would lose further market share as it is not able to follow the market prices set by dumped imports from the prc the likely effects would entail further cuts in manufacturing and the closure of production facilities in the union resulting in substantial job losses +actually the impact of dumped imports from the prc that largely undercut the union sales prices during the ip can be considered as even more injurious in a period of economic crisis when sales volumes and prices are in any event already under pressure by the lower consumption +the chinese state has a primary role in the setting of prices of raw materials for seamless stainless steel pipes and tubes and interferes in the market continuously with the following tools export tax and no vat rebate first the main raw materials to manufacture seamless stainless steel pipes and tubes are subject to a 15 export tax since 1 january second the state does not refund the vat on exports of those raw materials +imports from the usa were made at prices considerably higher than those of the union industry during the period considered (except for the year of 2007) as concerns imports from ukraine and india although average prices from these countries were overall lower than union prices both maintained a relatively stable market share on the union market the market share of ukraine decreased from 5 9 to 5 2 while that of india grew from 2 8 to 3 0 during the period considered +indeed the current investigation established a significant price gap between domestic prices and world prices such a gap constitutes implicit assistance to domestic downstream industries and thus provides them with a competitive advantage this argument is further reinforced by the fact that there is no export tax levied on exports of the product concerned (seamless stainless steel pipes and tubes) which also benefits from a vat rebate +recent trends in steel trade and trade-related policy measures oecd report 2010 dsti/su/sc(2010)15 p 14 chinas specialty steel subsidies massive pervasive and illegal 2008 report by the speciality steel industry of north america available at http //www ssina com/news/releases/pdf_releases/20081014_report pdf chinese government subsidies to the stainless steel industry 2007 report by the speciality steel industry of north america available at http //www ssina com/news/releases/pdf_releases/chinese_govt_subsidies0407 pdf also the reform myth how china is using state power to create the world s dominant steel industry the american iron steel institute the steel manufacturers association 2010 http //www ustr gov/webfm_send/2694 +unless otherwise specified the provisions in force concerning customs duties shall apply +in conclusion the market share of imports from all third countries except the prc decreased by 4 3 percentage points (from 26 8 to 22 5 ) during the period considered overall the average import price from all third countries other than the prc increased by 34 during the period considered (from eur 5 586 to eur 7 484 per tonne) which is in sharp contrast with the 9 reduction in the already very low chinese import prices and the 8 drop of average union sales prices +economic situation of the union industry preliminary remarks pursuant to article 3 of the basic regulation the commission examined all relevant economic factors and indicators having a bearing on the state of the union industry the data presented below relate to all union producers for sales and market shares and to the sampled union producers for all the remaining indicators as concerns the indicators based on the sampled producers given that the sample was comprised of only two groups of producers for confidentiality reasons the actual aggregate data could not be disclosed in the related tables below instead only the indices are presented in order to show the trend of those indicators +in the light of the above it is provisionally concluded that on balance no compelling reasons exist against the imposition of provisional measures on imports of the product concerned originating in the prc g provisional anti-dumping measures in view of the conclusions reached with regard to dumping injury causation and union interest provisional measures should be imposed on imports of the product concerned originating in the people s republic of china in order to prevent further injury to the union industry by the dumped imports +in view of the data of this user it can however not be excluded that certain user companies that use more substantial quantities of stainless tubes imported from the prc could be negatively affected by the anti-dumping measures +in order to ensure a proper enforcement of the anti-dumping duty the duty level for all other companies should not only apply to the non-cooperating exporting producers but also to those producers which did not have any exports to the union during the ip h final provision in the interest of sound administration a period should be fixed within which the interested parties which made themselves known within the time limit specified in the notice of initiation may make their views known in writing and request a hearing furthermore it should be stated that the findings concerning the imposition of duties made for the purposes of this regulation are provisional and may have to be reconsidered for the purpose of any definitive measures has adopted this regulation article 1 a provisional anti-dumping duty is hereby imposed on imports of certain seamless pipes and tubes of stainless steel other than with attached fittings suitable for conducting gases or liquids for use in civil aircraft currently falling within cn codes 7304 11 00 7304 22 00 7304 24 00 ex 7304 41 00 7304 49 10 ex 7304 49 93 ex 7304 49 95 ex 7304 49 99 and ex 7304 90 00 (taric codes 7304410090 7304499390 7304499590 7304499990 and 7304900091) and originating in the peoples republic of china +the negative impact of export taxes and partial vat rebates has also been underlined in the wto trade policy reviews of the prcs trade policies and practices +based on the above analysis which has properly distinguished and separated the effects of all known factors having an effect on the situation of the union industry from the injurious effect of the dumped imports it is provisionally concluded that the imports from the prc have caused material injury to the union industry within the meaning of article 3 of the basic regulation f union interest in accordance with article 21 of the basic regulation the commission examined whether despite the conclusions on dumping injury and causation reasons existed which would lead the commission to clearly conclude that it is not in the union interest to adopt measures in this particular case for this purpose and pursuant to article 21 of the basic regulation the commission considered the likely impact of possible measures on all parties involved as well as the likely consequences of not taking measures +in the present investigation all three sampled exporting (groups of) producers requested market economy treatment (met) pursuant to article 2(7)(b) of the basic regulation and replied to the met claim form within the given deadlines +in the notice of initiation the commission indicated that it envisaged using the usa as analogue country for the purpose of establishing normal value for the prc one party claimed that india was a better analogue market because of similar level of development to the prc the commission obtained no cooperation from the indian producers the usa seemed initially appropriate given its openness to import competition (customs tariffs of 0 as opposed to 10 in india) and a fairly good level of competition on the domestic market with 15 to 20 usa producers +article 2 without prejudice to article 20 of council regulation (ec) no 1225/2009 interested parties may request disclosure of the details underlying the essential facts and considerations on the basis of which this regulation was adopted make their views known in writing and apply to be heard orally by the commission within one month of the date of entry into force of this regulation pursuant to article 21 of regulation (ec) no 1225/2009 the parties concerned may comment on the application of this regulation within one month of the date of its entry into force +it is recalled that the injury indicators showed an overall negative trend and that in particular the injury indicators related to production and sales volumes and market share as well as the financial performance of the union industry such as profitability and return on investment were seriously affected +one union producer which further processes stainless steel tubes claimed that in case measures were to be imposed the cn code 7304 49 10 should be excluded from their scope because it covered unfinished hollows used only for further processing however the investigation showed that both the union and the chinese suppliers of that union producer declared the goods sold to this producer as hot finished or cold finished goods +further that company claimed that the distortions on the raw materials market were not significant because 17 5 of the raw material is imported from unrelated international suppliers and the rest is mainly purchased from related companies the information at the commissions disposal demonstrates that around 30 of raw materials are purchased locally and the rest is mainly imported from related suppliers in this context it has to be noted that transfer prices from related suppliers are normally not considered as reliable information further overall the raw material purchase prices of the company from independent suppliers are significantly lower than prices in the eu or in the us like for the other investigated exporting producers the claim is thus rejected +the current investigation by establishing the different use of export taxes and vat rebates on both the upstream and downstream industries demonstrates state interference which can be concluded from the significant price difference for stainless steel raw materials (notably stainless steel billets ingots round bars) on the chinese and world markets +injury elimination level the provisional measures on imports originating in the prc should be imposed at a level sufficient to eliminate dumping without exceeding the injury caused to the union industry by the dumped imports when calculating the amount of duty necessary to remove the effects of the injurious dumping it is considered that any measures should allow the union industry to cover its costs of production and obtain overall a profit before tax that could be reasonably achieved under normal conditions of competition i e in the absence of dumped imports +as stated in the wto trade policy reviews export taxes and vat rebates are policy tools whose use reduce export volumes of the raw materials in question divert supplies to the domestic market and leads to a downward pressure on the domestic prices of those products +in view of the apparent high number of exporting producers unrelated importers and union producers sampling was envisaged in the notice of initiation for the determination of dumping and injury in accordance with article 17 of the basic regulation in order to enable the commission to decide whether sampling would be necessary and if so to select a sample all exporting producers importers and union producers were asked to make themselves known to the commission and to provide as specified in the notice of initiation basic information on their activities related to the product under investigation during the investigation period from 1 july 2009 to 30 june the authorities of the prc were also consulted (a) sampling of chinese exporting producers out of the 31 chinese exporting producers or groups of exporting producers which came forward the commission selected in accordance with article 17 of the basic regulation a sample based on the largest representative volume of exports which could reasonably be investigated within the time available the sample selected consisted of three (groups of) companies representing 25 of the total imports recorded in eurostat during the ip and over 38 of the total volume of the cooperating exporters in the ip in accordance with article 17 of the basic regulation the parties concerned and the chinese authorities were consulted but raised no objections to the proposed sample (b) sampling of union producers out of the 21 union producers that the commission contacted eleven provided the requested information and agreed to be included in the sample on the basis of the information received from these cooperating union producers the commission selected a sample of two groups representing five union producers the sample was selected on the basis of volumes of sales and production the sampled union producers accounted for 48 of total eu sales of all union producers and for 80 of the producers who came forward +interest of the users seamless pipes and tubes of stainless steel subject to this proceeding are used for a large number of applications (see recital above) despite this cooperation was obtained from only one user which uses stainless steel tubes for manufacturing air fin coolers and air cooled condensers accounting for less than 1 of total chinese imports during the ip however it can provisionally be concluded that the very limited cooperation of users appears to indicate that in general the impact on the user industry s profitability and economic situation will be rather limited +finally one company received loans from state owned banks at preferential rates significantly lower than market rates this demonstrates that production costs and the financial situation are subject to significant distortions carried over from the non-market economy system +one company claimed that the commissions decision to reject met was influenced and hence biased by the calculation of the dumping margin in this regard it has to be noted that the met determination precedes any dumping calculation and any verification which took place related solely to the data related to met determination the claim is thus unfounded +29 6 2011 en official journal of the european union l 169/1 commission regulation (eu) no 627/2011 of 27 june 2011 imposing a provisional anti-dumping duty on imports of certain seamless pipes and tubes of stainless steel originating in the peoples republic of china the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1225/2009 of 30 november 2009 on protection against dumped imports from countries not members of the european community (the basic regulation) and in particular article 7 thereof after consulting the advisory committee whereas a procedure initiation on 30 september 2010 the european commission (the commission) announced by a notice published in the official journal of the european union (2) the initiation of an anti-dumping proceeding with regard to imports of certain seamless pipes and tubes of stainless steel originating in the peoples republic of china (prc or the country concerned) +cash flow and ability to raise capital the net cash flow from operating activities developed as follows (given the negative amount in 2006 exceptionally for this table 2007 was considered as the year of reference for indicating the cash flow development) table 15 cash flow sampled producers 2006 2007 2008 2009 ip cash flow (indexed) negative 100 685 175 53 the above table shows that the cash flow of the union industry peaked in 2008 and that subsequently it decreased until the end of the period considered reaching a rather low level in the ip +the company stated that rejecting the met claim on the grounds that companies may be receiving subsidies has the effect of penalising exporter for subsidies deemed illegal without any substantiation this argument has to be rejected the met claims have not been rejected on the basis of possible subsidies but on specific grounds set out in the recitals above as well as in the detailed met disclosure documents sent to parties the main reason for the rejection of the met was distortions established on the raw materials market further it should be underlined that for example companies obtained loans from state owned banks at preferential rates significantly lower than market rates clearly demonstrates the carry over from the previous non-market economy +as indicated under recital above two groups of union producers comprised of five union producers were selected in the sample representing more than 50 of the total union production of the like product of the remaining cooperating union producers the company that requested a limitation of the product scope (see recitals and above did not agree with the selection of the sample notably the producer criticized that the sample includes only companies that are present both on the market of finished products and that of pre-material and also the fact that the sample is comprised of only complainant companies it is reiterated that the company in question purchases pre-material from both the prc and the union industry however the producer failed to prove that indeed such two separate markets exist in addition the producer represented less than 2 of total union production during the ip whilst the two company groups were selected on the basis of the objective criteria as described in recitals and above +the three above mentioned sampled (groups of) companies which were denied met also claimed individual treatment (it) it was provisionally found that all these three sampled (groups of) companies met the conditions of article 9 of the basic regulation and could thus be granted it +the production process usually uses cylinders (billets) of stainless steel as raw material in the first production step an unfinished hollow is produced using either an extrusion press or a hot piercing process subsequently the hollow can be first processed by a hot-finishing process resulting in a hot-finished pipe and further processed by a cold-finishing process (cold pilger process) or by a cold drawing process resulting in a cold-finished pipe all types of products (hollows hot-finished and cold-finished pipes) share the same basic physical chemical and technical characteristics and same basic uses +magnitude of the actual dumping margin the dumping margins for imports from the prc as specified above in recital above are very high given the volume market share and prices of the dumped imports the impact of the margins of dumping can be considered substantial +questionnaire replies were received from the sampled exporting producers in the prc from all sampled union producers two unrelated union importers and one user +following disclosure of the met findings comments were received from the union industry and three sampled exporting (groups of) producers concerned +on this basis the provisional country-wide level of dumping as a percentage of the cif union frontier price duty unpaid is 83 2 d injury union production and union industry during the ip the like product was manufactured by 21 producers in the union within the meaning of article 4 and article 5 of the basic regulation all 21 existing union producers constitute the union industry and they will therefore be hereafter referred to as the union industry +the release for free circulation in the union of the product referred to in paragraph 1 shall be subject to the provision of a security equivalent to the amount of the provisional duty +export performance of the union industry as concerns the development of export sales of the union industry exports decreased less than domestic sales irrespective of whether all union producers or only sampled producers are examined as concerns the development of export sales volumes the following trend could be established for the union industry during the period considered table 18 union industry export sales (tonnes) to unrelated customers all eu producers 2006 2007 2008 2009 ip indexed 100 99 108 88 64 it should be pointed out that the export sales of the union industry shrank at a slower pace than its sales did on the union market this may imply that the pressure of dumped imports from the prc is particularly strong in the union market given this indication as well as the substantial share of exports in total sales made by the union industry (constantly between 39 and 45 during the period considered) any lack of competitiveness of the union producers on the world market can certainly be excluded +at the same time stainless steel tube imports from the prc were undercutting union industry prices by up to 32 during the ip (see recital above) +from the questionnaire reply of this user it appears that the company will not be seriously affected by anti-dumping measures not even with regard to its division using the stainless tubes when comparing the value of imports of the product concerned with the turnover of the division using the imported goods the effect can be considered insignificant +from the information submitted by the sole cooperating user it is impossible to estimate the total employment of the whole user industry within the union given its limited representativeness and the wide variety of applications +investigation period the investigation of dumping and injury covered the period from 1 july 2009 to 30 june 2010 (investigation period or ip) the examination of trends relevant for the assessment of injury covered the period from 2006 to the end of the investigation period (period considered) b product concerned and like product product concerned the product concerned as described in the notice of initiation is certain seamless pipes and tubes of stainless steel other than with attached fittings suitable for conducting gases or liquids for use in civil aircraft currently falling within cn codes 7304 11 00 7304 22 00 7304 24 00 ex 7304 41 00 7304 49 10 ex 7304 49 93 ex 7304 49 95 ex 7304 49 99 and ex 7304 90 00 (the product concerned) this includes unfinished hollows hot-finished products and cold-finished products +no other importers have cooperated by submitting a questionnaire reply or substantiated comments on that basis it is provisionally concluded that the imposition of provisional measures will not have substantially negative effects on the interest of the union importers +one company claimed that it was not required to submit met claims for related raw material suppliers this argument has to be rejected the notice of initiation stated clearly that the names and the precise activities of all related companies involved in the production and/or sales (export and/or domestic) of the product under investigation have to be provided to the commission +union consumption dropped strongly by 35 between 2006 and the ip the consumption had however slightly increased between 2006 and 2007 peaked in 2007 and then continuously decreased year by year until the ip table 1 union consumption 2006 2007 2008 2009 ip units (tonnes) 131 965 153 630 133 711 102 865 85 629 indexed 100 116 101 78 65 indeed the period considered covers considerable fluctuations on the market mainly due to huge volatilities in demand for stainless steel tubes the year 2007 and also the first three quarters of 2008 can be characterised as a robustly booming market eventually the economic crisis had a large impact on the demand this impact started to become visible in the last quarter of 2008 became graver throughout 2009 and continued even in the first half of 2010 thus affecting also the whole of the ip all this is well reflected in the trend of union consumption which was at its peak in 2007 after which it shrank year by year +the union industry has claimed that for the determination of the injury elimination level a target profit of 12 should be used however the evidence provided so far has not shown that this profitability can be achieved in a normal market situation not even in the exceptional year of 2007 could the union industry achieve such high level of profitability based on the data collected during the investigation it has provisionally been considered that a 5 profit is appropriate for determining the injury elimination level +all in all when considering the overall impact of the anti-dumping measures the positive effects on the union industry appear to clearly outweigh the potential negative impacts on the other interest groups therefore it is provisionally concluded that the anti-dumping duties are not against the union interest +apart from criterion 1 certain companies also failed to demonstrate that they fulfilled criterion 2 and two companies could not demonstrate that they had a clear set of accounting records that was independently audited and in line with international accounting standards for one company discrepancies in the financial records were not reflected in the auditor s report another company could not present financial statements for some years of its operation +the third wto review of chinas trade policies and practices and their impact on the functioning of the multilateral trading system wt/tpr/s/230 available at http //www wto org/english/tratop_e/tpr_e/tp330_e htm as well as the second wto review of chinas trade policies and practices and their impact on the functioning of the multilateral trading system wt/tpr/s/199 available at http //www wto org/english/tratop_e/tpr_e/tp299_e htm +the sampled companies acquire their main raw materials used for the production of seamless stainless steel pipes and tubes on the chinese domestic market the investigation established that on average and depending on the steel grade the chinese prices of the raw materials are around 30 lower than those on the world markets (usa or eu) +as a result the following injury elimination levels have provisionally been established company/companies injury elimination level changshu walsin specialty steel co ltd haiyu 71 5 shanghai jinchang stainless steel tube manufacturing co ltd situan 48 2 wenzhou jiangnan steel pipe manufacturing co ltd yongzhong 48 0 companies listed in annex i 56 6 all other companies 71 5 provisional measures in the light of the foregoing and pursuant to article 7 of the basic regulation it is considered that a provisional anti-dumping duty should be imposed on imports of the product concerned originating in the prc at the level of the lower of the dumping margin and injury elimination level found in accordance with the lesser duty rule which is in all cases the injury margin +given that the prc has to import the majority of its iron ore at international market prices it is clear that it does not benefit from any natural comparative advantage which would explain the low prices of the main raw materials on the chinese domestic market at the same time and for several years various studies point to significant state interference in this sector +impacts of market fluctuations and the economic crisis whilst 2007 and the first three quarters of 2008 can be characterised as a robustly booming market for stainless steel tubes eventually the financial and economic crisis had a large impact also on this sector the economic downturn started in the last quarter of 2008 continued throughout 2009 and affected even the first half of 2010 i e the whole of the ip all this is reflected in the union consumption trends which was at its peak in 2007 after which it shrank year by year (see table 1 above) +three (groups of) companies requested individual examination the examination of these claims at provisional stage was unfeasible within the time framework a decision whether individual examination will be granted to any of these companies will be taken at definitive stage +those reports indicate that the chinese government has identified 14 key industries and seven pillar industries primary downstream consumers of specialty steel are among the seven pillar industries supported by the chinese government through its industrial policies +as no statement of objection under article 7 of regulation (ec) no 510/2006 has been received by the commission that name should therefore be entered in the register has adopted this regulation article 1 the name contained in the annex to this regulation is hereby entered in the register +article 2 this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 29 june for the commission on behalf of the president dacian ciolo member of the commission oj l 93 31 3 2006 p 12 +30 6 2011 en official journal of the european union l 170/28 commission implementing regulation (eu) no 636/2011 of 29 june 2011 entering a name in the register of protected designations of origin and protected geographical indications moules de bouchot de la baie du mont-saint-michel (pdo) the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 510/2006 of 20 march 2006 on the protection of geographical indications and designations of origin for agricultural products and foodstuffs (1) and in particular the first subparagraph of article 7 thereof whereas pursuant to the first subparagraph of article 6 of regulation (ec) no 510/2006 france s application to register the name moules de bouchot de la baie du mont-saint-michel was published in the official journal of the european union (2) +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +30 6 2011 en official journal of the european union l 170/34 commission implementing regulation (eu) no 639/2011 of 29 june 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 629/2011 (4) +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +2 7 2011 en official journal of the european union l 175/8 commission implementing regulation (eu) no 646/2011 of 1 july 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 639/2011 (4) +commission implementing regulation (eu) no 923/2012 of 26 september 2012 laying down the common rules of the air and operational provisions regarding services and procedures in air navigation and amending implementing regulation (eu) no 1035/2011 and regulations (ec) no 1265/2007 (ec) no 1794/2006 (ec) no 730/2006 (ec) no 1033/2006 and (eu) no 255/2010 (oj l 281 13 10 2012 p 1) +in the interest of safety and with a view to ensuring compliance with the essential requirements laid down in annex v to regulation (eu) 2018/1139 all operators of sailplanes covered by this regulation with the exception of design or production organisations performing certain operations should be subject to a set of basic requirements +in order to ensure a smooth transition and to give all parties concerned sufficient time to prepare for the application of that new regime this regulation should only apply six months after entry into force +article 4 entry into force and application this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union it shall apply from 9 july this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 14 december for the commission the president jean-claude juncker oj l 212 22 8 2018 p +commission regulation (eu) no 1178/2011 of 3 november 2011 laying down technical requirements and administrative procedures related to civil aviation aircrew pursuant to regulation (ec) no 216/2008 of the european parliament and of the council (oj l 311 25 11 2011 p 1) +as regards oversight of persons and organisations the requirements laid down in article 3 of regulation (eu) no 965/2012 and annex ii to that regulation should continue to apply with respect to air operations with sailplanes +commission regulation (eu) no 965/2012 of 5 october 2012 laying down technical requirements and administrative procedures related to air operations pursuant to regulation (ec) no 216/2008 of the european parliament and of the council (oj l 296 25 10 2012 p 1) +taking into account the less complex nature and smaller scale of commercial operations with sailplanes as compared to other forms of commercial aviation and following a risk-based approach it is appropriate for commercial operations with sailplanes to only require a prior declaration to the competent authority as set out in point (a) of article 30 of regulation (eu) 2018/ this regulation lays down the detailed rules for making such declarations +in accordance with point (a) of article 30 of regulation (eu) 2018/1139 operators of sailplanes shall engage in commercial operations only after having declared to the competent authority their capacity and means to discharge the responsibilities associated with the operation of the sailplane the first subparagraph shall not apply to the following operations with sailplanes (a) cost-shared operations provided that the direct costs of the flight of the sailplane and a proportionate part of the annual costs incurred for the storage insurance and maintenance of the sailplane are shared by the individuals on board (b) competition flights or flying displays provided that the remuneration or any other valuable consideration for such flights is limited to the recovery of the direct costs of the flight of the sailplane and a proportionate part of the annual costs incurred for the storage insurance and maintenance of the sailplane and that any prizes gained do not exceed the value specified by the competent authority (c) introductory flights flights for the purposes of parachute dropping sailplane towing or aerobatic flights performed either by a training organisation having its principal place of business in a member state and referred to in article 10a of regulation (eu) no 1178/2011 or by an organisation created for the purposes of promoting aerial sport or leisure aviation provided that the organisation operates the sailplane on the basis of either ownership or a dry lease agreement that the flight does not generate profits distributed outside of the organisation and that such flights represent only a marginal activity of the organisation (d) training flights performed by a training organisation having its principal place of business in a member state and referred to in article 10a of regulation (eu) no 1178/2011 +opinion no 07/2017 of the european aviation safety agency of 23 august 2017 for a draft commission regulation on the revision of the operational rules for sailplanes +article 3 air operations operators of sailplanes shall operate the sailplanes in accordance with the requirements set out in annex ii the first subparagraph shall not apply to design or production organisations which comply with articles 8 and 9 respectively of commission regulation (eu) no 748/2012 and which operate the sailplane within the scope of their privileges for the purposes of the introduction or modification of sailplane types +commission regulation (eu) no 1321/2014 of 26 november 2014 on the continuing airworthiness of aircraft and aeronautical products parts and appliances and on the approval of organisations and personnel involved in these tasks (oj l 362 17 12 2014 p 1) appendix text of image declaration in accordance with commission implementing regulation (eu) 2018/1976 operator name place where the operator has its principal place of business contact details sailplane operation starting date of commercial operation and where relevant date of change to existing commercial operation information on sailplane(s) used commercial operation(s) and continuing airworthiness management (1) where applicable list of altmoc with references to the associated amc (annex to the declaration) statements the operator complies and will continue to comply with the essential requirements set out in annex v to regulation (eu) 2018/1139 and with the requirements of implementing regulation (eu) 2018/1976 in particular the operator conducts its commercial operations in accordance with the following requirements of annex ii to implementing regulation (eu) 2018/1976 all sailplanes operated have a certificate of airworthiness issued in accordance with regulation (eu) no 748/ any pilot holds a license and ratings issued or accepted in accordance with annex i to regulation (eu) no 1178/2011 as required by point sao gen 125 of annex ii the operator will notify to the competent authority any changes in circumstances affecting its compliance with the essential requirements set out in annex v to regulation (eu) 2018/1139 and with the requirements of implementing regulation (eu) 2018/1976 as declared to the competent authority through this declaration and any changes to the information and lists of altmoc included in and annexed to this declaration as required by point sao dec 100(c) of annex ii the operator confirms that all information included in this declaration including its annexes is complete and correct date name and signature sailplane type sailplane registration main base type(s) ofoperation continuing airworthiness management organisation complete the table if there is not enough space to list the information it shall be listed in a separate annex the annex shall be dated and signed +considering the specific nature of certain operations and following a risk-based approach it is appropriate to exempt certain operations with sailplanes from the requirement of a prior declaration +the european union aviation safety agency prepared draft implementing rules and submitted them as an opinion to the commission in accordance with points (b) and (c) of article 75 and article 76 of regulation (eu) 2018/1139 +20 12 2018 en official journal of the european union l 326/64 commission implementing regulation (eu) 2018/1976 of 14 december 2018 laying down detailed rules for the operation of sailplanes pursuant to regulation (eu) 2018/1139 of the european parliament and of the council the european commission having regard to the treaty on the functioning of the european union having regard to regulation (eu) 2018/1139 of the european parliament and of the council of 4 july 2018 on common rules in the field of civil aviation and establishing a european union aviation safety agency and amending regulations (ec) no 2111/2005 (ec) no 1008/2008 (eu) no 996/2010 (eu) no 376/2014 and directives 2014/30/eu and 2014/53/eu of the european parliament and of the council and repealing regulations (ec) no 552/2004 and (ec) no 216/2008 of the european parliament and of the council and council regulation (eec) no 3922/91 (1) and in particular article 31 thereof whereas the commission is to adopt the necessary implementing rules for establishing the conditions for the safe operation of sailplanes in accordance with regulation (eu) 2018/1139 where such aircraft meet the conditions specified in points (b)(i) and (ii) of article 2 of that regulation +article 2 definitions for the purpose of this regulation the definitions set out in annex i and the following definitions shall apply sailplane means a heavier-than-air aircraft that is supported in flight by the dynamic reaction of the air against its fixed lifting surfaces the free flight of which does not depend on an engine engine means a device used or intended to be used for powered sailplane propulsion powered sailplane means a sailplane equipped with one or more engines having with engine(s) inoperative the characteristics of a sailplane commercial operation means any operation of a sailplane in return for remuneration or other valuable consideration which is available for the public or when not made available to the public which is performed under a contract between an operator and a customer where the latter has no control over the operator competition flight means any air operation with a sailplane performed for the purposes of participating in air races or contests including practising for such operation and flying to and from air races or contests flying display means any air operation with a sailplane performed for the purposes of providing an exhibition or entertainment at an advertised event open to the public including practising for such operation and flying to and from the advertised event introductory flight means any air operation with a sailplane against remuneration or other valuable consideration consisting of an air tour of short duration for the purpose of attracting new trainees or new members performed either by a training organisation referred to in article 10a of commission regulation (eu) no 1178/2011 or by an organisation created with the aim of promoting aerial sport or leisure aviation aerobatic flight means an intentional manoeuvre involving an abrupt change in a sailplane s attitude an abnormal attitude or abnormal acceleration not necessary for normal flight or for instruction for licences certificates or ratings other than the aerobatic rating principal place of business means the head office or registered office of an operator of a sailplane within which the principal financial functions and operational control of the activities referred to in this regulation are exercised dry lease agreement means an agreement between undertakings pursuant to which a sailplane is operated under the responsibility of the lessee +information about the organisation responsible for the continuing airworthiness management shall include the name of the organisation the address and the approval reference +type(s) of operation refers to the type of commercial operation conducted with the sailplane +in light of the specific nature of operations with sailplanes there is a need for dedicated operational rules laid down in a self-standing regulation those rules should be based on the general rules for air operations laid down in commission regulation (eu) no 965/2012 (2) but they should be restructured and simplified so as to ensure that they are proportionate and founded on a risk-based approach whilst ensuring that sailplane operations are carried out safely +the measures provided for in this regulation are in accordance with the opinion of the committee established by article 127 of regulation (eu) 2018/1139 has adopted this regulation article 1 subject matter and scope this regulation lays down detailed rules for air operations with sailplanes where such aircraft meet the conditions laid down in points (b)(i) and (ii) of article 2 of regulation (eu) 2018/1139 +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +29 6 2011 en official journal of the european union l 169/25 commission implementing regulation (eu) no 629/2011 of 28 june 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 625/2011 (4) +1 7 2011 en official journal of the european union l 173/5 commission implementing regulation (eu) no 642/2011 of 30 june 2011 fixing the import duties in the cereals sector applicable from 1 july 2011 the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (eu) no 642/2010 of 20 july 2010 laying down detailed rules for the application of council regulation (ec) no 1234/2007 in respect of import duties in the cereals sector (2) and in particular article 2 thereof whereas article 136 of regulation (ec) no 1234/2007 states that the import duty on products falling within cn codes 1001 10 00 1001 90 91 ex 1001 90 99 (high quality common wheat) 1002 ex 1005 other than hybrid seed and ex 1007 other than hybrids for sowing is to be equal to the intervention price valid for such products on importation increased by 55 minus the cif import price applicable to the consignment in question however that duty may not exceed the rate of duty in the common customs tariff +article 136 of regulation (ec) no 1234/2007 lays down that for the purposes of calculating the import duty referred to in paragraph 1 of that article representative cif import prices are to be established on a regular basis for the products in question +import duties should be fixed for the period from 1 july 2011 and should apply until new import duties are fixed and enter into force has adopted this regulation article 1 from 1 july 2011 the import duties in the cereals sector referred to in article 136 of regulation (ec) no 1234/2007 shall be those fixed in annex i to this regulation on the basis of the information contained in annex ii +pursuant to article 2 of regulation (eu) no 642/2010 the price to be used for the calculation of the import duty on products of cn codes 1001 10 00 1001 90 91 ex 1001 90 99 (high quality common wheat) 1002 00 1005 10 90 1005 90 00 and 1007 00 90 is the daily cif representative import price determined as specified in article 5 of that regulation +article 4 the minimum prices which may be offered are eur 5 per hectolitre of alcohol at 100 vol intended for use as fuel in boiler rooms and cement works and eur 30 per hectolitre of alcohol at 100 vol intended for manufacturing other industrial products particularly antifreezes and detergents +article 5 the formalities for sampling shall be as set out in article 98 of regulation (ec) no 1623/ the price of samples shall be eur 10 per litre the intervention agency shall provide all the necessary information on the characteristics of the alcohol put up for sale +stocks of wine alcohol acquired before 1 august 2008 must be disposed of in accordance with article 128(3)(b) of regulation (ec) no 479/2008 and article 103(1)(a) of regulation (ec) no 555/2008 article 31 of regulation (ec) no 1493/1999 and chapter iv of regulation (ec) no 1623/2000 continue to apply for this measure +regulation (ec) no 1623/2000 lays down inter alia the detailed rules for disposing of stocks of alcohol arising from distillation pursuant to articles 27 28 and 30 of regulation (ec) no 1493/1999 held by intervention agencies +all tenders must be accompanied by proof that a tendering security of eur 4 per hectolitre of alcohol at 100 vol has been lodged with the intervention agency concerned +the volume put up for sale is 61 834 8931 hectolitres of alcohol at 100 vol the vat numbers places of storage and the volume of alcohol at 100 vol contained in each vat are detailed in the annex hereto +2 7 2011 en official journal of the european union l 175/3 commission implementing regulation (eu) no 644/2011 of 1 july 2011 opening tendering procedure no 1/2011 eu for the sale of wine alcohol for new industrial uses the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1493/1999 of 17 may 1999 on the common organisation of the market in wine (1) and in particular article 33 thereof whereas article 3 of council regulation (ec) no 491/2009 of 25 may 2009 amending regulation (ec) no 1234/2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) stipulates that article 128 of council regulation (ec) no 479/2008 of 29 april 2008 on the common organisation of the market in wine amending regulations (ec) no 1493/1999 (ec) no 1782/2003 (ec) no 1290/2005 and (ec) no 3/2008 and repealing regulations (eec) no 2392/86 and (ec) no 1493/1999 continues to apply even though the latter regulation has been repealed +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 pursuant to this regulation which constitutes a notice of invitation to tender within the meaning of article 81 of regulation (ec) no 1623/2000 the sale shall take place of wine alcohol for new industrial uses the tendering procedure shall be no 01/2011 eu the alcohol concerned has been produced from distillation pursuant to articles 27 28 and 30 of regulation (ec) no 1493/1999 and is held by the cypriot and hungarian intervention agencies +tenders must reach the intervention agency concerned not later than 12 00 brussels time on the third tuesday following the date of publication of this regulation +minimum prices should be fixed for the submission of tenders broken down according to the type of end-use +article 6 the performance guarantee shall be eur 30 per hectolitre of alcohol at 100 vol +in accordance with article 80 of regulation (ec) no 1623/2000 a tendering procedure should be organised for the sale of wine alcohol for new industrial uses with a view to reducing the stocks of wine alcohol in the union and enabling small-scale industrial projects to be carried out in the union the wine alcohol of eu origin in storage in the member states consists of quantities produced from distillation pursuant to articles 27 28 and 30 of regulation (ec) no 1493/1999 +article 128 of council regulation (ec) no 479/2008 stipulates that the measures concerning market mechanisms set out in title iii of council regulation (ec) no 1493/1999 of 17 may 1999 on the common organisation of the market in wine continue to apply even if the latter regulation is repealed if those measures have been initiated or undertaken by 1 august similarly pursuant to article 103 of commission regulation (ec) no 555/2008 of 27 june 2008 laying down detailed rules for implementing council regulation (ec) no 479/2008 on the common organisation of the market in wine as regards support programmes trade with third countries production potential and on controls in the wine sector the relevant rules set out in commission regulation (ec) no 1623/2000 of 25 july 2000 laying down detailed rules for implementing regulation (ec) no 1493/1999 on the common organisation of the market in wine with regard to market mechanisms continue to apply even though regulation (ec) no 1623/2000 has been repealed in so far as those rules relate to measures commenced before 1 august 2008 +import licence applications and import licences shall contain the following entries (a) in box 16 the eight digit cn code of the sugar (b) in boxes 17 and 18 the quantity of sugar (c) in box 20 at least one of the entries listed in part a of the annex (d) in box 24 the customs duty applicable using one of the entries listed in part b of the annex +article 2 the period during which tenders may be submitted in response to the first partial invitation to tender shall end on 13 july 2011 at 12 noon brussels time +article 6 in the light of the current state and foreseeable development of the union and world sugar markets the commission shall for each partial invitation to tender and eight digit cn code either fix a minimum customs duty or decide not to fix a minimum customs duty by adopting an implementing regulation in accordance with the procedure referred to in article 195 of regulation (ec) no 1234/ with that regulation the commission shall also fix where necessary an allocation coefficient applicable to the tenders which have been introduced at the level of the minimum customs duty in this case the security referred to in article 4 shall be released in proportion to the quantities allocated +the commission may suspend the submission of tenders for one or several partial invitations to tender +for each partial invitation to tender provision should be made for the commission to fix a minimum customs duty and if appropriate an allocation coefficient in order to reduce the quantities accepted or to decide not to fix a minimum customs duty +article 7 where no minimum customs duty has been fixed all tenders shall be rejected the competent authorities of the member states shall not accept tenders that have not been notified as provided for in article 5 +the security referred to in paragraph 1 shall be released in the case of unsuccessful tenderers +the periods during which tenders may be submitted in response to the second and subsequent partial invitations shall begin on the first working day following the end of the preceding period they shall end at 12 noon brussels time on 27 july 2011 24 august 2011 14 september 2011 and 28 september 2011 +the management committee for the common organisation of agricultural markets has not delivered an opinion within the time limit set by its chair has adopted this regulation article 1 a tendering procedure is opened for the 2010/2011 marketing year for imports of sugar of cn code 1701 at a reduced customs duty pursuant to article 187 of regulation (ec) no 1234/2007 and bearing reference number that customs duty shall replace the common customs tariff duty and the additional duties referred to in article 141 of regulation (ec) no 1234/2007 and article 36 of commission regulation (ec) no 951/2006 (5) commission regulation (ec) no 376/2008 shall apply save as otherwise provided for in this regulation +member states should inform the tenderers of the result of their participation in the partial invitation to tender within a short period +article 8 no later than the last working day of the week following the week during which the regulation referred in article 6 was published the competent authority shall issue an import licence to every successful tenderer covering the quantity awarded +the competent authorities of the member states should notify the commission of the admissible tenders in order to simplify and standardise those notifications models should be made available +by way of derogation from article 8 of regulation (ec) no 376/2008 the rights deriving from the import licence shall not be transferable +statements of award shall indicate at least (a) the procedure to which the tender relates (b) the quantity of sugar awarded (c) the amount expressed in euros rounded to no more than two decimal places of the customs duty to be paid per tonne of sugar of the quantity referred to in point (b) (d) the eight digit cn code of the sugar +a security should be lodged for each tender that security should become the security for the import licence application in the case of a successful tender and be released when a tender is unsuccessful +the competent authorities should notify the commission of the quantities for which import licenses have been issued for this purpose models should be made available by the commission +article 5 the competent authorities of the member states shall decide on the validity of tenders on the basis of the conditions set out in article persons authorised to receive and examine the tenders shall be under an obligation not to disclose any particulars relating thereto to any unauthorised person where the competent authorities of the member states decide that a tender is invalid they shall inform the tenderer +tenders shall be admissible only if the following conditions are met (a) tenders shall indicate (i) the name address and vat number of the tenderer (ii) the quantity of sugar tendered which shall at least be 20 tonnes and shall not exceed 45 000 tonnes (iii) the proposed amount of the customs duty in euros per tonne of sugar rounded to no more than two decimal places (iv) the eight digit cn code of the sugar (b) proof is furnished before expiry of the time limit for the submission of tenders that the tenderer has lodged the security referred to in article 4(1) (c) the tender is accompanied by an application for an import licence for the tendered quantities and customs duty containing the entries provided for article 8(2) (d) the tender is presented in the official language or one of the official languages of the member state in which the tender is lodged (e) the tender indicates a reference to this regulation and the expiry date for the submission of the tenders (f) the tender does not include any additional conditions introduced by the tenderer other than those laid down in this regulation +the competent authority concerned shall notify applicants within three working days after the day of publication of the regulation referred in article 6 of the result of their participation in the partial invitation to tender it shall send statements of award to any tenderer whose tender quotes a customs duty for the eight digit cn code equal to or more than the minimum customs duty fixed for that eight digit cn code the quantities awarded for a specific customs duty and eight digit cn code shall be the quantities tendered for that customs duty and eight digit cn code +imports of sugar under inward processing in accordance with chapter 3 of commission regulation (eec) no 2454/93 of 2 july 1993 laying down provisions for the implementation of council regulation (eec) no 2913/92 establishing the community customs code have been reduced and the processing industry has increased the use of quota sugar in exported products those developments have maintained the tight supply situation on the union market which threaten to cause undersupply during the last months of the marketing year until the arrival of the new harvest +30 6 2011 en official journal of the european union l 170/21 commission implementing regulation (eu) no 634/2011 of 29 june 2011 opening a standing invitation to tender for the 2010/2011 marketing year for imports of sugar of cn code 1701 at a reduced customs duty the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) and in particular article 187 in conjunction with article 4 thereof whereas the world market prices for sugar have been at a constant high level during the first months of the 2010/2011 marketing year which has slowed down the pace of imports in particular from third countries benefiting from certain preferential agreements +the high prices on the world market for sugar therefore threaten the availability of supply on the union market for that reason and with the view to increasing the supply it is necessary to make imports easier through the reduction of the import duty for certain quantities of sugar that quantity and the reduction of the duty should be assessed in the light of the current state and foreseeable development of the union and world sugar market the quantity and reduction should therefore be based on a tendering system +a tender may not be withdrawn or amended after its submission +article 3 tenders in connection with this tendering procedure shall be addressed to the competent authority in a member state by fax or electronic mail the competent authorities of the member states may require that electronic tenders be accompanied by an advance electronic signature within the meaning of directive 1999/93/ec of the european parliament and of the council (7) +a tender which is not submitted in accordance with paragraphs 1 and 2 shall not be admissible +applicants shall not submit more than one tender per eight digit cn code for the same partial invitation to tender +article 10 no later than the last working day of the second week following the week during which the regulation referred in article 6 is published the competent authorities shall notify the commission of the quantities for which import licences have been issued under this regulation the notification shall be transmitted electronically in accordance with models and methods made available to the member states by the commission +article 9 import licences issued in connection with a partial invitation to tender shall be valid from the day of issue until the end of the third month following the month in which the regulation on partial invitation referred in article 6 is published +article 4 in accordance with the provisions of title iii of commission regulation (eec) no 2220/85 each tenderer shall lodge a security of eur 150 per tonne of sugar to be imported under this regulation where a tender is successful that security shall become the security for the import licence +the minimum eligibility requirements to tender should be specified +the competent authority concerned shall notify the commission by fax of the admissible tenders submitted within 2 hours after the expiry of the time limit for the submissions laid down in article 2 and (2) that notification shall not contain the data referred to in article 3(2)(a)(i) +the form and content of the notifications shall be defined on the basis of models made available by the commission to the member states when no tenders are submitted the competent authority shall notify the commission thereof by fax within the same time limit +confronted with this situation the commission recently adopted a series of measures with the purpose to bring additional supply to the union market those measures included commission regulation (eu) no 222/2011 of 3 march 2011 laying down exceptional measures as regards the release of out-of-quota sugar and isoglucose on the union market at reduced surplus levy during marketing year 2010/2011 (2) which increased the combined availability of sugar and isoglucose on the union market by 526 000 tonnes and commission implementing regulation (eu) no 302/2011 of 28 march 2011 opening an exceptional import tariff quota for certain quantities of sugar in the 2010/11 marketing year (3) which suspended the import duties for sugar falling within cn 1701 for a quantity of 300 000 tonnes +the outlook for the cereals market for the start of the next marketing year (2011/12) would suggest that prices will remain high given the low stock levels and the commissions current estimates regarding the quantities which will actually be available from the 2011 harvest in order to make it easier to maintain a flow of imports conducive to eu market equilibrium there is a need to ensure continuity in cereal imports policy by keeping the temporary suspension of customs duties on imports during the 2011/12 marketing year until 31 december 2011 for the import tariff quotas to which this measure currently applies +where the cereals referred to in paragraph 1 of this article undergo direct transport to the union and such transport began at the latest by 31 december 2011 the suspension of customs duties under this regulation shall continue to apply for the purposes of the release into free circulation of the products concerned proof of direct transport to the union and of the date on which the transport commenced shall be provided to the satisfaction of the relevant authorities by the original transport document +in order to ensure sound management of the procedure for issuing import licences as from 1 july 2011 this regulation should enter into force on the day after its publication in the official journal of the european union +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 the application of customs duties on imports of products of cn code 1001 90 99 of a quality other than high quality as defined in annex ii to commission regulation (eu) no 642/1010 (5) and cn code 1003 00 is suspended for the 2011/12 marketing year for all imports under the reduced-duty tariff quotas opened by regulations (ec) no 1067/2008 and (ec) no 2305/2003 +30 6 2011 en official journal of the european union l 170/19 commission implementing regulation (eu) no 633/2011 of 29 june 2011 temporarily suspending customs duties on imports of certain cereals for the 2011/12 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 187 in conjunction with article 4 thereof whereas in order to support the supply of cereals on the community market in the last few months of the 2010/11 marketing year commission regulation (eu) no 177/2011 suspended customs duties for the import tariff quotas for common wheat of low and medium quality and feed barley opened by regulations (ec) no 1067/2008 and (ec) no 2305/2003 respectively until 30 june 2011 +moreover traders should not be penalised in cases where cereals are en route for importation into the union therefore transport times should be taken into account and traders allowed to release cereals for free circulation under the customs-duty suspension arrangements provided for in this regulation for all products the direct transport of which to the union started at the latest on 31 december the evidence to be provided showing direct transport to the union and the date on which the transport commenced should also be established +in order to ensure effective management of the procedure for issuing import certificates from 1 july 2011 this regulation must enter into force on the day following its publication in the official journal of the european union +article 3 of regulation (ec) no 1067/2008 stipulates that subquota iii of 2 378 387 tonnes for other third countries be divided into four quarterly subperiods covering in particular subperiod 3 extending from 1 july to 30 september for a quantity of 594 597 tonnes and subperiod 4 extending from 1 october to 31 december for a quantity of 594 596 tonnes +a derogation should therefore be made from regulation (ec) no 1067/2008 for 2011 +in view of the situation of the market in order to promote a fluid supply of the eu market in cereals under subquota iii for 2011 subperiod 3 and subperiod 4 should be merged into a single subperiod covering the cumulative quantity for subperiods 3 and 4 namely 1 189 193 tonnes +the measures provided for in this regulation are in accordance with the opinion of the management committee for the common organisation of agricultural markets has adopted this regulation article 1 by way of derogation from article 3(3)(c) of regulation (ec) no 1067/2008 for 2011 subperiod 3 shall extend from 1 july 2011 to 31 december 2011 covering a quantity of 1 189 193 tonnes by way of derogation from article 3(3)(d) of regulation (ec) no 1067/2008 subperiod 4 shall be eliminated for 2011 +30 6 2011 en official journal of the european union l 170/18 commission implementing regulation (eu) no 632/2011 of 29 june 2011 derogating for 2011 from regulation (ec) no 1067/2008 opening and providing for the administration of community tariff quotas for common wheat of a quality other than high quality from third countries the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) and in particular article 144 in conjunction with article 4 thereof whereas article 3 of commission regulation (ec) no 1067/2008 of 30 october 2008 opening and providing for the administration of community tariff quotas for common wheat of a quality other than high quality from third countries and derogating from council regulation (ec) no 1234/2007 stipulates that the annual import quota of 2 989 240 tonnes be subdivided into three subquotas 572 000 tonnes for the united states 38 853 tonnes for canada and 2 378 387 tonnes for other third countries +endurance test for navigation mode the navigation system shall pass an endurance test of 48 hours of uninterrupted operation under normal operation conditions the system shall provide standard interfaces for performance and resource monitoring during operation monitoring the system shall show no indication of system instability memory leaking or any kind of performance loss over time navigation systems supporting additional services while running in navigation mode shall provide the necessary test equipment including all documents mentioned in chapter 1 7 of this section +test of displayed features in more than one cell for the same area (a) it shall be tested whether all features included in the test senc and in the additional overlay test senc are visible and correctly displayed for this test the information density shall be switched to all features (b) it shall be tested whether it is possible to select one or more specific cells for presentation if there are several cells from different producers for the same area with the same usage (c) it shall be tested whether the test bathymetric inland enc is displayed correctly together with the base senc in accordance with chapter 6 of the document referred to in point 2(i) of section 1 +reliable updated information related to water depth (bathymetric information) in encs should be published in a timely manner in order to contribute to the safety and efficiency of inland navigation for that reason the provision of information about the water depth should be standardised +requirements for additional services in navigation mode navigation systems may support additional services in navigation mode if they are useful these services shall not interfere with other requirement in navigation mode the navigation system provider is responsible for additional test equipment necessary to verify interface specification protocol specification and compliance tests with the inland ecdis technical specifications +test of the measurement functions (a) all numeric displayed values of the electronic bearing line (ebl) and the variable range marker (vrm) shall exactly match with the analogue positions of the ebl and the vrm (or correspond with the cursor coordinates) (b) the resolution and increments of the numerical display shall be identical with the analogue values of ebl and vrm +software performance software for the operation visualisation and functionality of inland ecdis equipment shall be designed developed implemented and tested in accordance with the software requirements described in section 4a to this annex +loading and updating of sencs (a) all manual activities concerning loading or updating of charts shall be possible only outside the navigation mode (b) automatic updating shall not downgrade the performance of the navigation display (c) a rollback function shall be implemented to allow restoring to the last working combination +system configurations system configuration 1 inland ecdis equipment stand-alone-system without connection to radar in this system configuration only operation in information mode is possible (see section 4b figure 1) +19 12 2018 en official journal of the european union l 324/1 commission implementing regulation (eu) 2018/1973 of 7 december 2018 amending implementing regulation (eu) no 909/2013 on the technical specifications for the electronic chart display and information system for inland navigation (inland ecdis) referred to in directive 2005/44/ec of the european parliament and of the council the european commission having regard to the treaty on the functioning of the european union having regard to directive 2005/44/ec of the european parliament and of the council of 7 september 2005 on harmonised river information services (ris) on inland waterways in the community (1) and in particular point (a) of article 5 thereof whereas the purpose of using the electronic chart display and information system for inland navigation (inland ecdis) is to contribute to the safety and efficiency of inland navigation for that reason the technical specifications defined in commission implementing regulation (eu) no 909/2013 for the inland ecdis device and the inland electronic navigational chart (inland enc) should be further revised and clarified +equipment pre-sets (store/recall) in navigation mode (a) after starting the inland ecdis equipment shall come up with a moderate brilliance pre-set which neither blinds in a dark environment nor makes the picture invisible in a bright environment (b) other parameters may come up with their values at the time before switching off or from stored settings +the measures provided for in this regulation are in accordance with the opinion of the committee established pursuant to article 7 of council directive 91/672/eec (3) has adopted this regulation article 1 the annex to implementing regulation (eu) no 909/2013 is replaced by the text in the annex to this regulation +picture colours at least the colour combinations included in the iho-s-52 presentation library 6 0 (colour tables) for day dusk and night shall be supported +test of the chart update function before and after each test step the version numbers of the loaded sencs and updates shall be recalled as described in the operation manual and showed on the display step 1 loading of the test senc step 2 update of the test senc step 3 test of the roll-back function step 4 loading of a new senc after an update it shall be possible to recall and display all concerned features +presentation of notice marks notice marks which are located at the river bank are presented in the chart displayed by generic symbols (notmrk01 notmrk02 and notmrk03) this does not apply to the notice marks on bridges additionally applications are required to be able to display the detailed symbol which is similar to the real world indication and the full set of object information of a user-selected notice mark notice marks that are located at bridges shall be symbolised according to the orientation of the bridge notice marks which specify distances or a velocity shall not be symbolised with the number itself but only with that symbol which gives the general regulation or information section 4 operational and performance requirements methods of testing and required test results introduction this section specifies the minimum requirements contained in section 1 of this annex and describes the test procedures and the required results concerning the hardware the software the functions the operation the display and the interfaces to other equipment on board of vessels +the reference to unece standards or other standards in this regulation should not create any precedent for future union standards related to inland navigation river information services or inland ecdis +system configuration 3 inland ecdis equipment monitor shared with connected radar equipment in this system configuration the monitor of the radar equipment is shared with the inland ecdis equipment prerequisite for this mode are matching graphic parameters for both video signals and a video switch which allows a fast switchover of the video sources (see section 4b figure 3) this system configuration allows operation in information mode as well as in navigation mode +council directive 91/672/eec of 16 december 1991 on the reciprocal recognition of national boatmasters certificates for the carriage of goods and passengers by inland waterway (oj l 373 31 12 1991 p 29) annex electronic chart display and information system for inland navigation (inland ecdis) table of contents section 1 performance standard for inland ecdis 6 general provisions 6 references 7 contents provision and updating of chart information 8 contents and provision of inland encs and bathymetric inland encs 8 updates 8 presentation of information 9 display requirements 9 display ranges (scales) 9 image positioning and orientation 9 display of senc information 9 display of radar information 10 display of other navigational information 10 colours and symbols 11 data and display accuracy 11 operation 11 information mode 11 navigation mode 13 operation and control elements 14 connection with other equipment 14 indications and alarms 14 built in test equipment (bite) 14 malfunctions 14 fall-back arrangements 15 insufficient accuracy of the senc-positioning 15 defects 15 power supply in navigation mode 15 section 2 data standard for inland encs 15 introduction 15 theoretical data model 15 data structure 15 product specification for inland encs and bathymetric inland encs 15 section 2a codes for producers and waterways (in addition to iho s-62 enc producer codes) 16 section 3 presentation standard for inland ecdis 20 introduction 20 the presentation library for inland ecdis 20 components of s-52 and inland ecdis presentation library 20 look-up tables 21 conditional symbology procedures (cs) 22 colours 22 presentation of notice marks 22 section 4 operational and performance requirements methods of testing and required test results 22 introduction 22 operating modes and system configuration 22 operating modes 22 system configurations 23 inland ecdis equipment stand-alone-system without connection to radar 23 inland ecdis equipment parallel installation and connection to radar 23 inland ecdis equipment monitor shared with connected radar equipment 23 radar equipment with integrated inland ecdis functionality 23 performance requirements 23 hardware performance 23 software performance 23 performance of operation controls 23 display performance 23 display dimensions 24 display orientation 24 display resolution 24 display colours 24 display brilliance 24 picture renewal 24 display technology 24 operational functions 24 operating mode 24 equipment pre-sets (store/recall) in navigation mode 24 presentation of senc information in navigation mode 24 chart orientation positioning and shifting 25 position and bearing of the own vessel 25 information density 25 ranges/range rings 25 picture brilliance in navigation mode 25 picture colours 26 pick report 26 measuring features 26 input and editing of skippers own chart entries 26 loading and updating of sencs 26 radar picture presentation and overlay 26 inland ecdis functions with immediate access 27 permanently visible function parameters 27 service functions 27 static correction of the chart position 27 static correction of the chart orientation 27 configuration of interfaces 27 hardware test and required certificates 28 resistance to environmental conditions in navigation mode 28 equipment documentation 28 interfaces 28 characteristic of operation controls 28 characteristic of the display in navigation mode 28 test of the chart presentation operation and functionality 28 preparation of the equipment under test (eut) 28 test of the operation modes 28 test of the displayed features 28 test of the scale dependent information density (scamin) 29 test of brilliance variation 29 test of the colours 29 test of the measurement functions 29 test of the chart update function 29 test of displayed features in more than one cell for the same area 29 test of radar picture presentation and operation 29 preparations 29 test of the radar picture without under laid chart 30 test of the radar picture overlaid information from other vessels and the underlying chart 30 test of the radar overlay 30 test of the chart positioning and orientation 30 test of scale conformity 31 test of alarms and indications 31 test of fall back arrangements in navigation mode 31 section 4a measures to ensure software quality 31 general requirements 31 software design requirements 31 implementation requirements 31 test requirements 32 third party components requirements 32 requirements for additional services in navigation mode 32 language 32 documentation requirements for users 33 methods of testing and required results 33 navigation mode operation test 33 performance requirements 33 position 33 heading 33 sensor failure 33 performance test interface 33 general software tests 34 equipment documentation 34 endurance test for navigation mode 34 changes to certified navigation systems 34 general requirements 34 hardware and software changes 34 section 4b system configurations (figures) 35 section 5 glossary of terms 37 appendix 1 comparison of the structures of the standard for (maritime) ecdis and of the technical specifications for inland ecdis 43 section 1 performance standard for inland ecdis general provisions (a) electronic chart display and information system for inland navigation (inland ecdis) is composed of hardware software for the operating system and application software (b) inland ecdis aims to contribute to the safety and efficiency of inland shipping (c) inland ecdis can be designed for both information mode and navigation mode or for information mode only the minimum requirements for inland ecdis equipment designed for information mode only specified in chapter 4 1 of section 1 and section 4 of this annex are mandatory on waterways where carriage requirements are enacted by the responsible legislative organs in other regions they are recommended (d) for navigation mode inland ecdis (operating system software application software and hardware) as specified in section 4 of this annex shall have a high level of reliability and availability at least of the same level as other means of navigation (e) inland ecdis shall use chart information as specified by sections 2 and 3 of this annex (f) national authorities and international bodies are recommended to consider transitional provisions when they are introducing carriage requirements for inland ecdis (g) inland ecdis shall meet all the requirements of the inland ecdis performance standard set out in this annex (h) the terms skipper and boat master used in this annex shall be deemed to be equivalent with the term ship master used in the ris guidelines commission regulation (ec) no 414/2007 (1) (i) the producer or supplier of inland ecdis software must document in the user manual of the software which requirements for equipment (hardware) referred to in point (c) need to be fulfilled for inland ecdis in information mode on waterways where carriage requirements are enacted by the responsible legislative organs (j) when the inland ecdis equipment provides essential services as defined in directive (eu) 2016/1148 concerning measures for a high common level of security of network and information systems across the union the provisions of the said legislation apply (k) ais is an automatic identification system for maritime vessels that complies with the technical and performance standards laid down in chapter v of the solas convention (safety of life at sea) as defined in the document referred to in point 2(r) of section inland ais refers to the automatic identification system for inland waterway vessels as set out in the document referred to in point 2(p) of section in this annex whenever ais is mentioned it refers to both maritime ais and inland ais unless specified otherwise +theoretical data model the description of the theoretical data model in part 2 of s-57 shall apply to the theoretical data model of inland encs and bathymetric inland encs +malfunctions (a) inland ecdis in navigation mode shall provide a suitable alarm or indication of system malfunctions (refer to chapter 9 of section 4 of this annex) (b) inland ecdis in information mode shall provide a suitable alarm or indication of missing input from if connected gnss receiver ais and heading device (c) inland ecdis shall provide appropriate alarms or indications of malfunction of the equipment with respect to the displayed information fall-back arrangements insufficient accuracy of the senc-positioning in navigation mode the senc shall be automatically switched off if the senc positioning does not match the radar picture within the limits set out in chapters 5 1 and 5 2 of section 4 of this annex +chart orientation positioning and shifting (a) in navigation mode only the chart orientation relative motion head up and the centred or off centred presentations as required for the radar picture are permitted (b) in information mode at least the chart orientations north and parallel to the waterway axis as well as positioning are recommended by connection of a positioning sensor the displayed part of the chart can automatically follow the mariner s own vessel s position +characteristics of operation controls all operation controls shall be checked regarding the ergonomic and functional mode of operation and shall fulfil the requirements of this annex +display of other navigational information (a) inland ecdis and additional navigational information (inland ais) shall use a common conventional geodetic coordinate reference system (b) it shall be possible to display the skipper s own vessel s position on the screen (c) it shall be possible for the skipper to select safety depth limits (d) inland ecdis shall indicate the falling short of the safety depth limits +test of scale conformity the chart s information shall be compared with well-known reference points contained in the radar picture in order to test whether the chart scale sufficiently conforms to the radar scale +resistance to environmental conditions in navigation mode (a) inland ecdis equipment as described in chapter 2 2 4 of this section shall fulfil the requirements of the document referred to in point 2(k) of section 1 concerning the resistance to environmental conditions (humidity vibration and temperature the latter reduced according to chapter 3 1 of this section) and concerning electromagnetic compatibility (b) the provider or his representative shall submit a relevant conformity declaration of an accredited laboratory +configuration of interfaces (a) it shall be possible to configure interfaces for connected sensors actors and signals (b) interfaces shall comply with existing interface specifications as defined in the document referred to in point 2(l) of section 1 and the interface specifications for rate of turn indicators (20 mv/deg/min) as defined in the document referred to in point 2(d) of section 1 +test of the radar picture overlaid information from other vessels and the underlying chart the inland ecdis equipment shall be installed in a reference environment this may be real (on a vessel) or simulated position and orientation information of other vessels (according to the inland ais technical specifications) shall be applied with several information ages +ranges/range rings (a) in navigation mode the following fixed ranges and range rings are prescribed according to the radar regulations range range rings 500 m 100 m 800 m 200 m 1 200 m 200 m 1 600 m 400 m 2 000 m 400 m 4 000 m 800 m (b) smaller and larger ranges with a minimum of four and a maximum of six range rings are permitted (c) inland ecdis equipment in navigation mode shall have fixed range rings with the intervals set out in points (a) and (b) and at least one variable range marker (vrm) (d) switching on/off of fixed and variable range markers shall be independent of each other and their display shall be clearly distinguishable (e) the position of the vrm and the corresponding displayed distance shall use the same increments and resolution (f) the functions of the vrm and the electronic bearing line (ebl) may additionally be realised by a cursor and by a corresponding numerical display showing range and bearing of the cursor position +presentation of senc information in navigation mode (a) the radar picture shall be clearly distinguishable from the chart independent of the chosen colour table (b) only a monochrome presentation of the actual radar picture is permitted (c) the presentation of chart information shall not mask or degrade important parts of the radar picture this shall be ensured by appropriate entries into the look-up tables (refer to section 3 of this annex chapter 2 2 field radar code) the transparency of the radar overlay shall therefore be user-defined (d) chart and radar picture presentation shall have the same scale (e) the heading line shall be always visible (f) additionally the mariner s own vessel s contour and the safety contours may be inserted +static correction of the chart position (a) the position of the mariner s own vessel shall be presented centred or off centred on the display in accordance with the radar requirements the chart position shall match the radar image assuming an absolute position s input the permissible static difference between actual radar position and displayed radar centre shall not exceed 1 m (b) it shall be possible to correct an offset error (distance between the positions of the position sensor and the radar sensor) +display technology display systems that are insensitive to the magnetic fields that may occur in the wheelhouse of an inland vessel shall be used +the revised technical specifications for the inland enc should take due account of the work carried out by the inland enc harmonization group (iehg) which is comprised of representatives from government industry and academia +implementing regulation (eu) no 909/2013 should therefore be amended accordingly +implementing regulation (eu) no 909/2013 defined technical specifications for inland ecdis for navigation mode however on some waterways competent authorities also enacted carriage requirements for inland ecdis devices for information mode in order to harmonise the devices in use on those waterways and to ensure safety of navigation mandatory minimum requirements should be adopted for inland ecdis devices in information mode on the waterways with obligatory carriage of inland ecdis on waterways with no obligatory carriage of inland ecdis in information mode the minimum requirements for information mode should serve as recommendations +data structure the description of the data structure in part 3 of s-57 shall apply to the data structure of inland encs and bathymetric inland encs +display dimensions (a) in navigation mode the minimum chart and radar display area shall be at least 270 mm by 270 mm (b) in information mode the requirements of point 4 1(c) of section 1 shall be applicable +conditional symbology procedures (cs) cs procedures shall be generated for features of which the symbolisation depends on application settings e g safety contour depends on other features e g top marks and their structure is too complex to be defined in a direct look-up table entry cs procedures which shall be modified or implemented in an inland ecdis additional to the cs procedures of s-52 are described in the document referred to in point 2(i) of section 1 +third party components requirements third party components such as oem (original equipment manufacturer) products include software not developed by the navigation system provider this includes but is not restricted to static or dynamic linked libraries computer aided design and engineering tools producing source or object code operating systems third party software components shall be chosen according to the general safety requirements the navigation system provider shall prove that third party components meet the high standards necessary for safe navigation either by providing acceptable quality certificates or by extensive and provable testing of the components +language additional national versions of a type-approved inland ecdis shall reapply for type approval to be checked for the translation of the user interface the type approval process is only foreseen for systems in navigation mode the qualified institution which performs the type approval process of an inland ecdis system may request an expertise by a certified translator regarding the correct translation in a specific language from the system manufacturer +display orientation (a) a rectangular display may be mounted in landscape or in portrait orientation under the prerequisite that the minimum dimensions set out in section 3 4 1 are fulfilled (b) because of the limited space available in the typical wheelhouse of an inland vessel and the fact that a vessel usually follows the fairway-axis the display shall be installed preferably in the portrait orientation +methods of testing and required results navigation mode operation test performance requirements the navigation system shall make reliable estimations of position and heading moreover the estimations of position and heading shall be checked by the system for conformity with the required accuracy position and heading information shall be calculated and displayed for the same reference position this shall normally be the centre of the radar antenna a new position estimate shall at least be available with every revolution of the radar antenna +commission implementing regulation (eu) no 909/2013 of 10 september 2013 on the technical specifications for the electronic chart display and information system for inland navigation (inland ecdis) referred to in directive 2005/44/ec of the european parliament and of the council (oj l 258 28 9 2013 p 1) +information density the information density shall be at least adjustable to the three switch steps base standard and all information the latter displays all other features in addition to the standard display individually on demand all corresponding visible features are defined in the performance standard and the presentation standard (incl the presentation library for inland ecdis) (sections 1 and 3 of this annex) +picture renewal (a) the picture renewal rate shall not be shorter than that of the radar picture ( 24 pictures per minute) (b) between two consecutive renewals no fluctuations of brilliance shall occur (c) on raster scan displays the frame repetition rate shall not be lower than 60 hz +hardware test and required certificates (a) the test shall consist of a comparison between the equipment under test (eut) and the requirements of this annex (b) proved equivalent tests and proved and documented test results shall be accepted without renewed tests (c) the entire chapter 6 is valid for navigation mode but the requirements that do not contain a specific reference to navigation mode are also valid for information mode +interfaces (a) all interfaces shall be documented correctly and completely (b) electronic circuits shall be designed failsafe mechanically as well as electronically and shall not have degrading repercussions on connected equipment +updates (a) inland ecdis shall be capable of accepting updates to the inland enc data provided in conformity with the product specification for inland encs and updates of the depth information provided in conformity with the product specification for bathymetric inland encs those updates shall be applied to the senc automatically the implementation procedure of the update shall not interfere with the display in use (b) inland ecdis shall allow for the display of updates so that the skipper may review their contents and ascertain that they have been included in the senc (c) inland ecdis shall be capable of revoking automatically applied updates of the inland enc data (d) original inland enc editions and later updates shall never be merged (e) the inland enc and all updates to it shall be displayed without any degradation of their information content (f) the inland enc data and updates to it shall be clearly distinguishable from other information (g) inland ecdis shall ensure that the inland enc and all updates to it have been correctly loaded into the senc (h) inland ecdis shall keep a record of updates including the time of application to the senc (i) the contents of the senc to be used shall be adequate and up-to-date for the intended voyage +equipment documentation the technical documentation shall be checked to assure that it is complete appropriate and understandable and that it is sufficient for unproblematic installation configuration and operation of the equipment +display resolution a display resolution of 5 m in the 1 200 m range is required this leads to a maximum pixel dimension of 2 5 m 2 5 m i e about 1 000 pixels at the short edge of the display +operational functions operating mode (a) if the equipment is able to work in both operation modes it shall provide for the possibility of switching between navigation mode and information mode (b) the operation mode in use shall be displayed (c) suitable measures are required to prevent the inadvertent switching off of the navigation mode +the revised technical specifications should take due account of the technological progress and the experience gained from the application of implementing regulation (eu) no 909/2013 +operation and control elements (a) inland ecdis shall be designed having regard to ergonomic principles for user-friendly operation (b) the inland ecdis equipment shall have a minimum of operation and control elements (see section 4 of this annex) (c) operation and control elements and indicators for connected sensors may be integrated in inland ecdis (d) standard settings and user-defined settings shall be easily retrievable +characteristics of the display in navigation mode the display shall fulfil all requirements of this annex concerning dimension displayable colours resolution and variation of brilliance +the presentation library for inland ecdis s-57 data sets describe the data standard for inland encs however they do not contain any information about how the data is going to be presented the chart presentation is generated online in the inland ecdis application for that purpose the inland ecdis application uses machine-readable symbolisation instructions for each feature which is drawn on the screen for the presentation of encs the iho s-52 standard is mandatory the s-52 standard contains all rules which are necessary for the symbolisation and presentation of encs on the screen since the features attributes and attribute values for encs were extended for inland encs and bathymetric inland encs an extension of the s-52 standard is necessary in order to be able to display also the inland specific features all extensions apply to the document referred to in the fourth indent of point 2(c) of section 1 of this annex +article 2 this regulation shall enter into force on the day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in the member states in accordance with the treaties done at brussels 7 december for the commission the president jean-claude juncker oj l 255 30 9 2005 p 152 +software design requirements software components shall be clearly designed by means of established software design methods the design specification shall indicate how safety requirements are addressed in the software design a software style guide shall be provided that specifies code writing style documentation style modularisation conflict analyses and testing of software components for every software component documents describing specification and design are required +position and bearing of the own vessel (a) in navigation mode the own vessel s position shall always be visible in the display area whether centred or off centred as specified in the document referred to in point 2(f) of section (b) in navigation mode the heading line which runs from the display centre to the top and which shall be always visible shall represent the heading of the mariner s own vessel +test of brilliance variation in navigation mode the inland ecdis equipment shall be operated in a dark room and the brilliance shall be brought to its lowest level the brilliance of the features shall not exceed a value of 15 cd/m2 and the background a value of 0 5 cd/m2 +performance of operation controls (a) the operation of the system shall be simple appropriate and conform to common human interface standards the operational state of the system and the connected technical sub devices has to be clearly indicated (b) the number of operational controls shall be as low as possible and restricted to the required number (c) wireless remote controls are not permitted (d) the on/off switch shall perform and shall be arranged in such a way that inadvertent operation is not possible (e) the symbols of the operating controls shall have a minimum character height of 4 mm and shall be readable under all conditions that may exist in a wheelhouse (f) the brilliance and the illumination of the operating controls shall be adjustable to the required value +power supply in navigation mode the inland ecdis shall have its own separate fused power supply section 2 data standard for inland encs introduction (a) the data standard for inland encs describes the technical specifications to be used for the exchange of digital hydrographic data between national inland waterway authorities and for its distribution to manufacturers skippers and other users (b) this data standard shall be used for the production of inland encs and bathymetric inland encs the transfer and distribution of inland encs and bathymetric inland encs shall take place in such a way that data integrity is ensured (c) this data standard is based on the document referred to in point 2(a) of section 1 (s-57) (d) this data standard describes the necessary additions and clarifications to s-57 and the application of s-57 for the purpose of use in inland ecdis applications (e) the data standard shall be compliant to standards and regulations indicated in points 2(h) and (j) of section 1 +defects (a) if the inland ecdis system in navigation mode has an evident defect it shall provide a suitable alarm (refer to chapters 4 16 and 9 of section 4 of this annex) (b) facilities enabling a safe take-over of the functions of inland ecdis in navigation mode shall be provided in order to ensure that an inland ecdis failure does not result in a critical situation +data and display accuracy (a) the accuracy of the calculated data that are presented shall be independent of the display characteristics and shall be consistent with the senc accuracy (b) the inland ecdis in navigation mode shall provide an indication as to whether the display uses a smaller display range than the accuracy of the inland enc data offers (over-scale indication) (c) the accuracy of all calculations performed by inland ecdis shall be independent of the characteristics of the output device and shall be consistent with the senc accuracy (d) bearings and distances drawn on the display or those measured between features already drawn on the display shall have accuracy no less than that afforded by the resolution of the display +the technical specifications for inland ecdis should be based on the technical principles set out in annex ii to directive 2005/44/ec +inland ecdis shall use all s-52 components plus extensions in lookup tables symbol library conditional symbology procedures the extensions are described in the document referred to in point 2(i) of section 1 +test of the chart positioning and orientation (a) the static offset of the chart position shall be less than 5 m in all ranges up to 2 000 m (b) the static azimuth orientation offset error between radar and chart image shall be less than 0 5 degree (c) the correction of the parameters referred to in points (a) and (b) shall be demonstrated in the service mode (d) the dynamic deviation of the chart orientation at rates of turn less than 60 degree/min shall be less than 3 degree (e) these tests shall be performed visually or by evaluation of measured data +test of the scale dependent information density (scamin) (a) whether the scamin functionality (the minimum scale at which the feature may be used for ecdis presentation) is installed correctly shall be tested (b) for this test the range shall be used at which the feature shall be visible according to its scamin enumeration (refer to chapter 8 4 of the document referred to in point 2(h) of section 1) +connection with other equipment (a) inland ecdis shall not affect the performance of any connected equipment adversely similarly the connection of optional equipment shall not degrade the performance of inland ecdis (b) inland ecdis shall be capable of generating information to other systems e g for the purpose of electronic reporting (c) the relevant requirements of controls and indicators to connected equipment shall be fulfilled +performance test interface a navigation system provider shall equip navigation systems during the compliance test with a standard iec 61162-1 interface sending the position and heading information used by the navigation system this information shall be encoded by iec 61162-1 sentences (see the document referred to in point 2(k) of section 1) known as gga (global positioning system fix data) and hdt (heading true) additional sentences like rmc (recommended minimum navigation information) rot (rate of turn) and vtg (track made good and ground speed) are accepted those strings shall be sent preferably every 0 1 second at least every second position and heading shall be according to the definitions in chapter 2 1 1 1 and chapter 2 1 1 2 of this section +static correction of the chart orientation (a) the difference between the heading line orientation and the vessel s axis shall not be greater than 1 0 degree (b) chart and radar image shall have the same orientation the static directional error between heading line and chart orientation shall be less than 0 5 degree +measuring features (a) measuring features for distances and bearings are required (b) resolution and accuracy shall at least be the same as those of the display but may not suggest better values than those of the chart data +display performance the provisions of chapters 3 4 2 to 3 4 7 are recommended for inland ecdis in information mode +sensor failure the navigation system shall check proper operation of the position and heading estimation online problems shall be detected within 30 seconds in case of malfunction the navigation system shall inform the user about the problem and its consequences for navigation if a critical sensor alarm signalises that the position or the heading does not meet the required accuracy criteria the navigation chart shall be switched off +pick report (a) it shall be possible to get all underlying textual and/or graphical information concerning user selections of the features that are displayed in the chart (b) this additional textual and/or graphical information shall not hamper the view of the waterway in the navigational chart +documentation requirements for users the documentation (manuals) shall contain comprehensive information on the equipment the installation the operation and the service of the navigation system the presentation of user-relevant information shall be clear understandable and without unnecessary technical terms the user manual shall at least be available in english french german and dutch the technical system description may be made available in english only +test of the radar overlay (a) the radar image shall not be degraded by the chart picture (refer to point 4 3(c) of this section) (b) the overlay of information regarding the position and orientation of other vessels shall be only displayed when the information is up-to-date (nearly real-time) and the age of information does not exceed the maximum time out values provided in the first table in point 5 1(e) of section 1 performance standard for inland ecdis the symbols shall be marked as outdated if the age of the information exceeds 30 seconds for moving vessels the position information of the own vessel shall not be displayed if it is received from a repeater station (c) the overlay of information derived from tracking and tracing devices regarding the position and orientation of other vessels shall be faded out at a user-definable range the activation of this feature and the selected range of the restricted area shall be indicated on the display (d) if the heading of other vessels is available the position and the orientation of those other vessels shall be displayed by a directed triangle or a true outline (to scale) for all other vessels a generic symbol shall be used (an octagon is recommended a circle shall be used for inland applications only) (e) it shall be possible to switch off the chart and any other information layer and to display only the radar picture by one easily accessible control element or menu area (f) the chart picture shall be renewed not later than the radar picture +test of the colours all user selectable s-52 colour tables shall be sequentially tested to conform to this annex +display brilliance the brilliance of the display shall be adjustable to every operational required value this is especially valid for the lowest value during operation at night +test of the displayed features whether all features included in the test senc are visible and correctly displayed shall be tested for this test the information density shall be switched to all features the system shall be capable to at least display all features according to the presentation standard for inland ecdis (section 3 of this annex) additionally other user-selectable symbol sets are allowed if symbols that deviate from the document referred to in point 2(i) of section 1 the inland ecdis presentation library are used for the presentation of any chart information then they shall be legible be certain and unambiguous in their meaning be of sufficient size to support the nominal viewing distance symbols added to the ecdis presentation library shall be clearly distinguishable from presentation library symbols +the revised technical specifications for inland ecdis should take due account of the work carried out by the expert group on inland ecdis which is composed of representatives of the authorities of the member states responsible for the implementation of inland ecdis and official members from other governmental bodies as well as observers from the industry +inland ecdis functions with immediate access (a) the following operational functions require direct access range brilliance colours information density (b) these functions shall have either own control elements or own menu areas which are arranged in the highest menu level and are permanently visible +system configuration 4 radar equipment with integrated inland ecdis functionality this system configuration is a radar installation with integrated inland ecdis functionality that can be operated in information mode as well as in navigation mode (see section 4b fig 4) +image positioning and orientation (a) in information mode all kinds of chart orientation are permitted (see chapter 5 1 of this section) (b) in navigation mode the chart shall be automatically positioned and oriented in the relative motion head-up orientation with the own vessel s position in the screen centre or off-centred (see chapter 5 2 of this section) +system configuration 2 inland ecdis equipment parallel installation and connection to radar this system configuration allows operation in information mode as well as in navigation mode (see section 4b figure 2) +look-up tables for each geometry type (point line area) there is a separate look-up table each entry in a look-up table consists of the following fields (a) 6-character code of the feature class (acronym) (b) attribute combination (c) symbolisation instructions (d) display priority 0-9 (comparable with drawing layers) (e) radar code (f) display category (display base standard all other) (g) viewing group more refined grouping of features than the display categories figure 1 example entry of a look-up table lndmrk catlmk17 sy(towers01) 7 o other 32250 in this case the feature lndmrk is shown by the symbol towers01 with priority 7 if the attribute catlmk equals the feature lies over the radar the presentation of features in a specific area that are contained in different cells of the same usage follows the entries in the look-up tables +test of the radar picture without under laid chart (a) if the inland ecdis equipment displays the radar picture but the radar operation control remains at the radar equipment (see figures 2 and 3 of section 4b) the radar picture of the inland ecdis equipment shall be considered as the daughter display of an item of radar equipment in that case the radar picture shall fulfil the display and picture-relevant requirements of the requirements for radar and rate-of-turn indicators as defined in the document referred to in point 2(f) of section (b) if the eut is a radar installation with integrated inland ecdis functionality (see figure 4 of section 4b) all requirements of the standards for radar equipment and rate-of-turn indicators as defined in the document referred to in point 2(f) of section 1 shall be fulfilled +test requirements in accordance with the design specification software modules shall be tested the test results shall be compared with the design guidelines and documented in test reports tests shall incorporate module as well as system tests providers of a navigation system shall use extensive simulator-based tests to ensure stability of their system the simulator shall allow the simulation of a complete navigation environment including all required external sensors +in accordance with article 12 of directive 2005/44/ec in order to comply with article 4 of this directive member states should take the necessary measures to implement the requirements laid down in this regulation not later than 30 months after its entry into force +display of radar information (a) in navigation mode the radar image shall have the highest display priority and shall only be permitted to be presented in the relative motion head-up mode if the system is also type approved for maritime ecdis true motion and north-up mode may be implemented but only for working in information mode (b) the underlaid senc shall match in position range and orientation the radar image and the position from the position sensor shall both be adjustable for the antenna offset to the conning position (c) the overlaid radar image shall conform to the minimum requirements as specified in chapter 4 14 of section 4 of this annex (d) the overlaid radar image may contain additional navigational information any additional navigational information and tracking and tracing symbols shall however in no way degrade the display of the original radar content +display ranges (scales) (a) in information mode (refer to chapter 5 1 of this section) all scales and ranges are permitted (b) in navigation mode (refer to chapter 5 2 of this section) only the successive switchable ranges (scales) specified in chapter 4 7 of section 4 of this annex are permitted +test of the operation modes all operating modes as described in the operating manual shall be successively started up and tested the requirements of chapter 4 of this section shall be fulfilled +radar picture presentation and overlay (a) the radar image representation is mandatory for operation in the navigation mode (b) the dimensions resolution and attributes of the radar presentation shall fulfil the relevant radar requirements (c) the radar picture shall not be degraded by other contents of the picture (see also point 4 3(c) of this section) (d) provided the functional requirements are fulfilled overlaying of different information layers is permitted (e) the overlay of information regarding the position and orientation of other vessels is only allowed when the information is up-to-date (real-time) and the age of information does not exceed the maximum time out values provided in the first table in point 5 1(e) of section the symbols shall be marked as outdated if the age of the information exceeds 30 seconds for moving vessels the position information of the own vessel shall only be displayed when the position is detected by an on board subsystem and not if the position is received from a repeater station (f) the overlaid information derived from tracking and tracing devices regarding the position and orientation of other vessels shall be faded out at a user-definable range the activation of this feature and the selected range of the restricted area shall be indicated on the display (g) only if the heading of other vessels is available the position and the orientation of those other vessels may be presented by a directed triangle or a true outline (to scale) in all other cases a generic symbol shall be used (an octagon is recommended a circle shall be used for inland applications only) (h) it shall be possible to switch off the chart and any other information layer and to display only the radar picture by one easily accessible control element or menu area (i) if the quality and plausibility monitoring of the inland ecdis equipment detect that the chart cannot be oriented and/or positioned with the accuracy required by this annex an alarm shall be presented on the display and the chart shall be switched off automatically if there is no radar signal the information mode shall be displayed in both cases a warning or an alarm shall be given the switching shall always be possible by manual action +indications and alarms built in test equipment (bite) inland ecdis in navigation mode shall be provided with the means for carrying out on-board tests of major functions either automatically or manually in case of a failure the module at fault shall be shown +input and editing of skippers own chart entries (a) inland ecdis equipment shall allow input storing modifying and deletion of additional chart information by the skipper (skippers own features) in navigation mode as well as in information mode (b) these own chart entries shall be distinguishable from the senc data and shall not overlay or degrade the radar picture in navigation mode +test of the chart presentation operation and functionality preparation of the equipment under test (eut) the eut shall be installed assembled and connected according to the installation manual after switching on the test senc shall be loaded +test of radar picture presentation and operation in navigation mode preparations (a) for the test purposes the manufacturer or provider shall provide a serial interface at the system to be approved (equipment under test eut) which delivers the same actual values (as strings compliant with the document referred to in point 2(l) of section 1) of position and heading that are used to position and orient the chart (b) during the test a reference system shall be used of which position and heading values are compared with those of the eut (c) the eut shall be connected to any type approved radar equipment (to the choice of the provider) (d) the radar picture shall be adjusted in range and bearing with reference to the heading line +the revised technical specifications should take due account of the latest internationally adopted standards and experience gained as a result of their application such as the relevant standards by the united nations economic commission for europe (unece) the international hydrographic organization (iho) the central commission for the navigation of the rhine (ccnr) and other international bodies +operating modes and system configuration operating modes (a) the inland ecdis technical specifications distinguish two operating modes navigation mode and information mode (b) inland ecdis equipment designed for operating in navigation mode shall fulfil the requirements of this annex and the standards on navigational radar equipment and rate-of-turn indicators for inland ecdis in navigation mode a type approval is required by competent authorities referred to in point 2(q) of section (c) for inland ecdis equipment designed for information mode only the requirements of this section 4 are to be understood as technical (operational and performance) requirements the producer has to document the conformity with these technical requirements a type approval is not required for inland ecdis in information mode the documentation shall be made available to competent authorities and users on request +colours and symbols (a) the display of colours and symbols to represent senc information shall at least be able to comply with the regulations of section 3 of this annex additionally other user-selectable symbol sets are permitted (b) to present navigational elements and parameters as listed in the document referred to in point 2(d) of section 1 of this annex other colours and symbols than those mentioned in point 4 7(a) of this section shall be used +heading the navigation system shall estimate and display the heading of the vessel the following minimal requirements shall be fulfilled (a) the average heading angle estimation shall not deviate more than 1 degree from the radar heading direction and shall cover all systematic errors the offset between vessel heading direction and radar heading shall be less than 1 degree (b) the standard deviation shall be less than 2 degrees and shall be only based on random errors these results shall be verified by a realistic test of at least 60 minutes +picture brilliance in navigation mode (a) the brightness of the display shall be adjustable to the operationally necessary value this applies in particular to operation in darkness (b) chart and radar picture shall have separate brightness controls (c) because of the strongly different environment brightness of bright day and dark night another control for the basic brightness of the display shall be available additionally to the colour tables in the menu +colours colours used in an ecdis are defined in an absolute manner independently from the monitor used (using cie coordinates) this ensures that ecdis charts look similar on monitors of different suppliers cie values are converted into rgb values by means of colour calibration software which must be used by the manufacturer commercial displays usual in the trade are seen as matching those requirements due to the fact that various light conditions might occur on the bridge of a vessel it is necessary to offer presentations with different brightness levels for each level a separate colour table exists the represented colour scheme shall be chosen on the basis of ergonomical and physiological factors and the representation of indications in different colours shall not result in mixed colours by superimposing +display colours the system shall be able to display ergonomically proven colour combinations for day and night +it is necessary to extend the list of waterways codes established in the annex to implementing regulation (eu) no 909/2013 in order to enable member states to encode waterways objects in a consistent manner on the relevant waterways additional waterway codes can be requested electronically at the inland enc harmonization group recognised by the international hydrographic organisation +as no statement of objection under article 7 of regulation (ec) no 510/2006 has been received by the commission that name should therefore be entered in the register has adopted this regulation article 1 the name contained in the annex to this regulation is hereby entered in the register +article 2 this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 29 june for the commission on behalf of the president dacian ciolo member of the commission oj l 93 31 3 2006 p 12 +30 6 2011 en official journal of the european union l 170/26 commission implementing regulation (eu) no 635/2011 of 29 june 2011 entering a name in the register of protected designations of origin and protected geographical indications aceite campo de calatrava (pdo) the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 510/2006 of 20 march 2006 on the protection of geographical indications and designations of origin for agricultural products and foodstuffs and in particular the first subparagraph of article 7 thereof (1) whereas pursuant to the first subparagraph of article 6 of regulation (ec) no 510/2006 spains application to register the name aceite campo de calatrava was published in the official journal of the european union (2) +30 6 2011 en official journal of the european union l 170/30 commission implementing regulation (eu) no 637/2011 of 29 june 2011 approving a non-minor amendment to the specification for a name entered in the register of protected designations of origin and protected geographical indications beaufort (pdo) the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 510/2006 of 20 march 2006 on the protection of geographical indications and designations of origin for agricultural products and foodstuffs (1) and in particular the first subparagraph of article 7 thereof whereas by virtue of the first subparagraph of article 9 of regulation (ec) no 510/2006 the commission has examined france s application for the approval of amendments to the specification for the protected designation of origin beaufort registered under commission regulation (ec) no 1107/96 (2) +article 2 this regulation shall enter into force on the twentieth day following that of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 29 june for the commission on behalf of the president dacian ciolo member of the commission oj l 93 31 3 2006 p 12 +since the amendment in question is not minor within the meaning of article 9 of regulation (ec) no 510/2006 the commission published the amendment application in the official journal of the european union (3) as required by the first subparagraph of article 6 of that regulation as no statement of objection within the meaning of article 7 of regulation (ec) no 510/2006 has been received by the commission the amendment should be approved has adopted this regulation article 1 the amendment to the specification published in the official journal of the european union regarding the name in the annex to this regulation is hereby approved +in view of the developments in c te d ivoire the list of persons and entities subject to restrictive measures set out in annex ia to regulation (ec) no 560/2005 should be amended +article 2 this regulation shall enter into force on the date of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 27 june for the council the president martonyi j +in view of the urgency and in order to ensure that the measures provided for in this regulation are effective this regulation should enter into force immediately upon its publication has adopted this regulation article 1 the entities listed in the annex to this regulation shall be deleted from the list set out in annex ia to regulation (ec) no 560/2005 +the data currently available to the commission indicate that those amounts should be amended in accordance with the rules and procedures laid down in regulation (ec) no 951/2006 has adopted this regulation article 1 the representative prices and additional duties applicable to imports of the products referred to in article 36 of regulation (ec) no 951/2006 as fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year are hereby amended as set out in the annex hereto +28 6 2011 en official journal of the european union l 168/5 commission implementing regulation (eu) no 625/2011 of 27 june 2011 amending the representative prices and additional import duties for certain products in the sugar sector fixed by regulation (eu) no 867/2010 for the 2010/11 marketing year the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1234/2007 of 22 october 2007 establishing a common organisation of agricultural markets and on specific provisions for certain agricultural products (single cmo regulation) (1) having regard to commission regulation (ec) no 951/2006 of 30 june 2006 laying down detailed rules for the implementation of council regulation (ec) no 318/2006 as regards trade with third countries in the sugar sector (2) and in particular article 36(2) second subparagraph second sentence thereof whereas the representative prices and additional duties applicable to imports of white sugar raw sugar and certain syrups for the 2010/11 marketing year are fixed by commission regulation (eu) no 867/2010 (3) these prices and duties have been last amended by commission implementing regulation (eu) no 601/2011 (4) +in order to ensure consistent application of regulation (ec) no 900/2008 it is necessary to provide that the formulas procedures and methods laid down therein for the purpose of applying annexes ii and iii to regulation (eu) no 514/2011 are also to be used for the determination of milk fat content milk protein content starch/glucose content and sucrose/invert sugar/isoglucose content for the purpose of selecting the appropriate agricultural element additional duties for sugar and additional duties for flour in the case of non-preferential imports as provided for in part two and in part three section i annex 1 of annex i to regulation (eec) no 2658/87 +article 2 is amended as follows (a) the following title is added calculation of contents (b) the introductory phrase is replaced by the following in accordance with the definitions set out in footnotes 1 2 and 3 of annex iii to regulation (eu) no 514/2011 and in footnotes 1 2 and 3 of part three section i annex 1 table 1 of annex i to regulation (eec) no 2658/87 concerning milk protein content starch/glucose content and sucrose/invert sugar/isoglucose content the following formulas procedures and methods shall be used (a) for the application of annexes ii and iii to regulation (eu) no 514/2011 (b) for the determination of milk fat content milk protein content starch/glucose content and sucrose/invert sugar/isoglucose content for the purpose of selecting the appropriate agricultural element additional duties for sugar and additional duties for flour in the case of non-preferential imports as provided for in part two and in part three section i annex 1 of annex i to regulation (eec) no 2658/87 article 3 is amended as follows (a) the following title is added classification of goods (b) the introductory phrase is replaced by the following for the purpose of applying annex i to regulation (eu) no 514/2011 and annex i to regulation (eec) no 2658/87 the following methods and procedures shall be used for the classification of the following goods (c) points 2 and 3 are replaced by the following for the purposes of classifying goods falling within cn codes 1704 10 10 and 1704 10 90 and 1905 20 10 to 1905 20 90 the sucrose content including invert sugar expressed as sucrose shall be determined using the hplc method (invert sugar expressed as sucrose is calculated as the sum of equal quantities of glucose and fructose multiplied by 0 95) for the purposes of classifying goods falling within cn codes 1806 10 15 to 1806 10 90 the sucrose/invert sugar/isoglucose content shall be determined in accordance with the formulas method and procedures set out in point 2 of article 2 of this regulation in article 4 the following title is added test report in article 5 the following title is added final provision +25 6 2011 en official journal of the european union l 166/6 commission implementing regulation (eu) no 617/2011 of 24 june 2011 amending regulation (ec) no 900/2008 laying down the methods of analysis and other technical provisions necessary for the application of the arrangements for imports of certain goods resulting from the processing of agricultural products the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1216/2009 of 30 november 2009 laying down the trade arrangements applicable to certain goods resulting from the processing of agricultural products (1) and in particular article 18 thereof having regard to council regulation (eec) no 2658/87 of 23 july 1987 on the tariff and statistical nomenclature and on the common customs tariff (2) and in particular article 9(1)(a) thereof whereas commission regulation (ec) no 900/2008 lays down the methods of analysis and other technical provisions necessary for the application of regulation (ec) no 1216/2009 and commission implementing regulation (eu) no 514/2011 of 25 may 2011 laying down the detailed rules for implementing the preferential trade arrangements applicable to certain goods resulting from the processing of agricultural products as provided for in article 7 of council regulation (ec) no 1216/2009 (4) those methods and provisions apply to imports of certain processed agricultural products in order to determine their reduced agricultural components and to classify those products in the combined nomenclature +in order to take account of amendments to the combined nomenclature it is necessary to adapt certain references to cn codes +regulation (ec) no 900/2008 should therefore be amended accordingly +in the interest of clarity it is necessary to update the scope of regulation (ec) no 900/2008 and to adapt it to the measures laid down in that regulation +in order to ensure effective application of regulation (ec) no 900/2008 it is necessary to provide that the methods and procedures laid down therein for classifying certain goods falling within certain cn codes for the purposes of applying annex i to regulation (eu) no 514/2011 should also be used for classifying those goods in the case of non-preferential imports as provided for in annex i to regulation (eec) no 2658/87 +the measures provided for in this regulation are in accordance with the opinion of the customs code committee has adopted this regulation article 1 regulation (ec) no 900/2008 is amended as follows article 1 is replaced by the following article 1 scope this regulation lays down the following (a) the methodology and methods of analysis to be used for determining the content of the agricultural products within the meaning of article 2(1)(a) of council regulation (ec) no 1216/2009 or their specific components considered to have been incorporated in imported goods within the meaning of article 2(1)(b) of regulation (ec) no 1216/2009 (b) the necessary methods of analysis to be used for the implementation of regulation (ec) no 1216/2009 as far as imports of certain goods are concerned of annex i to regulation (eec) no 2658/1987 and of commission implementing regulation (eu) no 514/2011 or in the absence of a method of analysis the nature of the analytical operations to be carried out or the principle of a method to be applied +following the wto panel report digital copying should not constitute photocopying under the gatt 1994 and copying speed should not be the sole classification criterion subheading 8443 31 of annex i to regulation (eec) no 2658/87 and the corresponding duty rate should therefore be amended accordingly +this regulation should enter into force on 1 july 2011 at the end of the reasonable period of time agreed by the european union with the complaining parties for the european union to bring itself into conformity with its wto obligations +as recommendations in reports adopted by the wtos dispute settlement body only have prospective effect this regulation should not have retroactive effects nor provide interpretative guidance on a retroactive basis since it cannot operate to provide interpretative guidance for classification of goods which have been released for free circulation prior to 1 july 2011 it should not serve as a basis for the reimbursement of any duties paid prior to that date +the customs code committee has not issued an opinion within the time limit set by its chairman has adopted this regulation article 1 part two section xvi of annex i to regulation (eec) no 2658/87 is amended as set out in the annex to this regulation +the wording of subheading 8528 71 15 of the cn (previously 8528 71 13) should be amended in order to include set-top boxes which besides the function of communication may be capable of performing the additional functions of recording or reproducing provided that as a result they do not lose the essential character of a set-top box which has a communication function +25 6 2011 en official journal of the european union l 166/16 commission implementing regulation (eu) no 620/2011 of 24 june 2011 amending annex i to council regulation (eec) no 2658/87 on the tariff and statistical nomenclature and on the common customs tariff the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (eec) no 2658/87 of 23 july 1987 on the tariff and statistical nomenclature and on the common customs tariff (1) and in particular article 9(1)(d) thereof whereas further to a complaint brought in the world trade organisation (wto) by certain countries a wto panel report adopted by the wto dispute settlement body on 21 september 2010 concluded that the european union had acted inter alia inconsistently with the general agreement on tariffs and trade 1994 (gatt 1994) by according tariff treatment less favourable than that provided in the tariff bindings with regard to certain information technology products made by the european union pursuant to the information technology agreement (ita) annex i to regulation (eec) no 2658/87 should be amended in order to bring it into conformity with the international obligations of the european union under the gatt the required amendments are in accordance with council decision 97/359/ec of 24 march 1997 concerning the elimination of duties on information technology products (3) which approved the ita +the following entry shall be added under the heading natural persons othman ahmed othman al-ghamdi (alias (a) othman al-ghamdi (b) uthman al-ghamdi (c) uthman al-ghamidi (d) othman bin ahmed bin othman alghamdi (e) othman ahmed othman al omairah (f) uthman ahmad uthman al-ghamdi (g) othman ahmed othman al-omirah (h) al umairah al-ghamdi (i) othman bin ahmed bin othman) address yemen date of birth (a) 27 5 1979 (b) 1973 (othman ahmed othman al omairah) place of birth (a) saudi arabia (b) yemen (othman ahmed othman al omairah) nationality (a) saudi arabian (b) yemeni (othman ahmed othman al omairah) national identification no 1089516791 (saudi arabian national identity card) other information (a) fathers name is ahmed othman al omirah (b) operational commander of al-qaida in the arabian peninsula (aqap) has been involved in raising funds and stockpiling arms for aqap operations and activities in yemen (c) known associate of qasim yahya mahdi al-rimi and fahd mohammed ahmed al-quso (d) interpol orange notice (file number 2009/52/os/ccc 14) interpol red notice (control number a-596/3-2009 file number 2009/3731) (e) date of designation referred to in article 2a(4)(b) 16 6 2011 +on 14 june 2011 the sanctions committee of the united nations security council decided to remove two natural persons from the list of persons groups and entities to whom the freezing of funds and economic resources should apply on 16 june 2011 it decided to add one natural person to the list and to amend one entry on the list +in order to ensure that the measures provided for in this regulation are effective this regulation should enter into force immediately has adopted this regulation article 1 annex i to regulation (ec) no 881/2002 is amended in accordance with the annex to this regulation +annex i to regulation (ec) no 881/2002 should therefore be updated accordingly +25 6 2011 en official journal of the european union l 166/18 commission implementing regulation (eu) no 621/2011 of 24 june 2011 amending for the 151st time council regulation (ec) no 881/2002 imposing certain specific restrictive measures directed against certain persons and entities associated with usama bin laden the al-qaida network and the taliban the european commission having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 881/2002 of 27 may 2002 imposing certain specific restrictive measures directed against certain persons and entities associated with usama bin laden the al-qaida network and the taliban and repealing council regulation (ec) no 467/2001 prohibiting the export of certain goods and services to afghanistan strengthening the flight ban and extending the freeze of funds and other financial resources in respect of the taliban of afghanistan and in particular article 7(1)(a) 7a and 7a thereof whereas annex i to regulation (ec) no 881/2002 lists the persons groups and entities covered by the freezing of funds and economic resources under that regulation +article 2 this regulation shall enter into force on the day of its publication in the official journal of the european union this regulation shall be binding in its entirety and directly applicable in all member states done at brussels 24 june for the commission on behalf of the president head of the service for foreign policy instruments oj l 139 29 5 2002 p +annex annex i to regulation (ec) no 881/2002 is amended as follows the following entries under the heading natural persons are deleted (a) tarek ben al-bechir ben amara al-charaabi (alias (a) tarek sharaabi (b) haroun (c) frank) address vordere gasse 29 7012 felsberg switzerland date of birth place of birth tunis tunisia nationality tunisian passport no l579603 (tunisian passport number issued in milan on 19 11 1997 expired on 18 11 2002) national identification no 007- other information (a) italian fiscal code chrtrk70c31z352u (b) mother s name is charaabi hedia date of designation referred to in article 2a (b) (b) safet ekrem durguti address 175 bosanska street travnik bosnia and hezegovina date of birth place of birth orahovac kosovo nationality bosnia and herzegovina passport no 6371551 (bosnia and herzegovina biometric passport issued in travnik issued on 9 4 2009 valid until national identification (a) jmb 1005967953038 (bosnia and herzegovina personal identification number) (b) 04dfc71259 (bosnia and herzegovina identity card) (c) 04dfa8802 bosnia and herzegovina driving license issued by the ministry of interior of the central bosnia canton travnik bosnia and herzegovina) other information (a) father s name is ekrem (b) founder and head of al-haramain islamic foundation from 1998 until 2002 (c) working as a teacher at elci ibrahim pasha s madrasah travnik bosnia and herzegovina date of designation referred to in article 2a (b) 26 12 2003 +due to the precise circumstances explained in recital 26 above the definitive anti-dumping duties paid or entered in the accounts pursuant to regulation (ec) no 1659/2005 on imports of certain magnesia bricks originating in the peoples republic of china released for free circulation as from 14 october 2010 the date of expiry of the anti-dumping measures should exceptionally be repaid or remitted +request for an expiry review following the publication of a notice of impending expiry of the anti-dumping measures in force on imports of certain magnesia bricks originating in the prc the commission received on 9 july 2010 a request for review pursuant to article 11 of the basic regulation the request was lodged by the magnesia bricks production defence coalition (mbpdc) (the applicant) on behalf of producers representing a major proportion in this case more than 25 of the total union production of certain magnesia bricks +the request contained prima facie evidence of the likelihood of continuation of dumping and recurrence of injury which was considered sufficient to justify the initiation of an expiry review proceeding the applicant also claimed that an austrian-based company rhi ag (rhi) should be excluded from the definition of the union industry on the grounds that it had shifted its core business activities to the prc where it has a related company producing the product concerned and increased its business activities relating to the product concerned in the prc +in view of the large number of parties involved sampling was envisaged in the notice of initiation for the chinese exporting producers unrelated union importers and union producers of the seventy-eight exporting producers contacted at initiation only four provided the information for the selection of the sample requested in the notice of initiation +the company also continued to invest in its eu plants and for the period 2007 to the end of the investigation period the investments relating to the like product represented a significant portion of the companys total investments in the eu +with regard to the imports volume of the product concerned following the imposition of the measures in 2005 the company imported only one small shipment from its related company in the prc in the investigation period as it is subject to the highest anti-dumping duty rate of 39 9 +rhi provided its sales value and volume for the like product produced in the union and for the product concerned produced in the prc the company demonstrated that the majority of the sales of its related company in the prc during the investigation period were for export to countries other than the eu with the remainder being sold on the chinese market +product concerned and like product the product concerned is chemically bonded unfired magnesia bricks whose magnesia component contains at least 80 mgo whether or not containing magnesite currently falling within cn codes ex 6815 91 00 and ex 6815 99 00 +parties concerned by the investigation the commission officially advised the applicant other known producers in the union the known exporting producers in the prc the representatives of the exporting country concerned and known importers and users of the initiation of the proceeding interested parties were given the opportunity to make their views known in writing and to request a hearing within the time limit set out in the notice of initiation all interested parties who so requested and showed that there were particular reasons why they should be heard were granted a hearing +based on the data verified on-spot it is concluded that rhi should not be excluded from the definition of the union industry the companys situation has not changed substantially since the original investigation when it was found that the three criteria were met and concluded that the company was part of the union industry +the investigation period for the new exporter review was from 1 july 2009 to 30 june 2010 +article 2 the definitive anti-dumping duties paid or entered in the accounts pursuant to article 1 of regulation (ec) no 1659/2005 on imports of certain magnesia bricks originating in the peoples republic of china released for free circulation as from 14 october 2010 shall be repaid or remitted repayment and remission shall be requested from national customs authorities in accordance with applicable customs legislation +following initiation rhi claimed that the facts presented by the applicant in the request for review especially in regard to rhis production volume were not accurate and that on the contrary rhi should be included in the definition of the union industry as had been done in the original proceeding in it consequently disputed the definition of the union industry which had led to the initiation of the proceeding on the grounds that the requirements of article 5 of the basic regulation were not met since it is the largest union producer accounting for more than 50 of total union production and is opposed to the initiation +the commission services had contacted all union producers of magnesia bricks prior to initiation to obtain information on their production levels and to determine their support or opposition to the investigation one of the companies that replied rhi ag expressed its opposition to the expiry review prior to initiation +trl further claimed that it had begun exporting the product concerned to the union after the end of the original investigation period +termination of the new exporter review on 27 may 2010 the commission received an application for a new exporter review pursuant to article 11 of the basic regulation the application was lodged by trl china ltd (trl) an exporting producer in the prc +initiation of the expiry review on 8 october 2010 the commission after consultation of the advisory committee announced by a notice published in the official journal of the european union (the notice of initiation) (6) the initiation of an expiry review proceeding concerning imports into the union of certain magnesia bricks originating in the prc +it is therefore considered that the expiry review proceeding concerning imports into the union of certain magnesia bricks originating in the prc should be terminated +the like product is defined as chemically bonded unfired magnesia bricks whose magnesia component contains at least 80 mgo whether or not containing magnesite produced and sold in the union market +it is recalled that the assessment of rhis situation was made in commission regulation (ec) no 552/2005 of 11 april 2005 imposing a provisional duty on imports of certain magnesia bricks originating in the peoples republic of china and confirmed by regulation (ec) no 1659/ for the purpose of the assessment the following criteria were examined the location of the companys headquarters research and development (r d) centre and main production sites the volume/value of the product concerned imported from the prc compared to the total sales volume and value the impact the imported sales had on the companys total union sales in particular by comparing the profitability of rhis sales in the eu of the imported product concerned with the profitability rates of the cooperating union producers +the applicant was informed accordingly and was given the opportunity to comment the applicant strongly contested the conclusions of the commission and expressed doubts that rhis production during the investigation period exceeded the production of the remaining union producers supporting the complaint in particular the applicant provided various press releases concerning rhis activities to substantiate its claims that the company no longer views the production in the union as its core business and that there is a clear shift in the groups strategy as it announced massive extensions of its production capacities in the prc however it was found that such press releases refer to the companys general overall business activities and do not relate specifically to the product investigated the applicant did not provide any other evidence of any shift in rhis core activities with regard to the period from 2005 to the end of the investigation period that would lead to the conclusion that rhi should be excluded from the definition of the union industry +in view of the termination of the expiry review and given the fact that trl did not import the product concerned between the date of the entry into force of regulation (eu) no 850/2010 and the date of expiry of the anti-dumping measures (13 october 2010) it is considered that the new exporter review concerning imports into the union of certain magnesia bricks originating in the prc should therefore also be terminated +at that time it was found that the companys core business was situated in the union as regards the product concerned (its headquarters r d centre and biggest production sites were all located in the union) moreover the vast majority of rhis sales on the union market were produced in the union and only a minor part was produced in the prc (5 of its total sales volume in the union) as the production of the related company in the prc was mainly aimed at the fast-growing asian market in addition it was found that these imports were resold at prices comparable to those of the union industry and therefore the company was not enjoying substantial beneficial effects in terms of profitability by reselling the imported product finally it was explicitly mentioned that rhis union production company was a separate legal entity from its chinese production company it was found that although rhi ag was a global group with a production site in the prc constituting a separate legal entity it still produced the vast majority of its magnesia bricks which were subsequently sold on the union market at its union production sites on these grounds it was concluded that rhi ag which supported the imposition of measures at that time formed part of the union industry +the information supplied by the applicant did not accurately reflect the situation of rhi as a union producer in particular with regard to its production volume and production capacity in the union and its production capacity in the prc thus by including rhis production volume in the total union production figure the applicants output constitutes less than 50 of the total union production furthermore as explained above (i) rhi should be considered as part of the union industry within the meaning of article 4 of the basic regulation (ii) rhi produces over 50 of total union production within the meaning of article 5(4) second sentence of the basic regulation and (iii) rhi is opposed to the expiry review therefore the proceeding should be terminated +investigation period of the expiry review in view of the apparent large number of parties involved in the proceeding the commission announced in the notice of initiation that it may apply sampling in accordance with article 17 of the basic regulation in order to enable it to decide whether sampling was necessary and if so to select a sample exporting producers importers and union producers were required to provide certain information for the period 1 july 2009 to 30 june 2010 (the investigation period or ip) +trl claimed that it operated under market economy conditions as defined in article 2(7)(c) of the basic regulation or alternatively claimed individual treatment in conformity with article 9 of the basic regulation it further claimed that it did not export the product concerned to the union during the period of investigation on which the anti-dumping measures were based i e the period from 1 april 2003 to 31 march 2004 (the original investigation period) and that it was not related to any of the exporting producers of the product which are subject to the anti-dumping measures mentioned above in recital 1 +25 6 2011 en official journal of the european union l 166/1 council implementing regulation (eu) no 616/2011 of 21 june 2011 terminating the expiry review and the new exporter review of the anti-dumping measures concerning imports of certain magnesia bricks originating in the peoples republic of china the council of the opean union having regard to the treaty on the functioning of the european union having regard to council regulation (ec) no 1225/2009 of 30 november 2009 on protection against dumped imports from countries not members of the european community (the basic regulation) and in particular article 9 and article 11(2) (4) and thereof after consulting the advisory committee whereas procedure measures in force in october 2005 pursuant to regulation (ec) no 1659/2005 (2) the council imposed definitive anti-dumping duties ranging from 2 7 to 39 9 on imports of certain magnesia bricks originating in the peoples republic of china (the prc) following two interim reviews requested by chinese exporting producers the regulation was amended in 2009 by council regulations (ec) no 825/2009 and (ec) no 826/2009 (4) following the reviews the anti-dumping duties imposed by regulation (ec) no 1659/2005 currently range from 0 to 39 9 +rhi has several related companies in the prc involved in the production and trading of refractory products including magnesia bricks of which rhi refractories liaoning co ltd a separate legal entity produces the product concerned this company is a joint venture with a chinese company and started production in it has only one plant although the plants production capacity increased substantially during the period from 2005 to the end of the investigation period it still does not represent a major proportion of the rhis total production capacity (eu and chinese plants combined) +investigation as mentioned in recital 3 above the applicant had considered that rhi ag should be excluded from the definition of the union industry on the grounds that it had shifted its core business activities to the prc in view of this and the fact that rhi ag expressed opposition to the review the commission asked rhi to provide additional information in order to examine whether or not it should be included in the definition of the union industry the requested information concerned the companys business activities both in the eu and in the prc and included data on its production capacity production volumes sales value and volumes in and outside the eu and the prc and imports value and volume of the product concerned in the union market the company provided the additional information and an on-spot verification visit took place at the companys headquarters in vienna +termination of the proceeding in the light of the above it is considered that the present proceeding should be terminated in accordance with article 9 and article 11(2) and of the basic regulation +on 28 september 2010 the commission after consultation of the advisory committee announced by regulation (eu) no 850/2010 (8) the initiation of a new exporter review of regulation (ec) no 1659/2005 the repeal of the duty with regard to imports from trl and the subjection of these imports to registration +repayment or remission must be requested from national customs authorities in accordance with applicable customs legislation +with regard to union producers a total of ten companies including the producers on behalf of whom mbpdc requested the review submitted the requested information the union producers requesting the review are heavily dependent on the supply of a major raw material from the prc and have requested confidential treatment for their company names in view of possible retaliatory action +article 3 the new exporter review initiated by regulation (eu) no 850/2010 is hereby terminated +article 4 the customs authorities are hereby directed to cease the registration of imports carried out pursuant to article 3 of regulation (eu) no 850/2010 +interested parties were given the opportunity to make their views known and to request a hearing within the time limit set out in the notice of initiation has adopted this regulation article 1 the anti-dumping measures concerning imports of chemically bonded unfired magnesia bricks whose magnesia component contains at least 80 mgo whether or not containing magnesite originating in the peoples republic of china currently falling within cn codes ex 6815 91 00 and ex 6815 99 00 are hereby repealed and the proceeding concerning these imports is terminated +during the on-spot verification in the course of the current proceeding it was found that the companys core business was still situated in the union the companys headquarters shareholders and r d centre were located in the union the company has five plants in the union producing the product concerned and during the period 2005 to 30 june 2010 the end of the investigation period the production capacity in these plants increased the figures provided by rhi concerning its production capacity in the union of the like product and the production volumes per plant in the \ No newline at end of file diff --git a/Lab3/own_corpus_codetable.bin b/Lab3/own_corpus_codetable.bin new file mode 100644 index 0000000..fce978b --- /dev/null +++ b/Lab3/own_corpus_codetable.bin @@ -0,0 +1 @@ +{'u': (5, 0), 'k': (8, 8), 'x': (8, 9), '2': (7, 5), 'q': (9, 24), '8': (9, 25), '5': (9, 26), '-': (9, 27), '1': (7, 7), 's': (4, 1), 'e': (3, 1), 'r': (4, 4), '0': (7, 40), '6': (9, 164), _EOF: (12, 1320), '_': (12, 1321), 'z': (11, 661), 'j': (10, 331), '7': (9, 166), '4': (9, 167), 'w': (7, 42), 'v': (7, 43), 'd': (5, 11), 'h': (5, 12), 'g': (6, 26), 'y': (7, 54), '9': (9, 220), '\n': (9, 221), '(': (8, 111), 'n': (4, 7), 'o': (4, 8), 'a': (4, 9), 'l': (5, 20), 'c': (5, 21), 'i': (4, 11), 't': (4, 12), ')': (8, 208), '3': (9, 418), '/': (9, 419), 'b': (7, 105), 'm': (6, 53), 'f': (6, 54), 'p': (6, 55), ' ': (3, 7)} \ No newline at end of file diff --git a/Lab3/random_text_geometric_distribution.bin b/Lab3/random_text_geometric_distribution.bin new file mode 100644 index 0000000..492dd6b Binary files /dev/null and b/Lab3/random_text_geometric_distribution.bin differ diff --git a/Lab3/random_text_geometric_distribution.tar.gz b/Lab3/random_text_geometric_distribution.tar.gz new file mode 100644 index 0000000..e1383e1 Binary files /dev/null and b/Lab3/random_text_geometric_distribution.tar.gz differ diff --git a/Lab3/random_text_geometric_distribution.txt b/Lab3/random_text_geometric_distribution.txt new file mode 100644 index 0000000..fbdf75c --- /dev/null +++ b/Lab3/random_text_geometric_distribution.txt @@ -0,0 +1 @@ +baaeaadcbdcebcblbdbxcgbadhhbpafdagebmcacabadlcabcbaackdbcbcfabbgabacggqcidkaacacabbeaaabckccecaaaabaicdeaafdaaadacadeaebfbddbabbfjaaabajacakcfmacabecbcdbccbbcefddaaaffjccbajbbcafbaadaaaficaddecagbbebadbfdadddafaaaadcebbbahbabdeebaclaaabfbdcbcafabbgaabfccijabcbaacbacaebecdbcbabadbbccgcaaacdcffdabebaeefdacacajcebcccccdaabcaaacabcdfabiaeabhacbbafaehbeddradadckabhacachjbacaadccbfgbbcbccegfbbdbdhchaccacababadfidabacembdeccaaaacbebabaadgbbeeeqcahadbbagaababfcdbbfbceiaaacbbabeahgbaaaafaamcfccdhcbaacaadbccdcnbcgbbaaabbaaccbaadbaecegecdcaaebafalaadecaabgbbedabeghiaaaaeaabgaaaaddbcbcdbbhdaacfabacbbdgideaabbdghbcggkacdjhahgbcmcabaaacagdfcaagbgegeadbdekfccfbbbbafcdfdbacacbagcfhbaecaaedalhcbgbedcabbcaaadchhciacnaebacebaacaaabhdadaaefbgaaecbaffbahabecdagbaccaacabdeabababbbgaabbcjadabcacdakahcabbaaaafbbackaicfcbfabbagadcbdbdaaaafcbbaccbheaieeafahacdaccecbfaabicdadafcbcbdahbdecabcbbbbecagadameebaaaacbabcbcaaiabakeiaadaadcabaaabebhdahababfcbdabdbeiafaddbidfgebhcccccfcdaababdpahfepfcaaabaeacacbbceaebcbaabadbabaadfeahcebgcdaghadbjedafeacaagbcabgaaccbabdabbacdhddaaaaedbdaafbaccaboafhfbabbebaeaaaabaaccabfgacdfidcacecaaaaajacbbbbbaaaabakbbaacaiaackebfbadbdbcbbbalgcebdacgcgdcbecgaaaddblaaddhabbdaaaaaeabcagbdafcccaaabbccbbgaabadbegkaeacbamebabaaeeacgiafajheaaaaaaagbacaaefedddhgcfeccafqbebadafccbacchbbraeabdamagebhademaaaechighgccbdaeacabamaabgbgababdaagaeaaaaaacgfaacacebcgbeeebeabbamgccedbbagcacdadbcbabdebaafcabacaaaebajaadbdadaeaadccadacbcadicacaadeagaacgcdhbedfdbgcadebcdbbadcbfbdcaabdbhcbeabccidaaabcfmbedcacabbcaaaacfacadiaababacaaabaacagcmcadacedagceajagaeaafaeeafaendgfbbgcbgbbeagbdaaacbadbaeibdcdddciaabbieaaaaebcaacdeeaiajegaaaedabccbbabcgjbcaeeefbaejaacdabddfceedaatabcjbbaafaabcacbaffaafcahdfajaacddbdaaddeaaaaacabacaackfbcajcadaidbeeccafadbbafaaaaaabdebbamaaabcbahcaaaaabadcaaacehaabebfaacaagcfaaakbdaciaegbbaadbaddaahdbcaabaadabbaadbebfaaaaaabcbaafgadbhaadailaadaaacbhaccabeabgbbbcgaebabbadbfdbggbfdaeaaacadaekafbabaibcaddbbadedaaahabbfcceaavhaaebaaabbbbmaaaddcceeelbaaaebdabcfifdgaaagcabaacdbbgaacdbcbbcfbagacbaaabecbdacaaaacbabcefbcagcacaddcacaeddefaahaedmaedbccbaajaaabdadcccbdfhcaabbccaahgabfccgcalcdhdecdbafdbcacbbccacaglbfcaafabgdbeebadaccacjbabaacgaklcadahbddbfcaaejkacccfggdabbadafabaccigccaabbdaaccabacabaacahaccfaabacdebbaaaacabadcdaaebbeehcdegaabcdaiheaceccedicccedbfeabacbaabaeakadcaidafbcbbidakafabciibebaflebafgafabcagadacecdatjbbccedagbbblbbbdgccdbdjaiibbbkbeagbbfbbeefbbebabbabjaajbebaacbdcdeckbgbbagbjagabahhdcabbabcbefegahcbbcadacefeegfababbbacbbabbjifbgdbbbabceakcaadaabckbaabahcbbfeckadgaccbeaaqkbbcbkbaajcabaeaaaaaaabbbfjbccfgcaaaabaaagjdfcchbafbgbcgfagacbhchcjcebagfadbgabhacbedaaeaadhdajecgaafccdcddcbcaaceffdeejaeabifeacfdbbgahaecbbbaaccebcbbbbbbabidaaebfcaaciabbdgfbcbbifaacaaadgceababbaabaafbbdacbaacgfkccgfabbedfacbaacbcabegcbakjdbaabdaicabbcaafbeagcbaiajabbcehecabgegbdabdcaabeaebbahcabaadabcbabfaabaadabagabchemcaabdhdbbdacbfealabddcadddcbcaaaaibhdebdbeafcbacaaebcnghcaccabbbcaddhaabgbchbcbacccacaabpcgcbfbjcaafcaacdmafcgkibaddcagcaebaadadbeabcddcaaajiaaaeddghdbbfiabdabfaabbbakabdmdhdbaaeabbabbeeaabbhabeagabaebbdbbadbcfabaagfafacckcjbabdfdcaacaabiabbbdcacgcbgcobcfbabbdbabbdabbabbhecdaafdaecbedbcajahadaaadcbagaacmbbabbacbacaacaachcaadabbdghgcboaafdaabiabdbhaaaaacaaadcafbcaeebabbbdbfbebadkdacabicfcaigbcaddbadcdlageccbabfddbecddfdbaaaihedaababbaeaddaacbhacecaaefbadfejhaibccbbbcegadbebaebbaealdbdkblbbceafadiccfaaaaabcamabgbbahabaeccaabbaelffeebfdcddddbfadcbdcdbbbacabaccbbaagaahbcagaeccecaaddfccndddibaabfadacjaafacaedefeabbbbbdcabaaadajbbbbhgbaadaahdgdaaccbiagaaabbdabkcabdfhdabaaaabbfdfcdifgfaaabdcecabdcbaagdacabkhfbahccaaecfccdcdaagdeafbcaaabaaeaahgabbkacdbaacefdbbafcaacajbebccemfdjfaebcaaeacbfbddeaaaebaebbabbcbebdbhkhebacaagafqbcabffabahbgcfadbddafabdbaabcchabaaebiaeaecedhgecidacacaababafhdedaffdeafafaakfchjajbkacgfbbacdbbcdcahfbdddaahaacdabebifafabaaecdkaiabbbbbidgaabeaaccbbacbecbahdfhccddbdbdeefacabacecbbbagbbkcabehdbedaiaeadaahbfaaaeicacebajaeaecbicabagaabbccamfbbbcdecaafbdhdcnbffcaafahedbbaddgcaaaekhendeaabbdebhaidabcfcedbacafdaedaaddicaagbddabdaababbbbidbcaadhaabddaaecfhebaddecaaabafaeiacecdhddcahabbafabcbdaaefcaecaabchcahahfbefgjaecbdbaaaccadfaebaddaadcaaaddpabcdcidabajabcbhbdbebdbaabddabdhecbbcbekdeabcabgdabeidagadbiacbdabbebfacabacaccfchkaabhcaeebgfhbjbfebefdbabfaaiaaddcaacgajaabaebaaabcababjbcabbadaaccddabadahabeefabebabadgbaacfbbabdbbfabbeeeacdbdaajaagbafbcbabbbgbacaadeccalbccbbcdcabdagabcfbabgdbgaccdcbechcbbbacbfcaaecabcbpacbadcdcdahcjbacaaaaaciddbabegcfaeacbbahbbdaifaeadacbchehadhgbaacebaeafbdcbadbcamjcaabgcbaafcdajbbdlebgalccaeabdbbddacaaabaaebecababakafahaababdafgfbgeabaacafiibcaadgbcaacdcabdbbaacaaebdeefcbbcaidbdegaaadbhcabbdabaabcaeabecbcbbbcacaceaiaaaadcgbbcbdcebcaceaeebaaaddvdbabaebhbfaababbjbbfahdcaaaadbbabcadiaabbdkbcbabdceaecbbaaccedaehaaccabcaacjbcbccdceacbebbfaaagdfbabidbbafagabceagaaaaacbaamcbbaacbabcabdbaacbgejdccefbcafaebbaabaaiclifbcbeednebbbcadcadaabebbgcbajagbcfdbcbaeckbbaeacaabfbabaahhbanaaebidbafbibaabcdgbdaaibcceabbcbacabbaddcceameaadeccbeddbcbbajbcbecdaaegabdbaabacabafcbaicbcbebddadhaaaaqdabaabcadfaiaaeadbdaabbdbcdblbaababababbaegbaacaajbedbcbcegaacbaeaaaaacbbbabladdaebchbcbjaajbaalabiaadacbbabadelecarabgebgbadaabbacbcaabcababbcabacaedcbeacgecdbfeafcaaidiffaaaabaaibaobcbcababibjcbadeabaabaebabbbabbbbbabeqaadbadccabcafaaiaaabbacbjcbbddaaaiceccacfcabbfbceabbbfjcdnaakfadbaabekabcddfaigabadcceefcdbfjbadbbaaaddcbafaacjaadaajdabaabaecaaacacabaabeacababcadcbacegeebbgfabbbraagbbaabffdfadnefhccacncabaabbcjaabdaaebcdaabeaacbcccdhdbabadbbccbaccbbacagedfccbaicbaaaaabddglebaefhbaeabbcbcafbdaaaabacabcacdbbaagddebcffdacbbbggibdacbccbkafecbdcecedabeacabaegaaccdbaecgacbiagcbaabaakaaaaaaccbeagbfccbcacbcccabgbaagbbahbdbahcdddkbbcecgcababbaebfbbcddecebbhadadbabbiabbcbdcafdabaaaadccbeaaedeaaacebedeacelchbeddabbgchabcabbaaaagfbddacghbbdcbcacdcccmbdabbaceaaabfaacbbaaabbcaacdaagcaacgebaeagbbbadfbaeadeabiaabcaebfbabbbaahacaaeacbfaaacbcfaabceebaaeaabdafadcdcebccbfbbccabaaacdbbaebafacaaebgdccecaebabeeeaddeaccacclfdcbbcicababaafaaccjcbaafladddaebacbbbbdfaagbabacideadmeapadbbfacabbcgbbbbdbabbcaacgddaacbcibhdbfehbabaabibcebagffdiaelbdcbacabgfbacaaceadaabbfeaecggacbbbeacecbdcbabbbeajaeegcbidbaeaaaababebchaaafbddabdgsccaadbbecaclbaeabbcacbpcbdfdldafcagbcbdlbbbbbaicafcabbadacabaaddbaaaabcdgedaggabdadbacbalbcbedjbbababhgahkeaaabeabbbbcecaaddeiabbbbebddedacdaanabalcbbabmcabbcfdajfahadaggggbabaaabeagedcfaababdacabdhabcgcccbabccbbbaeagaccbaeiaidebcbaaeaabafiahabaacfahaaabceaagabaadaadabadaaddaagiacbccgdagiaabbaeapaaducacbadbdebaaaaaeaajbbhccceincbaicafaiajhbaffdcbedabbaaadbbedcbeblcdgbabbdceabaabieahdagecabalkfcebedccaaecdbaacabbaaceccbbggdbfccgbbagbofbfacafccababfabbadbcebcebahedaafbcebacccaaacbbeajgadadaaeafacgbcddbadgbbbcfcaebacefabdafbdabbhaadeaababaabbhbeabcacgbaahcdcaabbeaabeadbdcdcadjdbaaebdbbfjeeaakfbafbaabccafbadceadaibaeabfeaaaabbcbbfacacacbeaalcaacddbaaaecdbeabbacfacebeaakbebacfaaahacadebbaheaiabadlccbabacaabbaaabcjbbebnaaaecjaecaaaccbafbadbbbbbcacdbcdadfbccaefaaaeahadbdbecbaabeafhadadeadadabcafbaeccaeaccaaaceaaacbakddaecalaoiaddeaabaabcaabbabbbfeafbabhcbcabbdccbbaabbcbcdbjaeegaaecbbbdaacaacrcffdcbecacadbabecacleeaccafabacpfdadhbdbababaghbigbaccaaabdcbbbhaacaefabamgacbalfacbaaaacebbacbbadfdidbaacacbdcagaababdaahbadbagaabidaeacaafhifabbcgdeabaabbebcabgcbcefdacgeabbebbaacfbcaaiaidcbajebceecacdabgababbaeaahadaaedeahfggcaabbdeibaaahibdddaabdebgaabbagebaacaabcccaaabdfaafcabbaccabbcbbbcccaenaagaedbbbfbaadabiabdbaaibbecacbcbabdaipceobcbaadaajeacbdbdadaecdacfcajhaaeeaabamaeddabefbacbfcabedcdaaabbdcbcfeacabbecbafaaabcabecbadadgbeaaadhaihdnadccmbhaeaaabdacbiefbaaaacaebfbacagaadlaabeaaaclfaehacbaacfccafcaaciabhaabaebfcajcccbeaccbdaaaeabaacfabcbbadbbbedcababbacabcgcabbbbadebabafadcffbgaeaaazaaaobbaabgkceaadobbaaabiecabecbdebbdbacgaacacfcbacagcgjkcjcccudbahgaeebdabcabcdfbemaaaaadeffadaaaabfbaaebfealbabbbaadnbbmbbfaahebiebbbajcecdaheaidebaadddfcacclaaababbaebfeeecfbaaaccddccbafbaamcgadfadbbfafceccecdaafaalcafcgaacbfcdcadaaddefadabcegbacfbbbcibaacecbjebadaahgbadfbcbecabcfgadfaaabeakbkcacccgbbebjaaafaafcefaacbbaabackebgfadbacabbbaacbfdeaebababagdbcgfaacfkbdabacbebceacbjhjbbgbadbacaaadkcaefaaogfcbadacibagcdcaegacbddblfbdcacdbcjbbbdcjaffabaaaccbbacfhhacagdfgnjebcecbaanckahdccaedhcdaaiacddmddjeabbfbadabacbaeaabaibaadcbcmdddbaeaadcaadcaciicbbacbabbaabecacicbeeeecdebaladdafbbeibfcbbhabcdbcfcdcaaaaeacfcbajaaaaadbfcceadaaagahandaaddcbcecpaabdfaeabadddcbiaaabbababgadqbacbabkbcbbbjabadlceacbdadaabdabcbbabbdbcaaafccbbeaabagacaacadabacedeacbbcncagcdcabcbbbbaadmbaaaaccbaabbeaabfbbbcbbebcaachbbbfbaaaceaabbabaagdccbfdbddafccbeadhacadadagaeabegabhdabcbcbabcbbddbcafajeabcbbbcegecaklcbfbiacccbdjabdaaecfaeedadcedaacaabcaeajaaaccacamiblabbabcgaadadehaaccbeiabcaadbacabbhccebadaablabeeeaababacekcugabccccbaidbebjkegdcaaccefddeaicaabcdcecbbadfbfbcaaffdhafbgcbaaabaecaadabjbcaaracbaafcbbfaabccbcbcabadaedcadbabbadaffaeaifffbcbddgaacgabdabbabaabiadhaacccacabbfbcabacbcbbdaaabefgcfabofababdbagaejcckehabbeacafpdabefgcaabcdebbaabebkeacbbaccbbafbdcbagaccndbafbadebhkcagbcbaebadcacheaaceaabgdaheaeaaecaadbbabcabdddacjcbcbcaacbgafbacgfbdfaceadcdabaecaahbabaefaiabdcbabaaaeabdcacafdcaabfaebacbbhcbdecbcccbdabvbabibcaddbcabeacaebakabbhabakdbbfdbacedbcaafdaaadaahclbbababdabcebjcacbbajbhdccaaheaebfbibcaaakadcafbdbbadbebfgidbadabccemaifbjfbaabddbbbbaabadabbibaaeeiadhcbbaaacdcnaabaeedbdacdafggfacaccafaccafaaabaabafaaaaacbdhaiahfcbefadbdababafaabhbadfcfggdedbcaccobcgabbgfdaceacabdbabfbgeabdbmbadaeadabhbdibcacaagchdehkdabaaabcbcabcafcccdbcaaeibeaadagagcaadcddfcebceaaaaaafafkbaiaacabababbaeaccdaaecicaacbgdcajcabiccabafcaaadafbiabboakefdcdjlaabecadeehekaaagaadacgaabfaababhgbchachbavfcaccababbbbbggbbbaacbfcnegachdebdeabadacaadadbacbqdeiableidghccbaaaaaacdbhbffaaebakdabecccefiadabeaabeaaalccacfcbacabdcbahdccciadabeafkdclccbbdalcffabaeaiaebdaoaaacabfahbadhegfbbbldecaebcaacbbbdfcbckeacbacbajaegbbjcdladdaabacjbacacaaajadhbeadajfaakdjilbbaebabadcbabebgifcaeaabbddahafdeccbcbdbddabaebcbcafcadiiaaecccheaabcaaeagcbbcbhfbbahdachbahbgacbbbcccdfhbhadmbdcbagcchaegdfbbebaccddbehcbhcicbdbcbaceabechaddghpcdgcfbaahbfcfdaceaicagdfbceedaeegefedaacaeedfaccbcaccacalabbaabbibacaldbdccabbcbdbabfaeaaeaabcgdabbaadaaccgdgjbbaccfambghdacafaacbiaaccaaegadnaahcdbeabdsadjaeahafaabebcaaabafbabafaabdbabbaeeaabcaajacccdcaiacaaabcacacagabgaecfbfabbdekcgaibbalkaaedacfbhbccbbaebeccgaabafahaeddgbbfcaeegadcaacdiaaaaabedbbaaabcdbccbacnabgaiaaaacaaccabbccadcgbdcaaidacbbeaccbbbeedcdcbehabccbabbgeedbdadaiadecjbagbaeaeekdcaaibbaacbaaacddbjbcfbdfaaacbaabbbaaabafcfebcaccebbdccbacabgcafbcbiadbabbcacbaadehaabjaebbbbfabbfdaaegdbadaaabbfcabcidcabaabbaababccabdkccbbnbfaaasbbcedbacclgaabbcaabbcbbbclafibbaaiabcdhabaebacaajfaceaembddbakdgfdbaafeafeacbacaedebadbabbbcbdcbcabhebadebbdkacaabdacdaackafabachaadgcbeafiajbaaaabbababccgdbfdbbbehhaaefaaaddaaccbkabcabbacaaaabdababcadadfeacbgcffgeaaicccfcddcabaccdcaeaaabdbbdbcagdadcbdcfacaaebahaeacfebbfghbahadeaeceacbcgbgbaafaabffaiafecaacaabebbfaaaahcahbaaddababadkbabhaahacdbeccgaaacaaabbdabggbbbaaaaaddcdaabaacdadfcaefanfbcabdibacgcbafcaafbbacgbfahaacbafiajedacbaacaefmdoagadbbbababndbcbabcfbaaaeacabcddbbddbaaaabdabdbfbcbfedaaccggacbceaamhaabdcaebdfbaffedcbbeebkafbacababafbdcbgadebaaabbcagcbaadicabdjlcbagfabeacgfdabcfcdcmhaaaekbafidfccbcbecfaajdcdaadachjhealabhdcbbbefgbdaebaagbadaccfceebbdaaiacckbbbabdebbdhaeacgnfaegaadcealbbagaegddbdeilbcafaadibabaaaaebaabdabdcgceigaaeccagbeabgaabbbdbdaacaceabdbabcffababldbccgeeaaacdacibfahhbadcaafbbacababcbchagdcbabdaeaccgalbaaaccfaebafibbfcaabagcbaaeaciacccbchbhabfbbeccacdbfaqagahcefdabdgcbaabbefbcbcabbaaaafbaccaffadabaabfbcbgddbkbbabbbgaacacgfacaabfaegkcaedceebcdaacckafgafacbcfcgfaacacbaacabacaababaacjgdadfebafaaeeaabbacfbbajaaaagmbihgecbeelbaaabcabdaabcdbcdbadababcbadadbcdbdaacaacbabadeaebabnidcagbkfafbababbabcbaaaaeiaaibgaaedcacbfcaaadbceaaiceajdgdbhaaaahaadfdbaabccebadbcbhacceabegbcbcdcnbabgcabagaaacbbdaaaaabfadefacaacbcmgabbaaedbajaldacccadakfdaamaddhbbclbkabbedabbebcdaeaabbacbbgbbcgbadacagafgbdlaeiembaecadkbehdbbbdccbfbbaafcddbdebbdbafbacfadegcjdafbaabdjeadbfcgbdeidabibbadfgaceaaagdegedbpcbgdcabbadedaaabgaebbaabgdhckhfdbcbciaiaaafccbbfecabcccjbaibbbacaacacggccecahagabfbaaccdfabacegcadkiekcaabibgadabagabdpcabbbcbbacbaijhfahbeccahekdfdaacbbedbeacbcabaadjcdgddabaaaagcaabaiabaaagdcabjichieadgaadddabdagaababfdcqcfnecdefabbaabaaecadaaabgdaaaccfdcbdcaabecjaacbbbbifcabedabiabahckaabcjecbabacdicbkcgacrebfabbhebfcbbbccabbdbabaaaadbaaabcbaaaldpdbdcababcaagpbadfbbbbadiddebacgbahadaadaadgbmdabbaabbeaabbbcacefbabadbdacbcekjjdaaacdaafbbabdacaadaebgfacdcgajcahbibbhafaacaaggeaefacbacfgcdebafbbdhebdbdebfbdaaacaadbaeagaacaacabbeabaebbdcbabaabdbbidkabbbigaddaaffgcaccbaeaebeababbagbaaabaaeccdgfebebfajfbbfcciaaabdeddbabdbgecbbaaebbaaabdkabhbddbbajhamhheccalbcaacoabcdbakafbbdbcbabcbfmabaafaeabbbadaccaaccaaabdcgdecccdaffcfeqcbaddbcadaaadaadceabgcidgbeaaabjaeqehlfedbcabbdabcieahcabcafhaaaciacbcdaaaadbagbgeaacfeedcdfccfaabbgeiabecdabbacbbaeabebaadccafbglfbpebbcaadebhbaaacbdbfbehabbcfcecjaecababdddaeeaeajacdbbaeaabbgbeahbcbbcaaeaabdcabaeebbacbcafcbcbeebaagcdfbfgeacbhbcddbbeojccifnaaaaagabachabdgaaeaabcebbbaaccbkabbcbifbfecfffeaaacccaabccfheedidcgdoaaadecafcafaakaaakbcdjccacaeabaccdgcbbcbahbfcfeaadaaafaeaaaeaacaaefhbfbabdaecbbcacebaaccabbbbfdbbcalcbcaeiahcbfebabjdhebabdaeabffecedieacabdcecgajbachbmbbacbacdbbaacbcagbbdahcaadaaaedafaaegcbhabkbbacafgaafaaajafbdabbkdcdaabaajgaaabacaaabhldaabdfbecalacacdjbghcbbccfeacbdbcbbabbjaleaecddaadcfdhfbbemidacdaaaeaaccbcacbacaceffabadacddafaedaajfkfggaacaaabbfddacdhaamccdedegcebbgdfbabaceafbhadcbbebdafcaebihaaadcebcabbagaabcabhfadabadcbbbbcdedcaaaghaebagaaacabbkkgbefaakabecahcgecjccebeadgabbcaeababdeceacbdcaaidbcbcafbbbbbbbdbbbhdbfdbdacbgcedecaacbiaecbaqbeaamacadbbbdhecaabbebaidabieacagbabbbchidagcbeabebhabaabbbacbbbeabaafddfabdafcacedfaahdaidbdgbjdbcbafabaaaaedbeeefaaacaabbacbaeckaakbaccbbcacbhaeadceadeebbbaeeaaegdcaabaaagbaadlagaiaffabfgidabccobbcafbecdbcjjnaaaadacdcbacbcbbbcbbcbebbfccbhieaaafaecafbegcgecabfbbaabjkcaddcacecfabbaafiddeabeabfbbbiebfaaagbebabfagcbcdcdbaaacbaeccabcfccaejabefcejeaaaadcaabdacfbccccaaealceedhbaaaccadcbedeaabaabacacacbdkegaegbadabcegdbdbfnadaaaagbbbbbiacheeafdcaecbckaccacdfacaaaabbabacffciagbbcbaaccaicaahbbcaaabbxbbcabadacahadeaeaaeaabeccdeefeccdaefjacaddbbdkfacaehbadecebibebaacbaagjdfbabdfdaabacgaabehdcidjccabeaaaabacabbgabebbgaccoeabbbbaaahdbekafdjacdhacidbedocodjbeacabefabieaabbcaadecabdbcaagbabacbajdaeaacbbccaabgcaddeshbdbbaabahabahecaaecadakjaccfrcifddaadacahbbdfbaegddbceacajegdaadaeabbaadrbambbdhaafahebdehdeacbbaaceacceeacbaghaedeabadeacfaadbbbfbaaoabageibabeabfdcdabaaeaagdddaccaibaachfdiadgaebaaabdcefacdbcaeabsbalkcedeacdaaaeccbabbkfadaabaeabbfeaafbabacaffcbcgbbbaabdabbaibbhbjjclaacdaadbiddbcaababccdcbadaecbbbcideadaaadbfagbggabbcbbbaaaagaadahbaacjafbhhcadahacaaddgaeedcadabacababaagabvcbdcudaeaacabaddbaiacbaacdcbcaaacbbageaadaeaeajceabcddeafadabbihahfcadbeacacacedebaedbeaadbbabbaadabaehbcbgbceecacibcbaaacabbbbcecgcaacbcaagaabcagabbabcaaccdccbbcadaagdfjaahcabbeebagbfdbaabcababaeacccaabbabdfdkecaeadabafabadcfafcczbbbcfbdbbbadcabbfladdedbbaaaccbiaiabeacacddbcecagaecaaaabedaagccaclbadqaaaadchaadaaaacfhcgcbaaaeacabbabamcaccbmbbeffabbgeacaaceacabbaacfadcfcafbaadaabciaedbdakaaeeigababbeaabdecagdbbafaeaadnajedanicmcqadaaaabcdajbfgecbbefdfbcfdcbbgfaaacedcfcceccchacaacfbgfdgccecdeaacaaeefakeffbiabedfbdbdfabaacdhfbfefncdbbadeedaabdcgabbbccbabdgcdbffaeaccihcgacfdabigdbqajaadcbabaacdfdcbfaeabbabbeagbcaaaadjcbaaeadkabhaaaihcibcegbbakbfeaaabacbcaddcadlbfbceabbcfcaedaaagbbeaeefachabbabcbbbfbfhdbagabkddbcbagcabbccacacbgeadnackbccaaadbebaddbadegbacaadckacacgcalecdbeadechmaaafaahbffbaajgcecbfabdaaaabladaceneababhaebndhfcdccddfjgaaccabaabbadaeadbgacfaaccbbaagbkbadaambbffceggcaegaafbcacbbibcacfabclcbbblbdadaacbbbiaaaaccbcaabadgabmcddaacbkebjbbcakeacfacaabcabebccbcaaihaaabaddbeaaaaafdefdjfbebhbbeacecgmabadadbddadaadadbacbcfbaaaadebbbabbchaebcfbcabfdbbbbaadcidbdafjbhcadhbegaaaacaadbdbhbchgbhbdaacchadifbbadcfdfchabbbcbecaaacbdedaaacbbaacbabddbaaabdaaedbdfaccdgbabbaabaefaaedhmdaabafhcfibgbbfgaccabdcbefcgcefbedcaaajmacebaahcbibacbafehcdebabbacbabiddcdcccbblaaaacbaaieacbebdbacbbcddabhacdabaabbcdfcdbdaccfebdafbcbfbbacdbafbahfbaahacaagbfcbbabbbbaeafdaaccbaffaaabbafakabgfaaebaeafeahfhabbffcabbachaaaeebcacbgcecaabcajabebdcbadafacdcsjeeabacaecbaecdbbaafcbadabbbaddbbbdeadaccadacdabbfaaaadcbbaacebddbcgcafdaagbdaddafaadacfccbeddefbfcbahkadafabgbaaedadeabffdjbjubbddcbbdaaaabbeaabcabrahcabacffaaacagcdbhabcabdfcbacbfeabbgfabbbaabffedcebebabaebfbadabcbbiabaacbddahhadgccdbabfdchfbnadbdccabaaaadahgcaccgbabgbcdcbladacedecaaafajabeigaahaccaaababbmdacccbhbdebbacbdfgagajaahaaaffcfaalacccccjdebclbbapgabaeabaadafbaabaacbaaaaacbhcccaaacbfbbdcgccdbcbdabfbbkccagbcacdicadaffcibbdcabbbbebaebfacdabaabacaabddadbgacablaaaccaccbidabacaeaiacdeccabababcabaeabfcaagaaaacebhbjaefaiibacablaaaccaabadaabaedccbbabaiaahbbhaababacaabbcbbaaadaadaeabiaccbeinaadgbckacbbcebaebbccbcabchebbcebfdfbdcbadebceebcebgfaaeicagadaeegaahcbgdaachbbbifabbefbaeacbfbcaebaefbcagcegibifabfcdfcaabacdaageabaaafbcbbcdaebaabdhhcbmcafahcfgccadcedacbahhnaajacchbaebebgcdaaaeabacahecabgdaaabcfcbbaegaababaccaecfceeaaaadabbbfacbaeabmcaaccbgajebacbfbchagcadaedbcbadfgaaaaadbcaedccafadacbcccbececacacaabacccbdbddfaabdcaabcbfabidfdaeeagacaagcaaaafcbhcabacaaaccceadamagdfbaaaecafehcddhabdbbdaaagcaaccadahabdhabbbacaibbahcadfaejaccdcddccaaaaaaaaaaedebadabebadcbacbbabebecaaagcabaabbdbcbdaacdebadbadfabeacdadfabdceebccbjkadgcafbabbkfeddaaadabfafaafcaeabcbbaaadjambaabdbebbagafeaaaaddckcdaabccbdiabcaafabbbabbciaiaddaedacbackaeiaaebbfabaihcdnmbaaidgaaadafaccaeaagaabdbeabaficabcbgaaecaafaiacaeddfafcjbaagbbbaaaeadbabacjaabbjjdfabaacbbecaabcmbccaaaajgbdababacabjbbccafaaedacaagajdddccfafcebgecafbbcefdfdcebcaabfbbcabdjaadccdcdjabcciabfcabiacdbcbbhfcabebbidbbbcabfgaccaadcagbhachcbccfegaacdeacajkbkdifbbeceadcchacbadcrcadeccdhacdbbadcabfdcdabnebdffcadbagaaaaafahcddbadaigaabaaafedcdbdcdbgadacieaaibcebdfbcadbbaaaabdedccbaaacbcmbabdcabagebdabaeccbadcadaaanccaacdeebabbadcebaadandalddbceigmfacblccdcabeabccedacddacadabdhbbdacbbaacdjeccbabcbcgkaedddaagafkbbacebaacgdabbfeicabcaaaaaaafdafcbbfdafcbdaeecdbecbdegaecaccbcadbaaabaeababcadaccbhdcbecdcefabcacdgfcdaeagacadedaaadbecaaefbbgfaacbcdmgevbdaaaaabdecgicdcabbgabeaaaabghddaacadabdafaabfelahdebbdgfgaieaaacacaaabdaacbbfabccdabaaacgdbdbeacdadccbcabdafabadacdffaabcacdaaifaacabbcabiadbbbcbbbbafaccdabbbadfeiabaadabafekfihadaaadfddbfbaaabffbdacckaaabdrcabadbbrdbbbadanaebbbcgaaadeacbhabcabbbbaccaaaeacccabbdbaccbddbcgbaaldbapdabjdibcabcbccegadcaaeajkddbbaabaafdcbdabdcbcaffcabgcbabbbcaedabbibbeabfccckbbbddbajaahiaaeaaabfbdbcabcbaaoaafcdaagcbcfaabafbcacdccbabeeacgcacaebadcgcaeabbaadcbibcjgaaacdcacilcbbadbbeacaecgcgiacbbaaacmcfdacbfababafffaabcieaceeacmccgcacceaaaeabebdaakbbahcagedabagaabbcddeabgbqccfaacaabdbcanbacadbbbbbdcehadeebbbabbdcabdaadbceaabaejdaabdaebgfabababcabebfaadbacbbqfacddafaddaeaacfeacaadgkcecaabfbbccbabfaaghchfbfdgadeaaedmgecbcabaacbcfabdcabcagbbcedcbfgcfaadlbgaaibjcaadaecaabaccaebaecucdcbdbeagaaeafcaafabdbgdfbdiddcbjccgaebcbcbzgadaaacbbkgadaabeaeccbiacgdaebadjaacebdfadadacafbcebfeaabfghaagbkhgbaeefafjaicbababbadccebadbbfcefgcagddebdafaeaaaaaabmiaabbcaaabkbcadmbbedabcffbabkbdabgbabblaebiaecagbbagaadacdabafbabaacbccbefcaafcacfhcacdaabggabiadgbcefcbeddccjcbaedckbadcbbcbfabcdbabbhaafealaaabdafcaejebcaagifaadbbbaaabcaeagbbdeiajcncabbadbbcrbbaabafabebabfbababccbbibcaacaegiabgagbaalaghaainebbhdabccabcbaaddbahiaadbafbacbbbhabaakdhccaafaadbcfcdaafcabhdaabagadadeacabakdcccdcbbccgkaccbbbdfabafagdilaaccacaabccbacaaacecfabmbabadddbabbflabacgdabfgbhedaeabfbcdccdbdbcadhdaaebchcccdaabbadaffadbbabaebaabheccalbbabbbcaeaaabdlcbhencbaaeabbebabcacibbdaafaegakecbblbbfgebbifnacacacbcdabcibdebdabfbcbcbachgabbcdiabcbaabbbaedbaabfebbgabfabclafabeaakagbbcbbbefdaefcdbbbbbebhbbdhbaecaabccgbbedfdaababgfaabgdccaeadaajbeccaabecabpfbaagacafbabbbababadaegeajbdaahabhcagabcdaajfbdablfdaedabbcebdabdabhbcabifdmabcaadamcbafabfdaaaleklaceehdhhaacfabccbdaegabbaabldacaheaacacdfbbaaobahaaadcbaadcbaeaaedadaaadjacabifbbabaadebnaaabbgddaodeaagdfdabcabbbcecdcfagdbbdjkaacfzabdbacdccbcdabbbgacaedbajeheegabdiaadhabfeaccbakaacfadccdfbbeeacdaacdfchaaaaccaabaafbjbabadbbbbccbalibaaagalcihabeadadabgegbfbhccabacmacnbfkadabeedabbdheddcdabacfacabcmabbbhjadacadacaaabadjadaaacacaacaabfafaabidbgecdacbbadbgcabcbbaaajcebhcfbaaabecfbdebfbbefaacbbadabdhcgilhddddfeaabbccdcbaaecbcliceacmadbibaeadaaaaaafahchcwcgaeeabdfbabdabaacdabdaaabbbbbbbgaaadecdccdceadeagcbacabagbaaabbebfaddacahdafiddjaahcgaaeadbcabbcdbzceaablsdclcaabafddgabafaeeaaeagcfafaehaaajadbaaceadcbbhjedbcaiaglcaibcabaaacdebbbbffacekdecacbggbadeffbbfkdaaucfcaaabcbceabaaedaafcfceaaacdbmdabhgadcaeccfgcadagdffddbeagbaaabialgacehafcaacbbcabacadhabbbabmacdfbacdmdccadbaacadafecagbaaagdbbbbajdbcjaababddcacdeaibiabecbafhbaabbaadhcdfaaacbbbadibaaabaafbacbfeedgaaeaabbabbhddcadcaaaeabalbddqaaaaabbcfddaefbhahelbcaccdbfacbcgdabieicabbbaadecabcgdaaabbcgscatacbafaccdcabacfeccaadddaaabbiabcagdbbfbdfdcccbaeiegbdbacfcdabaacfacbecgfeadbeaajbkcafdbabaaaegdafbbdcabfkcadageaccfdhcgacdeaaabeaegeabbbeaffabdaaiagddbgacaabccmkabcghfbabbadebekebebbcfbbbcaabacdccaagccabdcbdaaaddbhefmfaacbabbbadacbbagacadabdchfbiecbbbjabcdbbdhdbaebghaadaaebfaaebeeabaaacccafabafabcbacdeabhbbbgabcadbdbbbdbbadklafaajafcbdaafbbaaccbhddbbneaebabaaafibcaecdabhacbfbdecgcebcadieafjadadahcabbbjaadadaddgbababaebcadddaabfagccaaeibacclcbbadbbdaaagbeacfagcdbaeajjdaaaaaaakbjcbaaidacabggdfekaafbecaaaccbbbbecbbbicdakbaambgadbdefcaaeabgebdbbeagbaababecbifjbcaabbacdkaccabacfaeaccbgbdbaabaagabdacabafbadhbaaeiebaeahabbbabaaafabaficaeadhbdaceabcfbagafbbgadbabaaadaaeaababbiadceaaacbdabccacdaicddabcbdcafbbdedlcgcaacaaccbhdfdcadaabcacabcagaabfccbdfdecbdbcdefbgdcjefhaebeedbbaaagbacdabacdaabcaahdaedeaaaaealababcebfaahhghacabceaabadacgcabfeebdfacbddfbaaadbeebajcabeabaaeedaaabeaaedcacdgabaacdbedaabaaacedaeeefiafabacdeacbdiacbbdcagabbdlaafgacfdeaebababaelbcabhbdbbcacccbdgbaafeaaibaeabbaaaeebaaaadbabaecabbbafdbcbdbbebdfhdbbbahedaaaabgbabadaaagabdbbaekfbfaaeagbdbjfcaeaeeihcbcbaababadifababaeccaabgigebabcabgabhbabifdaabbabafagadcagbhacanaceaagdbecafeccghgjefcagbdaddbabaccdbcacaeaimabacebcbbcaabaacfebhaeccbbbebabdhaacagbeaacacabbcbfjddebccbbaeebdgbacbbhacbbdbacbbibcdabacbaafabcfddacccaeaabdbdababbaabbabcbaeafbbcebbaagacadbaaefacbaaddbadflcbbcaabcaecaaaaababbbacacbbaebdaabbnkacbbbdcaacbhbdiajfeaabcaaabhdafddcbbdcbabbdggcdccbdadbgebdbfabbdaaiebeibdaaaabbbcuebbabaibaabcbabbcabceacaccfbgeebcbacaaachccaacgibdaeddcgehbabaabacbfbadbbaafbccdahbafagbabcadceabadfagajabbdddccageaaifbcaddbaocaadqcbbadbadedbceaebaegaabaecabbaaaceccajbcccccbbcaabaagbbfbhgdajcbdadfcebbdbcicabeabbabcdaeabaagdabdbbbhdfhaaaaadcjbagaaacacjbcacababarfnbaaadbafabdcafalbbhdanbbaebbmaaceabaaagaacbgeccgbbaaaacacabadbfaafadafbbaigabadcbjeccbihbkfbcaedbabkedagcbaedcbfhdaiaaaabaagdbbbbeaccbdeaaagibajabcmiafcdcdageabchagdcdababajaadjffdcbadgdpbbaabkbdccbadaciddacdbbbhbcbfgcabdcebaobcabdfaahgahbacbbafbbbbbaeaaicaajagabaaafehaeefbamaaaajibbgdbagcbacdafaaabedebcddbbbbaaabbddabgcdcadddabadgbbbaldacjfcdddedbeidhcfcbeabkhbpbgbcabdgaaadeaaadebacbabcaaechcabccccaeahfaadebbbadcedbaaabdbddmbdcbfceaaababcfcabadcedcajbdcecckdbaacibbdbaaaaddadbbackbecabddfabcbbabafabefabfabadbccfbgbdadfebcacecaaabbadbkfbddbfdbhcakacjdaacaaacbcdfaefbdcccagbaaaagccadcfaaecbdcababbafcacdbfaaeaaaaeedaadbbbaadbjabaahfceaaacbaabcfbgcbaafabaaaaacaiaaaaboadfacfbbeaamajgggbbgabcbbeaaaeckaabfabbadaadababadabddccccabacgdbfccdcbbbccdgiaaeagicfadaaaaaebcccaaabccaafaaacickgabdkbcadidbcaiedfbanacgddfabaabbbbjdcakdbbebccbcabbebacglcababbbbbdebfbcacdgabcababfbfbaafeabbaagaccaakfceafgacaeagdbjdbacaadbgdcaadacaabaaeddcfbbkceabcdbgdfaabbdbbccahcaaaabbabldbbjbadabagdcealiaaaciaalldabddcaadhaaaeaaafaafdagadbabbbdaekcbaaabaebeafadabfbabdibafhababgadabbdcaicdghrcfgcabbbbmacadaandaaggcbgbbcmcfahbabghcfaacbcdfbdbfcababbbeaaggacefcfadaaaeabhddcfeceaabbfcakabakdababacbfacdbdadmecacbcbgfajaeddbabaaadbabcaabafbaccblcacabceacgdjcabdcfbabeceabdccdcecabkbccaaageeacaeahaaifdcfcafabbgabcdbdcdebadfbacaaacbfaaaddebaabadaecddhhcaceffeabaamfcakbhbcaaabgbbebaaacdbaecaabcbcaeaaebjageabddcbgbacgfabaadcbahcmafadbaibdadebacfdefaafafccaabfabdaacebafadbacacgdeaacaeebcadcddcababaaccbbcbhcebebbdbbbfjgfadadgbbbbaidaebdcbcbccaghdbeaaaalabbbddaiacdgcbaaeaaaababbgadabafgcbcaabecaacfacadaadcagabgadaabbdifdccbbcecacbgedcdgbabcadcgaaabaaiaceaalaaaaagabaicdbaacaafaahababdhjaaaccbeccdaiabbcfebaafabdbbdbbfcbbfbbhabdcaaabedbabagaacaebaigeadbabacabcgaakcababbdhaaadaafcacbbafdbabdbdfdcgcaeaababbecbfaabbbegcbaaadccbbabdbdaabcaabaaadaaebacaeahbadbbacaakabbbcbcbdekcbbcdcbfbcaafbambdeabgaaaagegabbdagbcadeaeaagbccghcceadbbeaiccfjdahlaecccacbadcabbaabbehaagbabbcacbbaaacacbcecabccbcdcaaaadbacdbadaafbababaaiecffacgbgabababaccaadbaafaibadcaaeedccdcdgedaficgfdaibbfbbmdbbdfaigebebieaeebahddlacgfbbbdjcghccceaicaaaqkcbadccaadaebbaaebaahabfgcbbdcbcahdeacbemdacgcgaebeeacaabcdddaihabgbbcabafdabaabcdiadcbddadfedabaaeaacbaadbfhbhbfdeabbaabcbbaibuabbcffdbdacaebeafebabaccabmacacgagibhabdbagbaaaedadacadcbccfbadfaaddaadhbbabbbbaaidabdjabbfbdheajbcbacebdccfabdephadhbaadacccbcabdcdbaedabjcjaadcajabcackaaajcabcbdcabaciaabbbeaacaabdfebbuabcafbbeccbfjdccbcebaedaabacabbdhdbcaccabaadcaeiaaaaccaabbbcdecbacdcaceabgcdfcccaabdcdhdhdhebdeacagdfcgccahfabegflhdabcbbjaaieaaaaaadaadgadbccfaaabbablgabauacbaaddcgkcgeaebadeddbaiaebdegchbbaacaraiaiccaccbcbcbacacbadajfbftbakaacdaeccbfgaeabafbaadahcaapabafaaabaabgfaaifafbibbbfbcbcbaecdcbdcdgacfadbadfabeaaabdcaababigcbbbbaahbhcdadabbbgdlbbcacacaibabcdafbaadcegiabbfacafbbbcfabaacafaocadafbaieaaaafddedbachccahgfcafbagcdbcagedbcdbcaaecaeccdhcabeebfddpkfcegddboabdabafibbaacbaaanafjaaibeeahacaabecaaakeaaadaabhaaacccccfbbaccbabbabcbaaeaabbecaahjbdbdaadacoeeagdaeccgcbadegbaeaaaaaafbcdfeqbcdaibdccbibbbaabiacbakcagbbbbaabafebcabciaaacbhfddabcjdbafgciidgmcccbaadcdjbabaeaefdabaclabadccbcdccababbdacheaadrafaadaaabcabcadaaacadbbodgebahaacqbabfabdagaaabhabdbcbaaegdcdacbcgcaagaabagafabeiocabaaabcbecabaabbacccbkkcbfbaapaececcbacdcbbabdggehebaaecdafdhcaaabgababadbabcadbbbbdaafabghiadaecadeagfbchafbaeabbddcbleiabdafedaabcbciabdgcdaaeaaafhbbabbccfhadbffadaacabdefbaebadacabbabcedahbghaadaabcelcaaebbbjbihhaiaebaaddnbabaacbcabaffbacaacaeegcbcbcgdbddebdbaabfbaabcdhbcbbaaggadfbeaabiaaacfkcadfaadbaibbbccbaAhcabaddgedaabfeabbacagbbeadfcbahabaabfadlfnaccbaaceacabcajjaeiccbaaccaacbacfebcceccfabcbmfmabcfdbchfbaaedbbbbabaadbcfbdbaaabcabbabcaacbbcbddeiagabadmdfacembcafbedaaaeiaddaaaecciabdaaaabaecaabbdgbabcdaabbcgciaebadkbbababbadjbacahalkdckcqdgbbacadgbdaadcabaecaadgccabaacbbbebbaebddcagbhadddohbbhaadbadkaeaecacgadgadcaeeabbbacbcaabbehacadccebceadbabdcbabcaafdgacdaccffcagibadhdfaaaabaeecaccbfbbfdaddcbcbcdaaadddcacabadkdfeacaaebcbecaaabgbaaabkfbjdgbccdcefaabadhkfbaeamccdfaagdgafeacacdfbgeaaaabbgakiddecedaaaaidbecaajelcdibbgcecdfdcidabidgbjdgabeecfbafbaaccbbadctaaibdebabbdccbgeeaacaacgacaabeejdbabaehbhgacahaaaccbabbcemcbghaafccfabaegcidaagcaadhbeajcaabacedaahcaadafgbegbfhbacbaaaccaadaababcaaadebaabaebafcbcjcfalbcdbabbhaccbbcgfcfjabaafhcedecghcbchbacagcaaaafbaafaaacbcnbcadccacbaaadacfbbecdaiabbaababfdabafdabbfadaaabacabcncejabaacaaacbcajadcabdbaadaacecbhcacbadcdcdcdhibcabdgbbbcabebeacaeaelaakbacbccfbbcbddacbbaadhacbbbabccbacaecaceabbbdbaiefedcbaccachabhahbagfaabbaaecacgfbeabadcbgcdahbgcdcaacaaaabadbaaabbaaahaahabdajdcfacccedbgbdbabbanbabbcabbbcfebabcacgabaadboaccdjckbhbebccefjaaaehaaabbkbbcaedicadggddjebfbddafebkaabababafcbbdekebeabeafabbaabaacdhcaaecaafbhbbafbedadbbadadabcbbaaaabcbbcgdaaabcacaeafbeadbacbjebaaeagfadmeacgfaadafefgbabeebacccbadddbbccbcaddaafabbbggbdaaadabbajeaceefcaaedaaaddaebbaaadcadeabcgbaeegbcaeacacaciabaaeaaabcadabeccbcdcmajacedgcgddaabfbccaebdacddbdafeadbcbbafajbecaaababbedaaaidchbebbacaeclaabagacfaiabcatabeaaabcecacbcbkbecdbfabaaaaeaagdecbbbhdibgackbdjabcldabcaaabcbbdhgbecbjbacccbaaaabafbcaacheglddabbadlbgaeaabbaffdbdeeafbcabcfeddaclbafbdfabffbaadbadcbkicabafajifbabadccdaaachcbgfbcaabbgeccadcadaicaabcaccdbgbeadkhldgabgaaddadcabfaafccdhadaakacaddaigbabaaaadbabaadabdccabbcmbgabbcaicaabaacaaaafhbaaaeababeabbdfcajbfabagcbbbdaaabbbeacaebbaaaababajdabfbcbadbcddfcbcacdbghgahaaaacdbhadababbaddcaceacaebaadcaidacadglacaaaalgdcaiadcbabbhbaadjachcbcaahabeabbebafadadccagaacecbdbaehbcbaaeadcaaabccfedgaahbaheabacahedcdbaedidaceababhdaaeaccfbambbbcaacdaabcgbdcbhekbbgibaadiebbdfbcafderdbbbebddbeamcdadabaiaaaedaaceefegbabajaeaeacaabffhdacaecahaebjaddcabaaghdaiafgaahacfabdibdaddcaabaddcbafkcaahjiabiabajafeikbaaacablbadbaabbagddjbcbbcncfgbbcbbddaecaaabbacdedafccfaaabbaaagafcbdafbmeanbdbfbceaajdccbdcdfcibabfdbfaaaababcbhaaabcicaacadcdjbajaajababaiaafaaiabcdaiagbaidfaaaeefbcabfdfbdaaajddbcfbbbcjbhdcalacbbdfccdacadaeagcdaaibfbcdacjbhbahdbebfafbabdacaahbibbedaacfaeaabhababdicabbcadaegbafkabbdddabbdakbbcabsfabbdacacgcbbaibbacidbdcbbcccdbdbaagadacdbfdaabecbccebebeaaibccaadbanddjebaeaaegbbaaadddiaafbbdaabcebaeacbadcgeacdebbaccdaaaaaekedcdgcaeeaedaebqaegaaabfhdaaheaeachadaflfbdadceadbadcbbababcaccgaafaacbacbnbbaecaadacfafaccbkblcmdeadabbadafaabeedcaaebaaeaaacdbbhbgacfadeaaabaabababcblaacaaabfabdacabgadcegadacbcaddadabahdbfbbajhccbbbabnbdaccbcccafdebacgaababgcagcaeabbaaaabaaecbcabaeaelfbcpdaadcddaaagdigabhafabbabeffacbaamcafcdgeeaaebcbaccebcacacabcbbaaaadcaaabicpcabaabaaaaeaacabibaaecbbcaambalcabbbaaacacahaecbnafbbdcbabojababbabccacbdalbaarhbbcajcbdabkdjacmibihbbgecdalabbacabbffbfacaacaeiccebabfdeadfcgbabhbcccacbacbaecgbbecaiaabcaaabeaeaiabafcdabcadagaeaaaafekaddcbebagcebagiiacbbbbbacakbhcaadbcabhacadcccbcccaacedbaffaaaacafcbaccddaadecadcabcffodddadabafgeaeibaaieaaccbccagcgechicadcbcbeaebaadfdpdabddecdcdbacbccfebchcaaibaccaibicabdidaabacaacaoaebaaebaadbbbbbaajdcbacbdabebbdadbbdgabbabdacacbadbcbebbaaacbjfchfbdaaacabbbibdddbcfcabccaeadiaacebdhdceakflcafbadccbaaachabaabdabdgcaadbcfabgegbffcagaeaebambafgbhicabcabbfebbcaaalgcfacaaaabdafacbhfaidkabccbbafeaacbiabaaidcdadfaabaadaabcedabcacaacaebadcbiaffbbccibedcaadadaedaaccabgbehablabaacbjabidmbdhahcafjggjdbcaiaeaciaagfabcaesahecacfabadcauddqbbbbbfaabccagacdibabeadbacaaegbckcadaabffababfbhacdcababahacfaeadcmdbacccabafbbeibebfabcedleaadfdobacdeacdbcdbcebaegaeadbladdafbbaiacbfbaaababacaabbaaagdbacfclegaffafbecaaceaanafbbdacdjgbfbdacffdbaacagbabcahacagebaeacfbbdacahbabbabacbgbacaaddajbaibcbbjaabaddfagaabcbbcbeecebdbdfaabbajeccaabaibbcbianbdabaadaadfcakcncaabcebbabadcdcbaeaedgadcbbbbbcaiaebbiabcaeadgbabadaacukhafcadbbddfhacjaaadbabdebbabfdabbefddeagdecddbabbaebcaabjccbcgeaccaabcdhgeebeaabgbglabaeebaaeecfbakcibabbbbsdbccaeebcchedbfacdbcgfccdfeabcdchacfbecbcebdgaacgeebbdbdfbffbdebcaeebcabbfabcabbeccaadadaabbabhgbafbbgbcacccddbaaadbaaaebafbbaafhciabedddlaafdbabbabhcabaaabahaebacaecabacgeabbhaecbafbjadbabhfiaakbafabbbaddacccdcecaafkagabhbdrecjaeabjpdbcbccdcdfdbaafeebaaefbdadcebaaabdcaeaadabdbdababbcabdhgbfaccjbccdfdpdcdaaacbbehdbdaccnbgagbgacadkeahadgbbaacddcbabaeahdgbljcddaaacmabbbcfadbiaacacabaaaaceibeabcabgaacbcaabbacddiabgecbaabebebdfbdedfedcaaaeebcgdcgbacaafgcedccaaccjceagdgdbafaafaecacaadcdddaiadadddbalabbaaecbbahdfggfbababdfbabaabababdaascacdifaaacbbbdddgdcddcilhcaiahbaadbbabbaagecaaaffcaccfbabbiaabaeiiadbcbamjacbaabdmcabaacccacdfbhbgabaebeadbadacgacadcabafaabbgeaadamkbbfakfbcabeabdcdabadbaddbcacccbebeiafaabbabbaafcdcabddaaeccbaccabchkecbbebbbaaacdcabhncbaeaaibaceabebbaaaaccabagaeccbbbbagacfdbdhaacbfbbaceaffeaabbhbaagdbgahiajbdcdgbcbedbbcaaacedjaceebbfldcfcfbaaaaficaacedfbjbcdhebadjdaoiaaaabceaacafhdlcabbceeakaadabcdaicaeecaacbcfcabbfdbcdaheejebbfaaabbbaebcbbabaabcdddaacabcfabgdaiccaabcbehbbaacigaedcaaabccebdaaabhbbbafacfbabkadaiacfadabkkaaabcdcegacccabbhbjcbabahbcadbdddfbbdfbdfhddcbkgbbcaddabifbbaobdebabaccgeadfgaairfdabfahcdccdbcbbifelabbdacbfabaecbhbadabacbkaahgbccajdcdebbnbacaebeffecdaaabeabbebabdcaegaababaaaadcfecbdddcaaedbhiabbbcadcbbbaadcaabcbbadbcccecdcaaaabcabcdadafcaaaaeabaafaacccbcfbjcaafaaaacabcdbbbdfabaaedaaeigacbabfbcaakbccbcchcbaaaihbbbbbdaaabgfcegabdbficcbbaacdbbcacdacaecabcbadccgneaaabcehbddacababdabgcccdfbefabhascdaddabaccaaaeaagdaabehcacacgebbebacaaaadaaaacjagacaahbdagdecaaabihccbfegabakccafdgdhchccbegicabaaadacfaeahbbcdfbhecaaafhcdbcdaaagjddbgbacbacaacfakbbcagaaeaaakfffefcbhcaaadaabbhcacaabcaacnbfdbcaadbhafbdcbeacbdbdadaadcehbgbbgaadkdiaabbfbjcbcidcahaafacaabdcadgeabbacdjcabaaebacacbfedcafdeaeaaaagabfbdbabbebjbfaabaeheeeabbbfcbaccbacihaacbbcdjeaadjddbkebbagdceiacajaacbfccaeadbbdeabeidcaandbabebaaebfbfabgcaadagacaaaacbakdbdaaefacdobdcaeclahdafhlbaebcaapacbabdebcaaiaacpecaaaaahceeagaccabbccchbabecbbddcababaekaccaaebeccaabackffabiblcabaadafbbbcacdcbdaceaadacabodbdhdbbaaaabbbaaaeeddcbabacfaagfhdafaedmbabaccabfaaahcbbaaedgbaccbbbiadgedaaaaahaabdbacdibcaahdicchcbaaabbcacbaadragadjaebhbbddbfbhcacfbfacdajbaabadabbacbbchbabbkaaabhdbabfabafaaahceabcaeaagigcbgbbaaeeacdcdbcgadbeffdbcdbaaaaacldgcabgaahaibdabcddcaicdaccachcadabbekceaaaccebdgbaabcebaccbekdabbhbdeaaadcccadcdaaabdcagedcdcaadcbabagagabcabfdagbfeadbbbeddababbkabbcabbbabbdbcadacbdaacfbdabeabadaecacabadcaelfacebaabdbibabaacbabaaeajccacaabagefaaefbcabfceaaebcbbgbfadebgaacfcebfadaacfadadcfbaebcecdgbbbdacbcagfaccbfbfadfdadbdaddadaabbhddacccdaaabcbaaebcaaadadbhcbgacagabbfacadefgacjcjbdibaeaacabblbbfbblbabefbbddbbbbbbffabecaabdalfhaahaabacbdacdiafbnfdbdbbabacbaabaacdehbaedbdjbeacacecckafabbbdgbbhbjbibjbbbbdifdhcdhbaccaeacebrdaadaababcaaabafajbggdcgbabbcfdccbbdcaabbcabacfacabbbclaaafdcaibaaaafbbabcbgeecgdacfbccbbdlcbbeccaafadbcbocaacabibhlahaaabdcdfjdafjababcaajbebccfddcgdebaiacbcaegdaafhebdaabgecaaabeaaddcaaabfbeaababaagdccaaiaaaacadbbadbbfeaaaleacmgcbgbebbafebdifhabbfafacaabecbagaaaccabbacfbheafacbdabccdfcnbadbecfdabbdagfaqcddbacbcacbbdcbiafcacaecaaajdcabdccieedbbaaaaddaadjcacbbgabdaeaaajdfaebbcabbajebbbgdcaacabajaabbfldbfaabbbefaaaaedaccaacbaeedcbpcdafcbfcccgdebbcfbbbcaehfababbaadahdbadabdbajdcabffgaacbbicaebsfdcbacdbdedbebabaakfacbbgcbdbhacbabicieiaceakgaaadbdjfdadjgbadbcbcbcbkaabreahadadefadabbgdbcaaeeabaaclbbdaabbcbdbefcdglagcaaaieacdababaaedadjdeeaacaaefaaapacmaafaabbdicaacebadggaafiaeccabaebaacddkceabcblcbaaagahbaaafdpdagccaejcbaeccaaeaadcacaedkacbdcnaebabcbecbghaacccaaadbdfabdebafcabgbdedaabedaddcadbfdfbcgiadaaejajaaccdedcaaahncagabcaabiccefcpdbbcfabccebbababdkdcfhabbbacbbbafafbcbaacfbbbaachacadfdaabbajabfhbddacdhfbeabgalegfggffgbagddbkahldecababgechcejafdabaaadbbaaababdabadaebbaadeefccdceaebaakeaadbbdddbffadagcgdbcaeabbabaafaacaahabcaabfaaidbdcadaibaaadanbbdcjeabaadbaaegdhacddfahabahdbdbaeabaacebnagabdacbbcbgadbbbabaebbcaghaccabfdcbbkflgcebcedaacbadaaeaccadaabbaclifbdbabajcbbbaaafbahfcacaceajcaaiadcccaeigcfddeafpcabbaadbcfbbabbdeeeacaeaceacccaacbddjajfeaaacciebhlakagabcabaaeaabdfadadchabcddabddcaaaaaabheaaadcbbcbadbaeabbacebbcdaqcflbbiaadeafabbaeaabbaccbcaicedcacabaabaafdajedejcdcbcacifadbjegjafkeaabbciccfbedacbadbfafaacabchakbgcbaclhbaicfabedddhbaabdagaaeadeabbaababidhaabddkabacacjaabdaababfaacaaaahabbbgbbbcacfagabacegabbbcchbaaacasbbcekioabbabmaabhcbbfebaaafafdaebabadadccefacbbcaadaaacccbeaaaaaacgcacfdcaaeabaadfbfabbeafaddcaebbaabaacaacdbbaaaidbcacmcbaecdabbabaabbbaaabdccabddbbdcaiecabgeaceajbcabaibbfdcgheadaaacaeagebcafdadadbeaedbadcaabdbbaccbfbcabbkaaaaaaacdhaaaabjdlfehdcrbdadbbacaaadbaecbgedcabdaaacaabadacacdbcbafiaacbbbccghcaaaccbbddhcabeaaacdafaacaedcaceecbfddgkahaaaaacbdeddafcafaaccabiabhehcacbbbadakbfcifdcfdeadcbcbfbdabceebmbhlbcfcabcfdbiaacfaabcamdabbbccaabdhaagbebadbaacaedabhbfcaaeaababccaadaddfgaaacdarcdcadbeacbacddabkbbaabbbaehhbcbcbbbacbeaeaagbaaeaaedbfcfecadbcbaadafcbahdcaccbcfecbaaaacaclafbccbbbafcbcfgaaabjdbccebaaeecabafadcjdaddbabaaaacadbgbafcbeaebfgkjakdfabaabicgaddcababhaadkdbdfbmcafccccbcaaacdddfbfbadgebbaabdacabadaceabcbcfbaaacladadfacghabbhaabbafejblacbacadbabaabbbdaebahdhjaacbcccafiiiafccdaeecaabbaaaaocbdajdaabbacilbfchecgacbcbbcccdbcacgaaaaaabfabapbkgdgdebajbffababgbbebggaajgcefceedacecdhbccbaicbaggbahacedfbaepehafaaaacadacdbbcbffbbdaafbbcadbrbabdchafacfacabcmpdbfgaeaebbdbacdbabaaaadadfjcdabkaddaaaakdabbcaeagaifacaaebiaaaaaaabbbbbaaaagkaagbeabaedbfebcaacfaeaecakdeeiaadadgdcdceedaabbcadcegaebfccadbfaeaacdgaccehacabaiacgabbdbakaahcmccddaadedeacdeagbcbbmdacdbfabfagaefadhgafaaaffadddcabfadabafadaacaagbaadfbajcdbafgbaadabaaeembdggcaaffdacejibiaabaabacacbadbcgdbigcbaahebdaajdaeccfebeccabaaacegbdbbdafaeacabdaehibbbbdbdaihaaadahaadfcgaaaadacdbbhaacbcdacdaedbdaaicaacccacfdbeaaabcdadikeeeaabfagbcebdadfeaabaadbbdbdbbaadbbdffabgccbeebbebaabcaaaabdeedafdebeacccacbdecebacachdbxafageccheaadbdcaagabbaaadgbaabiadfaaahcafibghcbdaafabaadaicgfabdaabegbafdcbahahaeabfbfjcbbccacdeiadbaaiedaahcfdhdeefdaekafdbahiabchbbbbdbbbafadancbabccebfbcadabcbdbbabaobagcadaadbdeeceaafdabebifgagadbaaaaafadgiabbaaacbabgbcaeabidfbcabbbaacdacadbccfedbdbccabcbfaaaabhcafdcaboecbbcbbbhbcddabkacbbebfbcdbibdabcaaabjamcbbjacdhbcbaaedbebcbdcacheicbccdbfadacbaaabcebcalaidefafdbcacaabbaaaaaabfabbaidlbabbfaabfffaaablbahdcbehcdabeabcfcaaaaacbfadaemcjehafeaeahaabdbdaabbkaafaaegrccbaaceaaacaahabbbccddciaebaddcadbecabbbcadbfjadabdbbgagebdbbfcaefaefeeicdaabaaaacaadfbfdaaabdbebajddfdbafedcbdaadbcabbabaabbcjbcalacaaaaeacjbccdbbaadcabcaaaafaabfcabdabecbdciebabdbbeababbbedaciaafbbbcblbacagabbabaflcjbbdahahaiacdddbbnaccaaabhdcaabbaigpbgneacddacabajceahaaafaedbfabdibaieccbcaaaehacccbraaibacabckcjahkdaabhbfhdcaaaeibcaeadbaadcbdhbcidffdgbbefaacaghaajaadfebfbjbagaccaacbccggcaagadcacdafbjdcfadacgaabaabbeaabcajddbcgdaaaaahbdnbcaacdbaddagbbdbacbbbaahleccgcabdbabicicccbbacdfcbndacijacagaacgcecbbfacaaeecbkleaaihadafaaaaaahaaaaeadbddafabbaeggdglcacdeajbhfbgibcihcbgaeiadabcfibijfaaabbcacafadcbadcaaadcaaagacabcfeanaabeaccedacchcaeafecagacdcaibcbccaadbeaababdacbbchabbafaabcgdaabaabeabadbcaadcnadaabecbbbecbcbggaafbmeadacabbgaafacbabbefafeebabafaacbbfaacaabbbbadccabbacfbecaagabcaebbcbjaekecbklbabbecedbbabcdaeakabafaagbdfecadacdaadacabageahgcaajacccbdafdaalcacecgccaccaeeeaahbabeijemfdahbadbcaccbbafaedjabacfbacbaeacacbcadhbbdbbaecfaacgaabdaecabcabdbefaagbcebaaaaabcbcbaaehcbeddaaabeabagdabhabbabcaabdeachablaadadgbbeaacadeejabdgcbaaaaibbebjdabcfbffbaebbagaaeabaaaaaegajcccadbgahgdbaaagddhahdcceabcaghbgabdaddccaaafdjdbgaajadaadbcbbbaaiadbdabeacegghaaaaabfbeacbdbafababbdfabbdaccaabaaabfacaihkaaaabaabadabbacaaacacaaaehbbdcgaaadaboaphefcacigcfaoagahaadbcbfdaaaabcaaadacbaadaacdacaagbhbecdeafgadpaeaaabbieiaagjgbefeccdafaaegahfbbacagdbcbcfbdgacddgacdfacacbbclffecbabdaababaaaabebbkchkcaafhbaabobababgdafjddfaaaaaaiibcdbibcdlbjaaeebabbcchedafabdcfbbababdabccgbiaachaecancahhccdabeaadcbbabltalaabbcdabcjfccababcaeaaabdeifahaaecdbraebeaacabbceeabacegaacbbbfaaabdlkaambhahfeacaaabdfaacdcaadajacacdcddcbhchacaaaaaceababceacigcaacbhacacagabakagbabbcaeadagabbedgajfacgyabdcdcafdcgcabhaaaccbaacebcgcelbcagdahfjahcaebccecbbcfcbafcbcbbabhdbbfaadceeccbbbababefdfdfccdcbadacabeeacabacaagaaabeaaaddifgbebdccccaaagaaaacbbcaacgccgeacaaaedcaaacbabcfalaccacfaabegdaadbcgfbabbdcbhabaafhddaaacdeabegbbbghcebdbnaabfcddabebhgecancdaeaaacbabaabbdbagcebadeaegakabbabbckcaabbfcbkccegbaaacaecbbbdbababacdjbbfenachaaacbbbabdaaabaaaacbeaeecacdbdbaackbbaaabaaeddceaabbebbcdcbdjcccemcffdbcfccaabibabafaaaaeabacabdadcaahccaakabpbdbhaaipbebecadcbahadcadaaadebbbbbfacfaaaabbfajbaadabecbahgfabfadafbebcaeabaafjbcagbifcbaabccbdebabfdabeaaaabcebabdkaahenfsadadbabhcacakcbbkaacccaibbbchdcabcfcdbeacdddacacacgdaecaadahlebbaifaaaababafcpaadcccfehdmbaaeacaicadakbdabebaadafcafbaaaaiaabaaaadacejjcdacdaacgcdafbdacdcabddacebbfgbcgecbacddagabfbcbbcaedaacccaaabbbiddbebcbaebabbaaeccabbcacaceaaeaafaegbgactbecfaacabcfbahdabeaaadcccchdaabacgabcbabaaaibdaccbcaeecbbjbagdgadfddaebfncicaakbceeabbaaabfbdbdbbbcbacidfhgibbccdbddbaccibeaeadjebdgaacebdkdbcdbaeaabcabachffdcfdaacfaddfgaabbfbdcebfbbdabacccaaaagaaeabacbaedidqacjdaadbbaebhbcbfeldgaabeacbababbgbagaaagbabbgcbekabcfcabaabaaabacgaiafbdadamccccccebaecaddcfccfacgeaacbababbcacabafckdbacbbaaclbgaahjaifabbbbaeaabhffajahbbabebacfbaccfadgbbbaefabbgabcbbcgbebadcfafiaccbbaefaaahabcbagbfmadadaecngabfbaabechbedafhcabcbbdabbabccbaeadhedeiaaaaacdfbecacebbbcagkafddacbbebdbbababbbaiahddbapaaaeaeaabhaabbafabbjdlabmgdaabafaabicaadfaaileabbaaccbabaabaefcbaaagaaacfccebaabadcaahabddbabdhdbgaebadcbdccalacicaccaibeabcdadadibaabacbafaffabebebfbaaaaahabfbjadbgbdcaeacaadejbgdacaaagcabcccacaahfabgaaagdaaldaababdbgccfabbbaadacabaeaaaaafeahbaaabseaadacababcbahibcaaabbbbkcjabdabjabchadagdceaaeaaebbeaebccbabdaaacbbbdaaacdbbcbbbeacadabbidaddaabbaekbabacmdbfebbbdhdfhabbffbabadfhbdkbhbbdaddcfmecadeaababaaabhdbcfcdbaaghbcbcbcaacgfdcbgaaadfebcaffcdbdbafbbadcdfaafbcmefaegeadcaaaacacabsabcaacdbaccaabbgahicageaeffdbafdbabbccaaeabebfaaacbbcghcaabcaaccadaabafbbaafdcgfacacgafaeacfcababcacabeagadeaadebeedbdfhabeebcdbbhcbbccfaeiajaabbfdaeabfcaadfhsdjebabffefdbabckddbacfbaaalbacbabaobaafaaceadbdcefgcbgbbedcbcfcgfcdbdfahdhdaacagaabbadbdcaabheagaebbdabcbfcbbdbbcbagccbeagadacababeaaaabfbaabeaogbaeafaafaaaeiacdddfddcdgabaefcdbacbdacajbecacaabocagaaaacbbddgddeccbgbcccadaaiaaceaeaababbccacaabgbbahddabfbbbfaceaabaedbaaabjcdfacdaaiacbeeggcaageacjibaghfieejbbcabbbbadabaaabaibadedbdehbfcabacheedafcebgfddblccjmdaabhcacbbaaacaaecbhbccaaafdalfdececadaafkaafdaaicadbbaaacbaagaabebabffafbbadjhaohaifaafdacbdcababbeabcdbacbbldeiacbfbdrabiaebddbcabeacaflbcbgaaadngaebbdbafcccdfadaaabdcabaabbccabailgbaqdcbhtaaefcaabgabbaadaccbbbfbaaajfaadgdbanbbeaiacdagaccbadiaacladcacaeaageabbacaaagfaafgcaacaahabcaaabfbldaababeadgacbdbbdbddbccbjccaqcabaedmfebfaedacaddhcaadcaafbcbcebciaadmfedcbafaaiaagdgbahadaacbbafhbdabfhbflabcaaadedejoadbkbdahaibcbccaecabaahedbefbbabaccfaabcdbfabccbbaccabbbgabadgcagdfbbaacbbbfccdgiaadcbcacaebbcbbdkfabdecbgdfhgaaaecbedeabhhcbbbaafbdahadbaabcddadbaeabacdaddabbbfbgcbbbcchdabaccdddeahbbaabhcbacdaaebbbajjcdacgdabcfcaddaagbbfcbhbfbacanccaebcaccbaabacaacabacbhdaabbfcbcbcaaaaahdecdedacgaafabdgabbbchageedafiacabaaacddcagedbadcbahbidjcabobfcakbdbacbbaacccgoabbhaieaebaadeababaabeabakdacfadcdgdceaiafdebdadabmcjeeacfaaababcceageabbbbacffceecdcbaaaekdbbecadcaendbcdceaacakeaabcafadcchacaabaabceaaabdegaaaadcdabcdicaadgccbbbaebgacbeebaddfagacadcaabcjabgcacgdbbcbabeajadcjbaelcbabkbbbeafaagaadbaaabeffdfafcagfaacbeabafbaaadbdecbcbcdafaadabcebfacccaicdaabgebdjaehcfbcabeabebabbedaaaaadbbbcabacabbabbcabdacgjcbeadbcaebgcbabcoebchecgcdabcfbccicbidaadbcaebgvbedgcbccaebcabbbacdhabacdcabacdbchbbaeaebbbeacecbagadbabbadacaaddbddhababfbaiddbaabafdadafdbanabbblaacacbaacdfcbaiaaeebbhahcbbbdbbbbbbaadaaecabdibfbkbiabdbcaaagdecagcabcfgbbbhicdeaafcdcccccaeagacacdbbbaababclggaibbaaacaafbaedfadbneafcdgcbkgabaacbecebaaacbdbadaebccbabffcbacacdagadaabbabbdgcbbaaaabhabbcaegddadabbdaccbcbbdgabefbafbabbacaaafcgegaacebfbfabafcffdabjbdaibbcfeiaccadabbabgiaeaeaaafdbabhbbbabdfmaabaacbbcdlcadbbcccgbccecifbefidfacbcaacaicfacaaaabababcabedfafahaecbaageafcebcceaccdebbcbeobgadbgaalceeaakabfahiagacbdacccbaaccjaabfcaababadddaadaeeacjbkacbcacdafcbaadaaffdaabgcbbaaeehacbjaaaehbcabbaafaaaabcaacafbkabeabaabdedbacaffcdabbacdaabaadafaaeegcdfnaafabiodbbccbacdcabgaaabbbccgdaccdafahafbaeabbafcgbdbabbedadbabdigabccdfbaibdbdacbabbhababfaajbaadaaabcbbbabbcabudbcaaabbacfbiafakbacaahfekeaaahabbbsabcbafabeacaeaccafachcgaabbcmgddgibadcbbafbfiaeaabaaaacdcciaeacacbjcdbfbadabbbgabaadehbfbdbabmbaaaafdpbbaabhbccheaccabfadbbbebbabccdeaaaebfcadaccdgbcbadcfbaaccdfcbababcaccbfhaiadficcbhfbjdbbaaaabaaacaaafiabaidbfcbbcfbdbbcldgeacbeadbabbdbfabbadaeabeacbedbcbbcahbbcacgcbaochbcdcfbccahbdccabceacbehafbcaafaecabcaeeebaabafdbagcjccfclababdbabcbgbbaacmabakccacbbhecejeubbeaaacdbdeagbbrfaacmcadfaccccdacbfcbbgbacchabibadafhdbaeagahaacbaebbhdckcaahcadcdfeabadeecacabaahbdaadabddafaaabaaccbgabhaccclhbcaaacabcabaahcbgaiagaababbgabcfcgaaabbbdacbdcfboaddddabgaccadabanaebaidcbcbbcbaeaaaadnbdmaababbcdcbbababbdebcbeeaicebifdbaadeaegccddcbjecmacbbhcaieacacfcdbaaaaaceedcibjacdbaacbchcadjbbebadagaaafaaadhafababdabbdaadkaaeaaadaabccxicbfcgcbdccacbcbcaaaadbgbnbbabbbdcpcdgcabjmabdhfadabcadfaafdcafgdbcgabbchcfabbfaabnbccadbggfahbbfaaadbbbjcdfgerfdbjaajebdceeebadddckaedcbehbaaaahbdeabbdbaabcagbaabadabbaabacabdbcbcdedaddaagabffdbadcgcagfacbdahbfgdaeafdbabacdabaabaaacddcbclaeabbccacbeebrcbabaaabbbbadgnaaakadfambccbbacdbhcbababffdbaaebgceabaabacdaddacabcbbcaddbebddefaaabbbdbbbabcaafbaadbaeeebkgbfbcfagibgaabbabbhaaefggbaaeaeccaeebabbjebaeafacabbbadalgbecdddiacaanbbcdabbaaeacaaabgadabcbaccdjaebbgfbabbdbbafbciababcabbbafacabbbaahbabcaacbdbaaeaaecaccebahfabbaebdbdfaacacfagabbeaecbhedbeekacgbdeabbabccfcaaaeaaeaacacacbmdcdaafbdddhaaaaaabaahaabdaffdbccbeabaeebcaecabdaaadaegaggbdacaacccaaacgdbfcbalaadbbdeddbabeacakaadbjeabgddeacajbdccdedcababcenccbebcnafacacacddeagacjebgbbaacbcbbbbdabaaaahaaidbcbdabiaekcaaiachdafagadcaebaabadckcecudcbaceikbacccbceaaabaajcafaaraaabdadabbdjbefcfabddeadjabcbeaddedaceeavcabbbcagdeaabaabcddabkcaaccaefcdaafeccbhdababcfcdaaaqeddfffaafcbdcdabcibcebbaadcchalabccbfcabbadabicbbbaaaaifbabeaecbcaacdbfaibbcdeabcbaeaaafbfccddbgbbfacabdabbabhejbaeabaagabaadbiceabmcacbaebafbcbbebefcbaafbaeaegaidcabbakcabbjdaebddbbdbefbaaddbaccdadaadbaacbccefbabgbiaccjcjcdaecadaabedlcacgdgadabbbelcaccfbgbcggbgafgaaabqbfbcaaceadbblcdabfjbabafabcbhfcbbccdabaadcaicaibaccifbhgehfbbdbaaabcbaadkaaaddaecchaaaefqefahagacfiacegfdbbcaidbjbffabbbfchcaecaagebdbahbaahaabbbdagpbadbadacbbbbbaaaecaaedfcmecdbcbahbaccacccffacccgfbcaabeaecabdacdbabcacagafeccbagldjogbkaaadbcbncdcfbgaaaaababbcdiaahbbedfaccgaddaaeacabbbabgegeeaaaeabehcaeabgabababacdjbfcbcaedadaeodjdhaafaaaeabbaaaabbaabbaagcjfeaeaaadcccgaeebcabdbegefcgabcfbcjacagdcbgcbhgfahcgabbaigbaaejahbdfbcadddcaaabeacbcchaaaaabcblcaacdaaajdcckebibbhjeaaacfbgbagaaibbgdcadcccbdadbdgaeacabaabbbbccaaehaeaaoacckatbabaacaaacaaabaaaadiakahacfaiboadcabbacicfnaadabbddaaaaacaaaidheajdcjdafbacgcbacbeabeaaecaaaaadaaddbebabefbbbeabdabdbdahfldmabcabkiecbbaacjcbiababdchjahkjccaibaaabaheaabbdbegcocfacbcbacgcdhdcbcaaeafaaeadibebbiabeabffbabaacaasbcagalbcdnadgndabefmbddbfchdaaabcbeaaaaeaagaaebbadedaaafjcaadaabaaadcfefdienaeacjbcbdfehoecacbcbffabedefafcfbabaaaacdaafacaaacbcqbaaacahbdbaeebfiaaaedebebdbanfafaifdfcbdkdhbdanldeaeibacabbbadebdabncbaabcebgedbfbecdacbbideebababdgaaaaifdabacgajbbmdbdaacaadaeababafacccafaadebfdddebkedbbfagbadaaaeedbcfdebnnceafhfaeaaeaaiidaabdbaaahaceagccbbefababacfdaeecddaaafkafcbdafacbbaaagcfcacbicfceaadadcbbbadfcfabbabfaadcabahaeebbecbdbcaabgbaadccebccjbccbafagbcdafbeadcahchdcagabebbaebebjcbcgbaacbeaebdbfahabcdaaaddeacfcabdkaaaecmiabaaegbfaacbgcabagdbbbbcdbaecdfabecabfcccebacacbaccdcacgcbbkechaacbaabeacebahhbbccbbaccdkibagbacbdiaacdbehkbafccdcddadaobebkabbbadbefcaabackaaamdibbcgaccjcibcbcpecbbacebgaacbcdacebscheagbiccaicbcqbcgacacgbcdacaadbadcdfhccagaaabeaaccbaceeggadhafbabbhbecccaecaaadaahjdfabaceaabcdbdacbbebcbacfaigacabcebecbqcaaaiaahcdbcmaasahdababdaccdabajkbgaadaabaedafababdbbhdaibecaadbeaacaaafafadbfbcdbnablcabaabaacbacibacasaddhgbabeaabcgaibdakabhcbajcddbafddaadabgobaebbhbfecabcagbedbahaeafkabcbgacabebcagdfaababneeaabgearafacgfacgcaebadhadfbaacababecbcbfeeaaiaccbccaaepanfcahdaoagcahaiacfabckabgdjaddcbcdbaaacaaadafgibbbfaaladlgcafbgecabbbachdbeaaabaafdacabdaebccjbaahabacaamaiadaaaddabedcfgaacbbbaaebhbbakbbhagccdbfbacdheacbacdaaaafaaaddbababfamgaeecoaafiamaadcbddhbfgadegedbfdbdafdgfbabdbadabghdcbcdbadigocdfbafabhbcbeabdbkafbccbaababcaadchagdacdiaibaeabncggbdcaaaaembdcbbaalhabgdeaagehkdjdebfbcadbbcaabbabhbgaabaacbbaccaeibaabebaehgbbccafbbaajabeabbcfaafhechffbccacbbcaaaeeadcaeaaadaccgabaabbbcdeebddbdadfbdadamaablcbcabaaaffcbcedccbbedbaahbcbcedgacccabbcbbbacadajaaaemgacaaccbaeeababbgabbagaacaaahaaeccaccbaabeaalbaaedahbfhaafbbegceebaladcaabgadibbabaeiababaaedkggaadbaceafeaaiacbbaabdbdcfabfbacaafhbbabcdgccbbaaecacacaabbejbacacaadacedalabcjebhbabdbdhdlaeecbddabiadcbakkbjeeddfjgabbackaabcadckgcbbaccffgbbafebdbdabagaeaaaafbghfababdababbabdamcaaaedacaaedcaccddjdbdbgcdfbdibdaclabaccabiacchbdbdcdbhdblebacedaaaaababcaieebaeaaabiebafaeagbbaeddadbacacaeeddacjcbafcacsacabbchegdafcaceabbabaanbaaeiaecbhadcafhaakadfacacgagecaaadbdbabecabbdbgbbbaaocccaecabaabcckdbbfccdihahdeaeddbbcdbaebdagabbdaajhdajadafbcaaacegceebfabaabcacbcgbbgcafacdddgbcababbgdbcdacddamcaacggbadedgahabcabacdeaqdabdbabdbbfeabfeaacaambbfaadbfgcfcgcbnaacbeaeecfcbaacehbbiabhacdaaagaabscaapcbdcffaabcabdaabaacaacchceealcmaaaddaceaceeckapbeciehbbdajceaabcabaacccbceeambaaabbeebabeibbdaaaeebdababaddccaeacadaagaiaaaabeebdaeabeddcagaabcafaebjaabniacbedaegaaeabmcccaeeafadbkbaarffddcckacbaaacebgnhcedfcabahbcbdaebccabiecbdabajbealaabeeigecbaafababcaaaebcacaabcfcdcefacabaeabbbbhggbfaabcbbdgdiabogdcjaaaegfgeaaacacccagbabcdbeccadahdabhnbdjbbebscjcbaacakeffdbabgcacbcacecaccaacaaadbcceafaagebffancnahkcidabeaajgkagfaaelaaefdachaadafbacaaabfbbaacbcedaabdcbbecgacbhecgdabcbcaaagccejdadaacbgbhbbchakbebedfceeehbbiecbafababbcaeiebaaejabkcbdbdafbbabbadbadcabibebbadgaaaawcabbadadeckagcdaeafadaebfbbeggbmhbaabdveaccbacbfchacdcababefabbdccabaaafaaadciceadfadbaabdafdbaaddabbalbgbbbbbbaaadabbcbccbafbdbcadbagecdgdabbfebaacccaebdbbabfbnacajcfbchbdabaachcaaaaecaejbabahddacabdddbbaabbgdddeiicbhdbcbfcbeaadbadbacgaafcaabicadbadhabaagccddaebaabhbcdbbaacagcbldgeabaaaajabccabdaclacdbcceiadeibdabhgaaaabbeakaadjjdbabgffbbhcaaacacdcedadaaaaaebcabdfacacbcdbahcbabfmacfbcacegccbadaacbbdbaaacccbbdcabdgbafagbaeacbaadeabckdaeeababafaagahdahcibagbaaaabbchccbbfacfhacdbcagbfbcdbcddbdibcjaccbdaaabaajbbcgcfacaagbfcbbcachddabbbcbdhfaaeacaaaafbhbdfedcabfcdbcfaafeabbhcbcdehfbcfaecbaebalahafdcanaaaacacbaefadadceiddbcdndeeeambadbbadahccbababbebaafagdcbbabccacababbceddabbbbfachbbaeddgbadagbbdhabhdbckacjaabacccbhadaacaabdamcaldcababcaiffcbbbbaabcbcbcbcabcgacaafbebbjcadaacaaecbacfafaadilbfhaebcbaecflcaecbbcbocciaclcabaacacgeaafbaabaadaaaageaccecccdcjdafeadfaaafgeabaaeachfccabdbaccfdbebaecbladmcbaeaabdbacaaabadcbbbaahbbghhbcddbblabfbahaccbkaaedbemababdfdaachbecaafbeqadjbabdcacfabacaacebeczahfccaciadcacfaachefbbcabaabbbabagbaddecddadceaeaaaaheacaacdgecabaddbdcbabfhabfccedbbiaadcaaacbbbeabdhcafehedhbjgacaffafelbadbaddeccaacgdebfbbafffaafeccaacbgchhahebdaafgcaacbahacfibfaceeddgdilaaacaccbccckbdbccaafanaacdebcfbbdadbbgadaabehafddjaacaacjgfbgcicadabfbedagabcbhcieeddabbaacjabacebadaiabifaedflakeaeaaccfaacdbafcbdadgbaibdahbbeiebdmbccabaenbdaabbaeabddjbebaabacaaabadeiddiaeacciabaagbbaaaacadlbdaaacafbgacbbcdcbambafagbaaiaadbfbbbaaccachaadaafccabbacacbdddaccfbakbadcadicdcdaahaacbcacebdcaehfbebadebdbebbcaaiiecaaaddeigadkfaabbcdaaafhbbafdbfcbacabaabbbdebaibbbabcabbbddbccadjacbdbbgacifaababgdcecadaacdebbachacdccaaeaagcbnbebfbabdacaacccedgabheaaabcabfbbadadigaafchbgbbabcqgffacaahgbfacaadadhbdddbbiaabgabaakbbababdabbbaccbdbkabaagafbcgbaabcacbbcbaaeadcabnfdfbaabfaeeafcledjacebbjbbbbblaaabamgfabfcabcdhafcdabaeaebabcebebhaacdaabidaaaabbeaafbciaajggcbiaeafdccgbhhfbaihbbcaacaaaaabaagaccaadakbaadcacbhfacgaddadabbdidaaacdfmdaaafaaadacehbebeccajaacbafeahbaadbgeabaadbfeeabeabaaabbaaaabbbfblabfbbeababbcbcbafcfafejgccabdaaaaabaoadaabadfveadabaaaadaaaacbeadeaaaaibaacfabdeadadchabaahaghcbfghbaaabahabbdbebabfaacbabcbbccbgdbhbbddfaalcabfadeadbaiaabaaadbccaagafaeedcabaabdgcaafaaabgffbaaffbbbccaeaecdbhbaahadccaaddcdfcdagcgbbbbaegafhaaedcbabiacbbbabhdaaqadbbebbbgbdbbbbbcaabbagabfaacgadbaaachbbdaadbcedcbbabeabebkaefhcfefaabfdeeccgcbaabbaadablaaaadbebcbebeehafabgeggbbbkbcaghfjchdbadffbdahcbffcbabcbkgdcehafcbbdafbacdadahbablacabcdfeaaajcddcaaabeabcgbadbadqeabafcacbbdahcaabefgclcbabcaaaadabbebakbagbjgfacabadbcbbbacababbacaaccbajaalgchcbabababdbacbadaacbdadcedkaicacgcbbcmdaabdabdaabaaeccalgcacbbbababbbbacdfaabfcaaedabccachaaahbecaadcfgaceabbebafdhaacagahgbdcdagjdadabeaaaadbbbdebfcbabbdgchcdfbheacbcdabfadbaaacdcbbbhbegccbanacbaacwaccagcdaiebcaaacacabcdcaedefdadcfaadbbccfeahaaahdccccbafebhcbcaegbaaccaecgkbakaabbaeeccnabaafanaacafabadcccahfbdaageaababbhadffcccbkccjjaajcgaabhacdaiahcebebddabbbacgaaccbabacccabcafacaaeabebaccaeaagaadgbabhacgaejbaabbadecgafedaabaabgdebbdbcbaeblcaabnchegahgaccjceabcanbceagcbaabacagadbabbaagcdbebbccbaalacacbcaaaacajhccdddcabacaccajdbaaieladbabacddcachcjbbcbbgacaqdcbhcddbacdbcabacebbffcajlaaaccadfcfeaacfehecdibaadbgcaeaccbfbaacaaciaabbcbbbcisafaigaccbaacaddbhbdbbcbajaaabmgchcabacdcfabfgebaeebaaadacadaabaaaefabbaabcbcabaccacaieacahabaaccmkbcbbaedbajdabaddhdfaccdcaaaadadadacaabaaeacaccfbadbfbkcaedcaabacbaaabbeibdebaadadabaiccgbbbcaebcjfaecaafcdcabbbddegbaadiecabhakcfdmdabaacaaahbbaccbdhaeabaccbaaeaaaabcbbgaecdbcaaebacfcgeacaabbfbaebbdadibbccdgbcaebababdbbaababebgbcaibaaeababaecfaaaabcacheeaglabgafdhbdcgiafbaaafcbfcdeabdbabpadlhmagbaaaeakckbobeaadcgbdcdacbgabhbdelafabacckbfgcibecfacbcabagdbcbabaabeeiabcdjdbfdbaeabaeabcaaaacaccaachbccbedcbabebbiaeaacdbcfaddaabagadfbbcacckdabdbbhadahcaaagdeacaamaecedceaaahcbedeaccabdaadccacbdadeaccabbacdhabdaaccabadbaaebbaacaaabdlhabdeadheadbgaafgfaodacabbmbaaafeffcacdchaacaaafaabbaeebaadifdaghbccafjbfcdeddccacfaacaadaadabdaraabfgcefgdffhccacafjbaaccclaafmacfeadfcbcdfaaabakbacddaaahbaababbbaadacaicddeaabaacbabccfckcirabbbaaaabbleaeadcabbbebabcigabgcmfaaccahaabaaacfbhaaabakfadbideaecababaaabaamaheaacfdfdebcgbbacbabcciafncadagaaaeacdabcbdaghdcahdkedaacbdeaaoegakbghabaajafadbaajcabcagcgacgcdabofkaechabbabaecaabldeaadaacafedmbbdheaabfbbcecaadaebdbfdaeakagcbggaeaadbqaaafaabedbadcabdacgbccdaceaeiedaceeaabdabcbabeibbddaccaagiacabacaccbdcccdcbidcaaacbbcaddjaabebffddaacaabccabfhibffbacacdbbjfbhfaaaabfadafcbhddaaicdaacaaaadafbaafcbcjgbebceccdifbgbabcalffbbhedcdaadagagdbbdabagdafabcdadacabhbdabafehbdeaaabbbbgcidbaaaafchbdcacdabadebbbbafdabaafbahaakecdbcbbebhgaaaacaaaagacabjbaafedkdbaagedcbcbabidbddfacaiaapbacbdeagcabfbaaeaaaceacbgdedaeabbbidaaaeceaaakfbkdcbaadaieagadidfjbbcaccabjakbaecdiegdbdgbgdcgehcaccafaaabbecbfcbcacfEjcadhagdadjaibaebbaahacackaambcaafebaaacbcccadaghacbabbgfibbbcfacabfbafaaaedacejaefadaadcaccchnaeceamcecgbbdaabbeajmbaadgecghadahbacabhbedejabbakadbcbcbcaacgcaaadaabaaabeaaccaagabaacbdibadkalcfedeaikadadacbbhafbbefbjcgibfdkcabcdcacbbfjhgbgbbbaabaeccgeabebghaddgbcadcbaicaadbaaabdbcafcbbbaabfdabbadaafdgaecbdadacbeadcbekaadadaecbbfebaeccbbdadaaaadcbbaadehaffceaaldabbedaabeafaaacaaacabcaaaccgcaafflceeababjbaaaaabgbbaccbadfcfdabfacdcbbaaaeccaqefafebaabcaabdgabaccacdafhcaaaabdedfcaeabacdbadcaeacbaaedbacdhdabdabbahdcdaaffbabbbgbaddbafcbbfabdacbejlbabacededbbabbeckfaacfaboeacaaacagaddadabbbhceabdeccaecdcacdcaaiaaacicdbacabbaabdbagabbadecaeabbcafbfoaedaababcbaababbaaaubhceccebcaaaebfehahfbaaeaaebhfgbdceabaeccadcaadcadaabgdeeeagcjecdboaaacicabdabcbbaccibhaeadbebgafcbabblgbbidabcacaabicecaaabcabjiacaabqdbcafajcbdbhcacaebeafabdfedcbabacaifjeabaaeaaddaccdfadaddfbbcecbcaabacabbaibbkfebaeabkdaaaacacdkhacbkeadahbbcccabcddabbadfacakababbdcbbbacbaebaacbbbahcjglajcbaadbaabdbdgdaachagcabfcdcefbbbabcidabbbcbacbagabdfaafaaeaacidecaefdbccaaaabcbadfcnaadkpaacabeadaaahdffcccfaaacaddebddbbaaaalbaabbcbccaaadcadaggbcbaadaabaicgebacbbaddeebabbgcdaaabhhaeaccaeaacagoceehbhegbcfacfaaiccabbbaacedaccibbcbclccdfhbcbaacaedaahaalgedafaaaadcdchdapbbadfbaaaacbbubbedabgabchdaeadagadbggachbbabcjaeadafdgfabagcobabfdcaegbbacbcaccabbcbbablfbdfdabcccdbaaebabadbfdgacahdbdaaaacbaaafibeeddaaagcaacdccaaeeadbqaeaqaahbdabdcdaabbfabecfaabdcalaccdccccadafbaddedeifaachadagbcecgkbacaeabacaecaedcbccfcbbcdaaccaldcfdaieabaabaajbbgcfabeecgacadbbecaababbfahbbbbcbebadachceccabbabbagadebadbgabedahaadbajbcbaejaeiacaeaacaaebaaheaabbbeacbbkfabaaeaaheabaejcaeecaabdbejdedeblckaedbbaaaabccedeedabdbdbbdibbdiafafafaaceacjdacdagbbjabeebbaaibdaafebchaabbeeaaacbcbbcabddccbdddababebbaeldaabeafbcagbdcaagbbeebddecjaaafbccbebbbacaccadeabjcfifkbbabcbaaadacaacbbbacfdeegebbgfbdabbagadbcdfbfcbbcdcibahaceeacaacacakfabfaejecdbeacabbcbadaabidbaellaabbaebcdcaebcbbbcaaababbdacaabgdiibclcaaaaadabhadababfaaaaaafdeaaieicbbcgbcbfaabbdbgcdabcaaccdcedcddaeaccadarbgcmbbdbbdadeahdjbdcbecbacchbbcdambacbcaaddaaabaeaabaaaaecgaabhaaaedicaadacbabaaccdhddabaeaeadbaaeaacaaabhaciaaafaecaibdadaabcbbbgeachbcbacigdababmbeahafdaafffacbaabacabbaacaebbababdcaahejbcbaddccaaafebagbclacicaieaadcadcaahddfbahbajebaeaadhbacabgddaaabdecfcdlcgeebabaabbaaabbaejbbabafaeadaeilafaeafadccbeciaacaecaebhbhcafdabccebaheacaadebbabgadaaanagbaacfadbgabcbabcacbbfceahabbbaaacceacbaecaddagcbcbajgaaababdbadgeaabbaacbgcdcbafaaaabbbabecbaaaeaeacabiadjbgdaccaadhbcabeggabfeaafbafbfaabcddnfbcddaabaddacciaeaacbbcbdceabcaashbekbbsddaafbifabbbeabbcgbaaddlgdacafabfcmacacdaccbefcbbiaadcafbbbabckbccadbaacdcaageaqcgaccegaaefaccdidacbbaagdldbakfabeabbdcbbcadgfbaeddbbagafaacabdbcbbaaadajbaddbccacocccbabbbedcccghbaeibdeddeehhbagcbaccefcafcaaaaaaaagbbafbbjbbdeaaabbfbbaibbajabbachaaaaaasaadcbebaaccbciccgbbbabccadfbbecjcbdabbbjcabfadabccbddbccccbgabacafbbffhhbcebagelkaddggbaajddacacafbbaealcfacabafcaadbediaaagjabhadacabncabegabdaleaaeagpngecainfabfmajakdfadebhabaeaaaddecaccaabgebhcajbddbabahfbaadabbaacbcaacabbeabgbercaeecdabdbbdccibcgcbaaacdbcadbaaicagbbdcbcbbbcdeaiabebbbcgaagcfcccaabeeaabbdbaabacbcaaicfdhbbabadadbagekbaabfdcbhdbfcdcabbedfekeebabcaaaceacbdbdaebbababebagbafebegcaadbaccabibbacadafabccabajbbaacddebaicdiadfedaaffbbabbbaccadcaacaeacbaabaakhafbabaahaaehicdcaadabceecbcebbbcabagaaafcabcbacccdadaccbbabaecaeddacacdfbcbbabaecafbdbbaaiaicbhbedhbkbaeaeddfebdcgbbacbaaaedfaccfabbaaafaeaabdbabbbdadcbcdabhgacgdbefbaebbaibbacaadgagecccddbffffaacababaciicbeaaaebgbdafhabcbbabcadbbabaawjaeeabaaaaabchecdlabaacfbcabbfbabaacabjgaafpbdbhfhbchahabciahcbaalddgfaaaaafdfbahahbdcaabifabadaacccecamecabdcbbbabagbachbdbfecaaabbabeaaaabaaabeabeebbficaafcbcdbbceebaacccaccndgccdbdbbccaahegeajbaaacbgaicaanbabhaeabbcaaaefagdhbkgagffbbcdedacaaabcbbaaebadeaaccbcgabfheacabdibaacdacbaaaaaadedacbahddiebbacbchaddbaaadbbafabcgcbbbbaadckeacbeacaaababaeaafaakdcjehbaccbeadebbdadcbabbajabacbbeacgcbabbcdcbabdabacbaaeeeacacfdabaaachccdaabacabiqacbbdeadadchbfjbhdjglgcekcaaabcbcaacrbabfedaaacabagajacdfdbchefaacaaaaabdbcdbabbaacadeabgiaaecbfbcbfddfcaaaceaaebbbaedabaaebcabdbhgifbcaedddacaadbafcfcegbfcfaraaabdbrbbcccccaabakafgcdaedaaabcabadcabcomekcabbacafcadcaebbajeabcaaaaaaaalddbddfhdeafhgcebcadaafcbbadgcaheaaabbbbaaagahdobccbabcdabdbbachbjafefkadcaababbahbbhekadefcaebcbfdbbdhaeaaeabacacabaeaadedaadbhadbkfacadiblaadnbadaabbbbabbbibhafgajdbacfcapagaaebbdadddcadaecaafcbdbbdecgabdchedaacdaadbbbidcbababbgiibadabbccaahaaaaajachaaadcbddcbcbbaeacgbfdbbaaabhcbcjcalccaaddagfadbbbmcbadbcccababbbbebbaadcacbdbcbcqbaablbebddeaacaefbbacajfddadaacbjaaadgbaddbadacbgdaqadabdbgbcbfdeadahaaabfcfadabagfhcabaaeaddabadabdbaccbclgfdaaadccabaaaabdbaaalbbcbbabhgdedcabfbaedecgbekbcbgaacdbfgcbfcdhdaebababfaamacdgdbdabbhcecfaebaahaeabacddadaaaaaamaddbmbacaebafdcbaaafmbbdbdacdcdeeaahcedebbfednbidbdeajbacjgacdnaaabbcbaabdhacfcmdebcccaaccfdeaabaaacbaadcbbebaddcbcfbafcahbaeaadbaabbaacefaebceaffbbaaciagdbaafeimbaabaaacbaaiadcabdaoeababbcacbahcecggebgdbcbbfacfchacbbcjbbaaalaafaafwababccfacbadfmbfabccdbgaaebafcabaabbbcbachbbadgebaagcbdjcafacaabccegaagbaaadhbbbfbafbfabdebbfbbcacnbcaadadakabbafcagbcncacbjcbadacbbgdaafcacggccebbbfebhcbcdagaeaccaabagcaaafhdedeagbdjdcbabaiabaacabebblnaebaibaabacccabbececbbfbcddabbbcanhblaaidaeaaageccdiaaadabaaaabdbcaabfcaajdabfbbadaccbdbcaaccbccbehbeagabbafgcegcabacifbocegadeabcgbhbbdbbadabeiadbccacccbdcfaaajbjabjnefbefbaecabeabagfaababaccfddjabccgaefddhadddbjcabaaagbaacdachgeabcabeaafabaceadcacbabaafbeecbdbbaeedaaaceaaababadabcaibbaajcceccibblhgaabafadaedhbdcehcfcccaafccdbcgbaacfafdaghaeacbbabbaadabafaceefddbaaagagacaabbcddaahdaaaaedfakbdacacbdebadaadaicabcacabcaecfbabbkffcbcdmaheaeaiaghbafaabbbddegbaaabbaadbadagaacaicdaaaadbbaeachaaaaeifbaibbbbaamecaaadecdlckadefbbdaacedaaacdbcbbcehaabbaaadfefedbabifhaaacaaabcdaebraabdbafkagbcbcbbafbcifdaadceaiaagaaabcgddcebfbbaaebbbacegdadecgcfabcnabbbcbcbedbgbcdfcbgbdageabakaaaaehfacbbacbdaagaacaabhdeebcafcaacaajaahafdefcaedaaaccbbbbfbdcbcabbgbbdbbakabadabaaagghbabaiabababaajeaafabidfdebeabaafafdbacabbaeaafcfibaeeeaaacebcaeddebaccacbbgajfeaecaecahidcdfbdaccccgcahcbadejdkogadaedacdaaaiabagbdgbbccbbdebddaebbhbaacddbadddcdibcbeeaahaaeibaadaabkbaaceaccakaecbdlcbdbbbaaacgaboadnleciacaaaaabbbdgbaabaeabaaaeebdacacaaabbabcacbamaccachibecdmacacacfajabdacbcbaaahbcafeaadccadaaabeiddgcadbcakaaaeadbdhaeabacbaabkbaimbabaddhbabdbdaebciajfacbaabbbecadajbehdaadacdacbaefcfibaabfbeabdaaaaeabcabdakcababbchbbdabadaaefkcabaaacafabbcjabdabacbbjagaeaccadjabodaebkbeaadabacdfeaabfaebagcabcadqceccaagbcaececjbjeacbbbcbcecahbaabbcjgabgcacbaaiacedddbcadbgacbdbdbdbbccbbabccdabbcebdaaadcaadaabgaaaaaababacaaaaabdbabafaifaacaadbaaaakcccaldabcbbabdbckacbbbhbacaabdaacamaadaaeaabcaaabaadlcbbjbcbddcccbabbabfaafcddffbchbbcbacgccbacabljeaaaachigaaadafbcgacecbbhcaahaaecccacbabafebdceccaeaaagbaaacadbfcadbaaaajaedebghcahcibbggfhagcdaeaacaabaabdfabdkabdekcbbagbbjfedeffaaaaadaaaabafbbdacgbdefbfcdbgfjeedbaaaacdcbohfbgbcddcccafbebaaabacaacedcdgddedbaaaapbbacbedaabaabbabfebaaadbaagfbbcdaaccfaaddeaahcdlabcbeacacfcabeaabdhacbbigaaabbaidbababdebbadbgcdcbejajabdiebcbdbafabceaaadbbdbaacdbhaaagcaaaaceefabcbccaedadcbfbhdmhabgbaaefpafdecabbafcabjgacaabaacdcafgaaecacdabcbciabgdabbcdbfdbhbadbhdbbaacabbbbeadababdbabecahbeaaddecaaacbjaacedabafaccdabdhbbaaabbkaalnaccaaacfaadgadaabbebdaaddeabcgbbbgdbdkacgabnbcadejcddandedalgbbdiaaaeeeeggbagcacebjabbldaadcaafadadeabaaaaecgfajabaeabbgabagahhaacaklbagaabdfbcckecakebdddcfcedfbdacdcbcdaeaedgafcdbaalafeeicdabhfcbaabacaaabbbdbaceaabbhabfbeccaadeicbaaaedlcacbdbabfbdjbaaalcaggaeahbodfbakeafafdbcbeibdadbcgfabbbbbfacdcfdabbbcbecbchaacaccbdhibageaecaaecedabbkbaacaacddaknahcccbbaaaaaajcdchhahahceaackecabcsbbbfbdeaacfacaabamaaeaoiaiaibdedefccaaaadbfahaafefdacgbfdedadiaiacagbeafbcbbafecgacbhbjabbjababcabaacdbbbaacbccacabdabhafakcbbgaraaagodcddabbggfaaacdcaejcbadhdbaahbadababaadabadadbdbbeejacgaabacaacaagfacaabiaaaaadagaaacbdcabbcaabdbbebfcbgcadaccbaecadcbdadababbbaaebedcaaecaacbbcaeebaabbaaaacbbcegcddbeeabadidacddbaaebcfgcfecdefiaemcbchadccedcdibebabbhbbabcabcbfaabacadcebcacjgbbdeecdedabacgbcbddadaaacddcabaeafgcbhaaefagddabbaacbbcbjafabbjabcbhcaecgcbbabiadadcahgahbeaabeaaffaibbdfacbbeaamfcdehabkbaabekaccaiaaddcbbgbabgbaaadcbbfdbcaicaifakbaadbcaadceahffbgcbcbfaaabgcbegbcbcdbaggbbcbaabbbgcibebabceabadaacadhdabgbaeaabaaaabheaabdbagaabaddbbihaagdaceaaacbkeebdhbbfbceegdagbbeaabjcaafcbbmafmdeaabefabahaaaaabgaabaabacbbaacaabcaocabbbcgabdpbfcdageaabheabfdbdbcealbebaaeebboadbaideiaaaabagabebaabcacbecafbegaadafolcadckcaaejcbaaagcjbdacbiaadaeedabbhagbccfdcbebccecafbbfajbeadcbbadaeancacacbbjgaabavfhcabbabdababdfbaeaabfdbaahhgabaacgfcagacgacabbakbabbkcaadmgaabdbabxbacbbahadbabkbbgaaaaabaakeachdahbdcbbaaekqqcaaabaaeajdcdcdbbabfaaaadafbebcdahaabehaacbbacbebaadcbaanbcdadbcaaaadababbagifcdedahcjbaabbabbdbfcebaaeabafcgbjcadcaaaacabehbdbedcbeabhacabcagcdacndaccbbacfeaahfaabaaechaenbchabbdaaebebdaahbcagaacadbaaacbacaadabdcebhdfbbebeaaaadbaebbdbacabbacbcabbbadbaagacaceoeababbcabafhbkcbbbfbafaaabeabcedbdaycddbdabaacbgaafbcdbfccbcbcadbaabaeefdbechdhadcbabacacalagaacaabeaggadaagabfcabeadaacaeeaacgcabcaacbaacdaecddababbabaabcicacbjcaedjhadadaacceaaaaaadlbjacfebfdaaaabcadkcgcicabdaaiacceggaadabacelbbgaaaebbcecbabacfhgebmeaabcaeefaadajaabbaacbdadbabbhbcbbeachcabklgabafadaaancgcbfahcaacfcdeffaebabafhfcbhfbaagaaaebabaeabhbdbddcdbnaeaffcedaadbgdcbcfabbbabaeaaabdecdckcalablaaabcfbacafbhebcaagaabodeaacbbaaaacaaddcfahaccdbabaacmcaadaababcacdcahcahgaaafbacedaacbcdbeaajcaedabadgeabbcabbaecdfbabafabccalaadkceaebdabceehbaafbagbgcacdcabhaabddmbbaadbddbaaabaededbfbfabhalabaaccfhcaadaadbafgfcaaeacagbdccaadaacaafbbecbabaacbacabdcgbcgacjdaaaiabiacbdcbbajccaigadcccalbffaecabdaahbaabdbabfbbgdhbafgacbeedfaddagbdccxgbcababahacbacmbgaiadbbbabebbcagaabaeaaafcaabbaaidajbagabacdcggaaffaadadaeaabdbaaaabdebaedeadccgaaaccababbfdeabaadaafbjbabaadagefabpcaacccdfdcaagecaccbbaaceaedaadadbdaccdcafecaddadcianccmabfbedebifaeabbaebhbabbabbcabacejaaaefaghdcdgfaacahcbeabcqcccdcbicaiebbcbbaabbblfadacdahaacdacabaeaccbaacabfbceechddcbccofccabdchaafafecdaedqdadbbdbdaacgaeabhabacadbaacladiibcbbeeaeacacbaaadabaabekfcaafaaabefbaficagaebcbaaghdfcahhaabcabfgabbedaacbacacahbccbcdccacabfcafnabaaebbccacaeacacaeaafcdbchedbgdabdbbbccabbaddbacabhbbaffadccabahbbbbcagbaaaadaadlabbabfcbaaaaacbbamfdcdbgaaacaabbbbbacbadfabcdbgbbcabcgdabgbfbikgeikadadafajdbaccaamgbcbfcfabbdaabdfaabgbeccdgdadbaagdcaaagkdbfbddbaagdcaaebiacabacdbfafbebbajcbbdaccfaacddfdaaaaaaaeagiiiflaaabaabodagaaadchcgbmcceaarccaagaebacgbibelbabcbaaebahlkadccbaaabceikpebaaakebcbaeaeaaaacgagibdlcacaafcbhcccabkccccffdafgbabbbibaicddaabaabcabbhadcddbbebbfhaadacccbcgaeaeaacacabbahgfebbacbbbgabichcaembjbbbeabcfddeabfecbfaaaacacapbaddaafbcablacaabmaebaabaabbdbihhcaedacbekfabaabcebaabdcodgabbbcgbdcagacfeabbbdabbhabbadepdbbcaagfaaafcibadabfedfbfbhebaabcbaahaceclcmeicdfcodidciabccddaeedaadlacecececaamaaebcacmabbidbofaacaabafabcbcaqdeccbdacaabaagaaaeehchaababaaadbbfaacaasicbaagcaebcdddbhcbccaagaebaaaacaabdacedaabaeeccffbgalecaebabaqaanbbcaendbaaadbcfbardcddaaecedbaccabfaaaabaabeabjadbfcaebaacbaeaadefacfgccbdabccebcegabdfaaabbernabgdabaabdfaccacgakgcfefaabbabbfeaccaaaeajeaaaaaaagfjaabalbcbbcdccccaaebcgefacaeebhabbcacadbdccaccccdabaacfabdbdbdabbadbbbdafaladbcjabhfgbdbfbeeedcaaabaddccbbddabcdeacdaidaafecdbmbechbfbaacadafbabhaacdcacbiddaeaadaaaeadecaefaacabcdcfeacceabaafabbcdkbjfcaabddaafcbabdaafabfjabfaheebbhaabbbaaabgbbdfedbhaabbegmccbadaaabkddciagmccbcbacaccbabaaagbadgacahbbddbbeaddbacdbiaeacbcbcbabeadedbhcbcgabaeaabcebedcbedabjeabbdacecadbidicahedeaeegbcfaeaabdagbdadajeacabffbdchedbagadfbfaedadaaaaabkbladcdjebhbebebbabifbbcifiaeccaacabkaddacccacalafbabhmfdbckkdddabbagebadbapaddagaeaabccbagaabbbafdaghbbabaebcadbccgbbeaeabhabafababibghablgbaacgafckadbaccaaaabbabbabbiaccfacdafadijeiaaebaecaaaeaaaabcaabafbgdabicbabeagfaabccbbaiacrfeddaaaaabbagagdgbdbadccqbdadeadbabedaaddeqcbcabdccdbbaajbackbgibcafaaacebakbagdacedagaefagdhaacfjfdabbkccaffbbicababebafecdacdhaceiabaadhaehaaaadidcbbbbakagaaabdadaakcdlbccbhabbfccqceabjbmaigaababgecccebdcaaadabbdfaaababhcbdacbehbbcbbjacbbbbcaahaaddaccccbcdaaaccbhaadbacababcdhbcdadcabbcbaablgdaabbaadbaeabbibbhcabbaikdaaaahabebiiccdabeccdbcddbaaebieabcdbcbgfccaabcadadcaeeadbdjdbdbccbaacacacbcabcadcaffbfadcegbfbcbaadacccfaajceccbceojabaaaacdbanceabbgdccfaddbacaaccfchaaaaagbbcaaaacaaddedahceafbaaiacdaiebebdgacefaadggiidaaaabbaacjmaacaabbfebecadeaaafackceadaabfdababcabaaaabccbfcadbebcebnacagbfbhdcacdababbbfbeaccbehgcabcdefbcbabbalaabfbbdaabcaejcdbacbbbaegcebacccaaccbeacddegjbadaccfeaabdeccebaeabgceaccfdbaaabcgbbaacbdbabbabdiacbadbfcccceaacaddaddbabbcaafabcebihbabacgaaecgcffaadjdbaacaaabbbaacbbcabaabffaabfdaaebedebkabbaadifgcgbdetebffdebbacfbkbiedjcffdabebgdabcecbbaebgcddaaeacafdacccfabccccaccbddaeaaaecbefabfaabcaabaacgdaafbaeafbaiefbedcaacabbdaadcacadebaddieccacfcadcabbnhbecbjbabbdfhdcagfaefaddabaahaaahcacebafabbabgebbgacjaaabaadfcaeedalfecbcgaccebfabdbabclbehaaacacaacbdabchcdbbbbcfcbabacdbcfcadabdgffbababaaafaaaaaadcbagacaelebahbcbbbgcbbbdfbaeacbcdbdfedfabcckchcbaddeaagbachbdaabaaldbcmfcabadbabdfbgbaaebcaqgajcdabcaebcadbdcebhecahadgaebaaceffaaacdblbabdffaeagdafbadclbcadgcdagfcddcbaaacaabaceabcahccbcdhajchbidbccajbjdbicbcabbaacbbcacaaaabaaccaaabcbbaabbadaecadbacbdbhbaebeciabbfeacdbccfaaaadebjkafahcbcaaatcdabbbjahbdajrafafdfabaaddbadbkbecbhbdbbacbbabbaaaebadbdabcedibeadcabaacdccbdcafeceahgaebbbadfdabccgcaahabvcabfdabafabbedfacdgbabdfaakhebccbgeakeeecbbaaaabfhabgdadbdadbdaaajababbebabcjdbbcbaedbbgbgaacaaecfabcabaaacafdacwaeaafacbaaacabbaaaaeabbbjbbeebbbagabhbaahdbgdbibhbaabfdcalcaheacadaabbcahebbaadacabdaeacaaaaejaaaacalegcbdaeocahkaabbaadabaccbddabdcafchddmabbcadabcecagcaaadccgaccabbeebdegemaaabbgbejagancacfbbaacabdcccaecacabadcbcbaaceagbcebehceabaabahcbwecbeeaeafbhbdcceebaaadadacaddaaecbafdaabdfaaccdchhaidbgeaaabbaabebhbaababbcacaajaaababcabcacacbdbdacabgbaafafcbbacccbcfbcdbaaaccaacfebagbcclcabbabaaabaeddabaacbajmabbkaaageahbbbaebbacabafdacdbacecccbaaabdbadabajhcfgaacfjacggabcbbcfcdcchabccidaalhgmcafbmabeababaiacdebbbaaacaeabccgcbdhccefhfeebaecgbbdcabcaeanagafgbcdagacbbbbaabaabaadabaebacbbabaaaabeaceadaaaddcbdadbabfcfbacbabbbiadeaccaaiabiaddabdbbgiaabaajacadfnfafbeacbadacebcbbcbacbabjcaebgbaaaacddahbbacajajddaaaafadabfgbaagabaabbabbacaabgdakblacaabbbbbccdadbbdbcdbbbfaeacadajhbbbfddchceaamcbaafckdacbhaaddccedbbacacbdecafaecbaacaachebabdihbcgaccabaeadaabaabbecaabaihaaabbajhbcgnebjaeebaaacdbdaaaaeaeecaabbdabbaacjegcfiabagaaccebagccgdceaedcaaccadbbfeaabbgolacjaaababbachfdcaaaedaainddbaafcbdbahccbaabfgdbjdachacaaeacdadjagdbabcdbaadebhheabaacigaidfbcbbdfbaabaaagahlckjaaaabaadeaaabaededdbfdfccfcdacgabhbedaaasbibcbcacbdfiaadcgbeaadcccbaaccaeacfjabcbgfabcadhceacbikdeaeffaeababdfacbjaaabbabbabjhjcaebcccdbbbcadibbhaabbbjaabadacadaccdaaagababgabhcacnaaaeidefegeacdbcddaabecblabgcdbbaiacfabaaaabbeacaabaebfdabaafaahabaficfbbhabeabbabcacgababbbedgajdcdceaaaaacdbaebabjebfcabcbdabcbebaaaebababalabaabagebcggcbbafaecbagcaceabaaaababdmaacadcbbaaafadbbcaedbcaadedabadefhcaaeeagagdcaaagaafcbcbbbhabgcadbbchcaagbbddedbbdjbgblbeaceccacbjnbbdbaeaeaaaabbbgbdabbdbdabgjffaabeaibbhacabdcaccffeeiabchagaddcacaabbbaacagbdacbbdajcfcabcaqcafdcgcaacfbcfbibbdbagdcbmcdgdeahbacacfadbaacablbefbdbcandccbdaabccbgbcaiabbacbbaeeabbadabcbbgacdaeibdbaaebiaibdecaaaafefcaaekaabebajfihcaibcecadffeaebiebbbdlaaccaacbeeedadedapblabggbfedachbcadbfbcecaafgbcdajafeedhcfbejebadiablabccbhaacajfbaiaffbcadabbqbaabgbebbbbbabaaacacaekfgbabbafcibcbfkbcffebgfcbbbaaaebaacbbcaachagbdaedmebaclbaaaafjebaogbafcabababaadacbdbeacafbecaabbecaeaacjcableebbaaadaaaabefdabcdageeaadacbbeadcabdibfcebaeeaagdccfbaaccadabekcbbccfaehecacahbgbaedbbkcddaifcccfefcaccdfcdaacbbbecbdabdfexaaaeacbabadcabcjaaacabaadbaaacaaefbcceaeaefaibgbdagaceabgdngaabaadabbdbbceehcbbcedbabbhabdbddecaocebcdadabbabcgcbhagababcchjdcdacabaagcaheacbabgfcbfcecbiedcgbaacadaadcaajafbacaiaddbbaajcbfabbbaibcababadadfeibccdgabcbaagidaacbbdacgbbbbbddhadfbbdbbalaacbbbcfcccgddabcbbgaceakcbbacabbaadaaaafgbaabeaagaaabebdbdbbbdiecbaaeekibecafmdabaebadhcaaeeabaacgabaeebbcbcahbaiaaabbgageilbababdebcicgcaabaaabgcdabbabbcjaaadaffdbcbdcbgbaaabdafchbdaccaacaaabaabccaaaebcgaaacbagdaabbcchdebbenbabcajaedcbcbabaaeaaaabbeadaeefabcfbfddgdgkbacaabdbchbfbabbadkbbagacbcaafabbacdecfhbahbjbadbahabaodahagaaaaacbaaebheepfedafbadaaageafbadbcacdbfgaddcgaoeebaccdlbbeaabaehbbbbacehadaabedacaaabbdcafcbcddcaacbbhcaeecaebfdbaahaaabbacaeaoacafbabaaedcadbccbcbadbdaebbafeabcfcabgaagabcbbaaecfckbbbaegaadaaaadbcabaaafdaagbcabbadfbdddbabfdegaaacbgdacfaaadaaafffafaageadabcfdaaafjbdjaabfacacbebabejadbbcbbegakbedddbggbeaghbbaagcddaeaaadfabeaahbaaeebdabbadacbhcbaacacicdccaebifdhbefcgbfeahcdaabbgbaaaaabfbjdacicbbebacaabaffbfaeaadfabebccbacecbacfddabcaacbjahbbabecadcaabbaeaeaabdaffaaiaaaabanaaccadabdecaaaiaccbaeacabbkcfcbbabdddadchdaabccaafabbacbaacdcabadgadbaeaaddeacfbaaaaealdgccbcfbaaachebbdchdaebdabcafbcdmabfgeacbbaecaabbadfebchmgddciaaefbendaaabbdebecdabaaackbbkigicacdjbbabacbaccddbakbdadbadcaecficaafadfabfabiebbcdcccaabdjecagkbfaefaceebaacaaaaacdhaaadabaababcageaaagbebefbbaaebfacbbpcabaaibbagfacddbffbdaaaabaacdacfigeebebcbeddbaggdbabbcccabbalbaaabafbiafccaacafcaocbgeabccbibcdhaccccgbbcabaaccabaabdcfadcbadaidfaebcdecbcdbecabaadfcfbaacgabfccbcbacafapbcbabbnadbhckbbacbbbecaaacbaaahccbaabeclcbacbaacodbabcfaaafaahgaacfedbiffbedbbabaaabcdbkadbdbgbhbbafgdkafcgeccaaceeedabbcbabaghcadaabaadbeeabcaacadcaabebaaabeaaajafcbdefebdfeccacdbdfbceadcbacaaldagaamabcckbaacaagdbblabaegcgciabbfadaebcaaababaaababcbababeaadbacacbcabbaacabcacbaaacdbdcabakbbbehaebfccboahdcaccaedbakdbagbbfbaadebxdabaadladacaddaakfbbaagcbebhaecbbaaabiadcaadcabkabbaaebaefdaadfacafcadcdcadgaddifbaaabacaadagfbdbeadgaaeedhdihadaacdacdabgbagadeebahdddakbaacdeadfidaaecdloiaaicdbecbefdaacaacbdbaabdbbiijabdajbhelbbgfaecceadabbadabedaaabbdgagcfabdbbaieaadhafchbeladbcdfeddaadccaaeembhhabaaabcabaffaeacamigabfcbgcbbefaadbbhpcagbabcacaabicbacbhaeaadkjmdabfedbbaeaaacbcbbccbhbcigfddabcaabadgacacbacbaacbbbcadafcbeaaafdcfaddccgbcbabicabbabedadeaaddgdbadchcdkbhicachegeecbfbagbbdakdbcbiacccalaaiahcebebebbabacgeaifhaoabbbfdjbaceaicbbajdbfcbbbbccbaaakccaabeacgarbcgadbebfcdgbghnbcceabcecbdbacababdehbdbagfbaadadcbaeagaaedcaccgdgbdadebbbfaabefbbeebcdcacadabeacegdakbhaaabegaecbbacdeffeedaccbaedbdaacabaaabjcdahafbaagaaaabcbaiaiabafaaaadgdedbgafgcfdbfacffeaabeaajbcckabgbadbagabbbegebcbcabahdebhcabfbacccccjcaeeaabaaibbceaeeafbdaecbdcacbebibcbjejbbadahbabmddbdbfebacgeacfaaabaaaadafcgadabbaaaabebedbabebbaccbgebcbhabjlfabfaaaaddcgqcabcaebbcdafaaaanbbfcbpbaebceacahaaabcccagcbhdbabacbcbfbcbcadbeaebbddbacdeebweaiaaaejcabbbdachaabhcadedchabccaaadacbjfdcedbaeadaeafbcscagaaacecaabecbbcabnebabchceaaahceacbbafahgeadabhaaccdaabdgaaabecbaedbacbbabibhdadaabcbbaaebacadbbbgbbebbdjaieabcbbcacbcmacabaepbccacdaahgaccabrbfeedcneadbiabacakahgdaebacagaedbidalbcahcfgccbaaebkbgaeaacbahaabacdnbedbaccccebafeacgeabaafbabgbaagadccdabbedacebbaaadabcdbceccdaagdbjccbcabaeeaaaaaacabcfaaaagbgdbaadacdfcadahebbbccfgacbeecceccdgcfbaaeaceaafaajbhbaaaeagdegbcaacckbabfhaagabbabbbffaamebbibhaaibbbgaceadbbbbhbddffaacfabjdbfbbdcbeecdaatgaccaaabbhfffcdbbabkdbdelegaacadacbacedgfdabdbchqbacihehgccbagcdciaggffbaabafcaaefdaehabcbadgceabbadfcbacaacdsdcjbafbbcbcaaeaafbdbbfbbcaddbaecbabfbgbcicbabaceedbbhceaadadaaelbedbbadkdcandbbebbiecbaadaccadbbecacaefcabdabeabebacdbfdeaaafagdcedcbdaaggbcabaabeaebccadbeecadaddcafcaedaaacaaaaabbbascbdieabbcakdlbceaerdcaccaaaeafbbaeabbbeaadbbbfecaadbfcbbfaaeamabfacbifcaabbfaaaafhbacdbbdbcmbadnahadaadaabjdbbabbdhaabdacedbacdeaababbdmbbbdcbbdaddadedgcbgeaaacdoabaadeccabbfeeecedababadgicabbbbbbhbdecbdfbgaaafacdfaaacpbddcacagcdaecbbbdccabebbbfdbebbaaaaaaccdaaaobceabacbdbedckcaecmlgebehccaaakbcaacacchaabbbkadbbhaeabjcabceabbdbaaaafgbtaeabafjddcicbfgcfcbcbbcbaaecihaadhcaaaadgbbiaabeafebdaebcbadcaaafbddbdaafbaaaabcabbdcbaacaabbdacdmbhbbdeqaechbaaadbdabbdjaccaebalcaabdkaaaadbacfcddaafacahabcccaabdaacedafcbebaaaadbaaadiaagafabmaabadbafaabacbbfcbcbbaaacaagaaahbdaaccacbcagadreabbaagdaabmaadcaahcaccebaabbbbdeibiabfefcaaccddbfabbabaaaeeaafcdaaacddbcbacaaadaieabedbddcaacbaaadvafbbeafcbhadahaecedajacfaahccbdjcabdegehabbacbbfaafabbcbfbebadaecbcgaaaecccjalfccabbdbcgabmdbdblaaabcaaakadabbacaacbbccbbiagbakgebheacbcdcbecelphfhhaaeaeaciaabacbabdbbcaatbdibcegafacadabaeagebbecabfcabaacbafhcaaaddaddaaahddbahegcncbbefdeadhcdbhbciabaaehcbbkbacaacceebdbbbddbbhdebcjbedbdabeacibaidbdceabeakblbaacaaaeddacaabeabcfnccahcatbbeaacibeafbbabbacdabafbeaaadaabbeaiaafdbfbefaabeaaadhabeaeabcebageecagbbdbaddhahahnbefbabagbgcababaaaaelbgbblacaaffbabafdbadcbbbcdbacibebbacfjjgaaeaabaabebicbebdbccahbadacaaacabffkbbacaauaaabcfbcaabcaibcbbjcaabaccddbbbaabjchcfabaffbfebebafaicadfadbbfccaabacafddbcbcchbjccaoebababbeeecbeaccciicccedaacacedadaddckbdcbbbaeaahgadeadhadcaaaacafbddfcaabcafachcddaecbabgcdamacbbdebfabcdahgaadblddgabeamdacabaaancabgfaaahbbaceebaddfebbcdbcgabaaeaahaacgaabcpcgbhaaeacaaebekbbceeejbaababkbcaibbdbbaaaaacaaacjbaaaalaebceabdacccbgercbicfbedbgdadccdceaebeeccdccacfgedacaelbhcabbdabbabcadfebadaaeafbbaaabjcciaiccbbcedakdaaccbabbabbngabcccblbhgdbeaabbaecafbcdbffbacfchbaecgffabcabcbafaaaaaeabebbabbaaababbabhacbaedacaagcedcaaaeaaiababadabdcadecaachagbcfaagbbehgfkdcaabcchegaabafabfcdacgbadaabcdabkcdbdbbagecacababbgehhaadcbaagbdabcbbiadaaaaibedacbbajacbccaeedjaahkaebceaeaadabcafdfcdaafcgcdiadbdabagbaadaagdabjdabcdacbachjjfddacadefaaabfjabegcdfdadacaabcgiacbiacbacddabcicbafadfabcgbeahdhaadbefdbbbbaddabhjdfbcbjajafaidcbbabaabaaebibbabfbcceadacbaabaebaccbeaaemabbebabaecbebaaaclcaaaacaadadadkaebgaeaadbbaahfbbcbacbhbfbbaabkaaccegbbaafaeadhfhacbcfabbcbebahebabacabeceaddbdbmbabbaeaeejbabaajbbdaacbadadbcfadcbeaaaahaaabagbmbaodaaccdbdifccbaaaebbeaabebffbbcadceaaagacjeacaabdbhaeebbebabaccabddbdcabafgbdegccfqcjbabceiieaccaabaaaacbbccdeacbaabeiceadbcbbacbafdacdcbaddddabcdjdaebbaaeicbfaaeebakciacecgebbcacgafcbebcfeaddabacbjcceebcibedgmlacaeeddhbaeaoaebabacfacadfbcgjacgadaafcgaddabaafaacbcaccaeecaccbaaaaddbfbhgebbaaikaaamfaacaaabbhclbcgeaabbkjaddbadcbbbegajjacabaeagfdcdcebaacbacacebcccbcbghhaibbaaccaadahbedacbbafbabbcbajcbeieeahaicicbaakcaaaacahafbhlabcceabbabejeadabdcaabbcfiaacbaaaaccadajeggabdbbcbagaadbcacbbadjecaacfababdcbbciaaabddfafbachdbcbhcaaeaacedaccaebcfabafcahcaabadaaafecbabbcddcabahcahdaccbcccaeidaagdbbfcaacbbeebebabhddccfaaceaaabbdabeedeadabdaaaabbcbdacbdbadecacdaabbeabdjneaechbcacbcaeibhoaceadhdfdhddaafecktaceagbbkaaddbaagaaadlcbaemabbbhbjbcaajabfbabbbmbadcbacfbabaabfabdbdfaajaaiecaababamcaccdjabaaaiaabdaedcafbaabcleeeabbraadabadaaefgaaabdabhafadfegbacaahcabjbbaaadbbadfbbccabrcbaabbcbfacdabddgabfcagadaaaedchahaiefbifcacccbcaodddaeadabdcfaagabaaaecdcdhcdcabbbcbcdcfbbdddcblaacabbhcdbabacdodcbjbcaaadceibbbmfbdacaacjcbafbigededdabidfgibcbabcaehahceaafbbbccaaedadgbebablcajdddabadebcibaacdgbcadbceadaagcjbqbaadiaeaabracafaabacecababaacbafdcbbacbffaicgabdldbadeabadehacdbbacabbaefbgdaahccbahechbbbeacbcbbefiaacabeababafacaibrdbdceecbbbacadhccgheadbbbicabbbdcgaaabfacdaaaacagacabcadebagdambcafcbhddcjdcgaafgacfcaacfdacacbbhbaafaacabbbbdbbfbbbhbaaacdafabdbcaipbdcchcdbafdeceacencbhebbaafbddcadhdgbrcibbibbabcacabeaababceiaabgqbafgcaabdgcdabhhiaccgfiadfeafadefabhffabbecfbceecbabdcaccacbabbdhcbbanbdaaaeabdajbadaadehbbbbbddcaabaebabdeacdaageaaadahakccaeaacccbcbaabbhahcaaafcabgbdagbebaciaeaabbafdcbbdabbbdcdajbbcakejbceadcddebbafdcaccbdaaabecahaaaajebabcbacbcaabejbeacadhaaegeeaaaeffbcacbaaediaadaaagdecfcdadbbcebbaabbdaehacaaabaaaaeaegcbacdbcdabbeadbacbabeabaadaajbcbjadbbbbeaedacbeacddcbaabdfhaaebafackfaabdaddabeahghadfadcbcaeaddbbadbjaabfebdeaeebbbbaacabbaaeaiamcdcbbdaaacaebdcabgbcgaefbafaebjaaacbekacbfaackcadccclcabedbcbbabcaaaafaaabagagbadaabbcebbcaeeiabahebaahciccecaaaaabbeebbqbbbeebacoaaabfaababaabaabceaaacccaanhbaaacdfbebcadgaahebcebccgmacedbdbdbaahaceadbeaaaadcdafffecbaeabffdaaabccccbbdbedddfaecfcbaacaehaaecdalebhcbdbcabfnaadabadcbabcacbjaaaaaiajjafbaafeaaebaigeacccafbfaaabcgbadalaiageaddaebaadcaacmabaacncbdafcfdkacafdebbagaicdabdbgabebhesacadbbageffabbadacaccaehaaddbaiaabcabebcadadghcabbddbemcdcacbcbeaglaaadjcbabrfacaacbabefbfadgcaaccaaaeaceaaaeddbaaccdbcaahalbbebsfbfcbacgcbbcdbacabedbbbafbcdgcaddddgbaacccdabubccaaccaabbebbkddddaaabgieabbfaicamacjffdcdacaadabchbcccafiaccabaacbaodbbdbacbbbdadicceeagdbbbaafjabhfaaabbbacdeabdagbaeeeaacabecaabbagcagcaaccaaabbaaacdcagaaireaabbbccdaenbbaaahbaacacbabcabbcbaacecbegaddehecabaccbcacacddieagaeadaabbbcmaabfbbadgbbajdfegcabbbacevgaopecabbcacaeaabbdcgabcadbaaafafdeaaaabdbccijdcagaagadabeacabceaebbaaadaafdbbbbgebddeaddaubdbbbccabebaacihagecefclcaaabbcabdaadcbdcbfcabacbbgfeabdaaaaaadabdidbdfcbbaahdaaebeaadcaadchaaceefabdaaccfabccnhaaebahaabhbaaaddfcacadbciacckfbgdgbbcehadcaafcababbaaebaaabdafcadbbabbaaabcaafbfcgfddbdycbfabecebabbechcefedfbaddiecaaaechdbedbbbabajbmdhfdabbbddjcaadfaabfbcceaadccbabccaabebhcakefhdgiabaardbcacbdbagdebaggaacabbcbcaaadbccbbhbdbfcaaabccadcpaadcbbffidcaabaeefaaaaaaabaediicbeaigacaddabccfjjaaagaacbbbcaabagjabfbeaafhddacbbhbaahaggdaaaadbbfaafbfdbadbabddvaafchkaafddabbaacadaaaeacealcbhcbbagdgcdabgafaedakcadbbafafbaaacdaggaachaabchefcfabbcbdcbadbbdcdbfcbeebbbcaaahbamdgadahaabdbceaaiefhebbadacgcbcsbclcciafgbgehdadcckadcefadccbekccbcbbiobbccdcbafcaccbjcaabafihbfabcadchegadeaeilbaaagadcbgbecieccaieaccaaeadcaeaoabbdcaaaifchbfdkhdbfacdacgbdccbbbddigdcjcabbdlbcbbabceacechcgaeacagbacbaaacacaeagaecbbbfdadbcabdaecbbacaceabacegeebibfdaabaoabfdhghdeehbbdfagdaidhaadccebabadbedaidfeacbbbfdbabcajccacdaacadaadgbabgabbabbahffigiabaqaacfmaeeebaacgcgcebccadcabaeafaeaadccdccabcajbbibaaadadpdabebgeedaabdaaibgaagbaedbcdcaddicjjbaafbcbaacaagaibbabfbacabhabaddlibabadhcaablfieohcecbbddcbdbcfdqfcdacaafkcabcabccacagdbddbbcacdacagcadgbaeecaaiacabcdebbfabaabagagiacbaadabagaaagdaccdbbbabddcdbcfbjbdbeabaaaeeeeddccdlbbaaaeddifadbcakacbflbiaabcddaaebababdbacjgddbfbabcadaajcaaaacfcaabagcbaaefboaeaadaafecbmdaafeeaefbaaabfcaajbcbabbbfebbaacbadaabadeahidgbbabgaaccbdfchbceaaefabcbgabiciaafdcbddbebibadaebecaaafijabacbalbeagdacbdbjcbddafaeabdcccdaaedcidgdbekdfeabccgbfcfahbpbbabbabcfdhfbeaabbaabbbddadaeaeacaejbdbebcaabaadeapgbabaackabaiabdafaadbbbbaadbdadbdbhahbcabfabeaaakeagccacadacbaebaeaaahaclcbajdbagccgaadacaaaefeeadbabgebadccbliecacbcbbcbbbabbaacacabdeacdddaagbibakabbbcabcacfabfbhaghfaiaagcccaaabacbbaadgjaealbebebbbbbeakgadaaaadbaaadacdaafgbjabbcaddhaggcbcfabaaabbaabbdbhcbeecbaaaeabcfafkccaddccaejafcofcacmaffnedddaddbbeabaadacaaeaabdbbacdbeccdbcbjafaadcgabbeabbiaabacbedadfabaahacahdcaeaaafccefcbhgbbcebbabbidbcedgbgacibdafaadbebhacacdlcbbebeabbbbaacbfbacaabdebdaaabffsadbcaabebaaabcidkdagbaeaabaacbadefaaabbaheecbbljaadacaaadfbafcgcidcecdabeaaccdabadaddchbfdabaaababadcaddghcfaccacdbaafaddcaaaabagadbbbaggdbaaebhcabibhbbbcdaeaaabcaaaahkafeicdedgchcfbblbcicaadedbcdbcbjaeaaabbmcbddbababbbecccgbbjcdfjedfhjahghabacbgdcbadaeggaabgedcaigahcaadbaaajadaeaabdbadbajbcaogbaabdqbaaccbcaaefabgedagfbcddacdagbfaaccbaccbanbbfajdcceabaadabbaaadbbadagbabacdcaaabcbbcaabbffaabhcbabcababdbcabafdjbbaacaebbciccababaaadaccfdfrcbdaabbdbaeabccaencbcjccabaddaabcdaaddeacckfabcacccfbbeafcaaaablyaakeebbcidfacdcaagbafabbgbbcaaaacafcecgbjbhhbeabigacdccccbbbccbdaaahaabbeaacefdabgjceebaabtbacameadhcbaaifgaafcacbjakcbacgbadacccbbagjsaaeaeafceaaaabbfbdafcbahhcfaeadabecaaafkmadbgacbabccbdcgdfagcdfaadabbdegaaahbdaaecbgeffccbbaacaabaabbhaabeagfcebcbcbfbjabkbdeaaaaajadaaabebbaaabaaefcfdccedacdddcchabibbfaadafcbadlahaalbhaaambfffiaecaaedcafagbaaabccgbcafaacbacgdbamaadacfimaalajqabbgaaadaaabdaaefabicbfbeaccbdcaccdacidbaaabdeaaacgcadcfcddcccbcadicafcccacabaahbcaaabacbccbabcbhbdaaecaccbbebecaeeahaecgbaffbfcbaeabbabcdcdbabcaahidbbfadaacbajaccicefbbabbaeaaabgebedaabaaglbeacbkfjbdbaacbaicgdcbcecccaaagdafabfaaabafaaabbcajibcocdbfeeacadacedaabaacdbgbbabfadealdahbechafeabaccbaadcmbclfefcgcaagabcaafegadjcaacbbeadbbcehbaecjaebhababababaaaacbdfcbbbaehbaeabibdeaagbdbbbcedbebcdcdecdcbdeaaaaaicbbdadabcaeadeaclbbbcacafjbaccaedeabihcachheabccalefaabfadcacbadacdcbiccaecakkeafdhabeuadgaehcaaaafceaabbdcecagdcabboabgdbbdbbbdiacabciaccbieeaaabickafdhcabcacfbadbbbgadaaabeedacadbcggaedbbccaccaaaacdehaccakebbacagfbfcaaafebbaeaaabadababagaafcgimbbjecacbcgccefcaeacgaibdababcadfdcfagecbaddbjfdbbcdnhbdffaakaeadcaccaahkaabcbaacbfnddbdddadbdcaaacbkabccjagacababaaicfdbdccddbbdhbeaaaccabfcaacbbabcaifafddbbbjdbhabbbabdijabcbffbbbcabifabbabccabatabgeefaacaakcbeacbedabbaahcbdbacfbcbbeciaiaicebfbdabeabcebbdacbccbccdaaabgeaadbafhhccdbacbbbacacaaageaaicdaacadabbcadiedehabejfbcaabdacbabchdljekacgcadbfacbaealddaabifbbajaedbeaachabaabcaaadcaaahcaebgdbcbbbcmbnbddhadabeabbdagaanfbgegdfecahacgebbbbkcdebabaabcebcabbeicbbcdbeaaaabcbadfaaabeacbabbdoehababbbcaaaibbaababgagbbabcfcchbbebfbbbbeameaabacbadbafdcabbabcabdickafaaaagahdbdcdbnaaebdcdaeccadbbaaabaffaaabfhbdffelbadaaacjadahleeaaaacebbaihbaabaiabfedndadbaabdbjiabbdbbaacbaafacaoaaaagdbdoebdaaadbfabdcfieababbabgccebaebbaaabadecbmaggcdhabhaaaagadeafaacagibjeacbbbcbeaaaiadibfaebfbccbabdbbagdbkbblaalbcablbafbccdhabdadeagbaegghadcaaaibaadeadabebcbdccfcbecbabaabbceaaaemdjbabfjbefagcgdadcaeafddabbdaccccbabaldabaadecbaecbdcedabcadfdbaadbfadaijaaifeaabdgaaaaabnibafababbaahacablbbaffbdbaibgdlfeagedacabbbcaaadaabaahajbbedgeacabfcbcebabgdbabgdaaadiddacfccaabeabgjcaacbeggalcdbdqocgeaabebedaacaaddccdaebaajbkdfcgajdiabhabdachbhflfcacdafeaaakcckaeaeadeabeaabeaaafbdacaaaeacbabchbcbfadfhcbabcbcbbcbmddbddboeedambkccaebblahcabddajbacanhfbcbdabaaacbacdkdcaabaababeaabcafdabkhcdgfciabcbbjaafabccadbakeaahbabdcfaiadcaaabgeeaabbbeaaabaaacbfbccdecccbabkdabcbacdedabdbacdbcbibgebjaeccdbcbadaedaadbaacabkdjacaadfbcdeabcbbcdahamadehafaebafdbajccbaeclggaaabaeeabbabcaccdbdaebbddebabcabaaddabddadakabvddiaabbbbabagdbabedbdaddcafcdadbbafbabadbacbcedbahabgaabbabfbbeabgabhacbacbccfaacaahcbanbbjababdfacbgabdbafabafcbbdbgadabaacakabaaadacleadbcfeecbcacaaabbdaaadbccefabccbgdhbhdbbabdadeiaaacabdgeahaadbkaaeeaaebdccfbaeccbddldiaeadccbbbaeecbecadadbajabaddcecacaoaaaaefbfdecaabaadbbbbbegeacaadcakcgiaaabddaebdddabfbcaalbcaagdjbbfaadeacfcagbbbaccabfcaafgbadcbbncbcbaddbaddeagfcbbaacedaccbaacaiabjaecdabdbkaahcdbcfddfebaddaaaebacafhceecccbjaafaaaaacdcbedacaahaebhbccbbdcahddbaeakacaabdbbcefdbgfacabcbfabaciaaafrbbmaaaagbanlddffcabakckadaaadbcafbbbaaclbabadadadabdahcaaaaaaeeaaacfagbcccahbceachadbabgbbbahijaaaebbbbecbbgalaabffacbmaaeecaajdbapibaabjcfaabbaeadbamdacbabaababfddffaaacbacaccdcbbabhcabbfbbafacdbcdcaaacbbabedcbbcdbbaacabdcadafeadaabbbafgfacbebaabaafbbegbbcfjabadcjheaeghadcbaaeaaacgicddadefdacacababaebdbagaddebdcbfgfedabbgbabbakhrcjbdcaceaaedabecbgbdbacbcabcaaeaaabebgbeahbbbbcadddbbbbcbaaadaadcbgcaaaggbcajbgfedbabbaeaebaeclafddcaccgabaaeehceaedbagacbbbbbcccbcbbccdhmbaabegibacddbeaccbcgdkabefaabbdukgadcbedaccagfbdbafeacdcadbadebjboabcbaeacgaacahaaeedcbfacegbaeaaabacbdeacaabaabanabbfceiadabpabqhajbcbabbchbaadcacdbcabbadbadadaaaabcddgbkfbejacbcaadcbbccaafcacdcagdaedaabfcaaaaafdccjaaabebabcfabgifjabfagdadcbaacfcacadbbbefababecacobbachdacaabbdbfhecabddcabbccbfiibobcccoeagbabcedbbijfbabaceaadcgfaabcbbdbdhaaadaedbcbdabcahaaagbfdbkbibdjchaaaagabadbbadehagbeaeafacaabaaadbfaaceeaafandccbblceabaaaobfceahdhbbbdbbabaacbbcgbafaahaebabgddaeaabdbjcfebaabccaacdiddaaceegaagdkcabcgabdacbafeaabbcaccjcccaaagbfdibecabcbbbhecbbaaabadacbabaccbiafeahdafdbdaadfcabbcdeiacfadbrjdabaabbaaibbaaaaacbdbcaaabaaeegcacdcaaebbbbfaceecdbagbmabacdambiadadbaabbdcceaacemcfbfaheckbcbcbccbcfdbedddaccabaabagacbcaaadaqabacbaccandgadcemabakgfdacidedagadfeaeacabgaadafdacbicecbcabeadbbadacaababaacadeaabdbacdababebabihacebcicbabcedkbaibddgebaaahjgeagcdacdecbajdecdeaafaaacacacdadccbggbbabfadcefebabbmagaicgbdaabbaaccabeaacefabahdbeaceabbbadabamkjcbdcababebgaaacababfackfhecgccceiaabbaahaafadbaaadkakafbacbcbkefbbbaaegeaebagbchbaaefbedaaababdameacdfbabaaaabbmcbeccaaeaibbcdahdbagaaaabhabeadfaaaaagibiaabdbcfkabehdedcbacaeagaabeaheceebdbedbaaeaddbcgjbaaadbdcfalbdgbdfaciaaibkbdaaakhabaebcfaejbbhcfdcddeccabaibcbacdbaccafbaacaaaebbeaacbaaaababbbbgabbabfdecaaaheabecccdbaaabebbbgcbafaarcabaabebbgablabnbcacdbbeodkbbjaddcbaaaeaadcabaagebaapcbfaaabecccbaaaakeabacbaccdbegakeaiabaakdaafejbbafdbabcaaaaaaabaejaabhaeecfbbabcabbdbfiagbeccbchfdaeahhbmaeacbabeccdfialadbadblcababadhcdcaaaeedcbdabbccbcbaaacaaabahebccdadbhibacgedcbecgagagednenbjbagacbcaeaeahaaacbhibgaagcagcaabaefaadbbcadbbddfaeadlabcaaccmbaafbabcdabggaeaccdebbadcbaddbcabgeafaaeaabdcffdcedacabbbbceadblbaaacehbcagecebaeaadbabaecdbaaaaaacddbcbaadaababacceclddceecbibeacebmaabcibbgaahfimccfaaeafbabbbebadbdecfbiegahdddfabbabafbbifabidbddahaaakajababacebalabbcacajeemdfcahabbbaaihbcabbabfbcacbaabalebcabfdakcbdecgbabdhhbcaabaaaedbacbcdaccdaeeaebbabbacaidcahbaabhaaagchaaacjbadccabbembbdafabfababcbabcbcaabkcgbcaagbclahaebfcciciadiaacdadadaccjeigbdaabbcccafbaafvbbbbdfacaAbaeaabfcbfacghiaahbkafafaaabbcbfdacccaebbcbccbbadafeabbfcddbbfbfdebeaaceaaaacdcacfbcedaeecaeaabbefbaaejacbabababdckccidbddcbdbadcbafdaabaadeabcebiaaecbbdggcacdaafagacbacbhaebbabaaaabambaaclaaceaaidbdkaeaadebaabafcddbbbaafcadcakecbbdaabcdabceaajbadacaiaabdadecccbadaccaabbjakjaeafdbdacaabcceaaacafgdadeadagabffadcckacacbuaebjcbadaaeffbcbebaiabegchcbbaadaehbaadaaccbhbdaeceedaagbccaaaadccbibbcbaaeaaaclcgbaocafacdcaadghibabcciaaeabaacdagbccbaabecdalaabbaaccdbcabacfaacacbdgfhccniccdbdbabcbciahadaccaeaccdbabbbceabcbaafagebaalabbahbhededabfabdadbdcebtmbbaacaefdcbccafaagacdadfahahdefeghcababdbababcbbaeceabebbacbbabjaabaccaabaaddcagebaalcadfbdagccabbbaafdacbaaccehbbdaebabaeacmecdbdaaaheedcccfedjaccfbaadmcacbdhgiadbabghadbdbabaaadbagdbebabhccdabcbnccabbbaadgfbhdbbbeabfcbhfacfacgdbadjabaecddcbddcgcdfabbhdebaabaccbbhcaaiabaeddfcaadeeaabfcedebadafedabgdhbaaccjaceafdadcbbdeaacbaadaefcahbbaaddbbabeedabafebfababegbahgbhacabaacbdibceegcbcbocaabaaedgdaaadaabbeadaibcacfabaaaacgaaacfcacebdabgahjebafaeaadamebbgbanbcfgbbaaababicdcddbadadcadcdebaaeaacabbadcdbbhbbcecbbdefbcdbffaeceabeccaaaiebchlbaaeeifbacdefagbcdhabbaabbbfcdadbadaaaafcefhbdaaaabccadaafhagkggfdbcbaagbbbbejcbcbcaafgieeaccfadffddaeeidahabbeaaaffgbalafaccebdbaacaibabdadjbdjaagdceacfedacdaaabgffaaccaaeeaccddagcakdajfaccadaaaddcdabdagbacabcgbbdebcbaegfabadaegcabcpaeffcbdcgibcddiaaaahaaabadbfafafcaadaaaaabrabhcbcaafcgbaibcjfabbcabbefdabcaibafbcbabfhaaaeacccbcadahajecabfafaebbgbbehaeebedgblbqdabaacebaljdadagadcbcagaabcaaaerefefaabgaeccaedcebaeaaaaaabeggdcaiebbacfcabebddcfbfaaafebhcciaaabbaacbfacaaadfabhbbafaebgbdbadaacgdfaccdbbcbbahadebaahhfaadabefaabbbadbccdeaabhbapbdabaadfcbadaaeabdcdfaaakajabbjcbacakabcbbabbcaegcdbakecacahbccacaaafadiaeaaeaciaabeybcbfdabcbbdebdajbdgbhabaaaaaedecbbcjngaafbhabbaaaebbabcdbhahcggaacacdabbcahdihaecbgdaecdigaafjaabgcfaacbaaacfcbacbgiaaecaaaaahbffcfdffcaccdfckabddcbadecctebcdbbfadbdcdcncdagabajbeaaabackekidaaacfbbaacbjfadfachagageadmfaeadddabagafeabbgdbabfbadbafaacfdccbaacahababddfafaaiaacgbafgaaaebhbebkebbbfbddecabcaaebadcaiedabicbcbbdeacabafadiaeacabjacbgadecbaacbcaaiababeachdaeaffdbbbeddcegpddfbccacabhbaceaacbcabieafbaadcaaabbdcbadabdbgdbhfaeaaacdaeadcababcbcalaacbbdbdbibhacbfbceaabcbpcbibajmacabdbcbbcbdccfabafabcdbaaceaabdbfaffaaabaecbbmaefbhacacababdaaaigcaakaabbaacaebacaeccagcaacabbacbbcaagaeabgccbabaccgaadbaacadgfeakfabdbadbebddccdbacaabejccaecaafbdfebaccaeaaegcadadacadbbacaacbaaeaidkcbfecafelbcgaaahfiaicdfcadbbebdbbdacjaacbadabbaaabfadabhbeabdaebcabfceaacabbfcddadcbaaoheeaafbibbanbkibbabhaccaabbaabeaaedccacbedabcchfgadadigaafcbaacadlbcccalacabofchagdbdbeedagaaccdbdbdcbccdbddiabbaakhdccbbaacebDjaebgahbceaaadcgbaaabadabbakeacaalceaabdddlfbbaabhgagcabaaacbbebgbbbaabbdjaedaaabbadcbedaccabdcamaceaaaabafgdgbfaaedaeefblqeafebdeabhcabadadbbdcdeabbaadhbahbaadbbabacfadfacgdcaacambdabceacbacaagdacajecbabgcaacnaaeaabbihaackebfaacofebaaihagbdeecaabiafeabfagadcbbdaehababaebfbaaaadfdfccaddcabaabacfdekcbaaadcabdbbbcebabbajbibabcfacedafcbdcihdebaabgafabcjaddbiaccaedceebedeacafbabaebcddbdccfbebjabadabaabacabdabaakdabgabbabaeacddababadaadahaffaadfaaaadiaieemcccbCbaendcaabebabdaadcdbecegbchkbfddbaecbdbaabacaebdaabchdfbabbbbeabbcebbhabbccaicbgeabhdedaadacbefadbbdaedbdeabbaaaegcghabbaafabcbcfhbaababjaaabibeabaacdfbbgcbiaccbbdabgcbajebbaeccadafcaaabaecdaajacabaefedadhaaadbfchfagdbbahccabeabacbbccadhbaedhhdgbcabadabddcbbaegdabbfabhbabbjcaadhbacbefadbbcahbabhbbbbbbcbakaacebbfbbhddaccbbaaacbcrefdcgablbbfdchcgadbadbfdadkabdaaacagcabcdcabccaaacgaadcagbadfkbggbabaagbajbacacbabccaekbaageakccbbdbaffbffabbfabbbdcaebababdabbblbbfacehfabcaaaclbfbadaabbbabbbalahbabbdagacbggbcaadahbaabdejbaaccbdabbcbbabddabbcdcgbdajdjfbffcabbaeaedbdefaccabaaabbaladbhbcdcccodbbahiakcaafdcaaebachbcifaabaaaffaacafbdffaabbbabbeacaaabacadcaaaabhabadbdafmgaaacadgaaacbacbbaaaeccmcaafcecbbbadkbdbjjiceadacaabgbebfbjbadajagadcbifdfcjfadcdbecbbaajgcgebcjabfdkacbcbiabbedfhajbdcaagabfcadcehabecdffadafbbeeaaegadbabldeaaaedbcceaagaadaaaabadcbjddbdckafcgbneabcbabdgabblacbcdajbcadabbccddabeicfcbbaeaicebafdcbaccamaababebbffabaeafbaccaanaaeacbcabdceaaedabfecbqabdebahcaggaaaaaabgbcbicaabbafalafbbabhfbagdaafbbbcadbababecgeebegbbfabegacfbahbdadiaadadebaaaadbaacabbcacbbbbihabedccaajcddeaaababcafbaajibbabfadcadcahbcbcbdhcabgbcbgcfbgdbabbhiaddadaacacbccabcnacabaacadacgadeaaabgcbabgbaakfeicaffafaceafdgagdcfbaaaoadfeadaddagbcadabbcafbababbagbeadadacaaccegadbbachaabcbaebcbadeceaabiegabbfaaaagbcafaaicacadcafddcbubadbdbcbbaabbbacecgggehafdbcbaacbababaccbmeaeacabdaddhbabhfaccaabbbbbeadrbbicafabcaiacbbaadcacdabgccdfaccabcceecdbdaaabbcdaabcabaacbbbcccbcdgcacabgjaaababfbhaaccgahbfbbjdaansgbeaeafeagahdfcbhfbacaafaadbhkaabgeacbbbblcjdabfhecccbaaabaaecbdfbabaccbaheeafccaceccbaiaeccbgcckbbhbhaabaabacfabbbbbaacclcfadabeafcbebafjcdbcccbcajabaacidfadfcbcadaacbdbaacaaaabdibaafbbbaabfhabijaeabahccaddbfeccdabbaaacbagcaaibaccddiahacbafabaefababemajjbbcbaebbnaaabaaccibbebcacabhcdcfcgabbaacbcedndbacbabdkbfgggbbabfaacddcdadaaddcccaddhbecaabecbaadcfaaacabaccbgbcddabaaeadcbbbhababbdadabafbbabadbbbcbfgabeabkebbcabaadabacadaabecbcabmbbfbcadahdacbbkafacdhbcabaaagbbbiaabfeadadbbkcgacbabcaaacifbafhaacdbbafchaaeedcbfeacaakaaaacicdabcdaabbcaaebbcbbefcbcaabbiceabbgecacaabebeebbahfabebebcbhaacbfcabdabgabbdabdccdeccbjjacefdcccfaaaabndabbafgcaabacbcacbaeabbeaacbaaaedbhkdgeabedabcadbgkdbbgbadbbebdckcdbcacdaiagedgcccbaadeakaecceegbabaafcaccabbcbbmbaeggcaaccbacbacdcfbaaaafbaddjaeqhaaaacabilabbaebaeccjabcacedbabbeabeabefeebdaccehabcbbcabdeaafaaabcbbdgagcacbhcdbaaddbcacedafbddagbgcaaahabbkbkacdaececcffcbabdbdabdmdfacecbabamhabbeackecccchicbbaecabeaecabagdbaeicabddbacbabhfcabcddedagdabcbacdhbbbaiaaaabadcababdcebbbaagcaabcfdivaddalecaaaadcaaaaoaaabfahaaacgcccbdcafbaaebaadbbaacfdaaidbaaadeboacbfffocaababbbabdccbenbbeaabbadcacaefcfaaacbbdcfgcbfdbaaacaiahaaaebaeahfaedddachcbbcbbbabbbbaadfaaaadaalgbbdcbfcbdhbadabbddebbacbadhbafdadadhbfhaaafdaaaebaaeeaaeacabdacebfaaaaababaaajabafdbaeeacbaaabbbdedaedcaaaceaaaadaidabbabbcaacbbdbbabaadacbddaihgbaaafebgafbfddbaaaaaecbeighabbgeaahbbabaacbacbabddaabaaafaccacbbadccdakabaabaaaacacadbcbbegdbacabafbaafbaaaidakabdacbdcgecechcpbcabaeabbcaaacdaaaakbbbjbaagafaabbbaabagabaicdccghaaaaiadaeagefadbbabdjmadbbcibdccjlcbabedabbibaaaaaecabadbbaabfabbaeccoemghsabacccbaeedcabadbiicgbaaseicaecbceacaacdblbbchcbbeaccdbfabeedaccamadefiaabjfafafaecjbbaadbccdifdgabbbapabbgtaadflbacbcadgacbadaebabgdcaffdaaebdbiaiadabdebachbaaabadcbdcadaaababaaafibegaedbacdabababdabicebbabaccadagciaadbfaaiaekeaababebeabbbbababdaacebbdaachecaimhafcbagdkbcdaacaabccadbbdccgabahtecgaaibfabbeabhaijadaaebjbabbcafaapdaesbdaaedjcdadbaaabcacbaeabbaaggcbadeacaaaaaacbhcaeaeadacfabbadbcbafflcgbbaalcibhacbccaagaechdoabdbhadbcacacbbdahbiabeiabddfcdhhbbaaaadlakabbbbaaadabdahhbahebmgbcaabebacagcadaafbfgadaaafbfbemfhhacabdcoicdaahgbbafdeaaaabagcfbfebdcbaaicadgdadfaacafcbcdbeaacfcadfcdckankbbddfbcbdcccbebagebbhiiecbjcegafbjccaabgaaeabeagadeccieedbcbbeagaebacfalhaadahajaabCbcbcabbabagabbaobgaecbbeaddcacpacgmcgaedbibbaabbafbdcfeeahaabfbaaaaaaaaegbeaccdbaebabdadddccbbabadfadcbccobccebbdaaaaaacaabbcdabaghcjddaabpdbccbgcfgcbagafcbcaaaaaaabckefafclaaahaabcbdbbebabdjaecffacbbakbpaabfgadbfccadbcabcadaaalibabaaacadojgeagfcabmaiebdacbgcdbgeabbbbcbaeadbbdbdaddbnacaabhiaaacbadagccfaacaccdadbdababadgafbbgdbbdaabifaabbdbccdnhbfbzccacadaacmbeaaaaacaidaciaabgaebgbbgdbaahffbaababbedcabbbbceeccaeliahnbagdbbdaaabackbhacacaabaaebddclfbccbchabbbcacbbbaabiaecabcbhycckdddacbcefabaacbacdacccabbccafeabdebbaacabadaabiaaabfaaadeaebafhaabbabbeaaalheheabcfccfabcaahabgnmcfagjbbeecbcaaacdhaahaababdcbcaccacacbdihbcbbaabaabacoaacbadaaebcgbcbadcaeaaccabeefucbbcacbdbafeedbbaddiacmaiefbecbbaahcdlacabbbdakhbaaabfebcfacbcaaciebfglbdiedcagghbaabbcahbbfffcbdbbbbaacabbbabcbdcbkeabggbcbnaaagccbadanbjfbabkajakcecdbebbadbabbabbabfaafbfgccbdaadavaacabfcaaaaabaacacanbaecaaaababbdafbhbkeaehcaacdabcdmcbadhabhfcaebifcdbacaabccanbfadbddcabhbdaaddabcdaccbfacacchaeaccacbcbbbacbcmcacccahaeecbabhceabcdaadgbcagcafggaabhacdccblfaebadbaaaacaaabaabahambcafacbbpekaaddbacdbdaccdcbagdcedfeddbaabfaddadbgdecaafeedabaebgccgablababbabbaaabfgdbccbcabaaabbcdlabaebbedbanbadgidaddibaAdadbaibkachdbaccbbdicefcedfahajfdhbaahaadfecchadaffbacababblemfdfabkcebcdccbccfcedbcadpfebbbagaabcfbdeecggdboahbdljacaagclabdafaeacbaafacahacldadaaahbacbaaccacbdaddbbcaadbjdabaiaagbhccdafacacaehacacbbcaabbfdadbdclgfdefabdaabbcaacaafccdedfbbfgfgbaacabaakaaadacbadeacabaacbbgaaabdecaageccbbbdjbabagabechceabdecacfcbdbhcdgbaaeebeafcbcegdaabbbdbaaaebbaaabdabffgedbakacbagaeaghacbfaabaracfbaabbbcndafaabecafgcckababcgeaabbblcbaefabbbbaecbacccbdchddababcccfiibcabaaabjagbccgabcaaeabngbbadafabmcdjbaadjbacaaaclbdqebbabecadabbecfboibbkdacabbabfbaadcbbaabgcbcbaacbaaedabbegcceaabedbbaacdccebabecaeiacccfefebacibadadaaacbaadccaaaaaaacceajebaaebacfbadecbaaaaedabaadbbaaggcbccaafaadaaedcacaahcbclaeecaccfbbhaaaafbfddaafaaabecbdgaagaacadacfaaaddcaaebcaadhbbabbfaaedaacacbfhcababaeabacagcaahceaemababdeacbacaaabcclcbaafcgaacacbbccbcaaabbacabccagcaaecabbafbhaabbbgbabeefcaaapabcdcracacabeaaaeaabcagbdfacbcaecbbccegcbbfdbcdabaeacifiecbeeabebaebbbabdbcafbideblbaoaceadldbagbfaeadadfbfdaaabegbbcddacehaababhcbdhehcakbccacgbceacgcdadcbfcedfabbbtcgcecaebbfbdcbdafebbacdeabchcbgebbbadafcabejacbbaacbbccaagbbaabdabaaegaaaffaeaabcgfdbabbahbcbaebaecdgbeacfnbffabaaacdbbaiacdadadabbceabbabdbedbaehacaaabbdabeeebaaaabaafacedacgfbaaabeafnbbecaddfdbdemiaoaabdladidgaucbacbbaaacgbdbacaabgbaaddadabcgadccdbaabcabafhbhhdbbfabdciabhabcibbafdcacdaaaddedadcedacgbgcdiafejblababbeabaddabababjchbbaababaababcaaobbbgfiaaccagbgcahfabbceahbaabeabhabdhbdcelcahcdfbbdcdeeiaacgbecbaacbfbbajabalbaicdhacbbccbccabhefbhjgbebaaeedbcbacbdabcaaadcccaaedadbiamcidchbcecacbdaaachjadcabiaeaddcdjgdcbddbhibcacbbkcciabhgdkbbaaeaeacbbaheehcacebagbbaacabbacdfagdcabhcdgffebadajaccccgabcidaabecbkidacedfaceabbaabdcxbbdbcecaaaaiaababdecegbbfbbecaajbaaeaabaecmbebcdbbcbaaahaaaccbdagbacfkadfaabcaadccaeciahababbgbebaeafdabdffbakdcfdedhbdccchcadbebgbbgbcacddaefbcccfbbbagaaaeahaehcuaaedabdagajabacacddaagbaabbaaaaihahbadbcfdfbacdbdaccbdgaecbaaaabbacdebagecehcbabdamcabdgcaelcdbadagdmbcabdbkabbabeabbkbeebfcafbdahaaacfcbaebfabbdbjjbaadajdbdfcbbaefadfcaafacbbacbdedabceegcbabacadkbcgdbahabababablbcdgaaaabdbaaaaaaaacbbacafibbadcebdbbhfeacaaibbabbbadbacafeccfadbcfcaakaaceclaabahceadfdadcbafbbddcbbfbabdeaccbcddabccdbbbabbbleaaacababbddbbbecadacaaaacdaabnicaaacbcbafeabbgbaagfagghdabbbaacaacabbcaejaacccbbachbacaaaeaaeajacdddaahbbhaijeeabjbadccecbacfabacgaahdabkaagjbaabcdbeddccbcaefhdacaebaccnbfbfeabaadhcacfbafeeebaadahbbcceafbchbdaaaaecjcjnaeiabbdeckgbbdagidcebbidcbbaddcddbbaggabbdbababgbafbaeaafbbdbaaababdadbebcabcfgabdaaebkabalbcdbahafcdckadahaabdbdaaaabhbccaqfibadecabjdihbaaiaebkafabajieaebfkaiacagebanbaceaceacffclbcbaabaaaaafdbbebdaceheaccdfgacdbehcbkccaacbbbabfffdbabcecebbbbigaababaaajcababcaeasabaabeacicabebbjaaccbcbaeaccaaaaebafaigabccfaacaibjbaabedbefabbabcefaaabicbbgdfdaancbbcchcaacfbadaeaaacfcbccgabcfhabcddcbcccbaabbcjbmeabiccfceafecbbdbaaadadedbaabcacdbabfcbbbacbebfacggagcbcjchaeacbaghbjccacaddaiccacchafabacdcgaffaeacaaaaababgbfbgaaabadefaaaebdcigdadchbbiaaadagcbeabecagacfanbcbaccddbbaceaageabadabfcbacfagcbdbcaaadjhdbdahaddcjeagfaeeaeebbabcecbjabcmaaafeadbaaabfcacbbcbaedeefhbbdalcbbdaacagbejbadedbebaaocedeecbabcaacabbdcaacabbadbacedgbidebhebbcaafbgeccfdaaaabbddaaiacabibhabbbgfeccbbeabacaacgbebacbiaajbhaaadbaaaakadbbfbhadhbgfdaacdebbaeebcaagacdabalccccaaibahkaaacfbbccabecbeebhcagaacchabbhdgaafeabdbbbaababjaabbaaagciadbcdccaacbbbaaagbffejibaacdahbdbbccbacbcabdjdbbaababacbbafbbbbccbdaaahbbeaaaabaabaebbeadddaaeibaaabaaedcagbadiaccaaceabbcaaihafbababdagaeacaghabdaafdbabdabnebbfbdlaabagbcbbabgmdcabdmagdcadhecijkaefadccbmaajaaadeqbegcdaaabcaccafccbjbbbbchbabadibdbcccaaeeabbdaeajabcbacbaceclccgbbdbjbbagfacebfbgaaadjbbibgafbbjaadaacdaecbafdbcacaaacbaafaababgcbamadaabacebcgecgafdbbabaaabaechbheaeecaagaafcbeeaajaahhbebaeccacababeadbaabadabcbjebbaaaabefebrbfcebaadwcacbcbfaaebbedjaabaabaabcbaaiaaagdcgclfagcdaccdaadafiacaabfagekacalcaaapcbaaabbcakcadchaecabdeedbhcadcfagbaeabdeabdcgdackbcdcbaaaadbjbacekaagaakabedcaabboaccecccdacbcacafdacdabagbacaabcaadbbdcbibabaiaaccaabbbbadcdckdaleafbdeabbheafbacbaebdbceccaaccadacdabdadeaaabbcabaefbgbgdcaabdfcdaceaaahfaacaaiidacgchabcbabhjdbaakbaakecbcaaagbbbaabaadddbdbadbaebabbdeebdaadcbaagaecfbbhcbbbbbaabnedfcfacceaccbbfhbbfacbjdcadapcaabcgblaabadbhceaabhdaebabcdccbaafdaicacbaaaababccaaambcacacaabcaahbdabvcalcbbaaachcbabfbabebcsfaeacaecbadabfaajcaacdhcafaeaaaaabaabhcaaaadbbdafaagdabgbfccacabcbibcbbdhcabbbfgdeabachhebbaacccdeacccmadaapbbdaacpcbecgaaeidbecaebcajedbibeccadbcbabfcdfahkdbbaagcaaaacagadacaheebbgdckifcabbbabfmbacbefaejadcabcbaaeabceaababbbaabeaaehcgbaabdcbaadeabfbdbblejaiajcacabbecaabfeadcbfabbjhjeagaedajacbabbibcadcabbdebbbhebcbacbbcaceddabhcdbefcecbbeaccaecgabcdbbaaabcbdabacaabaeadeaaaaaaebbcmaahaacahdeabfeaeabcabcdaeibfaaencecaaacfceaaaccaaafaafacefbbfaabbaaeeccabbedbbdcbdaffeebdaaaagddfbhagagaaaaefaaabbabdkbbccddbaaobccacbaaocdebeaebaaafagababbecjaceaaacgadcgadbacbefcgadbacebebaccambaaadabbffdhabaebcdibgcbfgdcbibbdaibdbbdgacaddchaefcabbfbcpbkaaaacdaoaccbgcbbgccbgagbabaffaabaicbcbbebcdbdegadaaccbbcdcapfchpebabdbaadacadacacbdfabqigaeacdecaccdeceaaadacabebaicdgaaaccejaafhgahdbmhaafdlcbcbbbbdbdhacacachagbccfccbbejecfcbjcbdcabcjiaabfdcdbecmdcdbcadabacdaabaabbbjadfbbfeaaaaagadcabbfabebegbacaabjhbdcehabaadefbbccabbfabfaaciebcajabchebaddcaadacbdgojceaaabbacbaaahcbbaccbcaaacdbbebacaechabifbccajcfaabbbcabeaigbdeebgabdbedbebcadacbbaaaabcapceafdbbjabfebqabbgbeaehdaacebeaecbgbbaaabcbcecgfbcbbbkaebcfaaaabcbccccabaccabaacabbahaudeedbeaababdkecjacabeccacdaacbjebdbbnbfbehegbedcfeibdfacdbcfafbebbgcacibababadeabacednfabhcafabbabejhcfeaadnadbbddbefckchakabbdaacaabbdffaacaadeccadacfdaaacbadaffcabcfbbebbabbebedbfgbeaggcccdfbbgbaaagaecaiabckbcdiaeabbadbdbacbaaecciaddbcaaafabfafbccaadababaaabgcccbadabaeaebaabaababaeabaacbadffhdaiaddbaaababbdbfefcdcfcbeababaababbfaieibdcagaeceihbagaabgabaambecdbabiagdahadeiccceddaaoalcbcbecbcagbbdbbbcfeabgfhcbfcdbkbcaaakbaacabicbacahidfgadpacbbcddccdadfccebjdafabadebaaabdjicbdifadabbdjbccacfagaaabaaabhcakabeceejdacdccjafbbabahgbcdbdcfbebdabkbdadabebabceebdjbabbfeacabhacaabfcdakdcihaapacabaahabaabkceecbabcecafdjjadbhcdaaacakfaaahcaeaobcbaaaeabecejbagfeecegdcbdaabaadababaaadcacaabbcaackdadadkabbafabadaccaecbbkbcadbdaiabdnaaaabakacaadaaabbejdfdkcfcaccababcgdjbdmbdcbbagdaebcmaagadafdaabflbacicbdabadfaefdccgbbacbbgeaceaaaagadhdcbbaaaegabdkdgeehbbfgcaeacfjafbdbabgddcagbgdaddbbidcaiabbbffbadeadabebhchgdicedbdgbbcanfaaifdbeakijbcababbaababdaaadbdacjeabbmdbababebebedbacfcbfacbhaeadgciceadbbeffbcbbbbbbadadgdaebcgeabbebakccdhapcaacbjccbdbmeefaacaabcabadiadcbhabbcaadaccaadbaaaacadbebabbcfbdccaacabbcdbcccebeegbhbefccehjcacndbaajbeebaaabaghccaaadbbedaccgbcafacbcbaaabbaadbcfefeafaaccdababjeabcacecaecbabfabdbbabaabbcaeaceegabaacbaccaaibedlfafbfaaaaadacacbdeaeaabbafcaaedkfeabbaabbfaaheccdbaabadbjhbadahabdcceaabaeahbagdcabiabaaabbbabbaachfadeadcbdabgfjafabbabaaebaabcaebbaabfaaeffqcejbegaaaiaehafabccaaaadebibccebebaamcabcbfaagbbseccbfbebdcdadibafacacnbaabfbbadagbdbeabgijadhcfdbdgdaabacbdadbncbaababaadiadictebdacabbbibaaedffbrabdeablabkhbfbbbbgacgcdbdceaagbaaakbecbcfcbcebccgabaaafdcbbddabgcabibdaadacaeadabbhagcbafadgabacaadadafeiaadbebdacaaabbaacdbccjbeceabgabdaaadafhcadeaedgbaaaceacddbadaaafaebaafaeaaiebdeccaabaaabaabfdaakfbbgfaaaaabaaaccbegcgbahbabadbbbcfdqbbalecbbjcaacebaacabfbacbaacabeacadbaacbgiebbdcbaadibbbdefcdcgfaabbbnaiahfbaabdahaabkeabacebcacechgcgagcbbaabaaabhdabeaaaacfkafbafdcaahaacbjbbbbbbcbacbibdbbcbkbabcaccbabaaaccabbbacabacidaaabgacdabekgaadhbaiahbafafcjaddicdbicadaebckfsacffaacdabebcdecbbbadajadcaaabbabedkdcbdbdcaecbfeebacgabidababaeaaeeagaacaebdcaeaeqedafaeddccbleebbeaabbcacjbgacbbahbcbambhfbaedbcgdabbdbdcabaacddbagffaabfehabehccafdicmababajaeabclccabbgajabcaafabgafaaadcbbababacaaabagaafbaaabafccgabbhfbabbabfcabscaicaqccbcbbcdaeackhabcbbceaccbcddaba \ No newline at end of file diff --git a/Lab3/random_text_geometric_distribution_codetable.bin b/Lab3/random_text_geometric_distribution_codetable.bin new file mode 100644 index 0000000..0280367 --- /dev/null +++ b/Lab3/random_text_geometric_distribution_codetable.bin @@ -0,0 +1 @@ +{'p': (9, 0), 'u': (11, 4), 'E': (15, 80), _EOF: (16, 162), 'D': (16, 163), 'C': (15, 82), 'A': (15, 83), 'w': (13, 21), 'v': (12, 11), 'r': (10, 3), 'n': (8, 1), 'l': (7, 1), 'j': (6, 1), 'h': (5, 1), 'f': (4, 1), 'd': (3, 1), 'b': (2, 1), 'o': (9, 256), 'q': (10, 514), 'x': (13, 4120), 'y': (14, 8242), 'z': (14, 8243), 't': (12, 2061), 's': (11, 1031), 'm': (8, 129), 'k': (7, 65), 'i': (6, 33), 'g': (5, 17), 'e': (4, 9), 'c': (3, 5), 'a': (2, 3)} \ No newline at end of file diff --git a/Lab3/random_text_uniform_distribution.bin b/Lab3/random_text_uniform_distribution.bin new file mode 100644 index 0000000..7a4c1b8 Binary files /dev/null and b/Lab3/random_text_uniform_distribution.bin differ diff --git a/Lab3/random_text_uniform_distribution.tar.gz b/Lab3/random_text_uniform_distribution.tar.gz new file mode 100644 index 0000000..32144c9 Binary files /dev/null and b/Lab3/random_text_uniform_distribution.tar.gz differ diff --git a/Lab3/random_text_uniform_distribution.txt b/Lab3/random_text_uniform_distribution.txt new file mode 100644 index 0000000..92a8b3b --- /dev/null +++ b/Lab3/random_text_uniform_distribution.txt @@ -0,0 +1 @@ +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 \ No newline at end of file diff --git a/Lab3/random_text_uniform_distribution_codetable.bin b/Lab3/random_text_uniform_distribution_codetable.bin new file mode 100644 index 0000000..bfdf83c --- /dev/null +++ b/Lab3/random_text_uniform_distribution_codetable.bin @@ -0,0 +1 @@ +{'A': (5, 0), 'b': (5, 1), _EOF: (7, 8), 'O': (7, 9), 'Y': (6, 5), '9': (6, 6), 't': (6, 7), '1': (6, 8), 'X': (6, 9), 'e': (6, 10), 'W': (6, 11), '4': (6, 12), '3': (6, 13), 'o': (6, 14), 'q': (6, 15), 'T': (6, 16), 'l': (6, 17), 'J': (6, 18), 'y': (6, 19), '6': (6, 20), 'F': (6, 21), 'G': (6, 22), 'Q': (6, 23), 'K': (6, 24), 'N': (6, 25), 'S': (6, 26), 'f': (6, 27), '5': (6, 28), 'L': (6, 29), 'd': (6, 30), 'D': (6, 31), 'M': (6, 32), 'n': (6, 33), 'u': (6, 34), 'B': (6, 35), '2': (6, 36), 'a': (6, 37), '0': (6, 38), '7': (6, 39), 'P': (6, 40), 'E': (6, 41), 'j': (6, 42), 'z': (6, 43), 'C': (6, 44), 'h': (6, 45), 'i': (6, 46), 'c': (6, 47), 'm': (6, 48), 'R': (6, 49), 'k': (6, 50), 'I': (6, 51), 'U': (6, 52), '8': (6, 53), 'Z': (6, 54), 'g': (6, 55), 's': (6, 56), 'V': (6, 57), 'H': (6, 58), 'w': (6, 59), 'r': (6, 60), 'x': (6, 61), 'p': (6, 62), 'v': (6, 63)} \ No newline at end of file diff --git a/Lab3/random_text_uniform_two_point_05_distribution.bin b/Lab3/random_text_uniform_two_point_05_distribution.bin new file mode 100644 index 0000000..625d426 --- /dev/null +++ b/Lab3/random_text_uniform_two_point_05_distribution.bin @@ -0,0 +1 @@ +V÷Uu[^Þ®ímµ[^µv«ÿ{ߺºúÕ»Õn÷wzÕ®öª×ýµ»×V¯îÕ·íöª«ª¯UU]Ûu^úú·Ý½íÛ]_u­u}ªûnµµ×[¯ëíUo¯mêÛëWZûj·Ö×{VÖµÛ·»uík_k«[ZÕZºÞ»î¾û[U}UûêÚ½µíWª¯Z½]U­¿õÚ÷{·~»ÖÚµV¶íV·w®»ßU}WuëÚ®ÕµUÖ÷~·ÝZª­µn®û~ÝÕõ¯ZíÚ»»]½ªÞû¯zÖ­õ}Ö­ªªÕUo[¾÷j¯ZºÖ÷¾¶¾½Zת­Ö¶õëwû¯÷­z­ÕUUv·ïzúíÛ¯n··Vª½ºúÖ¾öíWõÿ½[»VÖïöµµU®÷u]Öëuj¯º¯oº«ý¶ë­W÷¶×Û¾­uÕ­µUÝ{Ýmý«Vµ·{Ví[^º­ëZ¶«kj®êµUmUmµº¯]®»{U~÷]Õ¯Õ·¶ª«Úý×UÕ­®îî½½®­w­õUÕîÚªßvÚîÚëmoÕ»õÕVÖ·}uÖ®­W­UkýoÚ«uk[VÖ·^µUZõ{¶Û[ªêÞ»ÚêÚíuuµW­·ví]µujÛ[êõkûÕëÚÝú«õ×]íUu¶µUm½ëZ¶»ªö»ví{Ö¿ºÿÛuZÖµ×V뮪ªÕ}j«ºÕ«U[{­»[_««_jÕZõ«[mV»WêµjÞÛöÖ·µZÞõjª×¿ÚÝWÚ¯÷W®ÛßÕ[V½Úõî¶õ®­]{¶­z×oª®®÷µî×W«ý[ê½UÝ·¶¿^Ú«º­µ·_kj­µW__^¯êë­Úª»¿Zê÷«»ÖïÕ붽mn뵶­ëßÕª­vÿÖ«]ªµëõ]Uûö¶þê÷·÷vîµUÛkê×Vªÿoz­¾¶ïûWk»ÿUþ®öíZ­kV»k»ªÚýÕ]»kZªê­jµUoÝouë­õmµnÛÞë^¿ªÚªíV­Uu·v½ÚÚ¶êý·UµUZªµV­ºêÚ®ëUªûjêµ­ª½k÷z«o]µëõ«®¯UmwëÝZ×÷WU»kíoUÝÝÛVÿm×µjªÞ«¶¯ÛW«Ýþ½ë]VÕë]½µW½­«[wmÕZ®ÚÖµ_­¶ßÞªÛ«»Zê·Z«ëÛ~Öÿ¯­ªëï]õ¾­í®Ö»^­j«ºÿ[¶¿ÞïÚª»Ýê«»ªß[zÝzÕU[»½Ú¯ûj«]WÕ·{kÕ[oUvßkÛïk­z­j®µ]ª«·kõ~Û­ª®·uÕ_ZÝ­·]ºï{}Õj÷woj¿öí¶¯ÕZ¶Ö·{ZöÕZ·VºÕ×UUk÷êµ­íkªÕmVÖµý½oUUßUkëkªº®Û«^®¶ê¶ªÞ­m¾µª½­_U·öÕ½·¶«µº»n÷ý{m}u[knþª½VÕUu®û÷ªÚ¶ÕuUwmÚ­_®ýÛjÝjªªªí»ëWku¯º·j¶­w¶Þ»öµÕUkmV߯ºßuívÕjºÛ]µUzµ÷kWkíÕöõU}Ú½[êßk­[¯µßÚû®µºÕú½km«¯í­ÞªÕ꽺ڷVÞëW«_mZµ[õÕ^«Z¯ÚÕ^êëU]UÚë×uÚ×¾Ú¾µ×®î«·Uö׫½m¯[«u·n÷ÛÚßÿ}Unµ»nö¯uVÖ¿^»®ÝVÚö«»«íÛÿ}}[µö꪿Õ{U«ªí}UëunÕ¯µkWw·vööÕW߯W¶Û­{µ~µ®ÚºÿuZõê×·Û¾­]î½ë}º¯·W߯m­Õ^««ª·½»kê­Uþ¿Uýêÿ­[u[µ_½]kºµ­ÕkZ¶ïUªªº«îª·««­Û}­ª­}W®Ö×UW¶«êõÚ×µu«½Z¾ïoÞÚ¾ëÞºÕ׿Ýõkv¶î¶×¯¯zÝï·jº«uZ«íý}ºµªÕ]×Þ¶¶íû¶µúª·UÝ­[µmkujïU[V×ïU­Wß}ºê»VºÝ¯½­níW­[­÷«uv­ºõ¯^ªµj¯UmkÝZÕÚÚ½Ûmk׵߭ê¿Õk½WÞþÞÚ÷W­kîíV·}Õ]]ÛVëï^»µ¾­o¯mªª½÷{ëUõ]ZêÝjÞí­¶«×_Û^»½[mk­UÛÖ×uµWýVûU¿ûÕUZî¶þ»ýZ¾Öµ»ZõýïUUî÷Uíj»wîû^ÝZíúÕ­ê­}ÖÚï}kWUº«ªÞßUkÕµW}õjë^Ú×}U~»º­ÿ®û×}Ö¶¶·¯Úº«[Ú¯º×[ûnªµ_ßõmÕª÷«õj»v­ªµµ¯[Zþ¶ëUUVº¿¯ö«ê¶«Wu«Ö¾ÝµuÝÿ½ïß{Öªµvín·VÚÚîÝÚ¿_«­ºß­«Ú÷Vëu¶ª­uUkîÖµªõ[WUUj·»«þµmZ¶ý[V»kºÕ^¶îÖÚ«jÛUu[ݶ­j·ªß»[«VªõïªëZêµµ[õm­]õ~í­}תڭUÛ¿VÖ﫪­u­þý}kÞ®µw×Ýõ­_½µê×ooÕ­kn¯Ú­Ý·µÝë^¯¾½vêêê««½¯mVµUWUm­µ]­õ»VÚÕ[[×Z«¿j®Õªöº¯«¾ßZ®ÚªêªíuV¾­Ý¶µµkv»­êÕõï¶÷Wê¶Õ­^ê¯}­zÝmUUUëv÷[U]WÛÖþ«ë[}í]~¯÷¶ú«}Ûj×WÕjªªÕ÷^µ}öëWµUm×Uu{nýº««VëmÖþÕ[uª¯vÿWzõZ¿}þÚ¾ª»^ÛÖ­Z«êºªíêµýÕ¯ºõêíÚ¶­Wz«õýn¿Õº««U×ëkz¶ÝÛU½­UºêµïVõ­Uººß½jêÕýêêõë[_ÚûºÖúÕêÚíZö¶­¶®­j®ÕÕ­v¶Û}U­Z­nêíU·»jݵ«Z¾¶¯kªíUu¯û­jÕU[ëk^µ×UnÖß¾ë×W­ÕuW×·j»mWw{zë^×½µu¾Û¶½ïÕ]ºßªí×o[wjÞ­^Ý««ª®Û®ºÖµÛß«VªºªÚ¶ª÷­]~¿ö¯Wµ[om]oí]_möµºÕU}W¶ÝW­]zº­ïõ­¿W[Õ­jý­^­õ¿~«_®«Ýõ«ë»jºÕÕÚÕ[«µµ¿[ZÕú»µkõv­jªµÛ[µÛÕÞýê½uµVú뮽ö½Öî¶Õ[«]^¶ªõºÛ}ÕUZªÖ·õý]Ukkv­ë}ûU[«jîÕ·n®ý~Õ]oÕ]¿]Vµv­k«^öí_jªÛU­ÝZÕª¾íuVí÷½Z½n¶êëÖ×WuþªëíVîÛVµUßmíÕUzµÕûÝß¾Õ}}^þÕjÚê¯_ÚªÚï[Uë}jê÷U]Úý[[Ukjõ[onï^»mÝ®­m«jëWúëÛZºª«íV÷µÞ«j¶þõ®Ý­[jªÝ[ªë»Ý×kV¶¯WÞÛª»¯«ßnêïÕ¾úëß_UU¯UV«¶ÚÕÚ¿uõU¶ºµW«kj»Uµví¯Z»[oUU_[Wú­Õk½{ëÕµW]¿kµu­»ê­Vµ__«ªª¶îýU­U­V×Õ«µmW·íuÝõûë]]úû[µënÕ«kÖÖêÕZþµîµúÝWUUï~ÕªëµZªµ®¯ª÷UÛVû®»µ_¿^ÕUõö»nÕj«nõÚ»Ú®¶ívªÕW}VÝ_¶íÞ«v×µíºªÞûUZ½·m}Z½jëë^ë½µjëÖêê½ÕÕµÝk«Ûzí_×U·½o­WûV×ÖëoÝ«¶ºê»­ë{VßWozÖÛk«·µÿ{êꮪ÷ºûk[o¯ÕÕîµÖê­µjµë­Umu×µ«þ­ÕUmÝmÝmª¾¾Ú·Zê»uU¶­Þ«]î·¶Öþ׫z«Õ»õ««UµºÕWZ¶ªê¾ßªöÛ}÷ZµVÝU­««UmV­Z·zë]U­®«õ]Û­ë^ÿwZö×WVÕª­UjÕ¶Þ«û­ïÿûZºßï«n¾ºöª¶ÖêµZîí[êÛo[{WÞªµ­VÝ­Zª­íWUUêõ[Ukvªµ}k½Þ½÷öÞ½µVµÕ«oV»×]·Ö¶ÕWjëkõWVÕ]öºï×^µ^¶ÕïU¯W÷n¯VïuÚºëÝ]Zª¶ÕUëowªµm}ª¯Z¯mkZ­êª»uÝÖ÷¾¶µÝmu½oµºµZ×vÖÚï^­»U[U[ûÖº«wÚµ×Uº®Ú¶þë]ªÚ«­~ÚµVªû«vªýêÝÚëo®»V®«»µ×ÖªëúïWUZ«UÕ®µn«]~ßµUzê­z­^«]»ZÛªª­_Uuu~«]«Úª«íÿz®®ß[ºÿ·^«µÞ«k}oûV«mêú­_ëWnõ]ëjºï­nÕ­ªÛWozû»í«·Úµ«UZÛv¶®½¿U[«k«UwUÚëz«mo«õZ¿«¿Õ]ëýUÖ­¯µVµ¾½j׫ַ]úöÕº®ïoÚêºÖ«Vú¾»êªª·}nûýWW¶ïjª·kUu¿U¾­¶«Wûõk¯jíµí®µ­nª¾õÿ~µÝÕZ­»º®­]Ûï¶ûwï­õµU­÷ZÞµUU~ߺ­k×êµ»­ý®®«kZ·öª¯U_Õz·û¯ê¿]ûõnõ¶­Uj·õv÷¯wu·ÚڪjªöêÞÖêúÖõu~ÕZí­¯¯mUvû»«Zªªë®µ×«¾×®ë¯m­¾î¾¶»ªÛ×nÕjµëwÕµWµ¯»}{U¯WûW­¯º¶ÕÞÕ«}öµí[ª«¶ÕZ¿®¶ÖÿÞªõUVê­uݪµ÷ª¯uýU~õu¿Õ­îêÝí_­­ú»½êµ¯[îÕu«muo]®ªë¾Ú·UV«µuª«úª®ú»nªëÕUuUÕZõ}V»®Ý­­«W]un«ë×}½î굺ë_ÕÛÕvµÖ»×µ½­µªÿÝmmíû­«Ö꯭uZê¾µÚßm~ÝmkÕÚõ_Zúö«Ö׿oº½Ú÷ÝÚíú¾ê­z«]_n·UûÚµë]W×Z®¿Uª«Õõëo¯·W]½÷ÞÕojª½[ÝëöªßýUUkuö××m[ví]ÚÖïºÚª»µÛUmÕ»Wú«»o­¯»Õ^Ý^ªõj×{ª½z½[«öµëjÕVûªû»u]UÕíµõzûj¯j·ª®¶»õwÛºÚÞÿU«½µº¯vߪ¿UµíkÕ[µ·Z­]ꪶõÿÚîû×_uVºÕ꪿~îªÖ»WݯU{zªúÖÞ®Ýj¿W¿ºêë}[]]Vßw­ºë½j«ÛíVÛvÖöªúíµ[ZªªÕuZ«jÛ«îýZµÕuZêïVÝV«µöÝß¿­[­{×ïWÚíwUUÛî¿ZÚõm¶ªím]_mÞíÕ­[^ªÖ«[nï]Vûª»j·[ª«U½m¯Ö¿­UU_­«»V¯»öëÚÕÕ{U­®Õu¾µ~µU­}oëmõmö»÷j×Wj«»m]UmVÕWºÝï^õ¶·W{ªÛ×Uª»¯µíÛ«m«Uªêªß®í_ªÕ[u]VÞ®Ý[w]UªÕj»·]Z»ëWz»­UuëW[]v½{Un÷µ{êõww¶Úªµwºîºª·~­®µ·[ª­oÕ«kkjº«j®¯nÖ®ªÚ®«¯êÕ{¯~ªµºÝ­kU×k»íÖºÕúßÝkm×]^ÿ·UZ»z»}~­«Ö®í¯¿÷Wª««W«íþªÛꪺûêëªÝí[j¯õ¯¯Õª¯ëÝm­ZÖ«wV­UÛú×W_o»®íowªëí»j««vߪ¯ý[ë½^öÝ®íU_Uou^Öß¿Ý^®íU[ïV«úë¯Výµ×Ú«Vºï×w[UV­µªÕVÞ«®ÛºÝßzÕv×[Wõ[ÛoÕ]o½ÿß­ªõUïÖöÚ«ÛUZö¯VÞµZ¶×¶ÿm¯ºëÕÚïwukîµõý¯×úß]ªîým_ÕuÛío]j¯U}ïº×õW÷~Û]·nê«êöõ]uí[Û÷j¶µÚý«Ö÷k_·µ®ªµÖªµu«Ûjë[^÷ª·o¿[®ÝVÝ»ÝW×j¶·Õ_ûÝ[_j·[ÖõÕµÛVýõ¶­mUú¯õ_¾ÚýV®­UíZ¶«ZµUuª¿×W«u®ÛW~ö½×«×ºµkºí»oU­j·Uuª­ºÿµßwþ«Vº«½öïwUªÝWWÛïon¯­ÿ÷µvºÛÕ®¶ê­÷[Ö«õV¯WÖÛû»^µÛ÷uUoj­UµÖÕûWUjªú­µ]kõ^«Z®÷ëV¯V­þÛúÖ»ª­jºª¶·jª¶ºµýjµ[ÕVªÚ®»[}{jÕÕZ뽯ÕýuÝjëkú·î®¶ª«µ­umW®ûmU}^ßZª·ª·ßUUjºµý®êëõz·_®¶û½uwZÛw»ÿïÚ¯]UUvÖ«®¾®«W{[ú»ßV­k~ïµÕ«Ûµn½ÿVÞªêµu«ÚÕÛ«ïu­Þõuªîêµ®µ½íêí[­U]Ýkªª¯UU_·VµÞê»ÕÕw»êª­îê«U®¾ÛÝ]jÖÖµZÞê¿níWUú½­Õ®×û¯«U«¶«Ú®ÖÕvÝmVÞÛ]]jÝm­«ºÛëÕU½«UZûêîªú·«_êµ{^êúÞ®ªúÝ»ÛÚꫯZõ¿uë­¯«V«okUµú«½µwZÞ뮯×U»Vºí»ö®Ö­uýÕ]kÕÖ÷ý÷mú·^®úëz¯VµwUj¾ÛV«]{½WokmÛ[jªíêêö½ÿVºªÝí×­­­­jÝ«[WzúÝu­µUÛ¾ý÷m][·÷«Õ­~·ú½õ]Vîíª·mÞ«ªªÚºÚªÞ¿õUu¯ëÛ½uºßú«Ú»ZÕöªÖÕßúëí»õ½_ý×j·]¯jÕ×uõ]µªëí«WíÕ^ö×_ëUjÖûkmßú¯nÛn»]ßmjÛö«_z¯}_j¿~íVû×½ªö¯ÕUv¾ªú·j~®¯ºµoZ­kmíwûUúÛ{Þ­Võýßî®Õkµíý«Öªí[Ûmo¯U붻W]í¯ºÛ·«·ë·jª­zºÝ­õvÛí]¯Õn­UUýjµ{vªïuûúöõU]»ÝUw®ê÷Uvÿ]®¶»jÕõºµWzí[Ö¶õÕu«ÛUzµmõ¶«µ»ªû[jªÞ»WkW{]W­oê­ê­®ïj¿ªÖ®ëwڮ׶µ¯jíï]½W×jªºíõkk_ëV¶­ßnµ­^½ýºÚª«ÕUUê­ª«»uu]ª×­k¯j¿[µWõ{mößû×jµUª»÷wm_mUuõµ]­ßÖíW¯½«uë^ªë­u¯µk½ºº­u­ê·»ªÖ×­×õ}ú«Z¯z»¶­µëkjÕ[mú­VºþöÕÚ¯V½^ÛVÝêõUmÕm®ýWÚµÛkûU«ºë«U«¿kÿmuÕßkkmw¾½ºÛ¯¯k½Wkkõ»ÛU^µ®ëUuu}[ªªªêÕzº®®µV×­ëv½vµZ¾ÚÞ½×Uþû¯_uZÚ»¶»÷ۺûU_Û·zÞ¶ÛÝᆰë­Þ«õnµ]VÞºº­«^Ö¾×]mUZ¶Û¯µ½uïÚ¾ÕÚ«mUvÝw{Z÷m·U{×½Ö®µÝý¯_wW÷U꺭Ûï·zºÝõíUZí¶êÕwõö¶î½­ºµZÕZ¶µ{~¶õ{m÷ß·ö®½×­«õZ­í«··½[½]ÕÚÛêÕ÷U×k[ZïÚûÛUZÚµU][ZÖÖ«UëWU¾ßwîõuÚ߮ﶫªÝ­^®½ÕíªµWz«ë]ëuWmmúÛ½Ým^ªßºí­µªÕûÝ­U»}«ª««­[k{WwUÞîºÕ[»»UkíjÛkj·½uU¾µ^·¯köê­Úꮺ¯}V»þöµo»Um^­­¶ª«V½ZÚ­ëjÕºÕµÖú¯[_{WVýmö­kmwU­ººÕ«o]VÕUuVª­ºë¶þý»oZÝ]µní¶­VÝmUk«Umª­V¶µUuVº®¶¯U¯U[½]Ý_Z×wÚÚú¿¾ûomuUVõ¾Þ¾·kWÚ··ÕÛWÚµµÞë·Wµþµß½ªõZ×ukÞ­ÝÖÖÕº¿Ý]v»k[ê«kÖ«UªíÕÕÛV·^º½W­ovÖõºú·úý«ÚÚ­V«µUUuv¯mU}®½Öë]mÛVÕîëZ·kë^¶þÕîµ]kkuUW¿ïºª«[­UZ¶®­ÿ[ªÚªÕ»«µ]Ý«·uúÕuªµ~ëuUzÿëj¯ÕþÖëºõZ«÷ëz­íëªÖµÚîÖ»mzõ»vÖëµWÚÝWµ^««êõk­kkW¿Wn®ß_«õíúªÞ»«Ö«·WíVïUm®ß®ª÷ßUµ[µukÖímUuzÕWíVëÝÕuµuߺÛm{[v­ÛÖªíjªªÚ×^·ª«nß[]Úû«[W]j«UVÝ­Ý¿Vïkmv¶ÛªõªªÕ¯î¶ªï~­uýk­o¶ÛjÚî»»[nÕ]÷­kª«®«W»ûmê­­µk«Z­®ï[íZ¯öÛëµ^­µ¾íVõjÕw­Z­ÝUovêÛ÷Öúê¿ÕõzÝuÕׯjõý^®«­mUû«UmV«]Z­UjÕ¶­·wÖÖ붵õjíZ­k·v«º¯w÷Zªþ«®½Uk_ÚÚÝëmº÷ڮ׺¯ÕU·V¯ö÷ÝõWUZ»µú·{ÕWú¾ÿjúµÕU·Ýmmwöþ×Z«ZïÝ­w¯×Ö½ÕVªÕßÚÖ«ý}îµv®««Ûz·Û®ë»[¯o×UnÕ¶­kªµëö««½½z»ª«UÖÕz¶ª×mwîëZêÚ×ZÚíµmmj®Þ×uÝz«­ÚÖÿ~¯Vªªµkêµëm]½z®¶ªëªµµÚ¶º¯^¶«­jÕ{m_õV÷ÕujªÖëëw¿w÷w«ZÿÝZÚë꾪ªªÛªëVÖÕm«î«íÿu_Võë·VëVêÝ]^½~Ö¶ûÛuvûëê¿mÕªµV¯V­º®õv¯µUªëõ·uUµjµ^µ[uÖï½ûnî­Uµ]nÛ~ºªººí÷¶¿u]ú¿[k·í»µZÚ¾·×·µë~õ{mkV«·ÚúÕÛ»uª­VýVÕjõ«U«Ö«w««omýn¯»µUúªú¶«¾«zß^êïﺪ×öµ]¾½ÖþÖë[ë÷Z­mÕÞÖ¯ßWî»ouo­[k÷zºÚê»Uî·ª¯_ÿÕ¾õÖ«UúßUöëUº½õuµmZêÛ^½k_ÝêÖµ×­«¿jº×^ö­ÚÛÕnêÛ¯½uUÕ_wWwëW­¶½«þªöÝí½]Ujïjö­ª¯öݽíîÿ¶×½Uª÷~º½õ­«õ×Zëw­õ~ªï­×U­uï]µUjº®«j¿­ÛºÞëZ®õý{uZ»Þª·wþµ~õ[½W[®¿ê®ö÷vµ­­u]k¶ûÚßu¯õÚÛw»z­v·ïªëUUUZÚêÕ{kÕUºÕ­í{jºíkû®­¿UÕjíÚ»vþÖêî­­_o×^Õu[UVëÝ­ÖÖýooꪺß[ý[ªª¶Ûnõï×{ú®ÝvõÖêßkWuê«÷^ÕÛëZúÞíﻯ¯nµu®º¯ZÕïºößU·Z¶Öº¯nªÿVת¯«µõmýmÖÖº¶¯]¯ªµzÝZÕjÛµ]õ}þ¯¾·ÖÛ«UîÕjßZ«ëomW­Wk¯úݶկk×Û­¶õëm«Õ­k­«]u½UuVÝ®ÛZ«]Zï¶×zÛ«_[«­Ú»«ïvµ^­Ukºµß}«Õ{µ·Ú«V¯ÚªÝ¶»u×~×­µ·öïkÛë½Ö¶¾í·nýµµ«¶­wn­×ݺ­µýW{uV½o­WWêÝvîªýjª«Õ­­Uïvý«­]UÕëW«µµî××mÖÚßö¯uÖõU»jÛ­_µZïU½uõWum[j¾ëkê½^¶ÞÝzÝvûUÞ«Zêݾª®Õ]íU¶ÖëzýVêõªëíõWõ꺶ëêÝÝUºöµU_®­Öß}vïÚý¶þû®úµí×uÕm·ÞªÞë·]__[««íëWj­_j«u®í^Õª÷ªÞ»wÕ®ªÕÕým·­[Uíu[^½õWWÕV«úýëVªÕ®­­V­uÝ÷Zª×_[ví÷}m­Ý]õkm~÷Z«»mzïZ½ÖõU×VÿõUj·ÖºÕm}}Vêöí­V­Ûoví¾¶ÕÕwÕ«êßÝkÝÛú¯^ú·µn»_ªÚÚêê·]{Ú½mÕvûÖ«­µúêúÕn×[Z­WÚÚתºÛú¶ª­VÖýjÞ¯¶õ»uû{¾î¶«_¶«UWÚöªÕÝUkþ¾ºÝÛ_Úªþ«mµªÝ¶­[¿uk­«ë«ªíÕUÖºý«nµ­uö»vÛ­½j»mßú«mÖºº®µë®·U÷{U»º×ëwí_Z·ÖíjÖ÷뺵ÖýU½Úýn÷Vö¶µjÕío¶Ú¶ýí[ªÞ«ëUíºµÖÝu¶·º«®Õ×mwk]µþ¯w[Uº«Õuöºªªöߪ¯Úû­ZÕª·ëíZþ«Þõ[µÕZ÷mµuëëû·wÕ_wªÿºëíW[Ý{~þ«¾ªÝÛUÖ·_½þµý½µÕjëý­¯«»ª¶îîõ¯·W[ÕªîÖ«n»{Z­j×VªîÕÚ½ëݪ¾õjÚêëV»íWÕÕÝW­vÕmº¶µ¶¶Ý»}ú׫ݿoµªÖ·}]^µUÕݯßZêë]Õ[WZ¶«ßnµÕ®Ýk­·zªÕµê믭_u«µê×VßoÞÕ{níµZ½u]¶¿µ¶û]V½U­vÕvëګ׫îú¿WUu_W[Õ·ºî·oV¯êõêþ·j·µ×­}µwõk]®­ÞúßÝ^ßÖ«vªÞÛýÖúõíZ­ßªöëuÝWU­Û½Z·k[Û]UUWÚêÖª¯]¾·WµµÖ¿¯êµ_nõmjê®®ëU]Vº½kUÖº¯Vúõ×÷kߪ­j®ÕUVÛÕõW}]^íõ¾·­ÕÚî¾­m«×¾õÿvªÝª­¶í÷Õouý¶«¶ê­v«¾ÖÕ^궫UmVµ®ßjºÚÕª¿½î«[UmmÿµU]W믪·«ßîÚ¯o­[VÕm½w¿VÕUzÛû]ÚªÚÕ«[UºÞµ®º«õkwªú¯¶ÕÞ¿jÚ¶ëÕëµë[ZµÕªÝZ××muUºÿµÖÛ{V­ºíúµmmV«»«}w·U½»oWõ×ÕwU÷Uz÷«õz¾ÛªÿUÛu®­·½Õ·µª««{jö꺮ÛëmnºûZî«ú­jÛ¿µj½jÖ­û}õ­Uw¶Ö·ßµÛoÿzöú¶ïjÛU]­Û«ïÕëuU×êµUê½o¿×õÝkµÝêÚµ®îõº××jë}º«­û®ª¯ëöÛ¶ªÝ¯×­nµªÖë[뫵÷U_Ö®ÕW®¶íUWZþÚÕõ­íõ«ÚíÕ­o¶Û_«ÕúÕý«Zª×[}VÕµýWkª·~»oÕî¾öö­öëë¯oº¾ëkW[}uuZµ¶Ýµ¶·¿UnöýªÕÕµu^µ}u^«Ö««ýn®½íjûõWkÖ¯­mµ¯ªêê¾×Öªêõï½ÕÛm׿ÕÛu]­ÛuuV¿õÕW­j«®Þ»uVí}ë¯mû«­ÛÕÕÚ÷}k_vî­W®»¶ÕÕ¶ýj½Öý«¿îöëU­µkµVê­k¯ªÚµª÷W[W]kv½_z¿{u­½k·­UuÝëÖß}µªêß[zÚ®ª¶«ú«U÷ª­UV»«¾µ«z®­^ÕnÿjÕ}]¯_UWmZµÞ®ºº½Õ^Þ÷]nõVµõ[×]wúß]¯]oÞ­V¯Uw^êúêÕÕõ­U]uý[Wö¯U®÷ÖÝuZÚªí»·ö¾¾®¶¶ºÝ^íׯ]uU_Z­ÿ«V½õUµÛ¿w¯uU·®õþ½¯­û^®µmwÖîÛÛ[w÷®õZûûZÝm«êõjÝUí·V«ûëmWVªµÕ×mªï]íµ«½ö«wÕVß{ªÿVíz¿}·êµê­oßZ®ºªÖÛkVµÝW[ÖÛÕ[¾¯êÕ«UîïïýÕ¶õ½UUµu­U]^«¶þõÕukuV×mjú×¾ÖÚÕ׫w«×Ujö®·»Ý»µ÷Ú«µ]ÖûV½Zýv­o¿µí÷îßj«õkvþúûWïk­wW¯_]¶ÝUUm]ëïµ­ö«~·ÚíV½µZ­­U¿ª¿U÷[º××U]W®»U_j÷Uº¶Úªµjëjß­·UzëU®êú®ö¯µªúÚÞ­µ«ë]¶ÝmªÕv«[}UÚ¶õÞ«ºýZö¾×ÕVíÛ«Wº¿ÕnÕvßkz÷um®Úî¶×jínªý­«Uuµ×}ª×W­mkWÚ¾ÖÝnÞ×Ú÷«V«êë»mÛwVîê»ëVÝZ¾×u®ª¯umëW»WµÕ~Ö­z®ª¯Uõwuíkw®î×Õö¿ê»­jÚÕª·¶·W¶Õkv«~«oׯ®ýÛª»ê붶ú¾ûV¶««¶ªÿUúÕ½¿W«µ~Ûµk_vÝöÛëÝkº×kºû]]»VÛÕj¯n®¯j×{U×ÝÛmkm¶ª·½ûÝ~Ýîëoµõ_uUºÕëÖõWkW}_«V½ªÞ¯^»Õªêß[þÕZ­ïkk¶úªÿÚ¾·mjªÞ¾¶êµWÛVÕ¯VúªêîÕ[ª÷Uî«Uoz·U¶»kµomVÕªÛ½Woî¾Û~®·µWUVëU¿úÕÛ~µêÚ­Z«WVßÚµ_}oú½®×m»oUUë¿íkUwUj¶õ[ªû¾ÿzí{_VïuÖî·Uvëm­Zí_ëzÛ~íU}®¿kÝßÕ­jîµßíÕ_ê·Þê·]º»ÕVµn½kk«ûÛÛZµ_­}×UÕÝ^Ö»«ku×Víþ¯ïªÛ«mnûÞ·w«omµ·uk^­V×µjªµµ[êÞ¯~«Ýj··Û®ªµþ«Õ¾êö­]»_j½«WkWuU­uU­ê®ßïýo·×»uª­k®Ú»Õ¯º­»Ûµ­W½¯ëuj®úõ}¯n½UÖ»Úµ¾®îþ«UuÕÖê®í_ÚÛVºê½ëëjïunþÚêÕ¯«­w»»kUm_ï꫺®þë«U[ª¾¿vÕU}¯m«¾««®µ®ª«WwZ«]nÕov÷uêµûUu«Wjª·õ]Û[[vªÕjïmkuUªµW]j«¿Õßµ_[½Õko^Ûª­»ïU­ÝêÚµ_UÕZÕß·[Ú«kÛµÕ[·W®¾×ª÷uUÝUWujï_^íj½ÝÖÛ÷¶»m~ªëêö»õ½¾öõvÛU{½­ÞÖ­·ÖÛ[jÖ¯÷ªÕ_zÛµ·µïkîö­»ª«ªõ}U¿º«íö»µZúÛj×Õ­^µ®ëUõûWzÚ¶µîÝ}zµµW¶ºÖúÛ­µZöÝoVíÿ^º¶««_U¯»¯ïVêÚþª·µ»v«oÕª­]nÕkÕk^½}}Zµ~®ú¶ûUªõU{Ú¯«u¾ªúûÛmkV·]o{nîÞ÷U­ow·wo¯õVß][jíÛj»{µÖÛµU}ÛkÛ­jëo¶«½zµõûªµj®Ö÷}k÷­ú¿ªû¿­ªªÕµ½uw­[U»Ûkÿ~ºÕkÝ×jÕj·ûj­µ¯nÖê¯]öÿ»]ÕmïZí]_ûµÛªµõ«{uÛkíjÞÖ«U­Ý×Vú·Õ×﮵]Zíµõ®«[ím[výZõµúîµjÛ_Wõk»j¿¾­u«»oïÖªª«îÚ¾­­ÿ}kn¯]m¯ovÖºÝ[·ßU­mnÛ]·nÞ÷V­Z«}Z¿µ­U«m«µWÖ÷m_[­UíêöµµWvþúöÚª¾®þ®¿ª½«nÕW­Uµ[_mö®ºÛUúÕ]j÷Z÷]VïªëU¯µmÖ·ªÖ׺¿¯u÷»Vª¶÷µnÞÞí®êµ®ÿwkuÕºûvú­UÚµº®½÷µµWÕuZÖºÝuÕm]ûV·VÕÝ®ª·ZúÖ×VÞÞªµv«m¶õ^·ÕUu}ÚÛZ꺵ÝZê»{V½êÖ¶«µ·«îíV×^ýUÖÖ«W÷U®«Zªª¾ê»][ª«Z»^«îßUmV½ÕzÛmÝï[n¿UvµµU]Z¶ÕÖ«mvµWß[UW÷«­_^õj¿]×[¯µmjîÛÝnõ­­¶¶µ]ëîºÛ®­}«Ú«nßÖ¶Þê×nÝýªÝê½ûÕ]Û^®·jÝuí¯zö·UV«Z½­kVÛ­nú®öª¯[W[ßZ½ZµZ­Ýºß­õwwj­õ[]û{}]ëîÛºö­n«V¯×«Vª÷WºýÖû~êÞÕ}}Õ®¶µÞöí·¾ÝkíµnººÛjÝ[ý[W½uÛV­í}ºýývµu_÷­]omjõn®õu¾½ÝZµ{Ö¯ª½º¯¯¯¿^íkUë}zï}íu½ªö×kmVª¯×W¶öîµumµwUkZ¶Õk®ÕûUV½uÕ׫ní¾Ú·­·ÚÖ×mWn­Uµ}köû׺ûv¯«ê«ÖýjÕõ{UU^µú­õkn­Z½ª¿ÛûZÖêÛm{k߶Þö®Ýª½ý_}­Ýêý«wµÕ[µV·Ú«[Vµ}ß[võ»]«]½Ö«·Õ®ÛõWvõuj¾ª¿{U]îµV­ïmÕí[µÝV¾ëw_^ÚûW_jú½n¶ª¯ßÚöµ[vïþ÷W}ZÖªµÚ«ÛÚ¶«u×kª«ºªê«ªíûú®½ÕknÞ¿«ßµöö߯«Ú®ÞºõkU¶­Ý­»UV®×µßµëoõÖïWÝn«zÛöîÿ¾ëí¯Ú¯ÕÖÚ¾·u}µwíu{«­Ý½Õýöß»mºªºªíö÷Wõ^õuv·j¶·×wÖÖ­«]mk}muýUÝÝUWÖÝÚµmûVÖÕ[{kޮݮ¶öÕ«m½vÿê»{wUVÞª×VÚÞ·ÕV®Ûê®õn½ö«µ÷×jíZ¾îíê¶ê¯µV«Vêö¾ý÷]ÿÚª¯µ»®¯]÷]­öý­UjÕ·vï­U»Uëª×ºû]­¿×ªî½«jºûkVú¿×®«ÛU÷­Uª«n·Õ®¯«uV¶·ÝÞöûÚ¯Ö½ªö­ÕªÖÖíW^ÕV«­­¿»î¶ëÕÕ¯í¾µ¿«Û½}Ú®û«®¯Uzßnªí®Ýí]Z·}ª»»Z¾µººµ¯o®ªªúÚÚê«Zª¶÷]ݵºíouU­UZ½ê×ZÕµëÕ­WoíW»ï·V·ÕûZ½_­z»kz«¶ê¿W»uÝj¾®×õUUµ¿îÕn¾×uv»µ¶½÷ZÛª÷í¯··wê­wݶ«mVöºÝUV»Z«}Ýú»«ÖûZÕ½ªªï×VªÛWµk^«n­uµu¯¿[[vú®¯Þ¯¶ªÖí·}[ª¶«U[}îÝ[z·v×µkuÕ]¯÷U®¾½ß}Õëµkjßz¶µUªºÖÕÚ·zû[º·W[kUÕ¾õ]]u_mv×·jÝ[»^ßUj«·¾«kWÛÞ­×ÕÚÞ¶®õªµU]Vú¯]jÕvîÛzö·Z­w«ý®µ{ÖµZª»WÝZÝ®ÞíõûVÚí«]®×mw¶»^µë¿UUkz×·jªÿk¯_¶ê«ïkk«×êíUUßWÖ®ªë¶¶¶íþ­oõޭ׺ÝÕoõUÚªº¶½ÞÛZ®¯«vûUÛÕÚúêöꪪýv÷_Z·µ¯o·zµ»k×]U·n÷níUýªõzµÝUÛÛµkVïZëzº­ÝUÝëjêíµ­Uíu½­ëwz¯vÕßµ®½ÕíÚª¯í¿kUZµëZõµµªÚíºíUWï{ÕﺭZÖÚ¾ÞÝ««o«]꯯WU½û_î­kUnß}[ºîÚÛUWÝ®ßîÕµkÖ«Þ×í«^ïu~ÿ¯ýWuuÖ×ZúÞÕ­ZÖ¯_U[Uê붪¶ÖÝöÛ«kjößÚ­}j­kíÕuV¯Õ¿wZ½õí¶«jÝkí­×mk­ªÖÕ~×í[zª­]}[zºª«[[·¯oU¿mÕZ­µýÕõU]ZÚÝ{m÷UUÞë{kêݾ¶ÕmUµë¯]»ý]¶«zÚ«ÕW{ýÞ··v¯o[µ{­[]諸µU×êí_¶õmV·UUW»ªíjªÚêÕ~õ®µ¯Úê«kzÖÚ¯]zßkÖõ®¿½vß«Z÷[®õUõ«jÛ_U½zÛW]^Ûí¶ªý®­jÚÚªµkÕµÞ­WúêÛk_¯ªÚê­µëz¯mÿ{Ý­{][ªÕ¶«Wíjê×~úõZÛ{j«Vþîï{­mÖý¶«^­ÕÕ¾õµµm}ת¯ÕÕWV×Úõ­ªê½u½kU®­V«ëë¯õj®¯õ«ÛU{]ª­U×v­Ý_jµõVíj«uÕÚªëÛW×µªÛ«m}[VÕV·WVõ»}VõÖïjúíÞýWµv¶¶í¶Õ»^÷kwjÕuwjµnÕ¶Ýn®×kµj»Ö¶ëoÚÛZ«º¿¿]oo¶º·{j­¾º»}]U­ëZÛ®íUß^¶ý_­v­mU~¿ïjõ·«uê×m­Ö­Uu{µw[»Þï}}wUuW¿êÛUu­u½U­ª»ÚÕ«ö«µ]úÕozýz­ªí¯Vªª«­×Õ×[ÕÝûku¶Õ]ÕuªÚµþ»Û­zµWU×m{»w{µm­ë¶ë¶ªÖݭ¶ëUÕ]¿úû·[uUvª«Z×½Û®ïÝmª·[«ªõõwu_º»]­­µ»ZÕUßÖÛûÚ»ÕÝwo¶ªº®¯«[Õm[·o®®ú¿­ºµ·½nߺ­·WÖÞ»®ÝWm]º»[[ºþþª×o}UÝ[Z×·÷íoïoWÕ¶­¶ÝµÛkz«v׶ýWk¿ýk}uu·[ÖµUvªõ}ÝÕµ¾Ö«ÛÕº«Z÷V뺪Û×U^µÞ­_o»kUwU¶û^¶·ª½­U»]WZï¯]mÿWvõ·~õVÝwZÕ½Uê­ëýw¿®­µ¶·]Ví×mª½ÝUª«Vêþ¯úêý[ûUmí_k«ZÕ^ªîª÷ﯽ¯÷öªÚÕª«º­ýÕUZ½[zÕÖõ[ºÕ½uÕ«]ûu¯·zºÖ«W»½_õµwUV«z«­UVëzºÕZîªê«ÕWõw½wú»Û½ªõ®ëêêïµ]jß[÷ßz½¶»ïªû}ûUúÞí­­ë¾º­u®Õ[ÕU«ÕÿUv½uímõ«îõÚúÕ[­UëmêÞª®û[ÿm«½ÚÕ®¯×ÚªÕV«ûmuýzÖ¯ÖÛÖ¶ºº·j·ªÕ®·VµW[«nën¶«íuuûZûíU­·­UUêµzµ·Uo[{¾½îß»W]Ö¿»·Wzµöý«VÕ­Ú·[VÖºën÷ï¾ÖíZ¯jªöÞªûµ¿úþýµ{¯Zµ[Uj­mVºµÛZ»º·^îÕUªÛ­k[µõ¶×m­õÕjÝj»}¶»jíê¯kknÝn·[{×}íÕ·]µw]kUÛººïvÖê»Ý­{]V«UÚ­j¯ªß¶Öúªµ}Vªº·Õ¶«UÕVÕ­Ujï¾Û«UW­m_µjê¶ú÷[kµzëÝÖº­¿ªºÝõm^ý÷Z»m«mýk»n«Uw^·jº¯êõ¿÷ÿU÷õuµZªÝÖ®¶®÷½õ®·]÷V½{íöî½~µ«}oWjµ÷÷ZÕm]«W«½n½ÿZöþ»möÝ{ê÷wÖ®íWz®·Õß®ë^×nÕ­j­­UÚÖíõ¾Þ÷»}·j­Uíýv«VÕ®«w®ûoêªÞµëÖêÝuõ¶ëmµÚûwëî¿k{UÕî­µm¿jÚ­[jÚ×uÝ_Uzõ]Uu[¾«]Zõ_«ªªÛuꪽmWz×më÷ú¿®®»nÕ×ZÕº»_]ýj¿ïûêÕV»zº­ïÛ«·Ö­]®ÝZ®þëÚ­uWkU®½Ukªú·{úÖ«oßV«ÿZëëÕ¯¶ïÞêïµm^­Õíu½¯·®ïë¯Õ_¯«¯jÚÖïîÝëmZúºÝû_U­¯z«ÕWvº¯Uúë[WÝõUjÝÞªµÝª«_ݺßZ®ÛUëêÕíúöÖë¶ÛU­]µm¾ªÕ]««ûmÕ½õUzꮶÿz®­ÕÞ×]®ïÕ^¿ïµVºµ[mªÕµWÝ_jÞªÚªÕoV¯n»]]Ûj¾Ûµwµjê»nª«{ÕvµuZý­Uí·V¶õÛë«wÝjÕm¶Þª»ZõjÕjÕû«mVºÕo}ÚÝÛÕÕV®ê­WnµZ­¯ëUk½[j¿·Vݻ۷]m÷þûß[W«jõ½v·Z÷]^ªíkÕm]VßmÝîµ­ßz­­mj®Ûk^µnêõë^­ªíjÕvêµuVº½_Õ»úê·VêÿU½ûoºë÷Öê­Õ[«º¯UmU[V÷j¶­m½][û·ÝÛºÖÕÚ½·Wªú«õµ¿ÕvׯZªºêÕ­ºÕÕvÚ®¾¶½­ª¿í·vß[×½Vº­ûÛZµUö¿õª¿[­µ]­ªõn×mª«ÝÛjÝ·Þ½ºº­nÕ«»Õî»®­«ª¯w]½múÕou«¿­z«½öµU·×߶ֿ×]mV«vê×Õª·uµºê×µµÛª«ª»ßo»Õ¿~»ZÛ·½mÿ¶­u¾ëoÕouÕ}׿»mkûm½­ë[Þ×¾º»¿z­­ªÕÛ^×·wÕ[­ªÞªý«îý»]Z¾Ý]k­¿ý½¶·ëVÝîÚµm¿­WÛ×ÛÖÿ­Z½Ý]ºë_u]­]këßý«kUkUÛêýêêíkׯmnûëÕvý}ª·ªí÷{­µªªµ·îÕwmº«ö»½êª«kÝÖ¿]®×·ªÝÕßÖ®®¾­÷_»íÚ½wúÿ¿ímU¿Uºÿ÷ûµßjÿU×ê믫×Ú­«}Úûµ·Uï¿uµÕUïU®µU[u}k[^ë¾µ[W몭µ·onû­wÞ×µÛï]Þ¯êÝ]î»÷»[ª«º·u¿÷­jÚîªÛWzíº¯õï«_ÝVõªêë[ï[mjªï{¯WWÚÕVßÖõµ_n»ßz·»u{[jëmëÛ[jí÷­]uªú¶«íª×{ÿz«u¾ßW­UU]zÕmÖÿVµ»VþÛïu}×UjµëoVýªêûµ×õn·½¯ê½ïúÕ[Zº­µUmª¾ÝÕÞµßÕzÛj¯Ú®û÷[¾î½ÞÛþÛUVÕµêÖµU½ê¯Õëwízú«ÕúêÚ·¶«ÝZªê½ý»mmZÚµÖ¶®Öë×ê¯kÛwÝ{­UÚõß[ª¶ÿu¶®¯mú­×}íý]UU[ºïV«×Öª÷o[U«®¯Uî¿mjÛ®ýv»ÖÖß×j»UoÞ·õ·Õ­Öµj¿UÕíUëjª¶Ý­mÕÛ_kuÛm^Û[~ªµßºµZí·Ý½÷Wõ½míµµVª½«»¯ªµëvõkº÷_kz»®¾ª·umÖ¯z×m{W_«[­UV·]·ë]¶ªÞ»µ]ݵjÖ¶ï¯Z×ï­vÚß½Zö«ÝjµU­ï­Vª¶×^ªêÖµÛ_Uªí^¿ÛumW]Ýz«ÕíjÝý~ê×Û¯mÖ­UU»Uj®®õíjµW~﫪êîê¾»Vµ]û]m_µîÕ}_k­×Ö·]Õ[ozõÕV¶¶û¯ÖºÚ×[ë¿]u¯¯Ý·w­Õ»VªÞÝën×÷ëVÿmn¿UZÖ­WÕkµªÛuÖ½vö·mUnê»UnÛní­ßw{Ú®»«v»u]»V߯~ÕUªªª¯­UUuõꪾ­ê¯ë­Ý[UU­^«¶®ûw®®÷ÖÕjïwýõ­ÖÝn¶¿VÕ«ª»ê«·mk}wÕû¿UkºªªõêÝwíkîªê«ZÚ®íöÖê­nÚ·«w]¯_îªÛv÷U}Ûõ}õêë½[kí«×¯­]kZÚÛU«µz¯mVûZöÝÕ[·UÕ×½¿úú×[­j­V½}[VëÚ¾ÛµÝõnêíU­««kj÷½m}^¶µÕWmj¿u_»ë^×Ö·U[ª××W®×UV»«_û_z«ûnºï·UVí­[^¶öµU÷ß½û¯n¯ZµZÖµµÛukVý{oí»­UÕÕvÕªýêýª¾µu×îíUnªÝUV­Ýþ½W_­ï{m~«_·öí¶¶®ªºöîÿÚÕ^ÞþÝêªÝÕõZÝkmªÖ«Õî½WW[ßú®»nýZ»õWÕµ[µz«Õ׶«úºý{ÝZûVÛ}mÝuîíj½Ýkí·U«UjºÕUu~½uÞºªªß¿ï¯½·¯íû¾ªýîÖúõ»^­U]ûZª¾ºÕ÷muZ¯Ý~¶Öö×m_W¾®¯º¶¿]V×گꮫwÛ¶Ûv®êª÷UÝý¶¯[U_j¿^­×knõU­ª½õÛ×·ÛÕÕªëV«UîêÖ¶ºÛîµkí×UÝUmjÛ»o®Ý·]W÷jÕ«Þ¯_½jÕUuVßj¶õÖ·}u]uõþ¶õwVÕvªªÖ®µÚªÝªíÚëU«­Öª¶µnÚ¯{»jÛVõV߯o]¾«kVºÝªëûUÕúëë޵߻ý[{ÞíU­V¯Öî®Öº·k_kÿ­nß}mUkU­{Õ½þ¶Ö«úÿöÕZëVûîêºí­»¶­»µªÝµÚÚ½]kÝVª·÷WUªþú­~úµªµ{VÖ½Ý_«VõªµmUnÝ­oÚµëZýWZ¯¶µÝuk¿«U]ÛWµ»u]µõ­­õ­µ]µýZÕk»Z¶Û×mµU]j®«êªêí[][ÕZÖÖªºÝ®¿ÚêªÝ^«zíª«µ]¿_ºî½o^öµÚÕkÖÞÖëo[êë]Þ®·uV­µ]_¯Û¯VÕ­½U­Ýµ«Ý·uU~íj¾º÷«·­V¯Õ¶¯×UVµjÕwkv¯Uº½V¿¯UUW~ë¶Ö«­Z¶¶·×uêõÚê­UwÝ»íWªµµµµ«U]]Ú­ª½U붻uïî®ëUî·¿m«uUZêÝmý]jí]}vµëu÷ª­[­_VÕ_·Û}WîýßÕ÷ÛUµªÕ­÷[µvµÚÖëVª×Z¾µÛn÷u[×]Õ¿kíU®Õë»êëêÚúíUÕwµõ­z¯®ªõûÝ»}Ûk¿½êÕÝUºÿºííZ»Ú×m^õíµÖ÷[m^êµUÚµúÖ«ým}ýzõ»íº½í]nín»o[UjµkÖï­[ÕÕµ­îª­«ÝWmµuj÷}µë][Uû«·Þª®­õm»VÚÕî«jÖµ¿­îö«ºº­¯U­kuuvûWz×[ëÛööÛUõÞßÕ«vÕÖ»n«ÖîÛÕzªºýÚëî»ÖßëZªÚ¶íö­]Û×_íkU^õÕUý}]Uªí½j½]Ýv«_Z®ªµn½k¶Õkv­Ö«ooZûW¶×UmªëuízõUÖ¶¶Õ}j®ªû½õ]ÖëUª«w«n­jõZÖõ­µÛ·Ú¯«k«­¾·ëwݺ¿oïﶭ«mºú½»uúººÚ»^­[o~«uÝW}jÕ»oß^ÚúÕ~ÖÛVµÞïj«ëZû¶ÿVµk»Ý[®ÝUÝ»wÚ½®Õú¯í¯UW}ku_mº«Zÿ¿mUZõ^««mvµÛ«UkjõZ¶·nõk¶ïVª»÷ïªÞ¿·öªª÷uª­WkÛZ¶¶¯o{­oÕ]wjõþ«ºµ]}kWº¯ª«]Õ]Õ®×_~ûUõîÝjÞ«Ûjêºß·ÕU­÷ï_wµz¶½ºªõ»Uº×W^ÕWV®õÝw¯Ußí~ª·U¿WvõVíë««kþ®×Öõ^ýõ]V½ª¾­~­_kWUnÛ®×}}íWu®¶ª½]]«­]ë[¶­­kZµ®í[WmW½¶×«mÝûVë¶¯­^¯Ý»WîÛÚµk]V»U]ÝWë[õª»ÿjîÖënµ¶ªúÕÕÛvÕW{×Z­j½µ}Õ«o]j«{öïVõj½V꿺¶ë~Ý}êê«mµ­Z«õZ«_­~·o»nÛuW«W_{[ZïU[ÚíýÕÛ¿×UU¯V­µ»îݵµZÕ]Wj®ïWZêÚÝ[¯¯ªÖúÕêßoª«UÕwÕ»ÕµÚëU­«[[ûöµêµªªßn¯wVõ_[ªß^·Vª¯oµVÕ®Ö­ªÚÝjýU[·º­ßµ]­w­«õZýw¯«î¯WÕ­ÚµU»Õ^ÝZÝVõëum¶ÛZëí^­~µº­Ûݪµ·VÕk]­{WVÚÛ_{VªÖÖ½Ö«zÝW~×Þúúת«Vï«UoêßmuÕ¿ÕjÚ×ïÕ}¶»ªªª×UnµU»VºûZ÷··VÝ~ÛµuVµíuªõV­nûªº»}«¯w}zõ×v»nßnÛz¿jÚ·[ú®½µõ]­ºªÕjï}U^Ú½þ¾êÖ­u¶ë÷_ªýßoÛ׶º·Uû_]UÖª­]ëºÚµZÚöª«k{ï]ª­Uêî·m®µU¶×nývÿUUUZ·ßo¶ÚºÕUÝ«n»¶ªêÿ]µª·ê«®ª×V®îÕW_Öëun¶µ®ë×j®º­ZÕZ×Um{»µº«­v¶¶­o­×U]­ëþª¶Ý¯m[j­½õÕ»kº«U]½}wU^¯[ë·jþíö»Uu^ª×õªÞ×Vª¿öÛVúÕõÕV×uV·}Wª¯öª­^º­×V­êê½]ë×­ªªµU»ÿ[ÚÞª·]^¯ªªÕµ[ꪾºªöþ»zõîÛªºûÛª»VêÛUݶýªêÕ¶¯UUo÷Uw¶îî­ªþÕuª·^×׿¶­]ïí¯»íµkw×WUoomª·[n¶®Õºª­_[ÕU¿v«µukímöíÕ«]­{Uê½­z®¶õ·ª·µª¯Vÿ¾êº÷×ëm½÷_ꫪßkÕÛ]»{Zµõ[êêÛWv­[Uºý^Õö¾½¯VívÖÝk[×UýW^ºõ]·Wª®ºõW^®·}úµn·UÿÚ­Ö·U­«[¿Õ÷UmÝU»VÝkWu«V¿»kZ·Õúëo½öÛ÷UU}u[j¿¶¶ý]®ï]{][Vµ_Õoº»ë»}w«V·zßk«_[«îÛ[}Z«n®·ßªÝªõÿµUz«Wmßmëõ÷kVµvªÛvª«®ê·[ê»oª»­U®¶ë­UUU«U®ª¾ö½VÕþõ[k½î÷õÚ÷Õ¾Õj»ÝUWjõ[ÚÕ­ïnþõ{j×mwWVªëWW·ª®ë·®µÕk«m®ûÕª«}®ê¶ßUkW]¯Un·zº½WUvíV¿ºªêÛU{íöî­u]·võß½ªÝkz×­uµzë[ëÖµmu×Z­mêªí»Õµ¯nª¿]WÕ]®ö½V½]¿u¯ëº·Þµn×Ý]×m¶ëêÕë÷ªºÖªÞ¯]Ûj®µ]nÝzïV½ªªªªª·w½ÿ»wojÖ»½ªï_nª×ïZûov꾯[¿vÝÝUÕÛjª«Ö«µêëíí¶Ú¾÷W_ûÖÕµïVµ­Õ»ÕuVÕ]mÕUU»u¯Û^«_«U«×n«Vª­W×­VªªÚêÚµµ½^õÛZ¯{[mm{V¯ö½{U­ZÚ÷UÕªÕêÿïê®õ¯ê¾µoj¯v÷«®º¾·«jÝj«î×WkÖ¾µµ«V­^êÚÕuWU­j¶ÚºÕV·íõ­«Õ¾¾îÝÕ«k[U­n½m­ªÖ¶Ú·½V¾­U_íWkµ~Û{VÛVÛë«V«[ګꪭ®½·WÝn«^»wíîíUUuÛíÕ[ëkU׺«®­vµW«í÷jÖöÕýµu[îµum®×vê×nÚ»Öµ«í¶«nýUÿvªÛýµV½½ª­µmz¶Þ®µÞÛ×êöºª×WW»]úê¿_UöÕ¶µÕu]ïÕý÷}WµíUõwºï×­Öµºê½ÿÚªº«»ßÕ·[ÚíU[zÕkwV»WjÿëuW[}oWßm]Öïjºúê®ÝU·[¯»®Öî½m~íZõzõ­ZÕªê×õoj¿vÕV¯ªÕz×^êªÛ÷UëÚºÕ»íUoªº¯mmz½o»í]®Õ¿®ª­Úº­w½ûォUvõUím«Ýݽ}­¾ïoV»n·Õö¾Õw{×uª»uݯVª«­÷×­^ºªª­¯U]Ujõn×µÛ¶ïZµêêÖ÷î½n¶Õ»«Uºªí¶½ûÝÛº­k«»j·®Ú×ÝÕU_]¿¶ïÚ­ÖõªõV֯ֵ«mÖïþºµz÷õo[nýU¯W]zÚõUukíêßßj»÷½o½j®¾®ßêí«Ý­í{]í^¶û®í[om«z¶õ÷¾µWÕ«­[ö÷«{ª®Ýv·UÖú®ûw«ZÖÛZ·ßµ{uïºÛÕ¾Õ¶«Vºûouz￵·V¿uj¿vµ®×_}W«Úµ[}[¯·ußÕ[[ºöÚõ^õÖ¾¶ªÖÛ½V¿mº¯võ«½U{u_Ú»[Õ^·~·µÕºõßUujÕV½}µÝªÖÞ¿kÿUÛª»{×·ªêöÕmím­V¾«jßVÕ]uVê½jÚÝVëö­n«Vë¯Ý¿­nÛ®¶õ½õ·mþ«nÝ[ª«ujÛwUº­n½ûWUm[Z»ëÿZ«êÿ×íú««­Zݵ«v¶­÷Wvꮫ­ÖÛj¶öÕÚ¾û[»öªµím]jß{mûm]Õoî×U^Û­½«k~×mv®­÷·Û»m­ÕZ½µVªï]jßÕjÝúº·{ÝZûZÞªÖªõ«m~ºõµûUUõUª½ÖÚº¾êê÷UW½]Õû]jÕVï·v»Ýîë^Û~½}ÛWVª«ªªýuuºÛ÷«UZöÛ]Õ¯¯Ým­Z­«­zµµºÖõmõmzîê×Ö×V«Þ·}·Þ÷½×júµÞ®·uÕ¾ëê¶Ý­UëUºÛ¶íU¶ýkÛV½ZªïVÖÛZ֪ݯ¾½{j»»«[õmwkÝ{ÿ­U¶«Vªº«U[û[Ý{ÕwV×­}[jëZ­»Ý­zúýokÕ~ªÕ¯k{ÕZ®íÛk]ÿêÚÚªík[k×V®ªÕ·V­ßj÷õjµm½w¶»¯¿«Ú«[¶­u¿U^þ»½^ï{UÚïµ»uu®ß«_«ªµ^öëíõõí¾­ë­{ªÞîê­ªº­º»Umm×mZꫵuªÞµUUu÷^ÛýÖ«Öµ_ª­·÷»Ú¯Öº¿¿Ö«»jª×¯oU{ímnÛo»íõuíj«ýkmk×µZ­­wkµëÚê­Úªþý¿í}jíjíÕuîíUm^·êÕÛÚ»mm­UZ­ê·wj«Ö­Zª½uªÝ¿þÛv·µ]z½UïêÕ­kµ­ÞªõÛõµWªÖëVõ[®­ûªªÕ[ª¶ûÝUk«ê»Ú»»}UW¯í­^º÷W¶«jí­}Uª·Úµ·Wî·vßZª¶êõ]»UÛ·WvÕ^¯zºîêªÞÝUVºým]ÛZêõ»Uo»nºõk¶×kw½µþ»ïÕ׶Ýu«»^õ­ý¾ªÛ÷U{ªÕkWÕk[­WV®öí[î¶ý^­U®½êÕzÖ»úí¯¯½·u®îÛþ¯«UU}]W]õ­íë«Þ¶ë×ëWWn¯«UZ»ZýWunÖíuWkV¯¯[ßjªµ}Ûz×õZ­Û{U»]þ«îëmU»[ÕW[u¯k×õõ«uUÕÕ®¯[ÿ¿¾«wz¾«ÛWk[ÖÚºûnµj«Õí[ûõëõUµm­ûmÖ«_½V«WUU¯wzݪ½¾ýZݾÝ{Ö×Wëj½^õýÚýZ½^ïïU}kÝW½V»Ú«_ªµª¶Õµ­½ÖÞíu®µ­ªýÝ·míëªû[ªµµzªêÕU{ÚöÝõ­n«[¯j·¶·ÕUúÚµº×u{êë«»n«nÕv¶«·­ÕvêÖÛzÚÚõukWêõê«nßn·ºª«ÝÞ¯¶ëZ¾ºµjë[­][W{ª¶ª®ë««{WWUÖª½¶öÕªÚªÕëZªíUê×Z­ú®­V«ÞïÛU¾Ú÷Wk¶­mûUUW÷VÚÚ­ÛV¿m]vÕ_j½ë­Úµ[«¶»ªÕÕÕº×îïÖÕ·ëVµz«UÖûµuÚ«[»íwwUWUuW­Ýj½onþï]÷µwﮫjªºµëÚÖêêïní»¶ívÖö÷×jµ÷o_í«¯µ×«¾Öªêµ[Þº··}«Vµk­÷úÚµýÚÕVª­Õ[½ý­µu]µU½÷íWÚ­ëëj·Zúöª»nßU]W½v«U¯¯VÛoþ­zµkUªªÖꪵ¾«ûþ­×µoWµºª«µÕWÝU[[ûWW[[­w{÷Õÿµ{UµÕWuZêÿßÞ­µëZ®×ëÕ[v¾Ú®·v«^ý{½Õ¶ý­ýWzªÿ×ö¿ë{k«nõ¾ê½z«ýÖµ­¯«_î«­WkÝuZÕwZªÿUnªº­ö»íUµî¯_µÝ«UUW¶º­»V­­¶û}mõ½Ûõkº¿¯ÚîÕmí^µÕ®½U¯ÛíUö·wêݵmõk{Umî­ºµ«ª¶ÛUµW­}^ýU«z«ZÚÕßÕUmßÕ·ª®íU[»[µ»]_[vê×^µ«WÞþîÕoUÝÚºªë·j×]Vûúµ~µZ뽪ûým·kku[ëÖµ¶¯{Þ­[Û®¯UWV­ëªªµï^Ûªë_uZï_×Û¶­Vë«Þ¯ví¯jõoW¯ïï]ªÖ×úûÿW»k¯êÛkzª·{Þ½ªÝÚ·ënÖÝ­ªÕíúÝU«ªºµWZÕµ}î­uuÚ®­u·Þª½Võ¶»¶«_µ­­«v¿Ûª­µµ{Õê­½¯uZÛö·WuÖÖ¶·ºý{­wUu[¶ªÕºë¯¯Vªõo¶Ûo~­v®ª÷µïÕ»×êªÕ®Ý×[µ[w»×ëÖ׫íê··ú«UuÖ»Z¾õÖººõ{Z«íUý­ºîµo¾Õ«·õ«WU[ýZµ[^½}º­¶îö­ÿî½o}Öÿ®¯÷U­Õªíµ·íµVÕ]wj¾½×ß{ªîªÛUÞíUªµëªû¯zÿÖõk{WuÚýÛ]ÚöíµW_j«êýWëmm«[mݵUZ­V­ê«¶ªµj»í¯^½õmº÷jí[{꯵­Õ¾Öµ{mªÞÛ~¾ºêº«¾¾ªõ­õ·î½UwÕ¿ÝvëumWz®ºþõµ«½~·{zÚ»]j·ZÖ·zíµu¯zí]Öº½Wn¿ÛûÚÖ«[õ«ßûum[Õkmu]µm^ÕÕºª«oÞ»ÕºÝo{Õ­÷­U¯»«u¯ëuÝZ»_UUÚþﺽª®«ëj×öª«Ú­êÛW]Zíû¶«¯m^Õ«ÝU¯í·Z¯]Zþ­mýï»Ú¯¾ÕunªÞÚÚ¶¯Z­[¯»îªÖªºêÕ­jªïµz¾ªÕW[Û[Z­Ýk×»UUjõj®ªÞµÛ½ÞµVûkº«^ÝWí­z®ýß}z½[¾Û¿UÝÝZµ_®ë»»omVêºÕ]Ûë»ÚµUê®Ú¯Uj­WWº¶¾Ýv®ßm®ª«½­½_õu«VêÕªµ]{_{WjíÝ[uÚ«m]ªõuuëkÕÕ¶µmµ]®«zíUmW­[Öª¾þÛ­­®Ú½ë½¯[¾«Úµ­ZÝkõzݪõßVÞõõmzíWWõÞÖÚ¯{ëzëz×kÚ«uÖõVÝ«û¯»ëïÞûUmµjêÕºíZ®ÖªÛê«zÛ­·«ÖµWnݽۮþÕo«­®Õz½Õ×[n­kÕ«¿«[·Uj÷jª­zÞÖµU»­Uuu[­{ußµWvµ«ký­ÞëUª¯ªëÝ[ª·mZõWª«ý½ÿv­múÖ×íz¶­ªº½õnõZÕZÖï¾íª½½­j«ký®Ýku{UöªÖݽzÛWmÝ[Ww«ÕµUUW^­÷»kêß»umwVµýuÚõVÚݯµ^«oz­j®ßúÕ{ëZÖïU­ªºµ¿ºëíu÷m^½umWjÕÝÖµVêÕ_ÝW­÷îÞ­Úúª®õûzëº÷{]mWª¾¶Õn­]êëmm_÷õµþµº×ku­¯oVꪭu®¶õ]W«íýUºÕ{[w­W­U«ZµUÚµWZ×êîí¯j«UkWý{öÝVª÷võVûU«mõ«mUmÚïUwwëmÞõzõï}­õﯭj¯[½u[Wª«mwn«ZêêíuZ½»km·o¯Õí½Ûû}úÕ[µVÝumêªöêÝjÛUíÛ¾Ûý½V÷mµUWm]Wµmo®ªªÝµÕ¿Õº·^ê»kW]zÕvÖöÞ¾½ÛW¯Z­Õ}oÛ»vûêê­ëö«ÚﺯUµZßw^·mú­ª×«Wº¶¶Õµ®Õ­îµ]×w{z¿×­[Ýu[÷m½jöÖ»Õoõ[kºûõ^ýÕjÚªõ¿UkÕÿ_úõ[V¾¶ª×[ZÛjÕk¿W]»ª¾÷«m{}UUWzëj«»ÖÚ»Ûz¶½mª÷­¿^¶î«kmkº­ëm}Uµ{jÕV¶®ÛZïV®íwëÖêÛvÕVÕ¾îµ]UõíÚöí¾×«ê×½Vªíúªõ¶íë¯U¿ª¯ÿ[õû«UÛõªÛÕUÚ½kªª­¾Ý×_º½zÛþªµ¾«ë_®Úõwko½îÝWý»õ×jÚÚývµ]ë÷׫þ·_×Ý{mmïW몯kmÛZ«½_WÕýUv«kVß«Ýmõ]u¶ª·»}_ÝV»zí][Õ½ï×^í­«º®Û{ÞµýÚ¾ª¶½jïÕU­]ÚÞÿw[êû­­ÛkUîµW¯«×nõÖºîխ֭׫j¶íºûVíêªÛ½¾þµm­Z÷·uÖÝÖöªëj­vúÕÕ]µ}oW«ºÝÿ]«^µ_Õ×^íUuþÝZ÷îÕw_Ûw×uÚ»mÝo^ï­÷êÛµW­Zµzªª·V­vºªöë^­UUꪻꪺÛjÛU¯îÞßU×v«kuwý{jµÕê·^µëwÕkݮ۫^½ÚÛ½ÝZÕmï֪뫺ê®Õßµ}}m_jºÝZÛ}Ý[·U[ö·Uu×jÖ½¶ö×ÕµVïWªµÕkm¯î·­Vªû]½Zúõú¾­¶¶î¶ï«ík÷Ö÷ÝzÝõ{{Vªª¯mz®×ªûVÕª¶Ý«{^öªµÕµíu×Z»jêÚ«ªÝ¯ºÖ½þµ­Þ¶­ªÝõ»k~÷õתÖßÕö«µ­u_ívÖ½¶ÿÕ·½mj¿¯jõ]Ú¯ºµjﶺþ»ªªÚÛÕÕ[ªëÝ]ëÝW[uuWwz×ZûkU­_wßjªßUUmwÞ·µ«Õ^õ}Võ½Wõj¿m­[VÚîÛÕÕën­Úþª¯õºªÝkuv­UVÕ^ªÖ¾½þª½­V¯þ·êöëõujëU{í×_ý½Zª¯ý·®ªÕkU®ÖÚ½ýÖëwú÷«nëªß~®«uµªµU×Z­]¿®Ú¿^ݯ^õWj®¯ZþßU¶Ö­­½z¯j­ën궵]ÕýÖªªµ]]wí»­Öµ¾Ûªÿ_ººßkûj×[uÞ«·W^õî«UÞª»­µÝí{ZÕ]_UõW­mëê÷Wª«­·Z¯W[UkÚ»}kWv×õV·ZªµU[½Wߺêߪ۶ß÷Vµëê­jºêªêÕ}[mv­{ªÛ[µûëUêªÖÞ×»Úý¾¯o­jªÖ¯êíojÖ½V®ÚîûníÕ¯]ÖÚ·mwµ[õnÕ{Õ½vµ­­u_ïkV¶Ö¶«½ßÝW[ÚºÖ·Zë¯WÚÕkW«õvë¾ëê­[wÕk«]UmnÚíVêÚ»vµ«níUÕUªõ«u­¯}ëÖªÕzúÚî­~ß×ת­kÞ÷ßzªºÖÕ]_m[V궶®µÝ­Úº÷_Uj׮ׯU}ÛWj­wUª«Úê««×­mÞªêÚÚÖݪ«zúýêí«n뺫Uªª½z½wU[j«®íW®ÿnï]~÷ëÖïë[W_Õõ×j­ª¶Ûªú×UZºÖ¿}~ÿÚûzÕº­¾úíZªÕ½jîëkk«¾«^õWýVª«««Zª·U}~¶ö¯¯µýW[VÛª®ªú­û^ª¿oû]íÕ­_zªµÿ»mZ»^뺭ëëv½UU]¾Ú»­m÷õ½ÿµwwZª÷ÛWV«ªªÕÛ®ÖêõÞí­«ªÕõê¶ÚªµöîîïÛ×^¯[«Öûn­k®ÕmÝVïm«»õö¶­Z×]nªÕn«m{ªÕ¯Õõk[ÚÖÛV®Ú«­Ö¾¿«¯}¯®­µmÕ«[kWê«×¾¿UUZÖÚÖûkUÕWmwmUÖêÚÿUªÖ«Uí«VýííVÝ­¯V­îªêûm­vÚ­Uî÷®ªê뵪ýuv«Úª»­·ëVµÕWuº×k®×·uö­[WZ»í­ëëý{[]­ÿmíU]î¯z½­íZúõµê¯wwuª·µvë]êÖ×VíVúî«^­Ú¿}»ÕºïºÖª»nûu[[½{ª»ní«jÿku~ëUo·z÷^««ÝV·«v«Õ»û½k{Õº»ªÝU^¯[¯ûö®í«Vê¾­õµµ[ê½ÕîÕµU­UVÖ÷uÛªµ·Ûm]ÖêîµVÕn½Úꪽ}õu«Öªß«ZÚµÿîÖöí}j¯õkzíu_»u·½í{­µ·UÛm×UuºíõZµÞ«vµUjöµUZ­[®íUûªµ«{îÛ­º»­ÛûZ×ëZµ½^»_mZÖµïkº½ë÷]Ýõµ«»VÿW»ºª­Þÿ«½õ[w_Zßm­UÖ«{®·¶ú÷ö­}·íj×­kµußWZ««vµê«U¯[¿®µ[Ú«¾í»ºª«UÞ¯]ª®ëªß»ßªµkZµ­«zßnþ­{Õíõ­·»UªßUÕÚý­k»UÛj×mßµ½]«ªµí¯jî·º­Ú¯]^ßWëÞßk­]»víÕõ]½ÿÛÕ÷»Wµª½öí}jý÷öû]¯­»·¶»}º­ªï{î»umuU«]UUªþªªúµÖ«½ÿ¿]êÝV֪ݵ«UUÕëoëk®ëmªÕjª¯[mZÛoýµzµmßµ×½­¶ªïvµ·ºµZû×v÷×í·ú·º×_vÞ­[WUªíê½}[ë[×_¶«Vë]_ÛºµªÚ®ÖõÕw¶µ®­m®­jÚ¶ïmjÕµWU»Vê×·«uÛ«j«Þ×ÕW}Z¶µÞ¶¶·v®ßÕÝ»]}·Õ]ÖÝ­»Z­U«Öïkû­ýuÕjµº«þî»UUÝö¶íkµ«[×¾¿^êî»ÝzÖõÝêêºÝWºî﫽ûk®ëkÕuö·«]W÷­V×þ­Wº»ëwj×ku¾ª×õ¶Ú¾öµÛ¾½­Õ·Vªªë[í}뫵ڷ]kÚíë­¯×Uj·vê×Uw[ëWoUëU«×VmUuõ][úûk_]WZªªÕ­jíµm_­VíÖöÖíßUªÛkúÝvû«®µjºö¿[WuVëu}o­ÖÕ½z×[_¿[ÝWÿ]·½º­««[þÕõmö«»·wUÚ¿]Uµê®ª®êûû®Ú»ëÖ¶Ý^®êÖõ[öÕÖíwköê÷Uß÷U¯Vû»Wëj­Vë¶Ú¶®ÚÚªµVﺭj¯U·Zý{këUí[z¾®õ«U÷k¶­íÖÚõº¯¯^«µÞ¶­¶õmÖµª·ë×U×n¾úÛë[^Ûöî×ß][­ê뽿UuëÛZꮫ½Uªý_ßÚ¿zݾ¿¯·¯Z­[^­«owUµm[^µ[V¯]}ï^·Ö÷«ÛÕU¶ª»kn꺿Z½ZÛkVín«Uµ¿¯UûV®Õ÷kõªÕ­ímªªµº­¯µûj½ýÛÖõë¯n»½nªº·]Wz¯ª½jÕmÖê«í·VÛÚ«oª×ßïÖÞ÷»­Umým½n­îë­ª·«}[ÚÕW}µjú®Û{Ûïû·¾Úïm­ZþªÕ{×m¯oWWm}ïw«ë·«ýª·mþêíõëouÛ­Vív·õn®ê׺Ýê¿j­ªïêº÷}W}[ýêµ×·WUµU«®Õõ»ïU®®ºúú­êªÕíëÖªëUWU®ßzÕõVõZº·îªªÕz­Z¾Úê¯}Wnªµ»]·Uµ·ukW«U¿]¿Ý·uúêõj¿­uuê»w]WWêú¾îúµªõzëZë]ÝwuokZ­vתõÕªµ{UuêÖ¶½n»w[V÷­^ÝVþºëªÚºÞ­Ö½îºÕ»m«z¶×jõ½mo×ë­®®÷WÕª·ívkV­wWUuí]ûï[í­õkÕêÕêÕkWZ·}^­î¯wmÕWVý×wÚÛ]m»u«]Vÿ½[Õk·[Ujª¯{«W­]·wÕ¶ïëºú«kÖ®¿Ú×zõnþªª»UV®·­z·íê­U꾫WVÚÛUZ®ë]ínöÕ]V·û¶¯ÚúíUª¯íu[«Z­}Õ­VÖ«½µª«vëê½j¶ëWµîµwVî«W[_ÿuW­un­u­Ú»ª®µª­µUj»j«µ]WjßÕö¿VµV«UWêÖíU~¿ÝWÚµUÚíݪ½µ~®ÿ껵¾µ[«j¶¿n­îÝ¿wk׫oíj÷Ûµo}Z½{×Ö«ÝUo»ªÕW·õm·u®ý_[jÖõuÝõVµv¯ëõVû­VÛ®íW]jíºýUkU[w÷Ú­Õ«ýU~»¯¾·{ºêµºêÚïoꪺëþë¶êÖÖªÛ]U«þ«×Õm×nªíª®Ú®ë«_¯o_j»®µëîõë­»Vêö¶úþ­kw½ë]¯ÚÛuûkÕÚ«¯wûûÕmUëoê®ßíýjëUª×íj®ïUõuuV·ýºí«º¶ÚªÛVÛßõu[UõjÕ[]ßm~ÕmµWmUÿݺ}Z¿]jÖ»U»µVÛnÛÕk]kUªÖõ[{ª¿Ý¶µí·UÛ·]m«×j­½zõ]Zí·ªµm_ýkªí­ª½÷ßõkkUÕ­]µuwkWÖÕVïW­¯{­Ý]êÞ­ºÖª«UÝUê«]÷UUUõ~ïjª®íî­ª»¶ú®Ýýmö×_ozÛU«êÖݪîÝU{õUÕWkµß®õªî÷몽ûZÕµªûm¶Úö®»ªºýUµÕZ®ê½¶îí}¾ë[º÷UWkûªºÞ׫ûÖÕµ}µ{Õ{}U}Uí·]Z¶Ú«ÝÕ]ë]Õj½««êªª¿}Ö×®«·~ª¯ëª¾»ï×[]Uí{ÿ¿ÞÿUkÝjîªÞ»ÕÖÕZëÞ¶µ¾Û[·¯[®µj¿ªë­^­íî¾Õk^ªÛWUkª×nµu^¶íÚõ¯wumª×êõkûk×Uw¶¿ö­ÕuUvݯõk¶­ë·êÿ[_õµ÷¾îµ[×µ¾ÛZÖ­Õ¶ÝêÛÝm]kmöºº«º«ïµµWVÖ»Uû]m_úíÖµZÕ×»ujª·þÛU[jí^«[j»oïw­¯º¯ë®õÚë[ÚÕ¯»öíû·kZÛíV¯u^õV¶ýÚ­Õ[÷ku®ýUnöÕ­¯­ZÚ«ºµUÚíVµªú·uµÚÛUmö¯kZÖ¶ê÷]¶­ÛªÛú¶®þ×[]¶ëÝÿ[[ªívõ½ÚÖê¯Ö¿ëªÕzµoºµ­vªÿ«»«jµÞÚöíÕZ׫Ýuª»m~¾ï·W×Võ¾¶­]µnºû{Uíת¾Õ¾¶ý_U«¶»v«µêÞ¾×þý¾½UZ·ÚîºöýUuj¿µ¯{VûmªíêÕ}ZíZúµUööÛ}·[·Vöݵw{Õª«Û»wU{Uº­uënëZ×µ­Ö­UÖõ­êª·m«j®÷¯«oz½®ªýoWo«Õ«ª½Ö¯×}kªÕ¯]µoêêÕm÷mÕ½UÛºõm­ëê­ßÕÕêëW]êµvªªº·kV¶Ûm«w¯U­µÛoï¶ÕÚ¾ëzíkWnîÝ^ºê­kzûö÷Ww_«j½zºíµ¯Z®ÿZ¯Öµmºûuª¯ªªÕÞ­µWUukunÚ®íU{}ûn¯÷»ÿw½[UV«ÕvûºÛë·¿UUjÕí[µvÕW­mWU­]jïUn·Õ[«Úµ×V»wv­Û}«[ÚÕû_»UV¿½u­«»êª«ºÛVßuÝ­o®Ú­êºªíë[½oµÝn®«}v­VºÚµ­¶«V·úªÕV½UU^®·ªÕ~ºÖþªºµj®êýªö÷jº¶÷»võö«¯j­ZÕ^ªÝ«­Ú«_¾µjÛV­]¾ÞÝVöÕ«Uû]m¶­ëµjÕ[ÞÕ­]z¿W½¶Û}{­m[Ýë¯u¿º¿_¿ß}jÚëÖÖú¶íUöÖºªµ]»U·õV¯ëo}½^׫~»ÕwÕj«µ¶®µ¶«õ_­Vµ[Z¿Uo[]këWêÖíÿªíkz¯­mþªÞµÖ×ÕíÞõ»ªêµ«kZºêª­~Úê«]Õë½­nµõu[mjªªµUvßÚ«mm«[W·ë«{õíºµ­Þµ­wZ·µokß«U««ÝmÕöý{ºÝßu¶ûnþ­]¶ímZÕU[íªµÞí·ªÖ«mý[¶­zÕVµU^¶®¯½ö¾«m»º®í{Z·wuõªÕÛvµ­uu­kn«®êÕÞþ÷v­[«íÞ»µ×zªÖ¶«ú÷­Wµ~î·jíZ­Zú¶­Z««ê÷V¾¿×ÚªÚ«mký÷mîÝZÛZ­[VºÕUUzý·_uÚý®µª®êÕz×U{ý¾ý]Woºþ­V¯ÖþºÖõª÷Ý­Zµª»ê·õªÝí­¿_WW«¯Zý«ºÕU}×o[Z×^­Öê»­{[ÕÝWÛU]ßµ]¯Zú­µÕ»þ×j¶Ú»Z­ÝjÝ]«zÞõí»UÕ]}UÕ®ÚºÚ«U¯mªÛWk}í¶®ík[}­^Õu_ª¯½[]¶·VîÖªÞ×ÚÕßu[µUÖªí{­ÖµªÝ­®Ûëu^Ý·núµ]m×Z­×n»½U»oûj×ëíWu¶«zÛÝ}ªµ«^Ýý«¶½õÕµ]V¿vªïín®þµumjýÛ¿Õ{j­UUú¿Ö¿¯úÝ~¶Õµm¶Ý}úïï_kZêëÚÚÝnµë¯­ëªímUkÕ­UV­{k]Ö»ê×oUþëêõUj¯þ«µû·_[V×ê¿÷Vªª­ÿUnõ®íÕ}ª­ímk¾×Ýk_õo«úïûnÛµî÷WoU{ïýZÕwuתªÖöµÕ«®¶ê꫾ªõêê­ÛUßjªÛuÕzª­¯ï붭U·]»­Uûî¯Uõë½·Umz¾ÖëºÛm½ukU«µº«VªªÚ÷µ­½º­[ZêÖ½·¯í_Ýz®õ×ýZ×^Ö«m]¿nºªÚ­«ªþ¶µª×[öÿ_]kWûU¾º×Úµµk}ݺ¾ÖÖ­×½][ª×Z­mßµ}[kVÚ·íWuÕ»mVݪÛõ^Ö®·W_ÛªõÕoµ[ªúúþ­ÝªÖ»õ½õõ[êí½ºÝ¶­ªýVµn»UV¯¾ûuõµn«UÕ·kµVïj×V¶ª¯VþÚ¾º®­­«kow«ªú­Ýõ_~Ú×»zÚÖÕ»Vª¯µ»mnú½ûm[Ö­^µÕÕµë¶î«¾Õuª­Z­^Ö»Ýj·Õm×ïUꮵýV­¯o[¾ªªÕVª«]n®ÕÕmî­êê­ëWª­U·]»­jêí{­µµºÝWZßí¶¶ïUõjúúí¾ïU®ªºÛ®½[^ïV÷w[«ukµV«íªµÚ×}ukö½z¶ºõõª×VïßUßUÿïUjºý]VÞëUUªµßõ»º·­íWu«]Võ®Õjßëmj·ou[ïVª×¶õín­[¯ÛÕÛÖª®Û]ÕZÖÚ«ªÝ«îµuw½U«¯n×nÿ~ëWÖõ¾»[ú­]ÛÕWknûzÝ_ªÝö»mn¿o«uÕk¯Vßj½kUZ½Û»¶µmª«Ú¾ímú»kuµm«omkÖÛUUUªª¶Ö׫oUý×VµUªî­_·ûªª­kµzꮶÛV¶»j·Û¶Þª½«õ½ºµuÞ­U­«ë¯½Ú¯o{[V­[ºª«ßUÚµUmn»Öïºî·jµú«VÚ꽶گÝû}û×_[õZÛÝÚµÕ­Z­nÝ·WUUjº¯×¶µõݪßo¯ºÚ÷¶ªï»ûßµ­«ÕWVõUªª¯n«U}ÚÖ¿ÞÖ·ªµÝõöÿUÕßíµ]­k·ëk[Û«ýÕkVëëV«þµ®»vµ»mµ®õ^½{ÖµÕºÕí{ýZ÷WU»­UmµoWZÚë½úÕ}nëzõÝ«­^®»k]V»Wº×Zµ­õ]ZÝ­¶·ªÕmkÕÛ[µZÞ×®ûê»VöµZöûUµþµ«ÛU[]nî¯Z×[U[ëU]wUWuÚ®­m]ºµ·]m®ýV®ª½Ýª¶õZö¿¶Ýª¶ª×Z×V®»[^½ú««½þÚí^×mê»uÖ×~«VµW¶î¶Ýj¶õº½Úþ®ßz­«ÕVÛª×V×µ[UÛVªÞÚÕ^õºÝªµw×õ¯½ýzîµ½k¯Ukn¶¶íUÞßêöëÿU]¿[¶¾ë]ZÛk_{nÕWUkwUVõzÞª×vÕvöÚ»m¯¯Zµ]V­zª­µÞ¿kVëZöµzªëmZ­m[ªÚ·]^ª½ªýWõV¾¶ÞªÖ­«µwë~û]×[V¯m«Uþ«Ý«µêÕÝ·ÝUWkÛv«UU»×U­êêÞê¶ÚÛ[zýoj»^Ö¯Uöî޵ݷv¯}Uö¾­vÖÿ¿^µ®ºÖíUjº½­u·ïv­Ö«_kÛªÚª»W}µUÝwúûZºÛ­­]jí¯]»Ý¾·Õz¯ïuU}¶êºª­µ~ê®Õ}ÕVêëÞêÖªµV«¶ª¿¿Ö®êÖÚê¯Uê­Uj½·ÚÕÕºöõUµn¯»_oÛWݵ¯j¯«kö¿]µ×þêµ[^­®ªõÕµªºÚöÛUZªµÚ®½uUýÕÕª½UÖ·ÚÕWÕÕn×km¿êÞ«Vª­½nµûª×ë«ýª»k»Õ»mßUíVµvïÕµUk×îÖ»[o½ýw«uv×µª«»UvïW_ºêÿZª¯µUÚÝU]ê·V«½]V«õmV¯­Ö·Vî­îßV÷ukwm{ëë×{uUjõ][«¶Õ½]WµªÖº¯ªöÝÕÛw­ú·uªÚ½ªªÞß¾­}ï«]«^ûªµÕ®¶ÛUþí}[¯Õwµªº»U{UÛU»»ujûU­_ï½ëÚûu^­U­Õ®êêµ¾Ú÷~¯këí«Uj÷µÕuUV·Vªßuªºªö½êªÛw~¿¿mokUõ[Z®ö«^õêï_Õýª«ÕíÖ®Õo­ê÷í½ZîßZªëV«î¶¶×öï«zý¯^µëµjÿW¶½nº®µU«ëmU­ZïíÖ­Õ_«n«®ê­W­]ï·_­¯{¯Zª¯jßUíý¶º·~¾¯­[mºªµUmZº¶®Úª·Z·®½mëõªÝÛ®ªÚ­m»­½nݶÕVûïjë«[¯}WUk«õÖµVö¯Õ^ûÕV½W[¾ê·ÝW}­[z¾®­[oUU«UnÝVõõko[_ÝuõvÕÝ×®­¶ëUÛZÿêöÚ«­m­þ×[¿W«{[_Ú­ëÝÚۮݫ­WUµ½Õ[Vê­öªÝÕªÝÕíjúݫÕn­^ïm[jÚÖûVµkëjí«}ÖµëUkZÝz·¿Þê¶×koßµÚ¶ª­{[zµ¶ÛUWwk­ëUU­jÞ»]íUª­oUU¿½Þ­ê«­moouU¯µjÛWWkj½uk¯Û{µZ­wm»ûﶽwm»]«Z®µo[«×ÝUÛVÚªªµ«WU[ëþ½ZºÛ­»]Õõk^­j¶ª®»®Ö¶ºîªµ·º½«ªê«V½Vµöõ¶ëí^·ë÷^µºõ}z¿Ý½võV®­múªÛºÛ­ÕUjë»kµjÞöí¿z­ÝjûÕ~«UVµuú×u_{®þµ«õÛ{[µZ­kWUW»ªïu}u}~öªõVï×í®õ¯~­uvëWªÕV»mî×ZÝÕj¾õV÷Úªýk]ª½·­Õ_«Z­nÞ­VÖµîÚª½]ë÷uµº­ÕjµkoV·­÷VöÚªÚª¶ÛÚ®ú«VºïummþêÛUÞÕïÝkÕ[Zºª½k«Ö«VÕºîÚ­{õZ«uu[u×uª«Õjêû×{oUoW×u^½{{uÚíµªªëw×µë×kº«w·jÛ¾¯Z»[ëuokÞ­­×[k»­»UVµ¾«]Õk{wjÞÖ«wª­«mvýþþª»×Z«Ö¶û»úúÖõ]÷®ª¾»om×n¶«îªÛ{Ýj·ow×ꮶÿvµÖ¾«µµz׶íW«vÚ«U­]íoW·oÚÕmë÷µU]ÕÖ¶ÕV¯ê­nÝîýZ½½Vïû·µZ­}^»«×z»W_ºõ­ví^õWÚ»ªýµu×jê¯U­«Ý«îµW]ßUº¯U^Ú»uµkÞ­Ý^ß½«^«­oíí«ÚÿwûukjÞ굫[V»mëVÕÖºýkÕ»Öµ_WWµ»Uý­zÕUÕUµ~«këívÛ[Vö®¶×UUV·«­Wê¶Ö«mªïµ«×kÿûö¿UÛZ»[uõµ~Ý]Ö¿µoÚÖ·î½µWu^»¿ÕÕõÛí_ÝþµÕímj¶­«­Ý­ªõÕÖ½ÿjö«^Õ×}jÖÛkj®½}­Õ]ßÛoÖ®ýº×mõmÛZÖ¶¶êµmo«¿z­kî»ýW»_V»Uvê¯ÖºÞ­Þ÷]Uv«Uo®­okµµ×U®ÕõuÝ^¶«WZÿUU굺êÞÛVÕuknªªÕuªÞ®í½j½ou^ÛªÚ·[ZÕkþ·¶ë}ê·­µ­®ª«Õ^ºÝo^º»ëU­ºê«½úª«^Ö­×µö®¯}W»¶Û»mWoý«ªëwÕ[»×VÛVÕo½uU½úêÚïêÛU¾íïýývíï½µµwík~ú®«k«¶ª«¶«»íWwÖÚí]õUV·»[uõ_½®ÖÛV­ÝÚî»ZÝ®ªµk^«vµýêëÿVµûÖ¶ºÖÝZ꺿_¶ëwÕWµ·Uw¯Öí^ªêßjßV«­wÝëÖÕ÷êêª×[Ú¶û^ÛµÝUÕÞ·vªú«ývúïZÝnûjû}U«Vý·]¯uÕuV¯U[]UÛºë¾×µý_ªõÚÿ½]u­m]j÷jõWÞÖ¶«­µz¯}«U½Uþº®Õ¯mV¶í}ÕºÕZ¶ýßwÕþõoWz­ú¶«ý­W}UývßÕ÷­vê«»ëmö«uWWº¯u]^¯Vª·ZûUÛÕj·½}Õ«÷]­¶íÕo½WÖ¯õ«½®õík«^Öê½[ë®êï^Õ«Z·¶Ú×oVßÛ«Úúëë÷^ÿ[[Vµu¶¶ú¶·Õj­ZÛÚ¯Öë{®ÚßþµÝ«v½ÖÕ­vúíuZ¾ÕmZÕ_«·ªÚꮵ]n«]ª«­Zí{WZ­»µýuVµ½¶½mU­Ö·«¶Öö¾íªûÕZÿZ¶®ýꪪ»]{ûUÛ[Ößµ[o_ê߶֮ÛU»UVÕº­[«¯ªºõkªµ]Õmmݯ^íjµû¿Wvëj·ÛßµjÕjÕUZöí뵫íU]­}]ºí_µ]ý½·wª¯Umº»Þëku¿]][Õö×jûkÞÕÝm«¾ê«½îíµµÛ]«}mªª­w[«÷×­Ú«í·ª×Z¯«¶×­}W¯zõÕ×­Ý[ÕÖÝ^µUkjÖªÛ­º¶¶«ê®ÕuúÖõmUvµm]Û[­ÕÞÛk¶º¿¾ß®µV½ë}Ú«Úª»nÕ[ÕZ«»¯Wõ×n¯­Uµû¯¯Uu¶ÝWj»ªíjµmzÕuV¶ÛÖ­êú¶Õoí{×[WUîßU½UÖª«ßý«­]U^½n׶Ûj÷jµ[õ«­zÕ»µ}õÕZÕ­k~ÚÖ׺ïm]j«_U»}kÕ^÷^­·Vú­UVõíÕ÷ýúµë_uªÖÕ]kÕ·«êýV¾ÛÛ­þíUªë×möÕ^öݽmV»µµ¯þÚÕZ­½ÕÖÞöªÛµõ­kµ­¯íVêÚ¶µZíVýUWWm­kíjÚ¯«VÕkvë^ª¶ïV·jÕuU]Ývê½®¶î¶þÝu[k«Úú½W¯UU·ú­êº«»oUuêÞ·ö÷ÿjª»^­ZÞµj½½ªîºßßÚÛZ«wv­ZµWk»Ýëî«­×êÕUÖ¿Z«_w­Ö¾¾Þý¯m¯mÚßÞÝ^ý÷ú¶ú·ªÿZ¯íjöÖ®Úúµ[u{Ú»«·ª«Zú«ªõ~»U»Z½®ÖÖ­jî«{k_v­Z÷ê½ÕÖ­kµuuwUoujÕvûU]ßkuº÷õÛU_ª×Ö½^ínõÕÕ÷ýUjÕ®Õvª«]zÝoÝ÷owµoUuíZÕWwWï^µµÕúîªî·úÖÛv«½j÷½õkU[ý½kµkÚ½mÖ«kV«ê½^­^íkmªÖÖýV«^¯Õwv«Õµªßû®··}µÕýêÕ«¶÷Z»¶îµ[]}½[nßë»VíVµoîß·­ýk]×ZúëÕov«}]¾¿u몭Ý׫[­kõµ«Vý[j½­}uª®Ö»×U«ªÚîý^¯jÚÕVÛ×]ºê«×zû»½ÞꮺëUÝ{ÛU¿«­UW]kªÝ½Õï_]µïëÕWuÖ®µ}köºÕ®úÖ¯VÛ_ýkîªë]ýk®Õ®®ºï½íUuW÷ZßVªÛ[}íï[jÝïÚµ^ºï~«®»ÖªÕZ×k®«U]Uªú¿Z«µë¯ZºÝw_ZýÚ»~­ZëöëµÝµZ׫öº»êÕUUWZ«×VÕwkî·][Õ®íV«{kªýkWWjÞ¶­kj»ª®¾ö×unõÕßnÛUzÕûjÞê×[z½jÕUÝoûk¯o«¶»výZ÷Õk«­_^ºõn·ªÛn®­VêÝö¿·kêÚ­W[ª»µZú¯»µnë®ÿ½«¶­Wwö¯UVíÕµuUÞ÷ëÚ­U]ëkÞ«Ujö½_V«¯o»ÕU¿]jªÿk¯VÝ~×j»µ¯m]V¯­ëZºî½UÖÞÕVí«­¿k«µÛ]n­·jíµµZµo]m{µÝm®¯ºµ«Uµ®«µªß~×kWV÷«víÕªêÚ·µõ­[k¾ÕVï_Ö¿VÚ­º¯U®­vî·ßõU­ªÝÛ½k¶»¶êÖµªûukÞîÕ[Þ«mUU«mVþµZÚª×víU¯Wëîí¿ªÝUW«µz«®Ûn»µjþ«îÚÕ«·êݽûÕë½Õ^º«}WU­ëÿ­ú·×z«v½µ_Wí꿽¾ýU[WZÕ«®ªÕÕµµwëµwµíkÚÚÚö­u[ëWµ{«m^¶í}W~Õ[}wÖµÕµuu½»®¾ëÿj«»U¾Þ®¿}j»ªö·uïm««®ú¶­µëWZÚënþ÷µj­Zý»µê»vÖÝ~­W}zÚÕn×~Õ{[W[jï×zÛ{÷UuÝ{oUÚÖªª¿½½uu]kwWÛµ[u¾­UÚºµv÷¯½ÛÕª«{jí®÷kêÕZöö¿j×Wu·ûö«kÞªÛz¯õ][^÷Ûª¾õ×÷[®¾ö½m^½^÷ÕuZÕW®Õ­V«÷]uzýUÖµÖïj×öï¿WkVï»Öªªí_û«{úº×_÷w·Ö·ÕÕW{V·jµ[j¾ê­ýÛWkîßu¾¾ßªêý­«­ª·íëÛ¶ý«WmÖþ¯u·]Õª«Ýëêõv½êÕÝk[Vº»½UV­í{VîöõoUª¯ÕU»Úú­ÚÚªÕ·[^·º»ö«µõ^µW··UÚßv­Zª¶¯Ö·»moÞÛ_úµª­êµýº­m]«ÕÖ«k½uößWU_nÚÕêë»ëÚº¿zïêÝ­k{Wö­kíZÛwVîÚ­Vµ«Õ­m»m¯¶»¶õUÛÞ¶ÖÖںݷªõW~îµkú·VýUm«ZÕo·kÿV½÷[íµjªÖöµvª¾×ko^¶Û{VÝ­k«uÕV·U÷]úÛw®ö­ªííUßjµojݯ[·^ª­ê®¯V««^íõ[VÖë­vª¯uZîëUuzꪭõoÿ}Õ_µUÝmv«ukëkµV®û]nß®õWu{UuµÕWZ·×¯­¾õzûoumu¾»uÛ¶»÷ª«_ëíÕ÷[jëÚÞ׺­mÖ­µw¶ª¯V×·­ê¶»WmkZû[ëu¾ë{U[Ý­µ»ÕÕ÷ú¿{îõZºÖµ­ß½{»½]í¶öµ¯íõ_}ku¶Ûþ¶»nõZµmUz۪뭭®Öß­­U}¾ö®ª½ÚÛkuvÛvº«kíuW×kkw¿U]õ{Úª·ªº÷ÝUÝ¿_k}­îÕ_jßUÞ»Õz¯÷õm¶¯U·o[«^ª¯]ëÚ®×õv­µZ¯~÷®ºÝ·}v½úª®ºÖõ»U«¶ß«½ííö·[ª½}[­­Ý}ëW_®«µu×VÖ­ûWëë}j·ª»kÿ]ÝZªºÖªÚúÝÚÕÿÕ¿[úÚ·zµºí«¾Úý¯ÝVׯޫª«Õ[j¾¯¿wªý­ºöê×׫ÕVÛµ}¯ºÕ{ªÞî¯Z­uïÚþÚ­Ý®¯¶íUÖµv®µÛZ¾ßVªëkõZõݯ]mkUÖ×Ý[V½okگúÕVî÷}m^úí[}j»]ÛkÕ_ý]võW»Ûª«j­­z¶­UWVÝÛªÕ[ª­nïW{×ÿmVê·^®¶ºÛ¶Öýußz­íꮵjÛz­nÛV¶ûVÝÞ«WªÕuõÕw·×º»uµ«õ[_UZ·ëj÷}^¯®ººêµ¶µUuÕýª«­ÖúÛwׯkZß«uz­^úµú¯n¶­ÞªëmÕzëëÛ¶þê×·m½ÕZªª¾®«WÖßÛU¿Ú¶®½ÞûºÕjûw[ª«m½Õk[ï­k[m¯[­VÕ]jÛVÚ½Ö·]¯vµ®«u{Uë{wn»ª¯Õ¿V·º«÷}zíÕþ­{j×í[«Ý]m^ßZ¶ïzתßû×VÕjµ[ÞªÞ«j½]µmúª×¯W­ÕZö®Û¶ªëU­U[]«Úº«k®êÚûýwZûZºêê÷ºëê«UµmkZ«¶Þ¶ÿz­®îë«]­ïoõ×½o«í¯­nÚíoWÕ{í«uZúÕ»¶×~ú»^Õkv»w{¯Zª¿~Úº«{»u[«o¶µ·«W»ªµ»U«ÕujõmUÖݵ뺫ªÛë^ºÛUî¯ö½«U«ßªª·ö»UÝ×vÚª½ßÛwß}«[ß·­Uwµîÿªº¶õ﫺ꮫõ¯µ]õUo®µ®Öµî®º«[×Þþªë}ZªßUµÕúµ×kwþ­U{¯_úÝ«~ºªßÚ»uúÛ­µ[ÿÿ^îµ®Õo}­UÕ»[ú¾«ZÖõUÝ_W¶ªï«Vªµ«õ½Z«­ÚµÕûµµ«ÞÕݯ[o«ÚÕÖªÖ×_U_U]^½·ûmõ¯ZýWjªÛºÖªëZµVª»×vªÕ®õZ·u×wUku÷uº­××êë[Ûmë{Z«÷ozÿjÕj»õ·{Û]«µ«mmú­U·U¶¶ïZÝõjõkZí[Öªí~µ}Þªª«un½[µZ¯õ·×µÕÕUWªîµ½mÕÿ÷Vµ¯ê¶ÝmU]½º®õvµWozµu­Wªµîµ½ÛZÿÞ¯û^ÝkßÛ×­oµµUVÕ«[mÛ·Õµ×^ºÛÚª­_[Õwk[×®ªª·Uj»µ»ºím¿¾ß«m}Õoµ[^»·ÖëvµomÕëÕ¾Õzª­~Õj®ª×ÝUW»VÕWÕok·^«®ªê«Ý]{¾íZÚµ¯ª½]oÛú×v·»ÛÕjíªÞ·Öª­«j½~ê×Ö»zÖ·Ûß[õuVþ­jî­ºûj««»{½uÞªÛ¯­mª×kÛí×·µUÖ®êÞÿu­v­_]Uµ^í½·]«Wú궷ªëVµjÞÕßÿ^ïÛo«n÷ojÕõÚ­¿UwUµµWU®µµv­­v«­¯¶­~¶ëVûU·}ªêµuÕêÛV¯{Z­U}m½ÕíW~»¯]»^ê«ßê¯Z¿Vêê­ßÝï~Û{ëÖµnÕv­¯ªõî·þµnÚÿÖõºúªÝWU[kU·VÕ}[Z­UîÖºÚ®­ÿÝoVµ·íߪÝ[¾Ö¶×õU[jÝUë[Uêí«Vº®û­U_Vß[ý­¯ºÛuÕ_wÕU]{_U¯[WUj»Ö××UkUW][ö×ZÞÝî·ío[½··v®Ö­v½WªÚÛV×Ú«ºõ{ºª»u­«½UVª­ZÛZµ][^Þ«}nÚª«wöª»j®Û}ÿmªµUÚ¶ºÖÖí®ª¶º»]Z¿m½ë[ªÕ÷­[õ½Õnºªµ·UýU·UêÖÞµ^µ­Wuk]õýÞ¶ÿ®½V¶ÖÖÝjÛz«ÕUVïjÝu[ßÛjÕß®»«¿·ví^½½­µ^ûV¯u×ÕV»×]ÕúµÚ¶¶«U¯Õ[ÕµU^ªªíV붪µÝ­z«ÝëWUwjÕ}ªÚío]ZíÕjÖûj÷kUZûj­Õ_Öö«V¯Û¯^¿m×VýßVõV¶«Vî­UÛ­kúª¿_wÚ®¶Þ¶Ýí½ÕÛ¯W½ë¿k]­¯­Uµ×Ýuýw[õ¶«wö¶«»]n«^«~«z×úïWþ¿jõëþµoUukíVîëûU]jíZݶ·¶ÕWkêÕµwuí»VöÚïú­[ÚÕ¶í¯ïê­n¾õîß]¶¶öÞ¯Uz«vÞ¯µ½jÛVÖêÕ꺫_«nÚÕZ«w}o[ª¯{kjÖ׶«uÛÛÝÛWÛj÷~½ëVúv­Õ×[{U{k}×z·oj«}×Þ­V÷­÷­uw^·Z¯}ºµn«]~µ_Vµj믺×ê«ZÕV­»Ú­Uö®¿k~öûïûZ®õú­ª®ª½½ÿªÖ»kuÖ¾¯­Õw­v«WW·«V¯µwV¶¾ÚµÞÚÕ[ªÖ­õëúõª­]×µªßÕmWZ«í«ïmµUw[½ï~·]Uúûvþºµ­oV¯u]uVÕWmjúµ_V¶ÝÖÚ¶Õu­mÛû½¶µÝªûW_VÝõ}mVÕ­ÞÕ¶ÞíjÕë[»»µª«]Õý_jÕw׫­W½õvêõuU]muW[mV×ݯowõmm{ª«mê®õjß[Ö®­Õ«{Õjÿ~Û·uw¶¯Z¯kÕ[vÚ¶Úëë~ê»kn½Úª×jÕ[Zë]­ýÕ{[kíív­j¶ï«[[u[UÕúÿ[Vûµv·×«u¶û{íVõê­«^êÛ^««ÖÞ¯Vß_Z«[mVêíjí[Ûª·Ú½knµZÛW½}U÷UZºû­kjªÖ«­­º·oµZ¶­UUõu·U½ýµo÷k«V½®ÕÝÞª¶êµ­·uªû»V¯î·«zÚ­í_êÕ}¯z÷ÛÛW¯UµVµwo}ªÛ»]U}UîÛjº×V­¿Õz¯íU®ïjÛUUU×koÕÕ¯­úÚÝÖ«Zë^ºªÖªëwjµ_[[¶ÚÕ«WVª«]õ×»mýª¾«k]õ]½muj«µkk»zÕÝUVÛõÕZëÖÚµ­uÕï{ý»nõkV®í^ڭ꫺¯­úêµoZíkÚÚÝmmêÛÖÕ½êêڪ߭®½]ï«ëonµî¶®·UU½µWíuÖíÚ«¶½o]v®íkÿ[uZÖ¶ºßõª«^¶¾úµ_^êºÛZÛm]wz¾ï¯[ujÛµÝ]·]×Õ¿V«Úõ«í_µõµ{W_V×Vª½zíUµ_­«ûw¶ïk¶µ·®µëuû®ýuým·¯uÕkVî½Û}Vëj×mUº·×wª·ëêêÕZ½Ú·Z¶º×«V¯º­ªþªûÕUuµmõµõ]ÕUûWµõûjõºêÚ¯]kW[uµú«]êÕú­ªëV×Ú«ÕïýuzµûÝë«êÖ­]k««ûvÚ¾¯¾«÷µ«}ïv¶ßUí½Umºµ½_ªê÷]VÕUÚÖ¯v¯Õ}Uëû«êݵk«¾­kWÛUWv­­ÝjïêßíµÛê¯v¶«½zÕת¶«¶ªÚë^µUÿýkUmZ¶úÕý^í]Uµ­oÛ«ÿÛVª¯ÞÚ·WõU^öÖ×¾½ú¯µUí­{m}ÕU­VÕu«U^ªÕ¯Zºë½U[¿ßZîµWWûï{ûuÖµv¿¾«jÞ÷UUß]jêµUmöÛoU[«Uw½oê«V¿­u«^­ê»}m[íÚý®Úþê­V»n®½»­VûwZ¯«WV«¶Õjºö«mêÚÕë®úÞ·×{z½U»u}_muª¶í¯Ú¯]«_Uÿ»¾ßj×_Wª­mUVÕ­µÞ«­·zÚþªª»¿úÖõUVªÕõU»ïvµÛoªªºëWªºÿokzÕu¯î¯]¯®­kUUZ«}ë­­[jí^íkíºÕjÖÕª«Z÷U[ÕÕ«­V÷¶Úµ]½v«¶êµojÛ[­UZí_Uunµ{]W·ëmÛïwj»mzõÝ®µíUµ÷Úݯjµn׶¶ýïZûÞ­V®ÕZ­Wo·]¶ªÝvÛ¯Õ¿½}®¿ö¾Õ«oUÛ]Õ¶¯ú¯Vïµnë]oZÕWu½WUöµÚÕÿU«_Õªý[ZõÚ«}Þ½û_W[ÛªÝn­ª­Ö­]«»Ý­÷½UßU]zÚíkõwÛvªµÖ÷_uªßvûµ½]oïÕ×{}®ª®í^ß{Uë^îõ«¶íj¾Û]µ]u_o_«nú¿µ×«]u^¿«UWªë{wvê¶öª®µîÛ»µ½mÖ·¯ßýk­VµÛ»[U]]Ý÷½wZ¯¶Ú÷ßköÿoW¾¯o«V®®µu}ÖªÖ­îµ·uîïjÚõ¶ª­uÞ×Uu{»ºú×Þ×[o¯Uµ_ªÛïvêÚ¿k¶×omµZÕ}jíUµzë×~ýVªÕWUuzÖ½«Þ¶¶õõßÖÕoZþ«n·µUWª¾Õ}ujë¯ZÝíÖ«íªëuê¶ê×Wjö¶¶ªÖÖ­m«}ëû¯Výw][­®µ]W¯kÕֺݵ×oß»VÞ½VÕ·uw­î®úê¯_][jºÖ¶»÷­kv­·}Öê×[{u]_~®Û{w·VªÕjÖ­oµªª½«Uµ»ÿUUûoënµnª»^ý·VþÖú®ÞÕkUÖÚµÝÚõ[o«úÖû÷ÕmÖöºíÕkkÕººµ­½Uö­Z¯ª¶¶ýkµ®ÖºÚõ®½u­Z÷[ëõµö½ºê¶­Vªõ¯êþµík»U[W­U®í]m­®¿­õ[nëkmz¶ÕjÚµoíÕ×U{Ú«¶ª®ªºÞ®¯V·Z®õjßÞ·jÖÚÖööë»»ZÕ}UUµÝ¯·¶ºîÖÕ[j¯ÕÝU»W×uokUßêþ»­WuõµvíW_]õ­¯¾¶×uUêëUj×ZÖ»WUÝÞû_kûת×ZµÛnê¶Ö»WZíß½õ¿·zëuÝo®ï»^­UºëíZ¯ÿ¶«j×[zõ½»¶ª»oÛÚÛW¾­ª­[WWU¾ýÞµÝõj­ºµ×«ßkUvû]·÷m¶¶«V·]kWí]½µÚÖ׻ׯ{U·Z÷Ú¯vï»kZ«j«mª«]u_¯«VÕj»jÛ]V¿ï«m­júºÕ]UWýj÷»µ]í»u¶ûÿ]o»[Uïëoê­¯õ[½oþÛëkVë·ÖýuÕ]Uï]Z­¶½þÛ]mVê»z¶êÖ­ÝmÚª»_ýkmV­Úªýu­­wjªízµêÛj÷ª«v·ïÚ­võvêªÕíº«êÚõVöÚÕ«¯[ª­]Zíöº½Vªú»¯úª¯ª×V¿½}Zëu÷º»«Wínµ®½«öÞ»Úª¶µ­Öµuú®½m®«Uj­m¾¶ÖµÕm}uVþº¾ú­_kmÕµ®µ¶ý«j«ßmUÕêê­zÝöÕÛuZ®ÚÕnÚ몵¯«¯U®­[wõÛvêµVÖ®­movݶÖëmþ«{kUõ׶ÝÝ~µëkµ½ºõUjÛuº«íýUWú»~ÞßWÞ­Ú»ïw[u]Õû×ÖÞ·õïý]¶µ½U¯ß«n«¯}õj¶¯ªÝÝö¶«Õßö«ï¶ª¶®»ÚÕUîµVµjÚ׶¯­­Z»WUV¶ªµvÖê«nº½µkúªÿzõ¿ÖëZý^ÝuÕu»­®ªµmÝ[}u_Û«]ºõ·½­ÕÕ­j¾êÕ×ý¯nöÚ¾ªÖﻫuzê×^ß[U½½u®ªõuªÝZ×_[]w¯n®¶·¾Õ«UouwjÚí­[×Z·Wû¾®ªßwvªõí]n¿ªíÞïuµuµêïjîíÿ^½jºý[®ªº«·o^ß}}ׯµ·nÕ½uëïZ«V½_µnÕZݪß{ª­U½õ·µkÕýUUU~êµn»V÷u«[jÛuwuª×ªë­®¾­uoµU^­[^½{UUÛ]Ú¾¯]µ½}mÕmýÕn­wun¯«U­¾×¿Vê×Þ«Wöíªï¶«VÿuZÕz¶ûÖ­Ý[kvµ­þꮯï]W®®­õý{ßÚöëõ½]Õ½¶ûv×÷Wo­UZ÷Vúî­}úµ~ªöÕ­mVµovÕUV­Z¿Vªª¯jªíþõZ«[w}«÷×Wµ«Ýêþ«jï·ÕëkªÝ[­u¶Þ·­­ª½®Ú­^ëÚ½ö×UV«~î÷û^úÛ]ªÕ^ûUmUW_z·UõkÚÚµÛ×UöýZî÷VûkmݯÝjµ}z«×¶ëÖ¾ÕmUuU[W^½íZÝVªÖî«^»½u½¿«}mUwV¶µ­Õz«í»ê­VÝ[ª­×Võv×µ­[kÝU­Ýu·[ݵVµk[¿oÝ«ª½U^í·j·µmõuÚ«ºÛz÷]nûê­nÕªµ]^ë««n¿][Z·{«jÛWº·Uת»Õêµõ}ïµuUZ¯Ú«un×»]¯¯·«]u¯Õ×^ûuj«»uzßÝ«Ö­ÚÕ·uZÖªµjº½ý}Ûö­Unÿ¯wz·×÷÷«êÛ_[{ÚêîÝk¯uµ½ëï[][­õUõkv¶·½mîªÖ­Uu]«­ºªººªî®«ímnÝn­w[{Zëj¾ê»îö«¾½U­{míkUuv×WÚµÛºµ_«öÕ]ýoÕ·Z×»uö¶îÛÕõ­»Vºº½U»{¶õßÕmZ«]î­®«nªÕVµwkVÕÛu{W_U_{VÕÛÝn¯­kmUoªíõUo®öÞêî«~®÷¿m«V÷Vªê¿níZ·Ö·W꺶íªÖÝö­}¾«[º¯þ»j»UU¯·mÛVêªÝÝomkW¶ÚµÝ½îÛ_uþ­^µW¶ª¯Uªýݶê·[}«jµ[~Þú«VþÕªÚÿ]UW¯ou]Z×î·ÚÛöµµn·¶ªÖ·êívµÕm¿µv¶Ö»uÖ·××UëíªÛunýîÕ­Zª÷­Õ»UêºÕúö­ïú­]«V·_®õ[}¿×µU½êºÛíë­íkÚÝUUUuj¿UÕ»úº¶îµ¾¶»µmW®«ê«m_V»V¯½_»uVݾ«Võ½}¿õßUÞ­ª×úª×kn¯ÿõ[^¶ÛªµîíwÖ«mÕ«Ú­vºÕV»ê÷­«Ú®×Úµz·µz®ÛõZ¯×ÛÝ«ÝUz¶»»­UV­{×­­ÛÚºÛUW×Vªª«·®µÚ«V÷_UZªýݯÿú­·ZûZÝUU[õkUÕ}ªºÕ]Wµ×½uj¯k[ÚýîíWuÝZÝ«õ«úÞ»ª«®Ý]kªþµÕÝ[»kÞýºÖÕ^ëÕVªÕ¶ý]ºÝª·­º·¯­V½ûªÚ·W[ÿúµª®Ú¯zýß{ªÕÛ×÷­­^ëªÕëW«_ÚµVêµoÚÝ»õê¿UnÞººÕªë«]Ý­®«ëUÖë]½u®ÿj¿m¯ÿ¶Õ»ÕV½WµVê¯õ_uU[¯¯÷¶ªµkjû·U¶µÛ¾Úµ­W[û½ê®«ª«¯×Õª¾­ÛW«]ºÛj½­Ûªö×þ¶ºõjë]ªë­ªÕÛj·í­ÝVÛºßíë¯o^ÕWµ»ÝzÝÕ¾µjÚ®ÛÞ¶Úêꪮ»w¯í«^ÛU}nëkÕjê·­µû­×z¶µV­[oW®íöëUª¯Õ¯}Õµº÷íU[ÛZê®ýZ¶Úº½_߯o[V·ví{ÛUÞ®ßuº½¿m«¶­ßÕZµµUnýµZíêúêÕ»Wõz¾¯mvª­W÷õ¯µ¶«»»ZÝV¯«[U«z¯­þº½]Þî¯kÚ¶Öú¾ßWv«n¶µ]®®«º«­UVöÕ~»Ýµ^·ý[õºíw«¿Ö®½Ú¯W]ÚµVÛÕ¯~¿Z«ë¯Uµjªµ«}j¿ÛV­·]¾Ûߪ¾ª«zµýׯUûöº­]¶º¾¯ö¶¶«·uÚöíwÖ½{Û­Ýoz®¯¿µUU¿µVÿ^ÕZ­~þªýumZµêîÚê¯ßí­]­¶®ú»«zµWV×kÚÝ]Zºª®½]U{êö®Ö¯¾Úî­ªºê­Ý­w¾®Ý¯Öö«zª®ê«öÝ_ûúÕVÕíª»]}÷×júêÚ«{^õVÝëwvûªªÚª­êí«k¯­®­wkUßõoUõjý[j»vöª½U»«ïª­÷k[j­u­»k×껫µZ×WU[ªê­]»n­õ]Û¯¾½×U»êßv«µÝºÖݪ¿_UWëoÚ­n½·îÖë{¿{uUµëÛ꽶­Vê×uWo×µµkzªÕ{«[êÕ«[µu÷[Vûëz­Õ]µíkWU[ªÕjµv«ÛUªººµ~«^¿}uUZªºÕ½UuÛUªõU{»·jöÚ®«õWßí¯[WmvÖ«­w×V­úö¿j­}êõjïVõZ½V·êª«vûku­êÿºúþ¯íëwZÖ×uÝz×uº½¶·­«kÛwW[ÖÖîÞ«]¯ú­]ÕwUë¾í÷«Z«ukV·UïW¯WªªßkV­[ëu­U«kÝÖ·m{µWíõêßZµ]UW»}Õºú¿úÖï¿Z¯õ×îîýÕu]Ýý¯Z«Uªª»}vïk®ßmvÚ«­­mëZ«vÚÕµkÝ^Ýj×]^®úÚ»­«WVýZºÖêÖÿ¾®ïjµZ®ÕUmuÞÖµ^ÞÛk¯uªÛÛ½n¶¶ªµWÛõ¯í­¯VïW¯»z½ûêîµZ¶µ}jß[{«WukkoöÚ«µVµ{W«õ÷ï}UÕVµêï{V­ZÚµ»­¯ª¶õ½«µ[·µöÛªµÖ®¿ïýV®ª®ªªª®ª¶õjÝjÚÚö½½^õÕíWu­ÕõÿmÕm[îªß}ºª¿ºÚ«U꺵Õ]kZ«u[m«Ý{vª×UWUUWõU¯­Vê×U«Uvºº«îëkûßïWUVº¿ß{­íÕW]½kï·jý¯muÕÖª«v½[VÖÖ«[­_}Uï}uöª¯m¿Ö¿[ïn«ukµí¯v»v­û뺵®·kZ½zí­ÕZ×wë}ß×Õ­}]·¯®ë¶·kíw{kÝmª«êû·õ[UUU^õ«¯[]µkUªºµÚÕ^ëjêºúºõWµîíUU«oÞîÛuߪë×]÷µmº¶ªõ{W»öû^­U¾íöõU½UõÞýz«WU­Ý¶½{¯Õu~¯Õv¶ªêêµ[ßmvªµUöªík^ýUöÖ­z­~¯×o]®½vµ~ÝÚÝ_ÚÚ÷o{uºº­w[k{VªÕ]}ÕWojµÛoí­¯Uk]¯_ÕÕ{»»{w×k«[ý¶µªµW}kmWj®¶®ªíkºÛ}mªûV·ê«m]í][_UÚí[í×u¾Û®ÚµÕ½ý·ö½ýÕªõuÚ­ß½î®ûVûîîêú«¶µozê®þÚº·êõÕÝ}««»}®¿ú¾¿ª·Võöï[º¾ê¯«V«­}V«ÕWµV«Vºê÷Û«Uooµß_·Õ­WUªªµÝk^­ÿ«ªÖ¶¯Ý®­ê¿v¯»¶¿×z­êêíÖ½µÕ[½W½jÕ]W¿ºûÕ^ÛW_umwº¯ªªþêµvë{¾Þ»êë­[êÛÛ¿Ú¿ª¯]­»Öí[ukjºÞÕj®ª¶­®¿}vöº·µVºï­_uªÕ_wíÖ»UÝvýk·w¯÷»j½¯½]ºµÛnßÕªÕuõÕvÿþº«^ªµÚÚºµ««^þÛ]õ~­Z¯{zë½Û¯½Õ½ßj­u­ëuk^Ý{UUU¶ê­µvª­u[kµUÝw{mëUµ[n½ÖúÚ«U¶ê®½»v×ûkjïûUªýVµVõw~¯~¶íV·WuW¯WºÕW½Z®ê½]¯w«_Wÿu}kÕ^Û¯Ú¯«oµ_U÷×WÕk¶ª½¿^®½ë]ë]û{jêú­}Ö«·vµuU[«­ÕoV»W¶­WÖªö«íªê­m­j®Úݵ¾ïµ¶êõv­õ]}ªªµuzÕíuªÛ½W¾¯êµêÛµ»mU½UÖªíuöºíúõzª­]«Õªík[U¾­n·ºþÖúת·úÛ­¾¾¾·}wk»w®ªºººöºÞÕWï[U·{Õë­½{ÞößÚÖªßõ«ûª¾ÝUZ¾¾­ZÕÛêí¯ªº­«{w}^Þ­ÖûÞª­wUnµU×mu½W¯÷UõÖõUºêêýjö»UµÕµª­[U^×·­]¾¶Õ·­ªímZö׫ÕÚÝw}¯_nê«ÕoZÖ¶½o^Õí¿kÚÕµöª÷jý[[Ujµ]½UZ¶®ªûöõo·[muÚ«¶¯½WoýÚÕªºýuUUU[Z­UÝunîß­Úî«®ÛUm]Õ¶µµ^­º­ßo«vïkÚÕïúªþ½­VïWz×®ª¾»VªÕÕz«ÝÛ[­uêêþß®·ú«_Ö¯Víµúû¯Z«µzªïv­Z­_k_õê×ö¯õíµë_ZÚõª«ëªµ÷uwUkú×[^µ«Wºëº­¶½ÚýÖºõUWWµ÷umUuz«ý«Ú»UzÝZ«w¾ºýUZÝ}ßkßw¶Úê­¶­Úíõ]mwmní~îÕZÞß[×uÕ[ÖÕkµ¶Ö­û«Z·uµ^ßV¯mÞëkíkUmuúõíÝ]]ßÕîÛu×Wu]{U¶ßu¶×W_µ«UWV¯úªª»ê÷[{wº¯ûVݪ«ïýëmumí]ZíUûWUý¯}muõ}êºÚÕ»õU¶Ý«V«Þ·[mýn÷õk¶«ªÕ¯¶«Þö·V¯{ZµÝuÞë½kV¯]õ­ÖÕkWZ­kv»þ·uÛ»¶­«oªÕ·ûÝVöõ¯nýß{Ý[õouû{׺»íªÚÖ­­jª×úÚþ½ënÝv÷­_uo{UÕ[×^«ë{múª­zîµ×VµõZ»UzÕ¯ªö¿º÷½^¿[º¯·µÕ·umUV­µmv·Un¶»ïÝ~½Ú«m{êÕZÝ­­]®­UZ·ê·k®ö×}ÝÖÛþõ­íV½[µz»µ®÷«¯V®»Û×V½þªÿwUU÷u~­V¾ûÖ·½_¯^êݯZë®Ûµ·[Uªö÷×]_V×Õ]·Wµõ·­W]ëUv­µµ®ÖîõWºª¾Þ½Wj½êªýWwmZíwÝÿmjõ«~­ö»]Þíê·j¶¾«õkµ¶ûÕ_õw®»ÛªÕ[½ßUkÚû{Õ]ÝujÝj­«Ú»]uUj«Z¾ÖµUµ¯¯mwÕÝÕ^Û[k«Ú­ºúº­j«nµ[µzÝ«ZêÚõUµ«}kokÕýÚÞªªî÷z«Vª®Õ¶ß[þý­ûºÕ]÷»uo~­®ªÚî»W¯îÞ¯_Úª®»Õ­¶Õª«ö¯_nÕ®Ú¯}ößWVöíU}zïUUµ·îªÿmÕºõî÷k¯õwÝ]knªªºí¿×Woö½íõ¯}ªÚ»oÚöêµUëþ¯«¶×^ï]½Uë]­oëÞÿµWWVº­Zêëßj½Ö«ojºµµk^íýú·®«w_V½½}¯µ{k[moµÖ½»·«~Öíµ]]µZ««UU[u¾í¶ª½_ý®ªýÛUÛn×½[û{ÕuUíjÕw®¶­_UjÝ[Wõí]Z®î·«ê»®ªêûn·kª»¿¿wmn»jµkÞ­·ZêºÛ×uUmZëªÝ}½®ÝÛ­mzëm®ÛZÕjª»½ê¯mª×õ­UUWî½vêÚí^×{}m¿ÚÛ¾õ_[­ÖúºêýU½¯ºýÚÞ­[õ®µÕ_Uu½Õ¾Ým×[kÛjë[]U~ÕmUuÕÛV­ßZ½m[V­ZªÛ]«¯jÕj»ïýjú¾ýjݵ­»µªïÛ®·ïmu_¾»w­×U·­_ëÕ_~µ}Û·½êÕº¯Uµ®Õ]ëw»¯nªë»[VÚ¿Õn®µí]^­]¯zýþ·[ªªµÝu·vªÕU«U·^ýõoj¾úëëjö«Öªîúï­j­»×ªêþªÚÕµ»k½WUW­}ºÖµ×·WÝÕ«U][júªýÞõßZ­{º¶®öínªõ÷[k½÷zÞÚ­«×Z굿µ]ïU½êµÖ®ª­j«»Vººýû[[]w­Uû»«z¾Ö­m׫wµ_ÚÖë÷Þ¾úî­ºû·Z¯}Ú×U®¾¾ª·uo}êÛkÕªÝW^öí[®¯Öú»íVý}¶Õvÿz¶ÕÕUjíoUÝ׫Z׫W­·[««v·UÖº·×{ÖÕn®ëVÕu¿k]«¿{µ¿ïêªï«UVÝëÕ^»ªêõVÚªº¶­w»Õm}¶ï}v¾ëïªÞ÷Ûjµ÷júïW]U^½U[}j»[Õú÷]ê«[U«UUíZ¯k]ko¾×ýú®Ö«öëµk­ªª»WU­õw«ªÚªíÕWVÛVÛ¶ªµoZßêûWUª­ú·{»uU­Z»úõjº»­Z×uZ׶ª­koÞ»UÛ]Uv¶­ýÛ^­»V·}u¯×·Uö½µ·­oß¿Ý«»Zºµ»UV­_»ÝzµµUoUuº«]muûWÛ­ëõv¯®½¶ö­k[}×ö½Vë¿­{®»þ­­«u­ûjöëµuõm}»uWkºö­ªýµVë^ÕwU÷ö­öú­U]«Ú­[Û­[Wîíªª×ªûjª×}þõízÕUêêÕÞ·î»UõíUZÕUëíw¶¯õµþµWkª×ß[­V·U]®ßj«»ÕZîÚëZÕën¾ÝëUµZ«·õîÕ®®½µÝk^¶··Vê½u^ßuªÖ«®íµ]µVªöîîÚªþï[U[þ­[wÚÕ^®µúº¶Ý«ûîºí¯~îú­_ZÕ½uº­­w¿m×»^®×_÷kjÕÕßÿûuµêÚÕ]u·¯}êú»«[zÞ¯Wµ·ZõU÷mÕjµ·m½Zþïv«]ïkþº×몪ի×w«¯vþîÕWµý«Uª»_«ÕêõêßZº½·Ö·kZêÛ}«wn¯w^¾î½­«ûuoêí}VßZ½Õ««ªµ]µuuZÕö­~ÿªÚ«»¿v»êÛooêݵk¾®î¯Õº­]¶ªßUUm_½÷Uoo×½[~êÚ××Û[Zº«ºöÚÛu^Û궽nõµ×õ«mW«jÚëý{¿Vßom«öëVÕÿúµÞëVíj«jÝ¿júÝõº×Õ÷jÝnÚ¶Û׺®ÕZý×µßVÖÖïUõÕêµU­Õ~ÞßïokÖÕÕ{uo_kª×~Ý­]ÕÞÕׯ][ÿ]ßþ·Z­µ®­WÚÖ«Úê·VÕ~ÛkZÝõÖöÚ®ÖºÛUÚïZ÷n­­Þêýºµu}ª¿o_UÝ­uUî¿ûöµ¾íZ»«W®ªÝëªêï[ëÕ~¯kýoûÖªÛ[moª¶¾ÕU½÷ªÕkv½º»ß®íUï[_­­o[öÝ÷½mÖÖ¿j½mUû·Ö®«kVºªÚÝuÛuWöµ®Ö¯uj­µ[¶¯míkUu½ëêÝUºý^¶ÚýUjªÖª«ë¶ëÕ{ZÕk¿}]u]Û­Uªµþ»ë¿W}®í¿Ú¶ÕW]jÕ¶ýÕõ½«Ý¯ZÕªßíÝ]}«ë[®ª­koo¯µínÖÕ®­µûÕjªú»«»W¿~îºënëm~¯µªÚÕ»Úª»ê­oz­ºÝVÚê½]¯nîÕ·{UVêÖ¶®­]µU»k¯¯ÝuojÕªÖªÚ«Ö¶¶µ¶½zõ]kÚýkjõZÝ·ÝvÚ«kºÕVÕW{ºÛ«»¯wî®»zµjÚí¯¯zíVúõº¯»»½zÕ[ë·«ZêÛ·­í]nº×Uw[j×V¶ÛuÚµªëUUn¿^«}þëmuÛ{ýkUV¶»Ýnªßm¯UUkk¿w[«»V·ê¯«]z×kV×Uz®êëmZ­m·}}®¯Uw®ª÷ª¯¾«wÛÝWÖÚµzúÕ[«­½­u[kÕ[^­v«ª«Ûkª®­]·u·]u{ÿw½Ý^ÕëÞ­êßÝ_jµ­Û[}Vë»uíW­U÷·ÛjÝÖ­uozÞ­­÷uÝuuZªª×vÝUVõ­íÚªõÝëú¯¯zÕí¾Ú×kªÕn÷VÕUUÚÕí]ZºÕUj«zµV÷ÕwÛûµm½­ÚêîÛmuÕWnõÚîµ×º¶ÖÞ­ë·[õÖ¿^­}mî½[jÖ÷Ö¶µU[«ú½kjõ}Õ~«î«]ïU®­Õ«V×u[ª½^½ªÚÕW^úûÛ[ªµÕÚÛ­µwUkÛ÷U}[ª®ÿV­õjºê½VÞ­ÿ[½oí}ÖÚªÛV·UÛWûUv½[·ÕUkëz®Õ]·ªÖÚ¯­kjµ}¾­î·UmZúÛ«uÞÝuß«Öß«Uê­ÕºÕ½ªÝkõêÛ×ú®ÛêÕÕ]}«vÛýµê«{»uUk«uZ×Õzµ{µUW[¾¯ºÝëk~µ_«k]oÚ¾ÝÚ×^ª××n»vêªÛí[u{Vª·kêÚµUÚêõ«Ú½Uªµ­ÝW{®»W÷Ûo¯×u}ºíµþµVÞÕÖ­¾íu]½­uï]kë~ú¶Õkµú«öõmjÿ«êÕÕÛ«mõíöÛu]µu·ªÕ]·j­Õµ«U׫¶Úû¶ÕkWUêÝ­ýU««Zµú¶êõÕ·VýUÕ]jíªµ»õVíÝuvëîÖ÷uµêû_VÚûV«¶îµ«Ý«n¾ï­ÛZ«ÖënÖ»Vû«}Ý×­ZîºÕv­Uª«Õ]^êúúµêºïÛëõ«[j»õ^®»W^­_öµZõ{½UÕzµV»[êëZý»Ý[m­½vÕW÷}«Ûj­WouzõêëÕµuuw×]µ÷µûz­¯U­·ZÛk]«­wÕv«ûV®Öª­WZÖÝ»«Zªöµ[U[]ÕZ»Ý¯ªîÕjº¶­]ï~Öêïý^·¶¶ÿ{Wª¿­º¶ýUú®½mÕ꽪¯[ëW½ï{UUWZÖßµÝUW«µ^ª«ý[W«wUV®®«õ«®»Úª¾­Õë[í®­«­Þ»««÷jÕ·Öõz½ª¾ëUÝ®ÕÕíWUõkõ]ÖêûU[ÚÖ»U[_UÖ½×Zÿk]Õ¶÷­µ­_{ªêÛµëjºµUÝ]ªþÕÕ·o½mûn»v몭U­×Z·ûõ]ú­ÞÕõýÖëÖ½¾ßÝÕnÖÛjûWÖêêÚ«û«W[­wkõZÖ·½_º«­}[ZÖ¶Õj½k·uzî½m×]ªÚÝ«}ÿoß}uõ^®º­w®®ÝÖµnÚÕ꺫V¾ë^ßZºÕ½U{^­ºímµººêªêëjíîëÖÕÖÚªÛÚõë÷VõmÕV®Ö«¾µ×U®ÞíþÚ¿~Ý÷Uzª×mßÕWm_v¶¶­_¿}­­UÕú×­mZº½Ú­Ú×WÚ·]þ·µ­ßµÞûÚÛV¿Ûª·íu[jê­ëZÕv½]Zß_Z­«j­kºïW[µµëWoÕ뮵U¾ÕêûÕª÷ßµU»·ß}[v¯Wú®«Vï[Ý_öîµ]ÛUÕûuîö÷ý}¯öëUß}o}êý׫mºÚëêëZ»o«êí­[ª·½uvºêÕUUë~µ­õëWUmªýUnõWjÝ×m÷×µí­u·Võ¶ú«ï[ÞëꪪªúÝZÕª¶êí­í}]ª·j®»Ö­í«½þÕWo¯¾ë¶êÖ½WêßkZ·×í[Õo·on«[Uzý÷k½ÛzÕï«j÷u­zíUÚµVî¯[Wê×]«V­umµÕº­ªÖªíVÕwU«u­Õmí®ªîßwv×ZÞöºÝn꯽ínÖýõ}Vßn«Uý¶¾×]^ê¯jªµÿn·ëmm×ÿ{mw­®·_½ëÛ½íuÕoß^ªÕµmªµ[ßþ«U­Ú¯«ºÕ]ÚêºîÖëwZëë]{Õõ®ßꪷ]j½íÖ¿ÕnþÛªí½½­÷«[{U®îÚ»vÚµwÕ_]êߪ֯µ¶¯Vºí¶Úßýk»mëvÿkvµmýZÛµUmÖêíZªµ×ýÚÝUÚÕ_¯Z¶Ý×Ö«¿öû[Úëí¶ï[­VÕmZ½oo­{ÿÚ®»ZõÖõº×ÞÖÞÕU«uvÚª«ë]uVêß¿jµ¯·UW¶ªê·êºêï¶ú»ß}÷Uk{«Ûu¯Õõoº­^Õz«WZ«ïÖ·Uõ«µ{«kj«mí[êík»Þ««÷Z«uû^¾º»íW[«½uýn­ï«ÝïUj­vßZޮ뵫[ª®½õ®­]ëkUj®»o¾ªõwz¶ÝWõkZ­[wýWª­¯íZÝoýUmW¶íí®÷W{Õkv«jÝïkµkïm类ºû[«·­w·_½¯Ûm®ªªµz÷[ºÛoU[«½{mÕ[m»Z­[VíU¶µ«ën»êínÚÝvßjö÷öÕVµ[ímZÞªª·Woz­ë[íêÕÚÝuV­]UoVª×êë®Ö½nÝUª«ýêÝíÖ¶·vïU[Þ·¶»kÖõêÝ~Õ®ªöëmUVÿÕ}j·uWï¯}êõ]µ¶µUU붽wµVªímj¯Uý}½¾¯ª®¶µ­uU«vÕZÕm{mm¶ª¶ÝµÕ­m]]Ö«_×ëõ]ÞëÛWý]­WÛUݪÿÕU¯v÷wõ¯w¯u^ª¯ZÕuoûµÞÝUvêªÚ¿Öº­öýï^¯^®ïZ®Õ»UÞ½vªÚ®»Wݪê¯Ý_U¶ímU«÷·»ëWªöÝoÕZ­íÚꪭ¯êÕujõWZÕmýUï{½ºímVßWmoUm»Zý¾Õ{õUw­UUê­UWnµ¯z½ZªêíZ¶¯UuÝVÛu}^·]·o_jûú¶¿¿µ{¿µ­Þ½õUZ×w½µU­zêöÕ½µVÚëÚ­­ëýk¶«Ö«V«}ú«ÕÝUv­µmWUU¯õÚÞÚÕ­í^ÿ{Vê×ëUZÚ½»ýªõº»ëU¶«¯Û_Z¯j®Þëví{Ö¿·«Õ®÷×U׶ÝZµÛ{­[Uµ«_Vý[jë­wo·Õ]«^µÖ«Ú«íZÕ¿W»¯^¿»¿­V­zõjõ^¶»¾õ[m]{[[­jÚ·kn­Ý­µ¾×j­ýk­Z·îÖõn«Uk¶­Ý­ÕnªµwÝzºªµª«ßU¶Ûõ¶ÕíÚ׫ÛÕz·µõ^ö®÷kßï¶öºõUUU­kUª­k¾½õoê½õnµ×UõW««¿®Õ]vÚºÖ«kZª»ªõÛ«Z»êÕºþ«×­]uö¯kzíW_«»­Vï«[UÚª¿ZûzÝvÚ¯mÕW{µª­î«jÚ¶®µûW½U[ÞÖïmUvë«þîõ¯z¿º¶µ^¾õ]jõ­z×{Zµê«¯ú÷kWµÝímj­WvºþÚÚ­­Õ½»Zúû]µõu[mêÕ}­­uõõUª­}oVªíÕªê¿ï[­µ[µz«j®ï­õzªõ®¿]ßUVýÛUÿjï­­Z½ªÖ­ë­µWÛÛuÚªÕW­¶½k^¶êÝv«[×Û®ÕîöÛ­mzêõÕÞµ^íU×^·Õ­wW¶¯m{¶»Ö­Z­jÕµÞÕwnÞÕê뺻{[ߪ÷U÷k·Õ®µÛ]_[VÖ«WÕµºëÛöÕo«kö÷u÷ýWkZª×ë[wUuUwUÿõªµ¶×Ú»kÖÞßÕZ­÷]nÕÛjõ×µÕ·¶Û·×_mÕ«u×^Ú«Ýzêýjý¶Ö­×¯jª½ª·úª¾ÚÖ«Ö®­mUÝU]¶º·]}Uu^êú¶«V­Z®ª«mU­Õzßûu~Úÿv¶¶¶µ«Ýªõ×µz­¶µ®·µµV¶ºªÕkU}¶­uûUv×k[U{[[ªÕUÛõ«¯UW~×öªÕ÷¯]ú«v«UjÚ¶þ¶­««Ú¯ª­k·º¾õÕû}UVööªëµö«k­µU¶µ¾ºµkêÕjë_z«Zß½ëZû^¿®·­_Õu_j·j¯{W×_]ÚÛª½u~½«wö×®ïÝkÕu]_¶®«UÖ½k[{Vúªª­­o­×]¯Õ{ÝuÕ½UÚÕUªÕÚõ^ª¶Õë{^î¶í­m®½Õ½«­o{«ªµ¯v«oßmVÚÛWv«µm¯ÛkUº½î­WjîúíÝ«¾»Ú¶ªßö×UwíUµvµí_mkuí{¾¾ÛWwzýU¯[kWýº¶Ý»ª¾®Ú÷®ÕÿU«·W^ïk_k}ª¯½ýk½}kmµµ]V½[­õuö®®·¾÷ZÕýÕúêµ]oªíµõÞ½Õum]º÷]uõkõ[õWwkÛ·n·Ö«íêõ{kÕ¿^ºÕ×­{Õ[mW}µÚÝîú­{u[Z¾êöýߪï·W×]]×ÚÖÿkÚ»ªµÚßݽm¶½ëê«U½µÚ½[µkÞÝnöªÖë®ýjÕ½×jª»{µW¶¿Þ®ÖîÛkjÕVÖÖõ×oj­ÛÝj­UÝöÝ_¾ªëZ¾µmuu]]Z«}õ×UÕ«m^ëßwz«nµn÷¯mWÛê¯_ÚÚ»ªý}ª»~Û[j¶Õ^­«­ÕµZ®Û]½Uºµ¶õÖÝVµU^ÖÚ÷uª¯Õ«mZöº·~®í×mn·Z÷]ÖýµUUWÕZíµjµm¶½½¯ªÕº­wõö««í¯VÝ«×úöõÕÛ[UVºÕýo½ß{ZÝm¶µn½}µ­ÞíÛUûZëWV­}WUwíUjÚ¿_uîÞ¾µ­½vÚÕï­ÕUÛ}m^ÕUÝݪÛÛk[¿}{½k[ÿÕmëU÷­owuUU[WV÷­mÕkݶ®­ZÖïVÕ~êÚµíÕUmµªëëëµ^þ¾ÕZÕmWz»ê¶Ú»v½»ujûV¶úªÕÞÝ޷V«½v­ëuÝ[ÝU­^ÕªÛUµÿë·¾ê­Õ]{µ«­~«¿j·kª¯}ÖÛm_Úµ»µªµ[¿VÕÕßZêý×­UÝ[}mÝUªºÚûÝ®»jßo[^ªÕ¿«Õµ÷­Zª·¶Õn«mníÚ÷k»[U½jõÖ«ª­]ª®ß×꪿ÕW»ßë»Uj»½ýjêöëÞ·Õ×µ_ªºëÛ{ë[íZ«Þ»vßV«ZÛëUZÕßjÿzº«UV­jªµUÕª¯uûUªÛݪÕz®¶õm^µU[v¶·ß®Ö×­ukZÝïUjªÖÖúºÝuú­UÚ¯j«ªö»î·í»µ[ª¶ëz­ÖïëuUµnºªÚÚ®íZÕõV«ú¾«¿¾®íu»n®íUm­_j÷ª»ªÕ­]÷ß»uV®­«j¯®¶½ÝWÚµ­}Õº­zºÛj«î굶¾¯mw]]vº¿]»W®Ýݺ»Vµµzûõ_ªöþ«uu}mµú»¯­unÛZ­Uõo]ÕÛVÕÛ­½µõÚëµmoZÖõ¯okUµUÝUwêöڪ꺵nïµV·µöý·®»¶õîÕZ·×ֺ׭mÕ{]ívïkZ¶«VûvºßU×ë[n¶íÕu­ÞÕ¶ªªµUÚ«ÕvöÕÚÚªµª«¾îÖÛ^¾ÚµVú·[mo]w½¯}oê¿ÕÕUûZÕ[U­VÕk½ª­kêê«[µ¿k¿«_µ«Þ»«Ûoªêõ«uÛmµë[mê½U^Ú¯UZ·ÛÛªê½uu»nïï½m­º­êÖ»µ]zúõ­Õ·­V­¶÷×ÝU~«êÚÖëûU­}jÕkªÕ»µ¾÷U¯o]¾ª­]VõÕzõU®ö×­÷½ÕßUj¶þÛº¯Úªª·ÕW[[Z­«µU»ûWzÛkªíÕýÖ¯¯ouW«ß×Õêû¶µkV®õ÷Ú«nÞïëºöº«ªí}û{nߪõuZÛu»_V«vû^Ûõj­µwW]¯[õ^µ×_níõ­ZÛjªÛ·¶ýÚÚú¶Ým«ûwÞï«vûîú×ê×êïuµíµ«¿kzj½UujÚ·wUÛ{V»Ú»¯kUþ·Vª½WW]U¿~­ªín뽫uUªîëÛ¾ºß^õÕVÖ«¯¶ë{õÝÕúÕµ¶·ïµªê«µëªöõUýß~ÕUm·}o®«Wzí¿úª­Ý»oÝ®×µV×»»êÞÕ]nÝ^µ_Uµzëí[»n¶ßW»vÖªÚߺ¶½µZµû«}kª¿U¯ª¶íUUµv«j«zý«­Vê½uî¿»Z½µjÕÿíµwVÚÚÚÚ׫úÞ®ÛU]v·ëoýÕu÷µ[U½WVÕo[õ}ÖíUõõßûUÕU]«»Úö¯kÝîÿw¶¿¶¿º¯¿·í}zÕÚ¿ZêÖ÷zëïW»­¯ëÚÚªê×½úÛµÞ·U½Ûz¾½Z«^ß×W]ZÝÝ_]U®®×í»­·®ê½í·[Þ¯«¶öíÛ¯÷ªº«¯vµ«U­]n׶諾Ú×­«]VªÕw«ÕþöÕ­Ý}ïjµûZ«V­®öêõÖº«V×Ýz»V¯zÕêÕ]VÕ«UõjÕU]V¯ª­®ºëU]Vª®ÕµZ®¾ªÚï¯n½m«¾½m¯_[µÝV½Z߯kÚ«·j·ojªµ·zµV­ÛÝU{k[kwm^«ÕõVí¯[ëwUUݾ÷õµuw÷­·kj¯~úÝUõ«ú»ïêÖ÷õ·µõêÖÚúÝVî®ÝZ»·ÝußÛÖÕ^¯·îÕýu·~ÕíVÕíÕ~ê»}UUví½½Võ¶ßUÿ­ë{ûªû_ÿªÕúîÖî¶õm¶»uµvî»Ö¶Ûµ[Ýj¾¶­wî­ªµk¾îöµí[º»®­V붵V»u_}¶«ת½[ª×Ûo½wڪ뫺öõ[ÝWºÕ¯­ëmvíÿUöÛmí÷íýÿû{õí~¶­{Uwmվ^ºï»íZ¯n­V·zê®­]¯ZëëUVÛ»·Uû]]×µßíÖëkÛuª·µµkj¯­Z·µvºÛ^í]_v«Wk¯­U¾Õ¶»~í¶®®ÕUV®¯Z¶ª¶·v®·ï¾ªÛÝÖí×ÕªªÖ¶úÛ¿¯[wu]nÛ½ïW¯^«kßZµkºÛW[vÛUÚ÷oêúÕê¾½{ímõ®×j½uj»Õµuë®Õ][^¯õ·kz×ÝvºÛ¯wûýªûk×ïíZ«êºÕ[«ö¶ûÕkV½­ºªê«ª·ZÚõ«}v¾½î»×{WWëÝÿVÛÕ{ÕÛµuêÚÕUþÛ[íW~¯V¿ª¯{ºõmU]m]kU­mZ­ZíµU®¾­Ûkª¯ú­võZ®µ×½®ëVëmnª¶­þþª¾ë®×ÿVÝUÛU¾¾¾ªªµV­í®ík^úÛÞµëz«_½VµëÚ»Uë[UUµWv¿UÖÕ]í[µª­®ªí­]VíºîýkþÚÕ_Ö­õÕîÛÚÖúª·êºÛ·ýת«º¶êöÝ÷w­ï·êúºÖïU[VþÕ­]WU¾ªï«Zª·W¶«Uw­ª½÷wmUÕ^õ[nÞ»½n¯«ÝÝ÷öªë]ëvÕûµw»ÕUk¶ªÝßmÚ½µºÕýkÛ{ªº·ßêõZ­w]U®¯ûí[ÖõÕkÖ¯®Ûëzª®ºª¯[U­­º»WUZÛnê«WêÕ_µ{Z¯}^µ^ëj½muÕÝ×Ýýúß­ªúêÞï½{UUÖ®µº½uëV«u]oUu«ÕýVÝêÕí]^ëºê×V¯WÛ}µµk¾µV÷v×­UoßuµZí[¶ªÚ«µUj­UU«[jªµµõjî·¶µªºß[^½mÝ«_n÷¶êµU¶º¶íÖ«ößUjßU_j«­ê­ÚßvªÕ[Õ«ZÖÕVÛÕk»u­}V®ªÕ»«ªµWuj«j»wUµ[Uz·ÿUÛ¯Wöýª÷®êúÞÚÝëmV»«ZÝë«»õ[Õm][ªí½V«¶­Ûº­Ö«ý]WmêþªÕ¶ºµ_Õm¶­m­»V»¿j¶¶ëªê­W}nõV¿UÚ»Ûí]nïö¿^¾Ûu·»}oÚÿn×v«U[«Ö­UÝÝ«­Õêö®»mÕVª¿×ëÕZíï®Ö«ÿÚµZöªµÛ]»Ý×]~ÞõµÖ¿·[ëVªÛ»«w{V½«Õuê­·ë[^­[«mîúö¶«_Ý^®ýªº«ouVö·úÕ­­¯mµ·oV­]ZÖªÚÛu[V½m«mÕ¶Õ~«Þ·ýUWuöïUÿêªÝ·¾½Vª­níuvïj­ªººÚÖë·Ujû¶¯µmýUkê·UÚï]«V«]­í¯¯]]®êï«_ëw¶ê붭«þêÖºÞº×Õ^ßû¯~¿mmUõ­vµm_Zõm·j«jýµzë¾Ö÷k¯^µvÛ«kªÿÝíß«Õ¶ªî«W«km^ÝkUï¶íª­jÚÞöêµVÚßZ¿¯^ª«o®»íÝW×­]­]v·«µWW÷·Ý}ê®íUÝ­n«UõkUZºµÝõ[jõ}¾ÕjµÕ[zíÖÕZ¯«­j¶µõÕ­Õ꾯ۭj­öµöµµ·«µVµÝÛZ«v«UuwmUöÚ­U®Ûþ®«¶õUk«ê»}·êÖµWZÝíª¯úÕ^÷uº­_Ûë}_½~ûþªÚ«¯î¯Û«]]ëî­k·u{WþëÖ»]j¿×U»ÛÖ¯uª­íºýZݯյ]ª·Uê»ÛwVÕwm÷_kkkWmß«ÕuUk­Û½ïUÞÕW¯ï¾¶ÿV׺ú¯µîÞ×j¶êímmÛ­W]{ÿk«[½mÿÚßÚÛ®íëÛª·kÝk«W­[^õªë^ÝzÕvî¾ê÷ë¯uÖ»ú×j«j÷Zß׶ë®öíµvÝkZÛëj®Ö®ê®¶­oU×UÚºêÖõjºÖÖ¶­{vªíê¯jÛ×]U¶×Zµ]{·ê¶ÖÝUu}¯Ú»ªµÕ]®ªú­]ªÛWÖîµµ»­û¿o[jÞÕWkz®½v×]Û¶ÕW­®¾î­ÕWmk·UU[[¯í·¯jþÝZÿ뺵}k«]Uë­ívÚ««µUjß[_ZﺫWÛjªª«ºê¾ÚÛ«u÷¾×nÝ{[j«ºÝ·k÷UÛ]{UUÿ__nµß_Ûu]ºßꪯjß}ÕU{Uݽ]«zõ[úÖÿj«UíÝÛumZõÖí½êÕ]]µZÕ[­¿Uk÷mvª»úýµªÕ^×w}¶õzýö·ªê½ÖÚ÷Öþ«}·Õ~»µ­¿^­Öµu¶Ý]jë^¶ö­ëÕë^·k]nªëïªÚ«uµµzµmöþªÝmkoªßíÕª«wºëu®Ö®ëm]­_UmmWUUwwö­ÚÛWk«Ú®®ªÕV¶ýWUUz·W]Uk«ÛÖ»oWu[Õ¿z«Vݪªí¯Û[ªºõUu~ë]µªîªµuµ­mÚ·ÛöÞÕ­mU{WÛ«»vªÞí÷]WÕUªµ½Ö¶Öí}Õ®¶«­]î×UÕÕVÖúíõÕÝv­êöímÛ¿jîõûwººªµ[n­íZÛ®ºªªÕ[Vµ_ÛªµµÕ·û]ýuU¾ª½®î¶ýþªÛwvµµUW_Zúª÷UUW{ÕU¾¯í¯^õU·ýnªºýUjÿënªÛ­ÕZµoû^ÕµW¶ëZ·}]UµÞößw÷ÞÕ·ÛVöÚµ{¯k®ºõí[½]®õ­µ½«Z¶Ú­ukWu×µUwíÝ~Þݶ®ö½Uímov»ÕªõµUjª¾½_ßµkú½[ëõwÚûõÕ­öÖ»Vê­Þ÷ªÕª¿{[j×ÝÚ·ÚÕWVõZ¯ÕmµïV÷nõ½ª¾êª¯]Õµ÷¯W꽿Zºíº®®Ûªõw¯îú®ö¶ïÞ¯UU]vª«vê½µ×íö­Uê½k­w~½k]õëÕîÞö¿uÕÛUUßZÕ]WÕkj¾ÕÖß[µuºöÕoíj·µW­ëêÛ¶½w¶Ö·{ªµuúÿwUµª×ßûu]v®÷Ú«j½ÝÛêÝÕzëÕkWºßo]UU«ZÕêºê»­ªíW_ª½o·]UujõÖ¿ë[k~ûýuþ­uWjºªõÛZ»ªíµmÞÕU~Öª½{Wëõ·kªê«ºöÖÕZ­»µV«jÕê¯]­ÛkÝ[VíWk×[jׯUkkuVíÚÞëªÚïÞ¿jÝíZ·÷Úºýßµmªïo[­¾«j®ýU¯ß[ª×[ªí¿jëvýº«®ëº»ÕZ«¯u{z­Uj®®ª¯}n·®·kowk·½ZªÕwþõ××u½ÖíjÕÚÿû{ºÕû«½UW·zµ·ï[÷[ªý­¯nÕ­Wkþß~ßWÝW­¾µ^궿mo÷ë]º·ö×­µuuj½Öªªý­õ¯júªêÝuj¯n¾·µ»uUUWvíÕZµoUµ]»VÚ»UWÛZ«Û[«um[ÝÞß]]¯[­µªª¯Õ^®¿ê­íj×ê½_»UjÖ®íUµUÖÕ[UWÖê­ëV¶Õ·VêÛV×{¯ÝWûªêëkÛ»oWªê­[­Õë«o[ÚÕVýwÞõõjýú·­jªª­z÷µïÚ꺪µ[ªÕ__µ{j½Õ÷º¾í­«­WWªê®Õ«ï«µZõVÖõïúª«[µ½º½ûª­½ªÿíVþ¶íªÛUk¯]mVß«]ÝZõkë{kU®÷j«kkµj»wko_wjêõV®­U[zÕU®ßú«Þªï]{¶îÞÕõk­mÚ­_«­ww­Wn·öÛ{jª«µõnÿV¶ÖúÖê¯õºÕUV®µk_V½mk«{Vë«»jíjÕZõõZõU½oUZ÷ªß^µêÕUª¿­kUëµ·]î­Víõkj½¿V­«wµ½]kmzÚµ^Ý×W_ZÚêÛ]µUn»w]ußZ×Uoíum]mWVýúªêªëkµZÚºº®÷öÖïÛ_jííªíkÖÕ»«»ÛZÝ·W{¯[·ª×ÕkªÕ{«U]µWUví×íÛ«êûWZ꿾ª¾ë­µ[UïÛn¿j¶¾ûoUµjÕµµ]­U¯[½ÖêªÕZ­«·uÞ÷vߺÚÚÚÖêµúÚöÖýkëuU_z­·ëj¯µî­ªÖ¶ÕÖÚÞ«ûµmºþÛýoªÿöºõ^½zíýÛmuú·­U_®¶Û]Uµjº¯Ú­_¿Ý­[Ö«÷µmUjÝõíoï­UVí¯wÕkÛõ×WWv·õUÕ­®ªÕuuõmUoU«®îíµ«ÛjµêíjßZî·uö®ªª¯ÛÖÖ­jÕ]mßZÕ·ªßVßëê×{v«v·mÛ¶¶µuÞ­w×]®êöÛµumwWUm×[vÝûÞµ~«Ú®ß]Ö¯ªõí¯~úÚêºß­ëuV½Õ×®Öµõþ­­·j®ÕUêþëV«~­÷Ý®úµ^µ¶¯¾¶ªík¶ÛUvµï­m_¿[®öÛZ®»n·~Ûí_µo·ïn«êÕÞ»öõÕm^ÕU¿­«ÕUµjª«j¯Zê«×_¶ûZ¾íïkõë­¾ûnûUWU«V×ëÖë~Úµº­µ¯U×í­n«k»ïºªúõ¯Uz½ëí»vº¯ªë¿Þí««^®¯êí­oo¯½÷zûýµ®ÚûVõVª½mÿ¯k«ÛZµªÝ«}UUÖ·ößµjµë×®­÷u­jªÕ®íWkÛ®öÖµªµm¶·­[n½[½V¯Wªß]»ÕÛíUúÕÚî¿«ë]vÖ­j­û¶×u~ÕwUÖµÚ¯mW­U»j»µíÛ¾¯«m»õÖÿïUëUVÕÝ­m[{}^µ®Úõ½U¿W½­·î·½w][jÕn®«Ý]ÝmzºÛµ·[®ïݯÖÕê×w«n÷­kUzµ·kVëZ×uÞ½ÛjÛÝUë{k^¶¯oÝ­[}½õ~½uUÕk[¶û­~­W»õUUªÞ»zµ{ºõzþ×ouWÛoZꪶÝ[v­Wm«m­­}õÕuÖëöÿµwÕ¶ý[ßZõë}ݶîµj÷®¶®ÛÛݽkÕuUµ×»UÞ«V®­ªëj«ûê¿Ujµ_¿­]µººîê½Z¯ßºÕõëzëû­}«ÝzûWV®­ßUkn«Uz®Û{{k­mUmU]¾÷ªªÕnÕujÝ­[®µZ½~ݵu{µºµ×_UÝn«u{VíU­^½U¯ZÕªÕê»êúþßz¶«û_Ûº®þÕUUU]Õõ­«]«ëW^íuvþënêíÞµÕu~·ÕZ¿ªÕ·~×_o^ï½µû¶«jÝÝumVÖõjÖ¯[»U÷WZÕÛn×½»Uj­ºýÝ»½«]^µUnÝ­¯¿­êõÕ½k]ZÞ®ûªë­m]ZÕúõ­wmVîën­¿m¯zõÕm]µU½µWµwÕÕuÛÕ~êµmm¿ÕÕ¶Ûm½Zíjëz·Vª­]]«ßí×jµ«uWn×UuÚ꺭z«kkjý_í®µ[Zݺª¶»µ]êÛÛÚ»Vªíkj¿Õ»vº½÷W·÷µÿÖÖ»Õ«U}ÕúÝUkÚµ«Õ­vÚÝ{½WU­««ªî«U®½ïêí½ÝÝ]}®¯kwÕVÝ×®¯][]kZ«¶«ªê¶×·¯­WZª«]Uµwú×ûþ×mÛë®ÝnûÕjª¾ÝU¯×W]ýZ­uÝUV×_WÛÕ]¶¿Výú¿ªÖ½Uj×»ûU¾ÛZºß÷V×[þ×ÕWZë[Zú·¯¾·¶µ^õ»ö¶Þêßת­ßuk^Õ}UnÛ[¯ºûªík·wukíÕ·j­Vîµwwº½«õ¶ú÷þªßëUVº«ZßÕZ·­W[}j¶Õv­¶êªÚ«[UoVߪë»Õ[m««¶ªµ]öÖª½]^ÛúÖÞ­wu»ÖµW·[ÖÕu¾ßÝ×UU[[kÖ×[­UvÕ«}V«ÝíÕ¿¾¶ßU·¶µê«ZÚê®ïªúµ×íöª»«ÕµwµWWU[®öõîýßÛwW¾®ûk«íµÝ®ºÕUª½U^¶­ÝmWo½»uUUu®Ö÷z¶ÖÚ­UÖ·êëßÚµÚµUêîÖÕ¯]mÞ¯ï×}õUmWu«­Þº×}oß^ÕÝ}ª¿zõuªí®õVë«ýÚ«öªúªÞ××[uUîëµUWíªºúîÚ¶×kµµ¯Õ×~õ}«Vö»ïVûÕ»«½öï«k[¯j׺ªöß¾«õ_jêû­U]Úû^Õ­mkwkV«ï«ûvÕVßzöú¶¶®»ví~þ÷j­V­Ý½ï^×W]Ö­ÕõUWWoZ¾«Uëj«Ú×{j®íõªëk{­ïk~®µ[jº«µª·[ÖÞëukun»»ª«u­õ­µõ÷k×uUjºÕUU«ÕVÕu{Wm[wVþúëkÕëUÝuµwkß®ûÝWê«ZÖÝ_m­UjÕU¶µªÕ·]kz­[j·jê޵뺵~½ªêï×uïö½×­{¶Ý^ªµUÚµo[ïk]ö«}ëíºÕ¿­Û­êîµ_»Úµ¶õ}}¯»ª»{Uío~Õµj¯½ZÛ[UÚÝ®ê۫ݯukºý¶ÝZïm«j­Þ¯oÕW^Õ»Vþª®ín½÷vÖµý¯í­}nÝzªªí]V¶ºÕÕjïv­w­­}««k®­v»WëþÛV·{«ujõ«Ý]_µUukwÝÿvÕj­]Ý­×ÛZÖªþ«Vµ[uíoª·ëU]jÝVÚµµvëmþí½zÝÕv·Õª½Uû­®¯v®ßÛUknõ«{~­UV«Ûk[µÛµ~«k~ÕíU­VëU¯{]ª·îÚõvíZª¯ÕW^÷«]Û}Ö¶×׺»ºíu¶½«_V«ÕnÖõ·ÿ[UwÝ­½u«]Z÷·½ënêÕº»Õ­¶«]¶»kWU~­V»V«j¶­¿]vÕ«v·½ÛÚ¶¯ªÖíU­]jû¯Zª«_]Ú¿UU«ª×Wª¶ÛmµuUwn«õU«ªïíjê½{_uõí»ZëUZµo~«Uu÷nÕºªºû×µVí_µ[mëµ]Õ»]«n­Ukwë{­VÕu«íëõuÚíµïuûÕo]ׯ]ºöÝku¶ÛÕ{Õ«µÛµ}ÛUZ·ïí{«ÝUªÚ½ûU×mõW^ºÚúÚºªªöîÕ¿þµý¶÷V¾µ]Ý~µ×]ëÕn×jªõjþ﫪í_Ý^·ª¶Ö׺ïÚ¾íV«[U½W÷]^ëwz¾®ÚÝêµZ®ï××Uo×ýn¶·úÚ¾ÕW{íªÖ»ý{[ïkWjµÕ]Ú®õªõ{ö½ÚÕ[­U_o«UU®öëÚýíªµ¿[Ýz®ïÛµZÚõªíîªÖëÖîµW~¿UWj×µÕW½µª×÷ºª½·[m]öú¾×­ÕuÚúª×~®×Vµ}Ûݵ¶îýWÖ­÷着¯·vÕÛúÖÖëª×µ^ÝõÛßê«ïkk^ê½jÝo««¯{íj¾«Vû«^ªêëêÛÝv¶Ú­m¾ëýÛõmW¿[Vª«Uw[UµkV«]]ª­VÕµZõ{jÕ[j÷m]Û½®·o~ºµjÖû_V­¿¾Þ÷mª­­}îõu]ïÛß®ªªïWÕU]«jª­ªÕkµ}vÛuÞÝVµj­jû]k»}Úªö®­Uo¯¶ÛU}WUõ×­m]ê»W[­ZÕ{jíkõvµm¯Zí÷û­¯]­º¶»UV­_][uÖÚÛÛU[mkz¯uí{Ýk¶õ­ummÞëºë«ZêêßZõU®ë]]ÖÕj«U»ío¿zöÚ×·¶õ®¯öêÕVªÕê×׺Õ]Ö×]UªªÕo]÷V¶×Uû[»o«õ¯«»UUnû·}ªë«UíWêÛ¶ÛûUW¾Õª­®Ýí®êµo­^ê­wUµÕö«­W¶×­Õ¯ªúµnÖµ½½^ï­_¶ºÞª­n¶Þ×kÖ®º®ÝnÝ«Ý÷÷[m«Z·ªûj׿k{WëÞÛkz«UUWmo¶÷¯íªõþ«êÛjÝuUê¾­m}Uí­Z»ÚÛÛu«¿ÕZº«ª¶Õu®«×¯«VÚõVÕªµzÕw®Ú»[½jý¶®«^«k^î®ëÚ×nëÕZªÚ¯kÛ]oúµÕ×þªÛÝU«½~õ^Ú¯Víú½^®õ»ZÕZª¶ÕZ­ÛõVÕëv¾þÕ¶½ï{Ö¶¯­mý^Õvªþݶ­]U¯j«¯mvíwjÚµ½[êÖÝ»¶­{·nþßÚ¶»]u¯µÕºÚ﫽VÚ®º¯[«m[ýW[V·õ}·½U{{oÚú¯êöûö®Ûu×jÖëÕõWZ­[ÿÕÿ½Wß{UÖ·Uj·×Ý~»]Uz·ÝoUõ·ï«}õ­]Vv÷ÖöëꪫZݽ^ÝVíUojÕ~ºµÕ[º­½Z÷µ[UW­mª®·]·¯u¯ïëõ«VÕ[UWj­ZÖ½í[Vê÷ÛjÛk{ëUúÝW»­Ý~µvõ­½íW«[·]ªÕ]ë«ZÛv¶ªÞ֯ݭk­[×kêݽë½UµïjªímÕµ·µ«Õ_W[Z­ö»}o®¯ªíîªÞ­ÿÕëz¾õµ»uë¯umk«wkk­­VîíWºízÖµ¯ªîÕª¶¿Õjö½Õëkw}Ví¯mz¯ÕV÷í«UmZªªÖ®×oZªÛ¾×U׫kÖê×ïëÚ÷Õ·Ví®×[oÖûö×[ꮺ׽uzÖ­k¾¿U}û][UýzÕWU몽íöÕÞõW]ZíûëVÕ×]Wwmî­^ªªÞïÝ[ÚÕÕ¶ÚÚßuÕÛkÝ»·m«{¯­]kUÚÕUý®¯ZªíWV½jꪺ¿mö»kߪíWÕ¾Û_ªµúíµU÷V·öªú½Uª­·]V»«Õk«õ¯®«û»k¯­võnÛßµVí­íªÖÖ­VªÝU~¯ëWÛn«ºÕ«ª¯zÕzªõkmZ¿û­k»~í]UÖ»ou«jë}ª½µ^ým¶º¯W­Õ[­]®µýöënÕºöª­jý}uÞ·Z»¶½ÕUwWmußný×V½ºõµºµî·Uî«Uª¿­k{®ÚÕuª·UWkVÕÚÿj­¶®êïvëí{÷ý»V½ÕUëµ{º»]«Wºµ_Uµ­V­U]ZÕµµûúºÝ[Ví_m_Uí}×mo×UoUÝvíkUÞ·Úõ¯¯·«ûWk[×[U{Ý[]_Öýê½ý]ºí^ÿ_·]»umû]wµU׫û­[«êýÕ[®Õw¶ÝíUmnªÝ®¶í»ZµûµjÚ®öÝW_­®Ý¯Ujî«]¶Ö¯ºõZÚµ­÷^­¶îõ¯un¯jîúëÞ׺ëZûÛ×ßWzµZÚë»U궵»Úª­öúÖ¶ÝW­}ûÿÚºªïj½VÕí^ª­{Õµ­jª«UjÖ½êÕomv­Ú«nêÕÕW÷j¶ê½®Þµµ­«]¯Õ_j÷÷oÝú¾Ö·]ªÚ·ÛÖª·uvúºµ[UÕ®ªÞíwöî«Vµ¯ÛWoº¾»W~«í¯kõ}Zú¶­­õuÕ«êûuZÝ«Õµ[]ªúÖ¿ëk_vëV¿¯½êªÝUÕU»×í®«UÚÕmUZíÖÛZê×ÛÞ­Uë]z­ZÛW­]«µ]u­úïmU®ëÚÕõµ÷vªµ»ZõÝ^ßmV·múºÿßjªº®«­oû¾ÕmZêëkºÞµV×úµª×ºöªö¯µµW{ßUµ]WvÕVÖ«o]«÷ëVêÿªµuªê¯m_nµUZízû_uÕ~¿õwßjªëUwú®ë{j­·_mZ­­«î»Ú«Ú¿µõWmÝ^ÕõZ½¶ö·­V¯Zÿ¶ª¿kë^î«ÕUn»ýÛ¯»½õ{oë}»WUW¯V¶¯ö¶Õßv·«ZÖªíÞÛ­®¶ÞÖÕëW­zÚªêº÷«í꾺ý®ª½µuÕî«­ºÕVÕn®ë]V«÷Ö·µ¯Vê«u¿»«}z¿¿µÛ­ûõZÖývïZ«[­»^ª¶º»í«WZëÕ«~µz¶Ö®Ú«º­µëÕ[º­vîºí®ªµuýmu׿k«[Wík^¶Õ×Z®÷[Þªë«ÝZöµõmýoÛZ¶«ßVû[ÛÕÚªÕ[í~Õ«­UÚïµ[oWoº»ÛjªëUW«ªªú­vû^­Wêíïj¯z½u[½Ýµ«jîú¶ÞëkýUÕn½]¶×n½Z߶«ÕuWuw¶®Õ_·¾ÚÛ]ª­­î÷mµúõn¶Ûv®õ«¶Õ¯UmwÕ{«¶µºµ÷[z»uÚ­wÖíêë÷[»µö«½¾·ïumïþê½UýÚªëVÕïßµ}ë][öª½«_zöêÚª®þ¾ÖíÛ_Õ~««jªû]«nnúªêêëWk]k­U^úÕõU[]]ë}µnª»]_Uë½]Z×»»^ïºÛjÕ_®«ZÝïUvõZ«×Uëv߯VÛV·WUkVúªíU»¿×Ußují¯õ{VÚ®õ¶«Õ­k«¿êëú÷½¾êµínª¶ª¾Ûº»ºº½vÕö¿un½[ûºï[ÞïVû_­}uj·®ÞõvÖª»ÛÛ{^­®ª«Þínú®»«oÕÛm»Õºê·Wº¿^ÕÕ¶ªêª«Û«UUúںڪꪺë}^ïûª«×ÕÖ®º¶ÕïWUªºÛVím­µÛkkj½¯]ÕU½Ýýï]­~ª½õ{wVÝu¯k[®×»]Z½jÖ«Û«öúý÷»ÚêêêÛÝ]ªª«öõ[ェªöªë»«ê¯ë[~îõWkZ»·VêÚ·UõU]º¿kíwWz«zû~«µ[ªªÞúê»[W[½¯w]]m¶Ú­[õµ»{uzÕÚ×këVûwUU·÷º÷uz­z®ªÖ¶µmu{«ª­Uýß[]zïÝUªëjÛWkW««­ªµí[¶·W{õ­ÕjÚ¯ýUW}Ú»Ûk»]^ëû®êÕ]·wëß­v®ºêê«VµÿjÕwªÖº«W·]}Uo^ö½ë[U^ݾÝ×v·U[«ïuµªÛßjÕªûWwÕujúªµÕßëjµõW÷««ÛV«wî궵öõZ­}{¯jÛÛúµ¿·õµmÕZ«UzÕm»÷W»íVպ۪궻í}UjÚªµ«Ukµ½Õ¶º¿¶º­WzÕ«ÕWß^µ¶ÛVÿZí^ëÕ½öÛîÛ®·vµwn×u]jµj«jÝkºê·®öÚ­­íoVõ½÷µêÕÝzÝßvëk×VºûU»µvª·uUý·^·ª¿Õíõz¶ºëÝUj¶ÖÞ¶Ú»¯]ªý}Wµ[oµkµkkzª¿wu¯}ê®ïÕ·×mµm­µ]××Zû]ëíUíV««ª¿u{«õ]­·¶«m«µvº¾öëÕwÞý÷ªµUí«]V÷÷µ­«UU½µ}m[õ¶Þ«Uê¿wß­þÖÚêÕÖ­jöÛÝ»ûuU¶õþ÷kVîªÕµ®ªºÛꪪÖÚÛþ¶¾¶íjÚ¯µ~ßjºíjï­«jß{U[Wmw×wUíU­U_uë­¿®Ýößozª¯WÕëVÕ·uVÝõU_­û»·w¿·¯v¯Uª·U}»Z«ïV¯Ý¶µ·m}ë­nª½íZ«j»ÖßZÕ­«·»o®­j¶ÚíûzªöªßÞ×{Ý®ºõµ]UÿZ÷WZªýV¯õjë][VÛ¾½®×÷mÖ®ö뵫k®µÕ×oW½ªª«[«í[Ú»zÛjë½Z¶»j®ÕßW}kÕþê­zª¶½®ª¾ªõzëWÚª¯»úÚ­VÿUZ®Ö¯zÝ­n¾ªÖÚºµëÕmz¿oV»k]Õz¿Ûê¯um^Õ­þÝVÝ_­»«ýº×ojÕj½UªµÚë_}ZÚÝ«Wk®×»¶Õ]þµZ¯ªúÕW«~µw»»Zÿ¯jÕëv¾«V×V»]]wV»·µª»jëuÕkWVúÕë­Wmíï­Ý«~ﺮ·íªö×ÕUWªÚ®º®µn½ïmm]Õ×j×W½k­u¿·vµVê»wÚ®êÖïjû«mëwõ­__·U}­ª¯®þ־ݷZ«¾þî«®ú«ÕZ®ÚµµWvÿwÿzÕ«Uªï·«U··ªýj¿ýª­j­í{]}ZÛµk«ßíuÛ]®¿ú®ªí­ê¿îÛn¯ö¶®ÕÕ×[nÝúµ­×^ûúª¶Ý«ZíVíª½w­j··[Ýkn÷µëµëÕ_zím··Û¶»W¶ÛVµU[~ßwÛÕ­[Z½vÚÕÕ«·ºÛ[_ݵ{õowjªªÕW¯Vík[oUûÛªÞÛ¶í]úºëk[öÚ×Û}×]jßëÛß­nÚÿ×Õ^Û]­UºûÕÕõÕV¯j¶µû}W­Wjº¯Õ¯_ÕÕZÖÕ_mu¯]WVîí{ëÕÞÛµUÛjïVÕk­^½ÛVê¿_]¯öõÚîÞÝõu]Uúí¶×[~­½ïVï½öµuêû«·Õ»õï]Öõ^í·uZ«j½{·Wûoµ»ö«nºúÕo­uõêÖúëî¯ZÿV¶êúµWõê¯êµ}«{Õj×ßUvêÚ·­Õ[U{]ëÚ«kZ¾­kª»]ë¶Ý]UÖº«ë¾õݶ×j¶¯}»ºª«wu[[kkUkþºßUk[m~õÕUöÝWÖí«UÖªÕUím®û¿v¶µª­]kj½^Ý_ªÕ÷ª«j×ZëÚ¯Õ~ªí½wÕÝ{jÛ®ºµµ½ÕZÕj«^¶µÿVö×Uªßº½º«µëªÛj¶ºõ«VëwÕ­w^¯µµ{Ýö¯oõZ¿[uz­zµnªî­V½ïzêßjîûëU®­¶­½îêíU_Õë{Ö߮ի¯]Þª¿þîíº«öõkm½~×ëw¿Ý­mÛuë_ÞÛUW»_Ú¾»zÕk×»uÚ¶ª«ªõkvý½j¯vºªºÖûWµmZ®ªª­û_kÿõ{ºµª·ZÚêõëjý®ë½]µ«µÖÕªµnÕÛÖ«kÝ~ÕZ»·}u¯¯n¯Ýµ]½®í{UU¾»mUíU]kZ«{ÖµU}¶×«ZõÖ¿vµ}uuWµ¾ªú«î«_^ïkuÖªÚþ÷½­ÕW¯o«öý¾«{mvë]UU«Uzêú«Z«µkÖÕª½¯Ö®êÛ½ímnµvµní]^¶Öÿu뫵^í[ví¯ovëUuUU«®Ú½ª®ûµÕWníjêÝm»ÚÕê­ª­{zõ½m«¿vºÖª¯VªÕ]õZÕ®×WWmÛ]×k][­Û«í¿]mZ«zÛjª­ZÝ­ªÕíý[î×{{û­U®Õ]W][[Ûj«uUWÕv¯Õ»ªúµjµö¾¯¶íÞÖªêöµõ][}_÷]êÕ{zßõZûo÷V­ûº®úÖ·ZÞÖÛõª÷ÖÚº­ëm]õµý­]«UÖª»»¶ÚÕ}Õ^½­uêþÕ[n¶íuªµßoÚí}·µöªµnõuVëªÚ««¾Úª«Uÿ]µ·mo¾®ª«}]j«ïZÕ[un«wuw¯mÛ^×VÚ¶÷m¯VÕZë¿Õ_Û[µzµõÛ½_[zº¾·jï_}]ÚݵûïW[oVõUÚ·×WWuµ«[u««Zº¿½ÞÕ[w¿Õ«Ýª«m­VºÖ®ö¯Uݺþ¾»]¶«jímë}íûVÞûnÖ«wëë}Uu¯«»Z½UoÕUWWv®×mUVë½oÚÚÛV»jûUª®½ZÞÖª½¯¾íëÕWU}µWª·U]^ÛZ߽׶ïÚºÕ]­mµoÞ®ª×m½¾õ«Un­®ºõo«uVÛkmwuVßúÕZÕv­j­[®Õî¿þÕÚÖ¶Ûõ«[ïk[[Ýzþî·µªÝWVÚ­¶ÕµÕk¯k[V»ÕUZ«¶ºêÛjµ{Õkÿ^µZ«»U®ÿªÿ­}Öªªúê»u½­«UmUZ«kuw­Õ¶êêÝ«U[oõÕý]mµë·««nöÚ×Zï­·«}½ÝõÖ¿Zê¯õö»º¯½]î¾Þ·ÕmÕuVõwwÛýVµí®÷[]­U­¶Þ­×w[Uµk®ï_Ví{omjÛ_ÝZ­jº«]k_®×u­¶µëkZ¶Þ¯V­Vµ_µkU»þ«ûjµU{_ª­¿ï[Vµ{ïîë«ÝuU^Þªµµ÷}{][»wz»îº¶¯¯ªÚöÕUV»[Z­¾ª»uªºµUõvë×u­õªë«ÛmÕ{»®ïv×½¯ÛuUjöêëw½kjúµëkµ×íê»ÿõÝ«Ûo¯^Õm¾¯ZªÝUÿ­»Õ­ëuU­uZÚÛûªµm«ÛÝW·û_½­v­¯jªë×ëµ]ÚªµÞ·ªÝÕº®êß½õ«mv¶­¾ªÚ½W×U_UÕÝ¿»¾µ»»{km}Ößo[î¯]ýêêµjªÖê®ÕVýÕU­{]ºÕ¶êºµ«U}vÕÚÕ­û½«jÕWÛöõ­m¾­¶í]«_V¶ëªºîÖ×níÛj®®½]m»õÛÞ»ÿº¾ªÕõZµn×ë¾õ]ý[nêßßvµujµ]ÛU««{vÕ{n»µ®íU­­ªÕnÚûõ­»j·­mÝm÷êÚ®úúª®ª×·níZê»Õm«u÷jªª­WzºÚêê·¶½Ým}ûí«VµZº­j®íwkßUÝ]ªín÷{oou¯UÛu«Þ­z¯µ¶Õ®«kVêûû·{WWWWÕ}{vízµ^ê÷Vßm[¶­¶êÕjõµ¯Z¿·º­ÕëjÛ}«uj«uuê­êú¯Û­­õWWÖÝUmU[«þíZªÖÚ««WmÝUºª¯z«m}êî×mõnßíª®ª­ªÕÚ®¿nµ¿ªª¿Ú·îíVº­v­ûWjÕõÝ­ÛmWµ{ûu{ݪ¯U¶ê¶Õ½UûíÛ»]Õ_­®ýn»úº­ý×ëÞÕZ­U}U»nú×]ö¯ßu_תöªµõjÖ»Ûn«ßª¿UÛ½íUêÕWkv×]UÖÞ«¯Þê¯VÕê÷[Þ­ªë_ßZîë¿n­îí«uU{UvªûU]í­ÛµWw«m}×UÚÕv­ÝW¾¶­ýºª«zöª­V×[VÕz«ë®·mmëUU^ݯ޵ª«VýîÛ«Õ]«]jê믵[u½k}Û]ª·j¯[oU^ÕÚ®¾Úû_úëÛþ·kUí«îÞ®Ö­µ]k®ê»Öïî×j«µ«¯k]®ª½ÕÕíÛ«Zú­öÛÝjµïkÛïvý]Umõv»½ZÖ·×W»z«¯vµ¶ßUúÕU­¶ßûÕªõ»_ÚýßÖ­íÕ}UÛWjµ^ºÚÖö¯¿km[kýª»uûªªÝn¾î«­ßkµíZ»·»unîë¿W_w[vúëÝïj«ÿWí÷v­{Vïum_«wkj®·ªªÖµn½­UnöÕßWºÕWkU­¿¶ÕkwZª®¿Õ«^ßj­ê×WÕuWÚ¶®×mW­[×ÛïWÕ×Uþýö×®ýµ]õV»j«Zªîê¿oUª·»ëêõj¶­«U¾ªëv¶»~«_ªÕªµWVë·ªÕתÕV«·U¯kj­­kUj»]oWÚßVïWõWjê«^ÕkWÚê¶ûm×ZÞ¿][«¯zڪõ¶ßÞªµõÝW¿ÚºµÛÖ÷{ªÖ«õºïë~ÚÛ»Þõ]jíýõúî÷kõ]¶«o[µµ¿ukÖ­kíöÕ}êÚöîúÝÝUþëuv×êûZ«^ÿUõvë×¾®ÞµÛww}í«mn½­ë÷¿U®«ZÝVÖþ×WUvµ{êÝ^þíÝß«mÛkªÿk¿Uk{U~µýZ­u«õ«ª·ÕkªªÕõ­ÕÕUUU^¾Ú¾ªÝjþý[^­W[VûëõVëUºÚÛ[Ö×WÚ¶ÛÕuWUzúÿkêÖªÝjÞ­W{ÚÞµwVõÕ­Ö®ú·[^ëuomõU]­UV¶×ZÛU÷ßê­«j¯^»ª÷V¶µov«õ­íkj»W·Ú«¶Ûí­]m­W¶ªÛÖÚ¯ZÖïuß»ºÚªµÝVíºº×µ{[Z¿mÝ{j¯µÖõ{[­W]j«®­z¯­ª®®ëm­ZµÖï{ê­Ú«¶ºï«îª×Vµn½þ½UU­}^ÕU}Û¯kúÛÖ®®·m½oÝvê­ª½]U«½jÚº«»{Úí[[ëZÕ[U·z­vë¶ÕÝﮫwªµ­î«W[þºïõµZíÖ¶ºÚÞºÕ~½mWµë®»îíW_U¯µÛm^®Ú¶«×õmª«¶õ¯[]uÖßZºõµVõºªÖ¯­ÝZ¶¶®õkÕoWïWÚÿº­m÷ÕUUÖëݺú«õ÷õ·Uª®Õ[UwªÕ·UZ·U{UÞ«jÛV·Z­vÕjªÕººªª®¯µWº«UkZÛv¯·_Û«jßmUkêµÝýU­ZÛnª»u_ZîÛµ¯[ÖõZúývºÕº­­mUßê­®Û®ïÝíÝjµµu»nÿuj®í]V­ªªý®ýö÷]ÕkÚÕUoµÝ}VêµWÕº»{µwªª¯]Õ]×UmW«{¾­÷]ªÞ®ïjÝõ_j÷µÚ÷o]Wú»×^ë·ê¯ßjÝ«]UVíݽw¯UZ­õ­¯mU­[V­vµU]Ýo­ÛÖ÷Ú«Z½ÕÕZ÷ï[«n«úßëU­[û×nÖ×_[«½UjµuÛ­«VëZª×Ú­öûÕ_VõêµêÝ_ºíWºÿª×U»WUªÚ­Zÿõ^ÞÛ[V»µ¶¿×Z­ëmW«þêµuv¿k¶×]]}owÚ­íW_u­½_{ZíWm¿­º½U]¯Ý}·¾µU«õkUW«ï»Ýwµ¯wíßZ¶Þ×jëUþë}×k¶Õ}¶µ]ßz¶µÚÝj­ÝW­on«UVݺÛ꫾ýíßûW·×Vëu[ªþ¶Ý®Ýo~õujî¯ÛÚëjö»®Ú­U·zÝwꪮ®¯ÕÕýîÖµíµUoVú·_ÖÕª¯]«®ÿm¶«Vúªí^Õm¿Õ×zöꪭíÕ«nºÞÚ«kÝÞ¿ZµUW[»mªý_­êµÚª¶ªí[_¾®×ªº¶«­W~¯Õ««v«Ú­}ÛZª¯Ö½mÛ[Zûvî¿}­^ªí­«µµkµ^¿ßµjµ¾ýª­wÕêª×í^ÝÛ½êö®Ûëuv»mV«·»ëµUë­¯«oo]¯n÷ºííë÷{VëïmµUÕë]׶«ZºÕoª«uíZÞ½ÿÚ¯½{Ö¾µö­ª­ÚõUÕ¿ªÕÚÕïý»Z¶ëÕuUj­vî×·Z¶×­µÿ¯®ºÖ½jÚ×zívµVë[º×ëmUëkWÖ¾×j¶ªÛï½{j­ÕkýU·zõZëZ«v»«º«ê½Õµ]µ{^ºÞë¶ÖÝm[mj«[·÷ª»ªê¾î»^­}ukUµê÷k­{kîµÛZÛí®Õ]«½µÛUÝV»ýµU¯®÷ªÕÕUUªöíZúµöµ«﮽ßÕÞ¶ºº¯ëÚÕjµZ½[UÞ÷µUoÞ½­kk_]u¯k}×½÷uëÖÝVÞº½k¯­on­Õ]«þíWº®®µ[ª«í»v×uíªÛÞÞí^Ýõ·«Wv®úÖº½m½Víë½nïWªÕkz­]ªÞª«muv®®¶þª«Z÷«ªµÕõ[_V»k[[µÛUëmºÕÛºªÚÖ«»ªõwû¾ªêÞ®µVÕõ«w®­Úªªû[Vëo×víÖª¶ýz½mVÝîõ¯Uíöµî½n®õ×ûu]m^êßjÞõ»ºëUVÛWÖÕ½Õºÿ»mÛµj¶µ­µªëk¯íõ¶Ý÷mºÕ««]׶ª¯z­]«Vöݯ«®º¾ªÝ_¶«}¯¿u½]µu¯mmíÕÛªö½½U»ú½¿×Þ­ëmÛZöêêöÝÕvªµ­UUU­­uë]ÕZ½nﮫ¯ZÚú­Z¾½­[]º­UnûZ­Û~Þ½kn×W[Û]Wkoú½ëjºªµªîõuõ¾ÝuV¶Ûúºµkë¯j½Þë[jµW]µmÛª»Ûwºß{nÖª·¶­­oö­mWî×UÕÕÖµÕZÝ»~«}ëw¯Z¯kÚÖ¯wªµõÞïªûµn»WZºÚµªêêÕ«uU«ª×µ[vïUZÞÝÚî­¯Û}®ïVõjÕ^µ¾Õz×UkUo^×µÞ÷mWºë×wjëUµ½_Úÿ­½kU×Þõ½ºíVêíÖµn­ÚµwWõ½¯µZêê¿uµ½¯×U÷ÚÕ¾«ú½z«U]W·Z««µÕvºúÕwöµUZ¶º¿¶ï­Ýuj«ZõêõõmÖÞ÷[]×UÖ­«j«oµÕ®ßo­êÝ·¿ºî®×vªêõÛvê¾×{­j½«««WÕÝíþÞ«×ûÕÖÛ­Wj«þ­WªÖíUÕªÝýÛkÛWõÛ]U^·uZõWÚ®Õ½¶öÖÖÿ^¾Õ«[uÞÕuþêÖ«ý«¯n¶µuU×êß·Ú×Õ®µö×^®­k·ÖëZÖÕÕ×_[»Þ¯^ÛêÛUW×Wº«{m®µ¶®º¿uUÕUªÕú®®Õ«ºîµï«]_Uëj·j»µZµÛý«Võz·ªöÚ¶ÕzÛ~þõö®·Ú½]«ªý¾êª¶µ®½×mÕ¶ÝmjµmkUÚ­¶«_nª­ÞêÚºª½WuÕ÷vëUÚªºî­¶®íµ«Ý·ªÕu½·Zýö­V¶ÕUß[«Ý÷ëUuÕv¯·êªÞíÕ׫wuZÕmµU]_µÿW}UZ¾¯~ë½êµ¿Un¶ëu·»U}u]uª½¯V¶Ý}jÕ}ªëu[Vµîú«ojµÚ®ýÚ·V®ÿÚú׫m[~ûz·ªµ¾Õíªëí몭®¯[ªªýÚÕ½j·U×zµ·ö­Õz»mßm«k­÷«ÕÛU}z«ªõÖº¾¿¾¾ö÷µm¿UÚ­¶õ»^õê·ím¿ÕmV½ª­ÛÕvõ«_½]]UWu]µµ[v«j­^ÿëzëõëkªÝªª­n«ÛÕ»«}ví~ºÝ^«{j×nµ[ê­ý«ÕÖ»][µµnÖÛzÚ­¯U]{uVëW_jÞí«¾«{õûu¶úªÖÚß[÷[ÕZþ­ýêµÛ}îµV®ö®ý¯Z«uvê»×­öÛo¯µZÕVµúª«Z«ª¯k_VÝu¯»{Vþõ~Õ{^»zê»{[mvï]½mý¶ª­kªÞ·V­ê·jÚíW«ZÛªÕ«íÛ½¾÷ïµj¯×[öÚ·õkU®ªÛV­Uª»õÕjµjëz»ªíúµmzÕ]Þ¶¶¿½Ýþê­kwVÞÝV¯×]]®»]n«½µ{]Õýj»½okWû[Wm­ûk[^¶¾úµõ^ûoV®ºÕµ_[Uª«zïUmÛ×uºª««mÝ~ÕuknªÚíí¿­möÛºÞ×Z·kÕßn¿m¶Ûûÿu¯»UVîÝum»Z½}kmÚ«j®ÕÕmuVõÕêë÷UºªªÕ¯®ÚþªÛÕojÞ÷µ[U_úµ]VªÖíëÿ__µ««Wj»ou·vÖ«ßý®¾ºêµj»}º­úõë«kmÝu{·j×o×ëjª»ß­ªª«wÖÖêÕ~íUõ¯·[ÕWuvõUzÝ^êÖëUjÕ­~µU­­Wkºµª·ªëÛÕ­»ª«×~×U×^úÕ­UZßkÕ×µ_®«­k}jík»®ö­«­}]»®ïU^µµooªûÝj«­]ªµW×Ö¾­k¯ÛßU]Ú¯][Õ}ûV½ÚÛkëúÚ¯Un¾½z¿ë{{öÕ[UvßÖíÖÛv»m­Wk[kZ½[mõµêõêíß½¶íê×U«víê­~ëwUû[ÕUvêªíª¾õU}U^µíkmUªÝuªÚíVµvÚÖµ]ïVëë_]¿·«V«Uý]Öïo_ëZ­Ö¾«zÕ­ÿª®·«mj¶¶ýj®ÿm¯V»êõ[ÛÕWí¾¿ºµ«{êßz­]ªöÝ»UZîî­m­®×~ûÖ«¿Úï][¾­õW×­UíºµzÛÕý¶ß­ozÖª·»ªºß}wW}ýkZ·jº½vªêµë®Õµ÷ÝÛ^ÕkÖúÕV­Zª½mU­·Úïõ×W·õmuÛ]Z«j¶»ûo~ú»ªý¶­Z®Õw­ÕUj¯}¾»ªÞ×k½jÛm­ÕUn¿W~×v궵½ºëï¾ÛïÝú­jª«ê½Õ«_ºí«­Z»«wUnÖªº»Ý×v«zªÝÕn«W]µuWª®­Þ¿¯_V«ªëÕÞ·UÚí­­ºµuÖ­W×ÕZêª×U¯mûû^ºê­}ë÷kÕmª«z­W·ÚÕ½îõ×w]«o]Úµ«·Zºë½Ú×W[Uݯkõ¯WU_^ým_½UÕ]õUU¯WV®êÝZªû¿_]jê«V¯Z­oÚÖûõ¶Õjõ¶ÚªÖµÝÚ«mÖ¯êÝV÷¯Wk[Ûv¿n­kºÚ«zÛ]}U­UzÕ[­«]ZÝö»z­ê÷ö¯w{Vµ½ßj®Ýµo_nªÚ¶ß®¶µínûÝ¿º¶Öï]]u×­m÷uUuVÕêºÖÕ®ª­«W¿÷mÕUoVïv­jêûîõj·V¶½¶ë½êú­®¾ßnöº«µÝ¯v×m»«z¯kÛÖ¿V«]UïU[º»Vöµ^¶¾ßUÖ¶ê·{^·ú«×]Õkªªíê·µZÖ»«zÕ×ëêï¶×ú½¯½®õºêêß{ª¯Zöºû«Unÿmjµ­jõ{Z«ë­ªÕnëÚÕ®ººÞ»}mUoU»µ®ÕmzµUÚ×»^ªê«mUÚ×·w¶ýUW[­»^µu½µõ¯ÕW]j¯ÖîÚ«Wukïzª®¿[¯ªªÕµ¶î­{«W¾«W®ª×¿uµkUö½U[»uúÛÖºÕnýµ{¯vÚ­Zïµ»]­[Û}¶ýUnµ]Vû}m«[jª®º­}oWÛÖª¶­v«õÚ«õïWêõ«Uõ^µoµUzõ]UµµêÚ¯­{îý·ß·×om_[[÷ý×U­vïß}W¶úߪï~íÞª¶Õ«®Õn«UÚÛ»[Õ~µ«ímm»ªÕÖ÷~ÕªººÖÛ×zÞªêݺ»V«uµUz¯júïVöÛuÚ«]kZúÕÞ½zÕª«m^ÞÕUÝuÞºªÛßï[«÷U[muÚ¾ªë[kmW¯Õ^»ZÝ]mµnûUªÖ¯uªµî«}Õµ[꽺®¯ëz®®½U~Ý{ªÝ­{õnïêÕª­kÖ×u]VÝW»«ªîꪵ¿«õ«ýõZîÚßmW¶÷ëUÕ]ö®ºµVêÛuUk¾ª««Zî·u~Ö®Ûµ[¯^µvÕ×jëwZûõVí]­]¯uW[U­ÕÝz®ßmmwíµU{ÕímZÚÛVªÚ«W­«·¿ªëÕmzµ×_kª­ÕïºÚÚª·Uv¶Ö«îïí}U«ªÕõõ­ªõZ¶ºÛ×õ_V¾×uVÚýÖõ®ÕíZ¾­w«k[®Ý}Vºî¾î·Þ­UõµuµwW·vúÖÚ½ëníVºÚµWVë[êõ]V¿m]jÖÕïWW]jß»_ZêÖ»köÞ­Wj»îªÚºªµëÞÕ­íß«ë{z»U½¯j­½U}­ïµ­Û]vÕn»{Ö÷U»kw·úÝkÕ_¶ÚûµVµÞµw¾­÷ª¿­þÕk^ë^·®×­kkª«UWm­Õ^ºþºÝ¯oÖ«z®¯ZÕ½ªªÖµ¶ë]ë÷ªµ{^¯n­{uUwmzÖꪮÖß®¿ªÛUZöêÕÚý­ÝºººÕWÚµª­Ö®«í½­vö«}ën¯WöêÕ½k]]V·k«×v¾«~ª·½V­kWmmkVµßUÝw{W×íí·ZÚÛknª¶ê×^®¶ßªö»[j»oÞ¿­[Úµ·ÕUµªµßZ«W®ÝºÛz®­¶Õï­ë«÷ý«uj«ÛuÛ¾¶í{ëV«nÕw«UUª¿nºÝ·wë­ÛjÖÛ¯­¾Û·ÖÕ[·¶µýmû[j»÷Umí{«w»úնoj×U»kZÚ·ß«~»×Ww{»vú¶®¯îꪭý}~ÿµÕ^½[U×ï¶ö·[Ý]êû_¾¾½­V­[½­·V¾·µoZ«ÕUïU÷×½w]V®¶Õ}U{WÖÛ]¶·ZµUjýU­û»í~þÞê­÷~þÛnÖ«ní­êÚ××­Õjºúë×»míjµµÕÿ×­Vî׫íjÕm}kzÖ¾õ¯Uv­m®­ÕºÕV·®ÕµUkÞÝW¾Ý]k^µZîë½ÕWõZîÕÕví_ïU½ok×õ«¶Þª»]ZÕU^µ_«ë½ªµÚÞ«Öö÷µÕûV­j­ÛVÕ×jݵzí[¶ÝU_ëªõÕ»ÕU{Ví^í[knê·^«ûj··µZÞÞ®»jª×wzÛmn¯ê»kVÕz÷ö÷^­uW¶¶í·¿®·­µVÝ­[][«V·µWÚÕÖþº½ê×~íÛ«·Wkw×Öî¶õWV¯õ[[ZíUª®õÛ­¯mWõm«W×Uum¶öêÕ_·W»º¾»µß­ZÕ_UÚÕo]ëÕ[Zõ]ývý«ÞÝmuuõ¿]}ªí½uµºÝmU÷íUj·WWÝv»oûµjµ­{[»ûµ÷Û¶¯k·­ë]µw×Û¿ÿꮵªÖ·»ußk×[WvÕm­·Ö¶­ÞÕ«z¿úúºª«­U]·Ûµ[mîíUukõ½V÷ZÚªûumVµ_jµm­uz®ê­n÷[¶¾Öª­ª«{×~¯ª¶ºµUUUª¯_[u­W®ÝoÕê­ª¯{½»uÝjÚ·jõýmZ»Úõk[î«»Wõºö½uªõoÞ«ÖÕmWoVÝUU]ë«í~Ý_u×ÝÛ½_«UníWkzݵZío«U«mm¶«í­îßÿw­UjêÛ»Ým^몪®º­U¿ªµ[kmVµj«W_µvÚ·¿U½­k]^ß]_}ݪÕ~þÕ×Ý}º»U[Õ­WÖî«w^þ÷Uµmmõ]«[]nîö­÷µ­êÕnÝ«]k~õ«öºýmWÞÝ»ªÚö­õ­·]ûu[·W_U{}«êºõ[kÕ­wV껪õkjê­ªÚ½}½Ý­ï¯»W]uV®µW_~­m}o·Zþï«jÿ­®ÕëúÕm÷·»mWÚ­ê«w«Õ}n×[Vû·mk»ïU·_ªö×_uêÖ׫jªÖÚÛÚÞ­·ºÖª«[×wv»Uo®­u¿öºíkµªµõ×UÛmj»Ú­mßý[u_mUWU«×]kºõ_Ö«¾­]ºÞ­ZÕÖÕº­­Uj¾ý¯ZëVÝÞ«ÚÕ]uþÕ[»Öªªöªö­ö·UVÝöÖÛív®öÕV¶êµµÕ«÷ÕUÝ®êÖ¶ÿÕz¿ïWÚÛj·V»Zµ{ê»×{º÷îú­«×zÖµý}¾µíu®­Û·ªÚµVû¶ªßmZëuw_½ªûZÚ½Vï}WUÕoö¾õ]uÞ¯UjîßZ»u×_u^®½umõ¾Õû÷~ÛúµõªÕ_]këÕ_ë~»VÕÞ®í¯«û·kk¿]nýµ÷ZõU­U·ÛÚí]úª«Ý®ïUmkU®ªÚû­ïmmjõZÖ½UÝU_U÷íW]ïwwÕUw¶¿Û¿ÞëÕoz·¾öí»Þ«õ×zÕµ¯nÕZ«îúªÛkzõ[×nö­UV­ÕÚþ×ýWº¶»¾¯~õ¶ÝUv®¶÷U«V«µj«[]UvÞëj­mWõ}mV¯¿UÞ­{WÕµ­uZ­kÚ«ZÛ½_WUuöµ}¾ïÚÿÚª­Výmkºí]î«ÕzÖ¶ß{½½µ­UUk]j®Ûu÷[^ú¿Ö×µ¿[n÷j½UwZ÷~ê×UU½­WWVÿ«íª¶®­ªÝn«V¯uÖþÕ[jÖ×]öÕ¾Ö«Ûm»·uýk]uVëúÞê×µ··÷WoÖëmݽj«oµµký­{^½wêµVïwo[½Õ_¯UßVÚ«}z­k^Þ¯í­Õµú®¶µWý[k÷º«ªµ×êÚ®Õ^×^Ö«n¾Û^ÝZª¾Öþ«ªªÕêÞ­UjÝÿ_ëµVûÛZõu_Ûnßý½õÝUºûÕ½W½j·ªëª×µö»uµ_ëvî­[UUW½Õ½×m]ÚÛµmVßn­÷µouUzµ­Õ]¯Zîµk^­ÝµW}ªí¾ª»Võïjª»v×êîúÖíµ»Õ]oµ­V®Õ«·[Öªê®í­¿ê­nïm¿oÕî®í~Ö»u¶º×Uúêö»U_ÚíV®­êÕµµÕZ«jÕ«v­Ö­Û^í½­«õÖµZ·z¶·÷Ý«­jºßú¾Ýݶ÷ë«uZºÚ«Û®îõ}Ú¶ß{uwj®ÕuµWõõUîÚµ¶­­z­k÷õ×îïvíV¾íú­¯õ­mVªÞÛwu]z¯Öµµu{ëªëW[Õ­Vëzµ½ú·ýº«Ý·kºöõݶ÷mZ¯zö®×íªï«j­Ú½WºÖ÷ÛU]U»¯ým_zïv½v½{kní¶Õo»nÖí]÷»µoîþÕ몾×~öÖµ^ö­Vu¯mZªú¿»ÚÞ«n¶µ½[ëë^Õµ¯U]m[ëõzîûjýk­WUuïU]w^·Uýk­¿®»×¾µjÚªíº«½m×{UUªþÖ­«[n­þöÕÚÛ]µW{z®íU×ë÷u^º·jûuíoUu¾õ[꿪Õ÷ºÞÞÝ]w­î»õ½vµ¯U}Uz¾¶µ¶·¿«mÞÚõU»jÕªÛk~þ»îÛöí¶ÚÕUZµ½VªÝÝj¶¶ëjÛ»Ujý»]VªªÞõõ®Õk^íuUïWz¯ª×õÚ×wU¶÷êÖêÞµ·¾Ûݽ_×~·k®ÕzÞë¶Úö׶ë]Ö¶í®ÕjëkÞ­Ûuv½_V«·nö÷v«WÕê«ÖÚÚÕ¾ª­­íµm­kjÕڶݫ۽ýjëªïmo]Z¯íëjµUª­ZÚ¾­«ê«uj×ÖîêÕ·Þí«¾º¶îªíZö·ë½UUkÕê­zõª¶íUzµîÕ[¯­[ª­ÕjÛõUUoW½UªÕëvºÿÕUk­½kw^½Uu~UjÕVíÚ«½×[WÚ껵_këk»ýooU»UUÖ¶ºÕnª¾µÛvÛ}÷»­Zº«ÖíÚ®ªªÝ¾­­Z¶¯µß{jö×ÕÚê꯻®®½mjÕ¯ÝÕUîêÿ~µUµ[ºÖ®ª­Õ[{Û^Úõ_¯·¾úµ[µ×_½UoÖ½¶ÝnÛûßjÚªºÕk½m®¿mê«j­ëzÕöÞµnµn®Ú®«[ßumv¯¾ª¾µë[uÚõUõWkUUVÕm{µwz«­Õ]}­ªÝ]mUZ­«Uº­×W·¶½mïº÷®ö·»ëVµúÚûUm[Õ^½ÛWW×ý»õ­«]k]Õ¶×õvõ«ªµuUµïí]]}UÕUëß®¾ê«u]×ÛUzÞû­Õ»ßÕ{_[Z®÷Uw«í¶ª»Ýûµ]ªíZ­kZª­V®·[}]jöÞªÖ½o×Ö¯Ýk®»½[ZªßWÚ½nµ¯kÖîêµÖªºµþÕkÚ»ú»­ö¶õÛ«¯­UUÕÖÛÖí~·¯÷ÿÕ]ªëUÕªµZî¯êë»ïZÕu÷¶ë«]jê«Wu«µ«mU»Õªúí[®ÖÝõÕZ«wukv«^Ýw·kÖÕ]Ý»z¯ªêÿ[«êÚÛÖ¶«½Õ]u»Uwµ¿Öիھݭ»n«¶¯­}ïÛ¯zõ}wv½}ÛUUU®µÝ[í¯UÞ­îÕZ¯½«nëº×vÕªµnîÛ÷êÖê÷Wµ«­Ýkwªª«­Õ×{·÷U½ª»W®íoªíj¯Ú¯®íV¯_ª«ZÞ··ë}kmª·_»U­þ®ÖßWÕ÷]ÝÚµ­jþûúê¾ß·¾ÖÝZ·nÚÚµÕú×VÝ[Þí¶ªºïoÖß[«¯«ZÖ®í]í_z·omUk_úµÕî«[û««¿­Wª¶Úª«wU­Ý]VÝVªÿúµªµ¾««ýÕzÕ¶«úª¯Õo^¿Vë®Öݯë^íÛþÖºÚªºµ_VÕZßêê«õê¶ßZ×VÛ­ïÛo»ú­mkýuUUjê¯õZÝUk¯VêÚÕ»·ªºõ·në×V«UZÞÕ½­ª»]k«]¶Ú»uµªîïµkU÷îµ[W¿VÕªª«^ûwWï{wz¾ªÚíêÚ·õmVµíÖ×}uêýµÕkzöÞ»UUöõZíÕÞ®ÕÕuºÖÕu­kmêõîûk{k¶º®Ý­^뺽¯U¯õ½{µÝW^«µµ_ënêµWUë÷V×w×õ«íoÛnÛ®­õÛ]«îªÕ®öû«×·õ­Û·U¶·ûZý×V¯[j¿u«êµuÛ¾õz¯®ÞµU~ÞºµªªÚµVÕ]jºÛjµþ¾«[kÛÕªµ{ûº«j¿í½VêÝêõVÕ·êÖ«j꫾×몵_µV®®¯uÖ¯jý{oZ­º¶­½ÝWVÚ¶Ûªº®­¶ºªÝõnë~×[uuõ~ëk»¯]]º·ÝÕ«¯V×Vª×Öú¶¯jÞÝ]·×»­m«_¶ÝkwUUªízþúÕm[úúêíÖß[W«u½U¯ßnµ·j֮ꪪÕV¶Úý}V««UkýîÕj»Ûµïí®ÝõÝkÝUWµ¯jÕµÕUµ«uwkº×v««®«[þõµºµ·uvµwõ^«UýWZª®¯kZõjýZßW·¿VµjêÛ«Öê··íªÕ[U«v¯U®íWvÕÿj®ÝÝU^ªÚ­»W[o½ooUßµ¿½mW·­U^êï~«ûwß^ë[mÛÝý·×u«­[Ûê«zÝZûúõ¯º«v­muªÝº¶Úþß¾Ö¿[^ª»ýw^ïëZ­{z«jº¯n¾ÛÖ½VûUwjµ»v®µõªªªÖö«Zª¯j×jí^úêõ­ë»~úÕªêÞ»¾í¶Û¶úýUuuo^ÕZýÖíÚÖº¶­]W¯U¯«zÝݪ»¾»Ûú×wV¶º­¾õ¾«÷«®ÕZ«mn®­«ýßVëû­«ª®ß»ªþÿnêïÕþëUU­ZûmÚ¶Õ­÷kªª­®¶®«ë·jößÝî­_UkîÖÖ­v®ë­­UoÛº«]ß½j­­V®­êÕUn»«ßÞêÝWµ»Uu­ª­Ö¯º¯µí¶ººÕkz¯Õu×uUªúõ«{«_uu¶«½ïÛ«]]m^µ«îëz÷_^®ÛV«jÛUo^õk__õ»}¯ÝÕ÷W]Öío]ß{ÖºµªëÕVûUmí¿Uׯïj½ÕUë[¿u]«ê×wªÚ­jß~ýöÚ¾µoªúµz×µÛµZêëvëµõÕÖõ­Z­Ö»Û÷^¯u·}ëÚÝÚ÷Uk[U]Þí­^ºµë®ªÚÞ«WVÝûÕ®ªÕUkï_µz»u½{öªÞ¶­ºµµ[v½×_Ú¯_»uÕ¶»^ªª¾ÚµkjÖ¶Õ×jõ½îÕkº«¶­U[Z¶ïÛ½ëZï[¯Õ¯Ö«Õ[]u[Û[ÛjªÛWõm~·]«·«®µuÖ­Vªª¾Õm­jÞÖ«Õê­ëwÝêµk[Z·÷½m}UÕ]®õn¶Õ]ÕUêëuUnê­Z«ïÕÞ½]÷ÚÝuÕj«[oëw­½U]»n¯]m×µzí®­}zµ«úÝZÝvÕVª«Þî­zê¶ÛÚíZµVª··{Úöû~Ú×Z×õ­¯j­¯Þµv¯÷«}Ú»WÚ­¶·¾ê¶êº«Ö«ïµµÞëõÝëÛ®ï[Uí«·kµÝê»[}¾Ý·_~ÕWZ¶íWmÛUÛÝUÞ½µ¶ëm[Z»ZºëZµk¿m]·um^¶ÛÚºµÞêûªíUßzµU««»­ê»V¶Ö«v«ÿwu­{µ­okÚ»UWUVëo׿«oÝujµªªÞªÖÖë{õnêµVÕ·]ª¶Û}êûß·zêî½mýÞµµoºÚª­]kz«WuÕÕ}«Vµm[Wußu¯~¿UÝvÞ¶ÝÝvÞ¯V¯Z÷_Þµ¶õ®ªßvõªº¶¯Z÷uUmêî×^®Û«­oíÞº¾µ»Þ¯Õ·v¶ÖªýwëjÞ·ûv»ÝmVê­Zª®µ¿uû×Úªêî½mÝZ¶½ªê½kµW«­¯µUÖªªßªÞ¯{ÛZ«Zö­ªÛªÝzíµUj­[îÛk۶߭»·¿ÛVÞªµW¾·WÛ}^ÚµoUÖêíuª¯ÚÖ÷v­÷ý[^­VªÞ¯×ÕúõÝUµwÖë·ûýªÖÿÛ­«ª·][k®×VÕ®«º­µõÖ«ÝWwj¯Õ÷­»~«v½k^×Wª¶­Ýzíªõ»wZº«W·}õZׯuªëµVµ¾ÚÖë½UZºªµî¿zªöú­V×[}û×ÕW¶­]ÕW«Vý®»ú«µê¿ZÖÝ_um®¶ÕWþúÕU_m[ßîµUvÕ®û]«wwß]ë[W«vÕºûÞÖº­m·]®Ý^Ö뺯UÖ¶¿¾·Ýu«W¾µªÞ­«µz­uz®úý^º×µZ¯­oVÛµkmÛõmÕúªÛ÷kíÕ¾«}jÚ½U«Ö­UwÛZ­V»Þ·µ¶Úöª¶ºÞïmÚê×ÕÚ®®­«^»«jí«º­®µµµívª½V«}uµ[®ÕUµª­[^ö½kÕ]¶­Þ«Õ¯ªí×zµµ]õ}Zµ¯}ª¯µ­[m¯ßo¯[ªÛßVªÝ_oum{·jûÖµ½kv×·Uj­Û«kÕ»«]­®Ý_·]·oï·¯Wj®µ]Ö®ëÕkûýõµ¿ºªÕö·÷­uÛk~®½Ö÷Õn뻪ªªëÛ[Wõþ­_j­jï붵Úë­^«wê«ë¯ê·oV­ïU­VëZúþµ~íÕý]»­½Õ«WUU«kUuuÕêÕm®Õתꮺµwuúµûoj«ÛÕkU«U«Z«W]{¿kWW^ÚßëVº«»¯V«µõ^ÕWzþ¯uÝwm_[ݵm}ª®Ûÿ¿­·Õ­Ý}nÝu·ë]oU]®÷õkºÕú¿ªªÛöõ]kVÛîí»nÝmÚÖª«Z껵ڪ·Ýÿ^êûvµ×^Õ^»õÝÕÚêÛnýj®þ­­Uµ¯Uo×vÛ¶½kjê½mº×ë½nªÝ¯vªº½j÷o[ý]Vþ®Ú¯×ÚµºöÕm[··^î­]½mUonªýªúÛíÚ¿]µ¿mÚ»W}mêßWÿÖ­í«VÚíkmu[[ZûU{¯µ­wo]ý~û½V¯«]õíUûVÖÖíßWn»×®ýꪪ­Û_Þª­«¯ë»ÛµV«W®ÖÞõ­¯ëVÕ÷Ý}ÝîÝÕ«öª½Ûk½«­UW×^·Vµ­Ö­uÕþ¶ÛWöú»µ_õuÛWëÝ»jî÷¿UUuµ··^½Uzþ»V­zÛUUm¯U­V¯[Õ½kv¯mëÕ»U®õ×uªµþ­¯êª­¿®Õ½[Ú«[«êÕWVë»×W¶ª÷ûkm[uv¶õ^µ·»kßî×~Ú«ujÞ®®íºõ¾®®­­Öë­u®ªª«u»[n½ºÕÛj««UU»õÕuÖ«v­kZÖ·õ×ZµÛ½«÷mv¾ëj×Þݵv«~ªÕzº­}º»÷uµîÝWWºÞõjÕ_Vúë®ïnêºõkÕÖïý½êªÚ¶½Ú·UuÝvµZ®®ª®ÖíoU¶î­v¶ªÝV»_×½Vß_uúêµZ¯oþ«v«ª»÷Û¿º®õÿ«WÖ½[Vÿ¯jêݵսÛU»mjµÝV¿ªï×}U÷ÖÖ¶í]»V¶Þ¯]ZÕkï_Z­W[µ¯jÚ·¯u^¯Umí]¯ZÚï¯ÛU}ë~Ú«í¾þÖý¶®»º®ï­»ºí]nÝÛnÝU«VêÖöªîµªßZ»÷ß®ëV·Wz·Vµj¿^«êª÷êê»­}®êªßjª½vûumÖªµWwÕV«Úú¿j»×V·¶úº­Úí«­Z¶¶¯ëß^»UZÚÛµoõû·W­­UÕ«VÕ}­vÚí­jÕUêúÕ»_[îÕ·j«uo^Õõ­í½Uk­ýWÞ«_u­UjÕvºªÚÝ_nÖ¯µvßv¶ïZÞ½Uë·u÷Z¶ÕU®»Ú«»«vêõkj«uß]ÖÛj®¶î«uߪµUßÚ¯Uß­¶ªÚ­[¶ê»Ö¶º¶½¯»j··µß[^­wmëv¿^ïµ÷ê÷­¾½ª¿v»õ­Ö¶Ýmk«Wýº¶Ö¯×V«nëvûµÝWÚªíZ«®®×wuWuVºõ«U×VÕºÚµ[ûîÝÚÛê×½õnûûÕ¯kÖêöÝu[[Uö­~÷z¿}Úê­wݺÖí­UUoµ^¾û«®ÿ­]jº½Ýî­ë}kwUÚµíj¾¶µ[îý»{ÿjõªö¾«UjíªûUW¶ºú«^îõÖÝÖ÷ÿÛÕö÷nõm­«Úõj«µu[ÚºÞµ¾»ªß¯jµÕ­}m_µº¶·®»ö«umU·ZÚêÚßÞÚ«÷U^Úª½wÕê»ëmkUU®ÛÕ«zïÛ^¯[ÕVßZÿ[m[û[ë[êªÝÕ^µmú«ojíom÷«kªõW­ÖízëÛU­j«[í¾»Zª¾«ê«Ö«kë«»k­úúÝ­Ö«ÖúïVª¯ÕÕVëmZÕ¿¯ÞÖ«jº¾Úµ~µvú«ªï][U«Ý«¶Ö«j«UºÖÝõ½¯j·víz«oÕuV«ukUõZªµúîÛkÝwV«ªÝU«ªÛV¿¶¿zë¿[»­U«·zÚÞµïÝ}j«êÖ¶Õ½U]«uZ몾ºíÝîöÕÚª¾ª«WUýµU­U[n·WUÕU­_zÝõnõ½­UÖÞÕW_{{]]Þ­]îõ÷Z¯UZêªö»UW®ª­v¶µ]ªïj¯VÖÛ¾ªµ]uÛkêêínÛ~Õ_Uwõº×UõUýß¿µíkvúÝmë­µ]ßëÛV¶¯[»VÚ®«Ýï­uÖÖêýíÚºÕÕZµµkúµWUµm»þ÷[­]ÿ¯ªÕÞµZÕïVÝë­õªÕ}z«»õ~û­êªïûúÕwÖ­k«u}~¿õ}mÝ}º·}Ú¶µ¶­Ö¯m·nݪÕÝ}j½Õ]¾ªúýjÝýµkUþ®õ®¶ªÖªÝÕÞª»UÚîºÞ­zÕV×Õ[¶ª½«ºõÚ®êÝÞµomU^½uV¾µú»×UûÚÚº·ÕjÖµ¯V®êíj«}ÿW®×«ª«W^Ý«ö¯öê½jÝï[]u]­jµ_W»kn®¿µ]U«ÝúºÖÕ[_]»ö¶ª«u÷WUú«[ª×ª÷Zݾ×jÖº½Þ»½ªÿ}ªîÚ¯v·Ú­ª«Ým^ª­í{UUU÷µuÕý[ª­ÝjïWm¶ê¯ºÖ­[UoµöµWºÕjë_ꪭ½®×{UWjïÖ÷W{WýÕ«[Vµ_½öÿõú»^µ¯Öö½VÖ«Uµíz¯÷U¶õÕU«Ö­k[uµVõm¿ªµVÕ¿_[­¶ö·[oUßíÝ·Vêëî¾×mkmWÛº­îÞºêú¿UU꺮ûëUºÖ¾êî÷mm­î«­ê¶ºÚõª¾Úº¶µö®­_ëkµ{Ûmïu«jõö»_V¯ÛÚ«~ú®¶ïUm¯íÝzµU]ê««uk«îõ÷m]ºªªº­mjµµëVµmõ¶¶«Vªµk½[­Û~Õu»{½º½­U»]Uu¾þêÖµUvªÝ[W×®µjµ®­Uõ¾ëÕwz­oßÛV­}~ÕÚºýUv¯«Zû÷ÚªµnÕjµªê½µmë]ÕmÛµuVõ]uU¶»µ×zª«WU«uÝZ«ÖÕWõªÖ½«Ö÷þºÕªëÚöê½j¿n÷Vî¾õïUUZµµ{WunÕWÛW]×[ªºªµê÷½j­·^ºëýßoë«jê¶þµVÝ®ývÕÕ«u×mVú»»U»n¯íkµUoZµUVÕõõ¶ýª»­vÛª¿­zÞêö¿õ½ßj«V»}êþí{UÖ­]ÚïU¿uªµV«ëÞµººµû­U[ª·mÕ{mu¿ú­WÚ¯zëªÖªÕí­îÚµu«Uºí®ûmÖ­«vú«WîÛ¯­«VöÝjÖÚº×oZß[ß·]«ê®µZêõ»mý¶ÞݺíÕZºíÚ×U¯ëªµV­Ö®«k®«]ºõ[Öµ}Õí}WªëÛVßÖ¶»Wz»µ_ê½[ZµnÖ­k^­onª«[uõ«·jÛ«ªªª®ê×WVÕ­zÕÝvÚë®×úµº¾¿®ªª·õ]U»×ÖÛV®­n«Uj®ëVõ·ÛvýmVµV»õV«mkmo[]{[­j¶í­ï­Zºîªµï×Ujî¾îº­{ZÛVµÕn¶ÞÚî«Ý_jÞºëjö«k×VªÝU×Ö÷Vßn¶·ÚÝ»ÖÕÞÖ­}µm~íõuª»VÛ~õ^ÝvÞýÖª¶­õÖúÛU«­]u~ªÖ¾¯Ujßµ}Z»U­Zõßû½m}»Ý×vªßöªªÝï]]mZÝ]»jûU_¶®½×jÛUÕUuÕõ»[V»ª­»vªµÿ«jª­êÛW]më¯Þ­}µw¿Ú»ÖÝë×Û]z­[kêÕ^­õõU¿Õu«Wª·WÖ×]nÝÕ®Õ{­mÕê·WumwmU]U¯}õýÚën«oµ­jíÝWú÷ý­UýZíU^Úµ«úê¶ëZ­Z¾ßÛv®»½ú«¶ÛÝU½UíWÖ«{vÞ¯zµÛ­}VÝÚêÕUÛ^¶­UÖ¯ÕÝzîÕ{µZ­]þõWnÛëoÚíUZ«ï]·¯®ÿµ^·ûî­Wk®úÝë«êïýmV»ímkkUjµ¶õµ½Öí«ªª·Zÿ·×­«µ{Wݶַk{ÛUVµVÕV÷}jÝjÕn¶ë«®«½wµU«jµv÷õnõVûª¯õµ«íW[ªíjïj½ÚªÝ÷«wkµ­¿íj®ªÕ½«ª÷uÛWýê×WZÖëµÚ«]UW}mz¿ÕÝ·ûZ×mW»ê¯÷º·µÛÕV¾Öºý]k­ïvê¾»]î«·­­ÚªÝ×W[ZëZ÷V«ö®»­ï[»uUmí]ZÛÝöëj½[{ê«Uµ¯®Õ]mZÛn¿¯ýWk]^ÕjÕú­¯zÛzßUUºº­kÕv®¯UZÕw]kjµµª«Öë÷U}ë«÷jªÕUU]_Û­[_U^­û]þ×ëvµ^Õk«ZõVÝ·u]Wú½UjÕumZµªþª·×wVßU¾­Z·¶½{kWU«Ú®ÕíUZ×[k]Z­¾ªªõÞÛ¿ÕíUU¿ºÛ^ªíÝuvµß¶û]®ïÖµmVªªÕ«kµ¶ª··}nö·ª®º½ö«Þ¿j¿Ý[jתÚïÕvª­^ª½úÕïmµÝ¶Úï}{uZµ¶®­ummý][Û½½·¾ÕÕµª÷j­õz¯zïk_]ë}]«ûjµU»zªê½¯knªûWï×µUv×U¯Z½õv®®ûj¿}ú½½îý÷»ZíªÝ_Z«VÕkW^ݺßÕ[[·ÿ·­_»µu½ujêÞª¾ûÞºêë·UÖë^ÿÖ½µ»nûµm«ö»µî¶µUmn­nÝ«{U»ëõ[«ê«ZÿÿÖíõwö«Ý¶÷ýj­][Vª¶­îêªÚµVöÝ­zëÖ«ª½~ÿ«Ý¾×úÕvßko[Ú­{]kZ·UZµû]UVÛuíÖÛ¯µªÚÖµ~ÛzºªÕWµV·­_W«Û½k­ÛUªíU_[»]wª·ê»}uuûíÛW««½¯­k¶½ªõíªÖºö«[kn¾Ûõ×UÕoUU«¶×V«{]ººêÛ[]­z«WvÖµªº«U½îë·Õ½µV¾­ýÚ֮߭wµýWZµjªÝµUúªß×ýÕÖíª«jµUmß­[µm_V¯Zªµ¯j»vëvª®µªím®ëíV«ÛÖ¯UõV¿]uÖÛu®úªµ·×u·UW·UÚª÷ªµÚªÝUªûk{Ûk]«ZÚ뿯}îß{ºþû]ºîÖ¾µmwmW¿¯]_ê­÷UV·Õ«ªêý[_í¶µVµk«ÛjýµïVÝV¯õÞ¿êõõÞ÷VÚ­­êµ·µªþî»Uýßê«{µV·­WíW_¯½jÛ{k»ÝUVß[{«U[·mo[¶¶­Uêëkî·W[¶ÖÕ]×kVÚÖê®ïêªúõÛko¾Ýª·¯UÕ[vëë^«»{]õªªõ«ÛvÖê½~õz÷öªÚ¾Þ«mZÛÕV¾úþÕú·Uûݶ«Z®ûU_÷ßuzª­«­·ÞêªÝ^ººÕê®íïê«jÚî¾Úí«UV«U­þ®«ª»º®êÞþ­V®µWþªêµ¿_unµvïjß}í_­n¯»½«¯Z®»}«úÕêºÖ·z¶½¾µ^¿õ~õ­Ûm}U¶ª×­Z»^«[­·Uw«®Ý[U«ßýV½ê«[ÖêÕ]ëÝÖµ»Uö½Wª¶º®îª«Wjê«ký^«u~«Z­Ö«ªµm¯ukz÷»mÕßW«Ûõjªµê¶·Ú·WkÞ»ÛWuê·¶ªµ}õV­jµzݶ­ú­¾×ï~­ßk¾µ[õÕj«oÕëÛUzû¯úÝn¯µ­moö½uÖõ^Õþn®õ¿U×Ö×ÚÖßúêíµVÛoU»m»ëo}ÿ]ÚµÖÕ{ÛW_ÛVíµ^·w[»~«þµ½µ[«[U×UªÕ½zïWÖëÖ¶µw__oõ»×m[½mZ믵ªÞßZÚßZõíÝu~ö»Ûzµ×¶ªûU]mVµÕuµê«[êö·Ö¶­Úª«]Z÷kUºÕß^µ¶÷¶ízÕU«®í[V½ÝÕ««Û½u_[n÷«ê¿kkVþÛjÛ]í]Ú×kn½ÿjªÕV½»·VÕZ®ªÝ¯nûok^µÕ·Z½U¿zõZ×öÞ¯}Wªßµö·UV»WW[õm÷ú¯úÖªÛmUÛ­_ëmz·mîíÖëÕjýõ·k×j»ë¶êµëÖªÞ­jÖëkºÚÛÚÛõ~««×÷º×Uj«v¿[VíZ®¯wk¶ý}­×÷kºíuV­ÕuuW~ý}U«¿ÛWîúýÛÛ®Õ^®ÞÛïZÚ»ZÖ¶¿kµo»µuÝû]ÝWj­Uÿïêÿ×Uu·ºª·¯{ëúÖ÷ªýkïê·Úµ]õw­zÝíÝk}û·Ý×·×öÕÚµºûµwºûÛUݶë[ÕÝß®ÛjÝ÷µ_Õ­µ»ï»oÚ¶«W»×Uµkj÷U]¶­ª¾Þª¿Ûª¯ÖÝ»V÷Û«nºµ««Õ×{u¯õö­º¶¶¶­w^»ÕmkÝWVշݪ֪ÖîÚöÚÝ类µmoªïzßÛ^ëÖ¿ûjµjªÛ»ßUWZ­ºõuë·Õë¾ý¾¾«×»µ{ª­÷~Þµzª½WmÕ·Ýn½ª¯VïµÚÕ»úõúª««¶»ou¶µZ·n»Ú®ö«êÿm¶Þÿm_mÞ¯ú®ºÚªÖ»¯µUzú­Výõû¿ÕíµzÕVµWÖ¾¯zÚûjª­«jÿUUzýZÿ]ZýÕmvõ­ßmV½íï·ªÖ®µ[¶¯Zµ·m}[WUUVý·ý¶ÕÚÞûZ¾¶õWµöûwzêµëµ­ÕµzºÕ^ºµ~º×ÿëÚ¶ªÛU[v×Ú­vݶ»¯õëwn÷VÞ¾ÝÚ®ºªú¶·kU_kj«êÕ^êÕëµµµVÕ]kwU]ª«ªõUºµöµµ[«mÕÕÝÛºõuUßõµþ­÷Õß­«VµjÝkUkÚÕª½WVÛªÛkýZ­[ë[mí·×µ_[Vªîª¶µvµUíÝvÛ­kU~¶ÝÕ]U]Õõ¶¾öºº×껫}íU×}õmm­«ßõ÷­µUë··õÞýu­×]uºÚ®¿êÚëZý_n»ûkûöê·~­ëµ«[×Wݵíë×êꪪî»[ÕU}Ú¿^êÕ]»]Ý­­wª·WkºýU¯­}]Z»ö÷Õ«õºïïj¯»kõUµ¾»Ú÷UUmVöÛW^úºíu­UZ꯭íj÷Vºª¶¿ëöÕokkZë®®õú¯ºëÕ]꽪ÛÖõÕjºúí¯¶«]ûº®Öµoj×{ï­µmý»ö»º­j«Úßvî½WkUêõ¿UWÚÚÛ_õVªÝ­½«íV®ê¶÷j×Ú¿ºý{ª«þýZ®íuÝUkßÖ«ß^׫oí×zÛ­¶õUkVºÕíÕoW[¾Ú­WVíkµÛꪽÕU¶½m[®úݾۯî­ÝmV½Ý^ë·]}×ÕW»ë{·¶ºÖ½î÷[õõûÛ­Uvµj¶¶ÖÛ®ÕuÖÚ«·W«ÞêÕ­z½·^ªµU¯ûµÚ¯u[Uºµíkm÷V·Û¶Úªªê÷ªºþµúïÕu÷¯[µ¶ÝÕZïuZ­­zÖÖÕV¿«Z¿{j½V®¾ÝímZîÕv­Uºµ}ïo[·êÕ½»nª¯·u»íWö­UÖÛêÕ×íîïÿWuWµ[[¾×u­¶Ú÷µ_[ý¶ïVê­ªÕ×ÖÝúªõ[j­«­ßõëÝu¶ßõ××»UÕ«¶õ¯}Õª­]¿[VÖµ­Uß{«_ª­Uj¯j¶«uÖ·»[ýª«mÝU­Uuvõµý­­ßZ×UëßZ«ZëÕWkjÚõZÛÛ­ÕV«Z«k^÷õ­WW]½Ú¿jª·¿Ö½ªÚ­^ënõ[­«Ýª÷z÷}ÕVÖ¯jÖ«Z«}z¿­îµ_Ûï~ªï«ºÝ^ªÖõ_}ÖªÚ»n¿×_j«×ýmU­»«Zµ­~½UúîݽÝëëÞºµ­_k«Zûö»êÛµ¾ý«]Õj­¯^ºÕ¾¶Ö«u·«Úë}êÕÝß[kjÕµ­_߶½^íûß[Ûj¯þ­êýªªõõëm[VïÕ~ÖÝ~«ºõývëWú¯Ýµ¶êú®í[oj«ÚëkUU[º¯VîµuuW׫ú÷»U««n¾«ê«×Zû÷vö»·_][«z«kjµÝ]Û[·WZê×VýUknÚº®Þ¶ÝÿëoêÕnÚýÕ~÷uZµ]~­uµZí_ª·¿­kV½µZýÚþ«UVµª½j®«jµêÕo}ýn÷]ú®õZ½^ýÛõ­ö¯¿Ýý·vªúµ_ëUV½·UZ¯WµUj®êÕÚ«m«ÚÞýZ×íumZÝUêÕo^µïZ­ÖªÖ­[}nýZûývªû]]Ý»mëÚªÖ­¿]ÕU[nº«Zµ{n¯û«VÖî­ßwoZ»ßûöê®ÝÝ«Zÿ»Þ­VõZÖµu½]jݭݾ­[ÝÝU«­ÚÝV«×ïuV«jªëzýÕ궯UÚ®ímÖÿ×­ozµUu]uµê«µ½ÖÕUêþö¯ÖµW~Õ}UjªÝµU««Võj«u[VÕkÕÝ{­ßZûí}Úû[U»×jÕµ¿]ÖÝuvÕ[ª¶Û[mªÕ[¿Úõ¯Vöªï{Ö«U]Ûwj½ý«­ûUU}­_[ÖµWzµõm[[j×_u][ukÖ»VÛ­WmUÖÚ«¿}×¾×mw¿õ{îúµuU^»{U­«mWkm»WWmûwmU½­ÝuZ×Vê­W]WµzÕ[[ªëmnꪫÖÕnµV¶ÚÚ×Úª·ZíúªªÝ«VÕÕ]mªîÚÞºµÕÛ×µÖ½zÛm¶ö½ºÖµß¶«UU«µjÞ·[_Ö«ÕUÕÕÝu^¾í¿µÕºÝ­ÚýWjïUÚ·ÕZ½«·ªõþµµW¶×ÞÖ­{Ú÷múÛ«UVÕû«Û×õUZ«ý{µ¯U[¶·öêûoUýµ½Û·Õ¯{v·í÷ÚÖÚªïWVû«ª®½Õ­Uí·]uwÚÕÚµWêÚ­êêÝÕýµjõÕÖ¿¿m]kVºÕzÛu­ªÕZÛ^ÝWþ¿º·VíÕ¯}zÕµµ«»­muUWí[®Ýnê·wmwº¿]Z¯ÚúÝWUZ­^ª¯ß»[®ýUnõ뽪êÞ½V·»îÞ®º»~×UUïÚ­]þ­«]Z¾ºõvû_×n«úÕWVÝkZµ®í®½ÕV×nû~ÕWþªµÕÚÛ«V«ªºím¶êõ{ëõ¶¾Úê­u[uýkzú®Ým¯ÛêÚÛ{õ¶í{W]ªí]w¿VÝ«íµö»Þ×­o­Õ]WõU}Ý×jÕ¯ZõÖ®Ö®µ_U[­·kVõÛ}îïÚ½ºµ®õ¾ë]{Úªºµ·êÚ¶Ö¾ßz­ÕuûÚµZ¶ßöúÚÖíº½­¾ÿZ«õ}ë{jõmû«õúêÕõwkuþÞÖ½]º»õ}]{¾÷Uz½Ö×öÕ«nëúª½[µíªªµ^Ú×íkz­ª«Ýu½­^­·µû­»_­Ýë»jÝ«}»»ßzÕ®®½kUj®ÿW{_mUkuïWªª®õ«Û¯z½µ¿V«õ×VÕUÚ®«ÝmnªÝýW]êí_UV½Vª¾­í«ÕW·­j½ZªëZúï­V­[·Þ×_[]Ú¿¯Ûºï«j®µµj×~õõ÷þ®µzëk{ÞÝÕ}^ÿÛõ«jïUm»ní«Õ}ª×­­m¶­U®µzÞ«¯êÝWukWÖîݪëj¶ëVÕ]WonÕ{Ým×Öªµj½WnÝ[­m¯W~»[kÕmV½u~ïê·U]}«Zúºõêú­íÛW[µ{k[]kÖ­U»ºúÝoÝ¿ªê­ûuV­kmWkª¯]÷Þ«{}ë[­WU÷ZþÖ·®µ®µ­mÕªêÕº¶¯ým]]«kº¶êµU­Ý[«ÝûkW÷WnÝu÷ªÝmÕW¯]õµÕuÚªõuVÕ®Ûm®Þ¯î­ºªªúªúÝ{蝹}Õ[~«÷¶÷kû[µ¯ýn¯ýjÕÝukµuV­¯ëo}º¿µv­WmªíÕ}z­«»ïê׫[mV¶½kím­jÝkWݪÛ^­[V¿Ú뮵·Ýínêªíº×U_ê×mk^««½÷kêºëUz¯Zý»UÛm®½®¯«úªßv­»Ú­Z«íÛ«·nµÖÕ}VõUª­[Ûu]­ë{u{­«×ë_]oZ×½mÕú·]}®ê·µz½«úëZî÷^úöý~«Ý»_ßvú¶®¯»}{VÖúµ]ÚªµÖê­­µ¿î®½õöÖº«o[«Ýj¯kkûj¿«îÖ«®×¯j·Z¾í»ªßݪµÕµÖêë]×]»WVÕÝ÷þÛ÷×{Uߪë«UmÕ«®þ»oW·×zÚÖªÕw¶Ö¾¿UªßÝÕÚ÷µZ꺾µ×êúîûµwºÕvµ{w­»kz­Umí[Õ}jõê­V®·¯¯Ú·úýß[UW]o­×úÛ¿jÝík~í«_Ý®µ®ºÕUê½Ý{V»}ïkmUu[ÚëU®Ûö÷[õµ««nï½Õ¯îëZÛµõ¿U]U_ß^êªÞ»W¯÷«º­n¿Uë[­ßz·ªºÝUí¾µU[ªº»j«Ö­Ukz×~Þ¯kUj«Õëë»w_ZÖëUëV­UUÕªÚþªµVí}kÕõëõv×u]uÛ¿öÚ­ª¾×_·¶Þúµ¶¯kkuöíõuZ»WßUV¶ÝojÚ·¶ïUj¯^½n·µ­jª­_Zõn­~Õ×­ý½j¶õ«×Z¶ê½·íz®ú®õUW×kªÛº»mw[j¿êµ[Ö­}WµöýnÕª×j»Õvîß{×w]ë­î¯­v¶îÕÖ½z·v»w·×ëm¶·×w¶×ZÕz«U»]Wï®Õ_Û½^­×ï÷Ûª¾«ýmÕWµµêïêê­¶Õ]Õ{ëºÕmÝ×U[ª»Õ­vëõëÖÖÚúµZºº«]}«µõWª¿vª¿Õ¶««ÚëV­ª÷ßuzí¿^­öë­n¶êÛ]ëýjÕ«u¯U~õjíZíݵÞêûVõëk«]ª»W^½{[»mUuíµ[ª®Ûmw^·okµë«UºêµuVêªÕõµê¶¯]õ{×õm}ëkU_®öß×[[oZíUÞꮶ¶ï«j·[×Z®Þ«kº¯Õ·½ný×½¿ZÕkZ×ê«vªß×ê×_W÷½ÛªêÚí[«ÝjÛëõ·^ïß]ú«Unúí[ÚÖºî»Z«µÖ¾«ÝÕªê·mUZõµÝ[Vª®«u«m׭굫뺻kW×WîïZîöï®êµªõµj¯jÛUÛU]Uµ»µWjëêêß{ußí]jݶ®íoZ·WÛonÛªµÝjîÛ·]ݪ®ºªÚ÷ÕîÝÝ]{jîöÛÝUÛîöõjíW{¯Zê·­ÛWÛªª­®«VÚíUî­«oÝUjÕmz®¯WëëZ­öï®»÷÷m­[þ·V®Ú¯m·ú­kZª¶½õÛZ­UÚÚÕ[ß{×µku[n×ëu{õZïµµUµ¯vªº¶­õ~»Um{ojºÝj­íUv×W}ý»ÕêªëkíZÛ­^Ýþ«m{Úµ­þ«z­ÕÝkvêêµ·muUV¶«¯ª­m]¯Un«Õ»õ}Ú­õVªß¶Õîµmjû­U­êú¯÷¾¶·ÖëWÕÖºÕýê×jÝý_­ê×jÚ÷k¿[«nµ¿õ]Vïî«]wUÕZªÝk÷[ö­­ëuUkª¶¶»ªÕµjíuÕ^·¯îýUUk×nꪪ¾½Uk¶×Ûµo­Wﺺ½×ÛëUªªýꮫí~ª«öêõ­jûuÕ­ÝW]]õ[íwkÕ¾¶Û^ë½ÕÚ¿ª­wÛ]U«öªí½×º­n®¾µë«×µUºµZÕõ­U««êû»U·­Uºëõu×Û¯¾úõ÷UößíúûzªëvÚÛê«u¾¿»ÛÕý»ë­ëk_]U¾¿«]UWmýWm}ß]z×Úþêõúýo««kªëîÖöºµ·uÕªÖµ]nÖ÷Û{oïUꪪ÷½«ºÝÕ­Û^Ý÷Uz¶úºªÕ]v­~õ^ÕÚþ·z»»û½wWªëV®ÚºïZÚ»·½ë^½mvûÝwõ[~¾ëªÕV®¯­V®Û»«ý}]í­«­×µvÿõí­Vµnßëªú·W÷n®¿mµªßWU[ë¶ú­{_kWzúÖ­»½µ­«ëëµ÷U¿j¾¶®®ßêÞ«]m_»_Wm­]W¯÷Uªº­zëµ^ú«{U]»UWÖßÖÝZýÕ×VíµÝ½U®íÕ­¶×ÕÚ»µõoÕuÖ­kÿuuvÿº­ÕVÖÕkwn­ûV«µkÞþ­ÞÛUÕn«wZþ¯Õªý]jº½oµï]µuµÛ»k«Ý«^µÞ­¶úÛ¯Ú¯~î½j«]­m¶¶¶»×U®×_k[½j¾÷n¾µoݵ®«º»¶÷úßÕí«÷]VõªîÕ_U¯«ûWµúÕ«UnÕ_]¯¿WuZµÕok¶½öÖÿ·]UV·ê«m«ë]úÞ«]]{×Ûÿê«kUZÕÕu굪Ú×ë^úªÝ¯µm¿uÚµwêÝ»ºõ«Õ_­]í®Ö»nëµî¾­íj»µûÛÚ×uíºýo÷U]·îÛwjµ^êªÕ«½­^×mUßÕ^ú»]Û}½¿]}×u]jß½VÕn꽫­z®¾ªÖ­ÝZ×ïÝZ¶Õ÷Wº¾Õµjúµ}®Úÿ{­_ÞÛÛVöêÖ­~ª»ímê­­ª«ZººÛUº¶×®ûÕU]~µ]wV«U¯^­µëÕ»UݯÝï«]õ·ß}[Zû«wmVÕµûÚݪ÷ªí]ÿzµUk^ÚÖ­Ûuz«ëýU[·Õkº­VÖ·êÝV¯þ¶¶êÕÿªë}µ·wZÝUÕVµ¾¯µ_ukêÚ¯­½uö«Ujêª×uõmöµk¶«Þ¿uµo~»V¶½ëïµ]·[uû{[»]u¿vºýZ÷Þþ×»ZÕ½÷×êÝUkWk¾½­«vµêºú½ª¶ûU»[µÕµïZµkµ[ßÕ«UWU[õÕ«Ö×Õu­º­v½vªÕk¾ýjªÖ­«êÛWÝWº«®õm¾úÝ·kÝíu­uê×Ö«Úõ·º¯õnßZ«]kÛ«Ý׺ÛZ×_j»[­n÷uÝÞ¶»«ku¶íÛÕªêµz÷k«^÷×zïZ·ëÞ­ÿ{j®»wõuZ®«ÚÝþ·n×{»íUmwº«ÝÕjúµkî÷]kúî¾ßº½êÚ«®íUÕ^þÖµ[ûª«Ö¿Õ[«¶½÷º×ÕÝ÷^·¯õWíÖ»µºêêú뮽]{÷·÷}­Uºí»U­ý{UU]jõªªÕµ¶½Ýÿ¶«võW{ÚúÕk_ªê»o½µwm[Ý«®º¿úµûõûmîß«k½ëÛ¶ºêõwêªÚ­½VÕj­W[½»{kz¯ë¶Ûu]vµ·Wíº»ª«ÖÝß}V·Z·ÿu½ßÕzÚº®ê½umU¯Úµvõ÷WU]j­®ëV×ú­u×Vêºú«»îÞõ[··­vÖ«WÕkÞ¾®Öµuºµ}]«ÝjÕÕÞ×w[][VÚ×kÞïnµVºª¶ï_­ú½ªÚ¶ºÛv»Ý{¶ººµ®µWwj»Z¶ïÚÛÛW«Ö­¶·ºë­êÕöíÛªû·ëWíw­[¾¯Uk½«kovëÛµwz½[êû¶Öª¾­×÷·µU¯UUÝ]­[UÞö¯«uµmêïu}¶ª¯uÕkÞî×VÖµ­­ý^µn®¶¿®ªêÝuVªë[õ[]ûëj«W·u]ZÛk÷]köú·ÕÕú»µ[¯¾½­êëªÚ·]UVÛ[VÞõ»¶ÖÛz«ovÞ¾êêÝõ­½ê¯oö­ºÕ®½»ë_U[[oj×U{kZ­}¯×·ÝµÛßö­W­õ{¯Z«õmUª¿}·ïº­Zí¿Z÷Õ«ë^¶«nÕ¶«ºëkº÷ÕwÖ«Z®«WÕ{÷VµÚ×vÚÕUZ­m]Vþ¿Zõê»îÛþûªÚ®ªû[µu]µí½Z­U®«ªÕU»­·]oÖº»V½º½¿Ý¶¯ªµ{»õ~ýu]Zí×»]«ÛVÕö÷vßµ½­[UW_uo]½{uïïmµÚ¾í¶¿uVª×k]ª»~»^õïÛ[zêªöí­um[w×omu®Ý½]ëëëöõ[uªªö×j÷vÕ­jõvízöÕU­ÚÕ{µ×½õ{Ö·¿VµjïÝwvêõ¿jµwªª½¯ÖµºÚ÷ý·¶µïÖÕWÖ»ö«Þµïzµu[×û~·uzïWÛ^º·¯kª«mzÕõZߺժ¶ª¶îý_«¶­ZÚ«×^õºíW{ºÛuÕµZªÛW^¶ûvªëV¶ûmßöµ}ÛVÛ{õ]ÞþÛÚÚû¿z·j­WjµÕ[ÚúµZê·Uëo]½[wU]^Ö¶Ö»vµ»õïk«]¶ÕªÝ½w[vµnÛ»¾¾ª·_Õ½ZÕÚÕo½Ö×Umk[­µí¿ºª½k][uýÚ«}z¯õ×úÛwu­UuUÖ·Z»¶µ{]½¯U«ý}®÷}VÕZÞ×Vª¿ª·m[׫Ví]«V«®úº¯«m­kªíZ·[[]Ú»VëzÕÕm}vÛýjÚÚê×VµVÕõÕn«^Û{®ÞÝmÕÕovûWÕº­]kÕomw«¶ÖÝ_«Zí¶Õo¯nº­ö¯ª·»[WmWºµêõÚÚ»ÞûUU­kuí_ªßV«onÝõz¿ëmÖ·_vºëÖ¯õ¶¿j®öÕ¿U««kï­{­úýU^ª¶«Öûuî׫V½­ûVêÕÚÛúÞ­Wëêµn»U¿Ýu[kZ·_«Z»ª×[{­ÕªÛvº¶êª÷Um«Ûï~¾ÖúõnîÚþÛ×jí·uýÞõª­zºÚÕ]×­®ªµªµ}Õ¯ß[j»ní}{«UuµZ¯UzÚ½®«o×W­®Ö·»«[«Wj«ê«zÚÕ~«®«ukzöª»}Zº««í­½n·k­m¾ªºõnÖ­j½UzµmUom½Ý­­Ú¯^¶¯ªïUZ­Uz¯UmVõUw«Õ_ªú½Ú½jõVÕÕUoêÛ{¯»×WkµWoö­]ºÕ]õwzÛuZ·^ºÕÖö÷¾½]×ë®êÕUoVßV½mmZ½ýºí½zöÛkÝm¶«~ª¶Ö·êª¿]êªÿïzÛµõU¯]Õ[í»¯uµ·¾Þºö÷Vµ{Úí®Ýõ×Þ߶­«U®ßUjëZ¾ÛkU·««]êÖ»[Uwí}U}muÞÕúöû_U[í»VÝ®î«kêÖ«Z½n¯}uÚ®êÛ¯Úûko}Z«}uîªû¯uZµ¶Ýkú½_n½õïvþ­[®õ_¾õU«½®×«­ª­}_okº¯km­k×®º®õW_]mvÕªÖµwí¶«j­[ö¯]v¶¶õUnªõ«ê«~õ»õ»k¯«Ö»Ö­ê«»µî«ÚÕ_zÛmµë½[WªþÞ·k[×þº½[®úúßmê¶Û½m{ZÖ¾õmWVꫪ­VÛZýZëVªÚ¾Ú·[oZ¾ªëwÝþ½ëª×öÛß{«­»îö¯¯uoVºÖÛkÛ~ïÝ}]»jº¶Ûzým[V¶êÕzîÚºÞ«jý[UZëoþ¯öÝ[ÿ½jªµöþÕõ_íjÕê­jõÖ¶»««j¯kV÷«ÕmëíZתׯ­¶¶ª½¶Õ{v«Z»ëÞê¾®Û¯«uoWµýuV¿«Vµ«z¯ïWþªÕW¶×êëÚ«wkvê«ïUÕ{]]mu½UZûuw¾¯ÝÝWUUÝ_{­U×µj×µí«[ZÕÕ_»«Ú×mê«Þ·­µn¾Õo­­ª®ÖÖ×{jÝUÕj«mjÞûµmZÕýªív¶êÞ½Õµ¶­Zºª«m}½_]uêîöÚ®×­ëvëjµ^ïê®õ­Õm·õÖÝvÝmõ{Vªºª½oU®º«ßªê­ÕÞª×Ýëknµû­Õµ]U«U×wÝþ·µZõÕëïZëíou­¾ö­×õ·Ú­~Õµµ»º½¿Uý»}ov«í¾Õo½[jÚ¾«zÕ×ZõÚ«j®Úú«®ºª×Z««½«ê×u®¾»ª®­uëUþíujº½VÛWûj½Ukµíµ]j­jê«ûª¾Û·]~ÕoVÕm»ûõõªÕëÝkU}}µ«ªíku[¶·«¿U[õ]Wwý½¾Ú­ººÖê÷êÚë{­ÝµuZ­»µj¯ÝU_Uݻ׶õm¾­UZÞÕ·Uµ®ûoýßÕ¶Úõ·mÕ_}kkþ»WýuíukßÛkW]U«ÕÕÞÝï»Õº·[úê×Õ]­×Û­^¶õmûV«¶î궫Zû¶¶µkëv¶ÖÚÚµ}m÷õomZõÝöÖ¶¯«w¯W®úºµUU[uUõ~»]Þ­]«VëuWVÛº÷[{[Zú®ªïvõ}Z­[ßmUþªÕµ»[~ë]ï{}UõUj¯·U]Wz½½õWµÖëwVëUí­Ö­ë¯Öêý¾Ûª«ÞßW·«·Õ­}^¶ê½µ]v«ûUWZÕn×[Z·[«WWÚÕuÖïZªí×UÞë}ª¶Þµkµ«ýv×oW_{j®Ú«[w¯ê­­«U«Uo­U·¿¯ÕU­]v·ß]ö»][u[[­ýª÷jï_koÖªÖ¶ÚÛ¯úÛ[ÕjºÕÚÖ·uZªî«muï[Uê®íZ¯[wWZÝݵª¾Þêúºî¶®Ú­w«êÕ_mÚÕ½W]½µîÕ­¯÷U]uÞÝõUÕjýmÕµÕUõwk_¿ÚÿÕ_íÛ«vúÕvÚß«ºÚöµ~¯«uê·¯UÛíµ®Ö­¿Z­Uõ¾µªêõ_Z­]ÛvÖ½^ÕZ­]úõ_»ºÿõêÖ¯¶µVÞ×]_}íö®ÕÚ®®úÕovõݯ[«}VÚÞû¶ÚÚ¯k}«µêÖ·Uª»µ®ï¾µZ¿wýþëî®ßµ®ÖíÕ»oµ]w{Ujú¾ÛnÚµªÝ»kwW}Þ½êíÚíßêª×ïÖ÷ÞêöÞ®ªÕîýWU{­ª·îªÛWZöõÖ½ö¾µúûj¾×]m«Vª­mjµ×]m®º½ªë~ªß×wÝ·kë¯U¿­¯j®º½ÛjÝ­jÖÕêõë÷z­mZÛ{õýÝ®«zÿÚ®½UVºÚõUõmÚªö«Uoê«ë»uU®µVëmªÕ{«kªë»m½Õ]ª«®µ[þßÖîú¾íÝZºªªÛ«ºï}¶Ûõ×v¿ªµª«×m[®µV­uׯW¶ÛkõÛÝ«^ÕªÿÝnß·¯}Unõ~­Uý×j¯öî«{wní{um{ª««Vê»_×Ö®õuZúõ«µÞ½µW¯vÖ×½mU]¾ªªÕ^õþ­¾Õ»vªÕkjªºýïÚíUkkÝm½×Ý«»WÞêÚ¶­í뺫¯[o÷µª­wuºÞ»ý­êê»~õzªëz¾Þµª×^ývÛÖ«ÞöªµÚÕ»·«z«Z½ª·ß·ûo[ö«[ß¿¿ýÝë}z­­oUÚëjµ¶Ö·ÚïVÛnê«V­­ª¶ëþª·ªµ]Zµv·¿]½o_V«­­[í}¾®«_mª×}íµý×®îõZÚ»«½Ûî¾þÛz½jÕmUUUn­kjÝ÷}»¯õÖ½ý]W¶«]¶þëjª»ÚÕzªÕZõ«jíúªÞ­U^î«·ºýnïõªµz×Ý^ÚíZê­vß×V×}m]×uë­½[_ZÝ_]Ö»ÝuUwUU¿­UuWz­­½mÞ·Z¾êÖ½º­j®ûºµÕº«_ï­ßUuµ«U[µ·{¯Ujíýí]Vµëï[ÚÝjêöÖ®ºïk­{·Õ_VÕõÖ¶¾ªïmíUUÝ­õw×õ}ïZ«Z¯WíUêµjë«mn«ëj­¯Ö®Õm^Û{­{­jµ«ö¶ªÕïW¯«ÿw[ê»[n¯«Õî«vîÝuW¶ÕV«¯]ZÕÖ꺵mWU­ªÖÛUÚµ·jÞ»½[®Ú¶êªõ÷÷ª¶Ýuo[nöûU·õëmU®ÕU«×öõµëW½­«ÞÖ¶·®Õõêëm[]ªÕº¶®ëw»×k}Uõ_VÚ¯[­«ºÕ]mÖúÛoýuõ{Z×ÖíUíU«VºûÞªÕujÖî«ujþ·Zªµû{Wëëú¯ªïZ­U¶¯ûõuuZ½}[mÖß^»¶Ö¿úÖÖÚ¯_U^·Õ­ºû¯ý÷Õm[}Ö×]úëW]]j½µê®»[¯j®ÖÖªÛnÞõõõÚµÕ­Uk[^×{wÕUUm_½ë{Ûµu}ÛÞíZ»¶ûn®ë[Ým¶­í­uö¯ÛÚ×zÛUj«]®½½kµWµUV«UÕWêÝV×Z»ÛVÛUïU^ªûÖ½oµUî¶ÕîÚÛ]­V®êÚÚ­õjºÝm^Ý껯Û[jûÛûÝú¾ÛZÚ¯^«ºûªÚª­n»ûÖ¶õµmk½ë½uöÛ«ÛvÕ×W­uZµU«[ݶ®×{ûjÖÕµj«º­~õꫵ»uUu·mÕ­½»ZÝëÞ»w~Úµµun»m¿~õ«Ú®½Vªöµ]ê«[Z¶ÚöõÕÖëmÚªïÛûµmVÖõ×ê«Uu¶×·µªí½}Uv»ßöÖõjõuoz·U}wuí[]mo¿¶÷m¶ê­«êÞ»}zíj«wµ_½Úúꪪµ^ªµ¶º«o^÷w]íUjµkµ}×^ÕÛUêÕV¾ºö·vª»í«ÚêîöíoÕUWzÕºöÝWU]µj·v·×}îßzë×ÚÕ}[U]nªúµµ]««ºº·ovíUv¯mjº«õUÕo«Un·«k«]Õ«uÕ[k¶ªêÖëïWÿÖ­ÚÛvîÕÕ»ÚÚª»µ]VõÕoUm^Ö¯íVõvº¯ªú×õºµ·»×}öÞ­[kou«­nºÕU^µí®»õ[]]½Z­¿mVµ}êÕ}Wmׯ¶ª÷_UU»ÖõVßzî½{µW­­µë«Ýn­_­Ý·vûW}uõ¯[^î«]»[ÕWîÞºî×mWj­®Ýª«Õ×êÖ¾÷ÕUõ«}ݯ{Výî»Û]]·ÚÕW÷«~õê®ÝWÛêµkkuzªõë«}¶º­Õ·mZÕû®«zëu~í}Ú«½¯wª«ê«î¶îª®öÚÝë½_­}n­Ý_»j×UÚíº»WëwWº×V­×õUêëöªÕÿwuýªÛ­ê¯uµµï­½«UUou]­Zë]½ÛªÕ½ÝúÕkîÖªêµÝ×oÛoª¯j½kö·V·ª«¶«U»]½VîÛkÚúª­u¯UªÝn÷}ªî­jÝU~Ú×ÿWUµ]ªÚ«wµ·kUjµ^»ßm«j¶ÚÕ®õjîµ·_]WUvÛ«ªªÛݺïU¾úÕ×jï¿úßÚªº¯U_¶µv¶íUWn¯]Úµ~Û¿W}{{«¿ªûëj«u·uUZúú«]Ö¶Ý^êÕVÖßÕÕV«vï]õoÕjï×u®¿êÕö÷굫ºÕ[ªÚº¶ÕVïëî«×½ÕVíßZ¯êëï^õ÷Z­Úºêªêµºëö®­·»Õm«®Õ¿uV«VÕ[ÝÖ·Ûu½jªëú­Öªúýkv¾Õ[»U·êÕºíwꮵvÚ¶ªÕ·ÕUWW¿k{zõVî¶×º­úúýµ÷m[VªëWÖ«U^ÖµÞßÿ­U_ÖÿÕWõ®ïÞÚ­Ûzªê»uíÚ×®»uÖÛmWºõÞ½¯ZÕ]V½ÝmïUµÝïW[·îµúµUUZíµ½oumûÚ½mvªëj¯¿U­{êÕ«µ[VÝU»vÛ½m[mÛWÖêëzݵoZªÚ÷Õÿ_õ~×õU{j®º»Wª«VªªÞ꽪¿wk[õªÝwuzÖ®×ÚÕUnÖ½^ëU¾ÕÚí_nµz¯U{z·¾®µ×ëö×êÛZ¯nÛ¯Õk]Uûuwo¶Õª¯×ªªº¾ßVÖÛ߶®íwª«×½ÕíZׯ½ÝW^ªí}[º«ÕÝUUV½¯UVÖºªÕõ]U»Uº¶ÛëUÚÕWëZõµkW^ëkÝn÷Uj«jÕÕÝõ[^Õ}»µÝ{WzÕêëWmªªµ]ûUz»jöêµöê¾÷ªõ­UÛµª­­úºµµý×ûÞ¯UÕ¾×W}»~ïZºõWúöí­]Zêû~Ú¾Öº»ým]WÖ»õuû}zÕï×V·Ý­Z»÷jµ¿¶«[Zµ÷µU×ÝU¾ªîõÕ^ݺ«ÕÚµµõUÚª¶Ûúªï»uzý[^µÕß_}u­­»õïUõm«­¶«k]¯ªªÞõVú«Õ®úµµ[«zÕݪֵ«ë»V«UU[ªßº®®½_U^»j®÷ßëUUU·UöµUzªêµµ{Vª½½[«^µmZÛ^ÕUk­u^Õ{kmz¶ªÞêºÕÖ½ö½ÿo»Õum­­^ýõZ¯U[_muªû­õZêëkk­^¯]zµUÚõ«k]Zî­nׯ_í®µ·^µkµUëUÕº­¯ÛêÝz¶½j«íëkUZÕ¿ZÝVµÝë[Uj¶Ú֪ת«]ÖÕmÕþ¯®ö×Õz·}¯µwnÖµ×½ÝuVµí÷nªê­êÝõ_U¿Õ¶µ[{ªÖ®µuûµUVÚÞê»[ÖÝkÕÛV×ûÚ·wW··[¶×­×z×Ö­ª¶®ß»»v¶î»nß·_u]ê»uÛ[W}]ëwUÿjîïWêê×]mõZ«­V«mÞ«}zÝ®½í]Ý[mUÛ_Zõz»í׿¾­ÕU¯íÕÖêõÕÿõwÖ÷zõkU¶ªÝ_Wöµ[«¶ýÖ»Vº»¯{÷k]kª¯WUkkÕVÝjÕ×m^êê·Õk¾¯^뺽}ö¯UmÕoÞ¿U÷[µ×Ö¿W½ºíõkjíÕUo­µÿ^û«Ö«{½Wªõuvµ¿Þ»[koÿU}UWíwU«ªõZ­¯uW^½ÞÖ¿Umnªµþªë×m·êõÞµZݾÖÖ«õ^ë÷ÖµkVÖíumµU}o}ÖݪÝUÕ]U¾û®µ[¯uõ­^­«Õª»UW­o½ÿWo×·º«_mjë×^ª«k««zï­[ú·^ïÚ®«½[ík·zªßm_«®úý«]nÛ¯}®ö®ê«ª×~µ¿ZÝkmµß﫽UvÕ®ê«[ú«}«Uj½«ÝkûïÖÝnÕª½[µ®®êÞªµïukUmoUZ­Õmkíuµÿ­Vª¯»úú½¾ÝjÖÝk­Vªºûº·ßíªê¿j®ßõv»ª«ûZªýº®Ö·«[wzïÕªÛZÝv­Zµµ¶µ½Þ¯­î¾«Z­kU­^þÕÚ½zº·ê«ëz¾Õ~ëok¯íª«uÚºµªºª«µ­ªÿ»·uÚÕ«µ]êºíÛëU__}ï_Õ­íëÕZ·ÖëUU«wëUÛuUm½ªõë··uw­[jÛw÷Õê®»Õ]jµU{ÕZ­^½Õumwz½¶®×í¯Õµ«k}ýU¶ûªö¯UZÕ[µ·mßZíkZímWê¶íUmjïVÕu½Uíu¯[µûºªëï®ûZíV»û¶·UkUnªÛW­õUVÚ®­UoÖ­«¯}­[_~½«o­ÕmUÛöÖ·½­Zýªý«VÕ_»[µ[Vº¶»UW¯Wu«nïjªîÕµkzõ~×mªÛÚ­]uþÚ÷[íë­­m½Wk[¯UZ­»¶ßµí_諭¯_m¾îÖ½}UUµ]×vëUª½U»^××]î­[[V·}j×Õ¯½«Ý]Uzíû¾íµ]_µW®¶¶Öëú«ï·VÝjº×w~­UZëj«Õß®ïnï}ýW½­«®÷UkºÕoz»^­Wµª×¯½WÿoªÞÕoµº¯j¾·ªöîïW_U»VÕÞýëïëºý­­Zö¿m_Ú««ª×{êºõ÷^®¶»ZÛ{Ú×V¯^µÿÕUm«®ûW½[õUmªµ~ª®­«×{¶¯þ¾·ûª®µUuoëZµW¶ÕUµµu]«Wßu®½U­oÞ·jõ»­Ú®µu½moµ«j¾ªþ»µUÕ¶ý]k^ë«jÛvöﮪ½[­íU¿uÕ[­­Úö¿ZÞ½«jÞýv­oÕÖÚÚ­kµWkÕ¯jÛu_ÛWµU·}_«®Û^ªª»uWÚÕûÚÚ½ê×ou¿Ú­VêÛmµjÕ{ZÖ÷Ú×]·ö¶½·×^ÿºïµnµÞÛm¯wj¾úÖ®ÛUöîöª«u×»j®½^»ê«k«V¶Õm­[½·~Úºµ­­½ÛuU«VÝoÛuWúíݺ­ªëÖêÕ¶¾µºõ]ýµê»¿_î«UÕUßo{­_ºöÖ¯µíµ­UÛ­½ukWUWuÕ«Õ»¯uuUÕ^ëUU­ºíª½îªµVÞ®¶×n¯¯«­Ûëºþ­º×{Uº«[­j­~í½Õz×÷uuío^¯­õª«Uþ×µµõÛWjêÕVÛ×j»m}ëZº×Zõ{·o_µkª¿ko»µkÕÕÞÿëÕÞ»Zµ«~ýÖßn­®Þµ¶Õ[}{ªÕºëmÕw{í[ë­µë]µö­Uz¾Ö¶ûU­ZÖÝ«ªö«Z½^ª­¿[W]k¶®­jû¶×ÿj®ï®­ÕÕkõ[¶­·WÿWkû­wuV»o­í¿ÚÛª»Uoß½µÝkonëÕ_«^¶ëÛÕÕõWWªÕÚõ¯Wu}í^ÛöïZµmzö¶µv­kV¿íµZ÷ªýV»UÕ{ݪîÝÛµ·u­ý^«kU[Öýv»­«Uu{ÚíUUjÕvª¿k}U¿[÷[îÞíÿv­UÕ[Ú­mWVÛÚ¶»ê½ßëVºÛ«wußÞëÞº­[µnÝ[~­ÛV¿ímµ×ïßjªµÕö÷ÝêÛWëumW«·Ujëvׯª·µ®½~ë{j­UÖíjºëµõꫪÕooÛ]^¯«nºú½®­oÛ]mjík»}k­_ív«[VÿÝ]m×v«jöÛÛz«[v·ÖÖõ¿·mW··í«[mªöõÝ[ê®»Zý·«^ÛµÖ­wWUjªÕþµw«·¯µo[ªÖïjµî½}Û[ªêµ­Ýí[½[_[¶ÛõW«[nëµuW¶­Ý]}¯­{zÚªëkõõ_¿k}uZµk«U­z×_]í½Wj¿Ö»ºÖ®ïUWÖ×»zúª«j¶»^õz¶º­^«ýVÕmkÞ÷z×kmÛßöõ«ZÕý­U[VÕW]Vµµýö×V¶õªº¶¾ÕoWªµ×ÕUµo×ת½¶·ª¯ZßZ®««ªÕun·Ö×ouu­½®ÛíªªÚ«õZþï½U½÷»»õµÕkÕ»ÛW­^«·µWÛu·µúÖëW­vßvªÕUjÛ«ª«ëÕ÷ÕªÚÝ]ÛºõUîÚ«­k½W­vº¾ê«õú­¶Þ¶ÖÖ·UvýÕkuov­z×jßZµ½ª«Uê½v­[^¯v«]uÖ®µý¿WíU·õýýU^ínë]íW«õZ·mk®úßêÚÝ·[zëÛV®µm«]zïëÖê·ê»úêÕÖêïjµ×mm}UÕõÖ½]׫]m¶í^ªº·îÕ~í]­×]µëZµªý­U[ú½îÞÛjínÞµ[ݶµõmWWooí¾Ö×WÛUÝÛû[ª·ÚÕíV¯V­»Ûzµwª»µmÞÝuVööª¯¯­ûÛv·ûïÖêûÚ·¯ÛZ®µ}½z¾õÛu[VÞ·ÝußÝZµýÖ®ýUoº«UÖúÕz¯[VíÝö»õ_½mwîõU­½[u½ÿu­W»[UmµUÕUu­µµ^¶ß»ë[þ­ªµZªÚõê­ú¿½nÖº»~«¿¯õ®¶½V¯ª®­¾÷½[mmuZ»Ýovªï[]ë¯jµ¶ÖÚ¶½UÝÖµÞïw®ªµÖ¶Þ®«½½uõu{zÝu^Õ«ªïj¾ê¯k½zÕv÷zÖµ[UëVª¶µoõÚ«]ß]Û_z¾ö«U½_«}·u¾­V­k­u_»õUªê«^Õªö¿mW·nîõojík¾«ê­÷ª­¶Õµ_UÕÖ­Ö×u¯ïUßuWÕêí¿kVÖÚêínþµv­½]ëUzÚ¯~ö¯»öõZ¶ªªª½]_õV¶ßVÛWkÚß­]u¾«­mú«­V®Öëþµ]½kj½½­ª·uúê¯_µU­Ûm¿}[Ö×VµVª­íºª»ÿmëVïmoÝk^¯]]Úöµ«ë[~î÷vª·«Ö¾ºÝµokÕwÕíu[_kUU«^íZúõÚÛÖ¶«µU­­Úµª¾ÿj×[_µºÖ«{Z­_­Uzï«ÝmUw­[Úö¯nÖïj®Ý^­mµ·]]k«­®«m{Õªívºêýª×nµV­k×jÚÚÕ«n»ïßU«[ÛªºÛjê¶Ûm[U]¯]­¿UÖýíjµêö«ÕûmVß_ëW^¶ïUÝj®Û­UW]ß·V½¶îºÞº«nªº·õÞÛ«ZõÕ«Þ׺¿W{U_ªÞêÕë­[®Ý[mv·k­ëV½]¿ê«Wz­ª­ªß«}¯WW[]jµª«zÿ­­õVÞ÷µºê×Uµ«u»z®ýÖý¯ÝkÝvª®¾Û~­ë­µÕu·öõ×õV×»î­ïWwwvÚ÷nÖ­ÚµZµõVõ®½êÕUU}»jºöýU_µ[w÷µÕª«÷uý]_[ª·]{«½ï­k«}W[mö®Ý{ê­Û^µVúÝÝo·_Ûª«¶­[mºëU··z­Ûöý¶úö«µ[­ëk¯_Z»êÿvÕz­Õû[ÕUõu¯_Zªµµ½u«V«êªÛm¯Ýo«õUjëÕUûmvª»^¯¾¿­Û¯u®ºÕU¶÷þÚ«öªöõ÷µmV­Ý}ú­u_UwÝZö·ÕÝÞÚÚëõoÚêÚº«[mýmnÕµ·ªªõWª««U^®×»»º­ý^êíU½k®­j¶öµWÚ¯öÕu]½V»ë»^Þ­w«õjÞ»[jëmýÝ÷­VÛúýw[u׫½U­U]ÕjÕ·íZ×]UnßkªÖõúºÕVº«º×·ûÚ­Ví[[m못VÕ_[«ÚÖª­]o[÷ª­ªºªÛV«­nïz·Öê¶÷ÿýUW­¶«u«oëjھ֪׻®ûöí[[u{õUU¾ÕÕ¾½UuWÝZÚÖí]íV¯¯÷¶ÕuVöÚ­ZÚ­Uªªý]ÛZ­«{jëVÚë~­×Ww~­·mÛµ¶×¯»µÖýUW¯]_®¾ºÖª·VÞÕV·UvõWUª×[Uªµ·Z¾¿u®õµvßV¯ªë®ëw¶ëµþ¾½jÞÖÞºÞªíkUU½uU}[jº×õ·U[u«µWÝêªÚ½ÕU«VÖ­µV­¶î®­½~µ^¯u¶Õ¿ê·W]Ú·kZ«}·[¶ë}ï^­[몶­»vµ]oß­wÝUZÿ·[~ºµýê«[ßVûÛ¾õ«[wUUÕ¾ªÕµW»«ýºª««wu«wV«õî¾ý«UUjª¾ê¾·Õ_vÚ·«¶õm^ºÝuïÚ«í_µZ¿WmýWWÚýVºÕuzµÞµvíª¶Ýj®Ûm¶µµjúªê­]½uµ®­»V­Ûµ×¶­m몫֯®µ­ºë}·m½jª»mªµw_wÕÝjî­ÛW_ku·÷ZµWjêÕÿÞ«wöêêÖÕu¯UëoßýÛkZ׫kík[ÿ·ïjï_·þ«¾ö½uí«Û¾­êêÝZ¶õmõ×_Vêý÷[¶·®ª½U­Zêýþ­«Ö¾ë­[»»UªÛZë[Õ¶ÞõÚ·õªÚµ×«Z¶ªúºíÞ굶ª»êíÚßU]Wmþëj¶µª»U]½UjÕWÚ¿º«Wn­[WuµW­ßµþÕº«Uº«k«ª×íª¶­W­WjßZïUï{êÚº¶íõ]«[ïíû¯ûnêöíÛÛjµWj½Zµ«·µ­êÖ¯ïý¶÷[{]½·¾µ½vª««ªµëßZ½_ûmµÖ­mw«ö«j­ÞõUz¶í^×û÷ªÞê½Û}ZÝoïÝ»wþµ{ÖÕím­W~ªëm·[_ëwuu[ºµ^×mÚÕWV»Z»­«]W¯vïWo]UuÖª«ª¯ÿv«]UU«¶»­«uZúëU[»wþúß}êÖ®·ªÕnÛÝ]{j­[®Õþ»muÕµVÕZªÛ^ª­ª«êÕÛzë]UÖÕÖ®Ûw¶õ­oÝ«Þ¯[k¯«Ûm¿õUUuµmßV«uª·Õ}U{k»zº¶­kvï«Ö¿Ö½k­[]VýUÖµÖµÕ·®úê­µ·]Ûÿ½¯jת·¿j®ímº×ÕVêÝUªÝíßn¾Ößµ[ÕUuÝm{êÝU¯ßýkÝ^î«ÞÚ¾¿]®Õ¯mUVÖÝ_VÞ×[Ýík«u_«kuZëUõÿ®Ýo×·õm_ZÝu׫_®ýU¯V­U«ÛÕj­ªªúªª­·m·íººï«U»ÛjÚÖÚ·m­¿ï]ÝÕVÚ·ukõ_«U~ßwuÝõj¾¯]uß[µWkZïÛjµþö½VµvëÞÖ÷Õª½mz꿪öªÕ­}mk¯ÖºÿUÛVþ¶öû¾½[ZÞý¾««ïöªªêÕk¾ê­ÛW««_ÝßÚûv·ë}Öµ­µµ¯mڮݽZª«kú®·êÕz¯¿Þíªí][WwÚªßommÞ·WvýWZ«íV®ýªªµ}U[U}~ÚÕÕj®ûíW®·]×Õuº­×öí×ê÷Ö¶Õ½µÕ«n¿×ë­ï·íjë{]kª­WUZºúî­«ºýÕZÛÚ¯Õµ®ëÿﯪö­îµwî­íkÕ_^ªëwjªëÛmª·×ê¶ú®·]WzµV½º»Ö«muõ[]ÿv¶¶Õ]¶÷êÝÚª¾õÖÿmû÷Ûûº®º·unÚöµnºÛZê»U}ß_ú«WkÕUëUU®õÛ«mm«{í{[ÝZÖÕuëk[¯{j½o[ú»z÷¯__Õjڭ뫺·U[ªënþõÕuº×_^Öª½º¯n«½µ_ªªÚ­ïªµmW¾®Õ[mûUZ×­}ßîÖûnªúêÝÚî×{«]«º·ÕvÛmU®¿[ûoîªÚúß­jµ[ª½oµÕUתëU®¯{ª­]]]ïWoÕ]_j¿þ¯U«×}µu[½ýµûkvÕ»ºõ^ꮫ½ßþ»Û_{vÚ«w·êÖÿjµêÕUZ÷ýÝwß«®µvîµUz»Z·¿Z­j­×ª­½ÕÚº­kׯ{UÝ^õuÕwWu®Þ­×{{W½ªºëvÞ¶ºê¾úêÞ­½µk¯[nß]këmúÞëo¶Ö­[kWoß·­«×­Ým]¯û}}ßß«jÕuuïWVë×WU]mjµ­íëjê­jªíׯjª·ßUzë[UVµok[zëÚ®×_z«U^¶Õwµ·Öº«ou¶»«z½UU×{vöߺ÷û«z»wjë·×vïUíµ_õkm]v½]ªÕV×­Õ^ªþ½¶Õn½×z×µ®ÕkªÕuWWvêÞëWýúªµÕÿ¯W_µVÕZí¿Z¯jªþ¯_kz¯Wª¶®êÛu׶Ýí«]íuêÞÿU·ÕU}¿¯]zÖÛk·õVëÕ®««ûw¶­}Uûµ­®»ª«ÖÕµ[mU]®µ·u«U½·]UÖß[º®­jú½]v×{Ö·õ¶×Vþ¾ÕºýVßk½Uê×»ë¿]­­m¾ëªí÷uZÚÕVµ½½ïvµmöïUWÕëwm­n÷m]j­U}Z«[ª«úµÕ­­»m[¿¿ý^êÞîÖµu^Õµ½ïþ»ª«í«ÝÚßµÕûµWUµ½½j­kªõUWVÛZµþÝë»UU¶½êµUwVݽº»«ÛÖöÚÝ»UVößzÖöµmUýª­«_ÕÝUVß^¯ª­mûkj½ê«Vë­kk«Z÷{VµÖý·×תª¯k]U]V­ZÞÚÖ«ßU¿ªÕÛÚÕê··[n×v«mUö¯V®µÖïUïþ¯¶¾­Um]ovúµzÛw_í[V÷­]ÞûÖ×k®ÕnÿVÖÚ¿Zµzª»ªÖÕêÚªÿ»Õ^»ZÕU¾®»ÖÝïÝmïú¶ëVµ^Õ[Ú×Umjꮽ÷]_º¾¿[UêÞ½Û­µ_êÝmµ^«·Vªú¯{Õ_m]wWê½»VÚµõ­W×kUUzªª½ïzªÖõ_UWmÞê¶ÚënÖ¶¿wZê®öªí­öµªëÿë­Z¶º»nÕn®¯WWkUZ®êÛ}n÷êÕºÛZ«Û]j¿UÿÝ×vª«mµ]^­mj®º­U¿Û{Woª·Unµªµ]¿õuuV½ªêýëkW»Z«WëUjîÛj¶¾ÕZë«··UÕV®Û­­o}kýW~µZízõ»®ú­uÿ«êßµ]·_kúníwvúª½ÚÕW]­ª»ÛïÖ»ûµ{Wvë[nû^«[«÷¿V×­íÝUw«V·¶ªþ½_ZÚÕuµjªÕ¶úÚ몮ջխW[^ýöµ«ªªÕUµUV·õ¯júê«ujªª«^ýº®·Z꽺­[WkVû¯µvÿ]ßuªõUíÕíªÚ×W­U¶µVÝZ®®ª»U~êµWnÖöö®ª»¾µuµ^ïUêëm{V¯]}ß×Õ[­Uwú¶¯m¾«kÚÕºÕÕ×ímëZª×®ÖßíW¯^¯«níuV¯ª®¶ÛVÝ_Õª¶»wÚöµªí]ªßÞý×~׫k¯vºýWwªºÿU[^ÿ½ÚÕí¯ª¶½w}]׫ÿ]}­_¿õUÚª½Ý×»~ÕzÕUöºÕWª­ýWuUÞÕm»VµUûº¯µ­W­ª½WõºýW»kzÖ¶÷m½V­Zµ·jõªÕÞ·®ª¾®Õjµ÷Õ}U«^îÛûZ¯ÖÖºÖ¯«­U»ëë­µuk­{¿ê«Ö«õV½÷®ë×kê·VÕ×íowWkkz¶úÚÛoöõkU}ª×ÕÕVºû«]®öÛÖ«¿oVÖ·ú×ujÿúý»nÕ«_õúíÝknªÕªÛWû¶íZÖÕ«ÕjªÝn®«U]z¯nºµ®º®÷õmµjëõo~­]µo^ê·ý_k«vö¯W¶ëÝU[«¿WÕ__]Wªõ®ÿÝêëÕÕWÝu­êÕ÷v¶î­V½ªÝUV­ªëW½×ªê×Z«j×Zû^ªÞ­Z·{ï~÷¯uªÛ^ªÞº®íµmíVª·^½^ík{»v®ÞýöªÚµkU¶ªß¯­ÕµUnµ[ÕUVë·ªíu{Õm­õV¾ö·Uý­µ]ß[»Z¾×[ow«[Õ«»µ·wWïW{j·¯î¯o}Zê¯WÖö»ß߮֫ªÚ«ëz­WZöêÖ¯ÞÕw¿ïm¶ëªöÖªïµ~Ö·Ö«v·×kï¯nª¶íÛµuW­Wë·_ûVÝ][Z®ª÷Ö­jÕ]¿jî­_Z«îµÕUÚÚ÷­«­zªê÷ªê¿Z«½]u­¯]õUÕÕ궯]m¾®ík·UnÛª½·WÕz»«uûwÕí­UjÖªûUVÖ½kýUo÷ýkÕêÛuW]uí{Wª¶»jíU×»U{WªÕ­VÚõ­zª»v·×ÕýµÖ»k__îÖ½ª­µ¯wU]ª«ªºúµªþ¿ÿ«÷uûU¯[jõ]nµ·k~µ¶î¶ª­{UÕ{ª¯·v®ªõ^½m_]ÕÞ¶µÛµ^ÖµvÕkýU_jÖëUÚÛ½j­Ö«Umv­î½­V»[jíª¯_ª«}ꫪ߯¶ÚµªÚ­ßúÚ­jÚÕÚ¯¿Ú®íêªÿݯv붭¯µ]V«n«ëö»]­úîê­Z¯ZûkÖ«ß«ýmÛ­k¯ªÛu{ZõÕ]×µWÕWUWUÖ­êõU«ÛõU½þ¿Zö¿^î×ý~ÝoýWjµU«®µªÿûÚõjïë­«n¯w½ª½jµww_wíµU·ÖÚú«úÚßZª¶ÞªªÖ½UÿZ®µõ÷{¯Wk­®ßµjöªëë½µÖ¯U«oë¶êݽz¯ë[úÖÝuWú¶êÕ®µuWºÚ«Öµõu}V×uê­Õ»«wª«Ý]ßwÛu[­uë[Õ­[¯VßUjÛu_Wuöî«îí¾ÛU·]Öµu­zÕ{V¿vÖº­[m{ßuUvÕÕ¶êõU¶»·Ö¿ZªÝVê¶Ýu_Wú¯½m~ªëj»z½®êÖÕjýkÚê­Zî¶êµ«~öõjêÕ»j·µoÚíW®­¯Ûß«ÕëoVýÕßjï·»ªÝúÛ]WkUuíÝ»Þív¶û_^­uo[}ÝÕuV½Öëúþ¶ßíkW{[j×UV«µ¶Ö½»uu¾¶««ûU[½knúöõW®Û­]­_Õ··êÖ꺽V÷­n«öխꪷUë_êß{îÛW«WWÛoÞµÛZ®ï½u[o^µí¯ú«om[U×Z÷_kZ­½{¯Öªú׺õ­_U][W{{ZÕu_^¯[¯ë~ªÕµÞºÞí[¶Õµ{U»íjî¯^ïkm«UýVêëõ[zß¿Wmï½VýUÕµî¿kZµk}VªõÛ]¿¿j¶¶ÕvÕÕjªïu·]uvµ«¯êÞ«Õ«]}[~÷µ÷[¯®¶Ú«_[íÕ}Wjß·®î÷»U­]u]UZ½ºëW½¯mºß[þµz­[o­ïÕÛVÕ[«Uª«jªÛ^Þ­¾÷m[µ^··Ý]÷z­U«ëê·Õ]ß}Úºµê»o]Vß­ªº­v«ºÕº½Ú®¶ªªë[·ûõÖÕUWU×UíV¿W]­êÕWn½«ÖÝwn¾ÛWzÕ^·}ïU¯~×j׫ÚÚöïz½UW]ÖÚ׫µënÖ­wZªÖú­Þ«[n«^îê«m¾ºú·½­}û«µªõm¶Õ»Uêׯ]­¾Ú«¶­]këuú»¿ö¾ºÕz­UÝV×ÛwjªµmõjÖת·nÝÖÝvýWo[붷×õZ¾ª×U¿õßwµmÕÖ¾ëߪ®í¿^ëUUþ·k[ÖÚÝw{W¯U»¶ª·«UµÚuU»ª¯»mjÝk[ú×µêÖ¶×ê­z¯]kµjµ]¾ª««{­[õªú­kª÷Vª­úê×zÕºÚõ«í«VÚÚ»]Vª®ª­¿z½UmmjÝn«Õ[öµU{µm÷»UWv­½ö®½îí]×÷oUZëjªª­÷nû[îëת½Vµº¾ÛuõUzý~¿mkV­ë]{jîªÛzïµ·W_^·jÖí_V½×ÖÕV»êºÖÝW{«ß¯õÿõýëUUu«ïþ«ý«­º­kWkª·ÖÛÕo÷u­[õÕUï_V®þµ}ïÚ®µ«WVÕõ«íWmªöÖê»ÝûÕj·«êûµ«kukí[խêÚû×úÕí¿j½UkÕ®ÖÝë¶õU¾Û÷jë÷·}ÛíÚê­¶úÝý½V·¶·uÕººªµUõw»j¿zíoÕõ{[ZÕ]^­ö­î«ªëzµ[_WUêú·^Þª·­ïV¶¯ujݶ­{¯¿_zê»Z÷z«mëÞûªÕÖ¶·WVöÕ­Úªõ^¶ªÖªþÕõkÚïî­{wíVõÖëU½»Wjªî«×ÖïW·U[­«n·k{õuUï{Õoí×Úê×U¾»zë»nÕ«×^º­Zª¶«½í¶­Õv««uUÕ]­÷jµ½öÛ{ZÕoª­VºÕ_Õ]jíõV½~ª­«ÖÝn×µV¯Z®ªîÕ_V·j·]¶×תÕ^õjí×kV»WêÖõ«Zµß}n«­¯^ªêþëm«úªë]÷m®ÞÛovî»·jêÛVªê«ª®Öï]_¶º«ýÕêÖÕw÷ÕÛõõº«jµmî½ZÖÛuí[Wê×®õ¶ÖÕZªµÕûUW{÷º­¿ª¾ªÖûê­»¯UÛ_Z®ÛZµ«»WV×uõýµª­û[m«V¯ÕUßÛ««ÚÞÞ­«wU·­ÖµUÕu½oZÛmZýÕkuV×ÝVµ×UjºýÖõ[Û®¾¯·{U{vÚúÝûVýk¯U»]k]ß«ÝmêÕ}êºÿµºÛVÝkvÿº½Ö­uVï^ÕÛµº¶«^ºõ½¶­¿ê«ÚÕªímª®Ûvú¶«mÞ»U­õu^õÝ«íU«V»õ{êëmVÕ¶ê«íW·ZºêÛªë]ºµ{Õû½nµ¯{Ö»ë꯶­ÛÖÛw«¯Õ^ïZµÛ«[­»oW½zÖÚ¿µýU}«êõÚ¶«Wºõí[^ý«µë®»»ÿ®½¯oÖ×Ý]oëkV»µÕuµ»û­wêÕÕݪªê·¾î¿mZ߶û{k«U«ß·Ö¯nÖª«[w{õ{VííVêõ¾««ëë÷«õ[u_WÖ«×jÝ·[Õ··^ÕÕµÚõZµ[nÚíWj½ÝuêÛ¯Z­]UUU«U·­[ÕW®úÕUZ«ßÕZº­¿ëÚªõ¯WUÝ{WUo¯Õ­¶Ö¾ê·Õjª½ÿÞ«º¶·®®ÝÕ_û·µ¾·kö÷·[ªÕWªµWîöÝ®½ªÞÚ­ÕvºÖ×{ÕzÚ­km{V·µÕ»ºµ{]jªê«÷×z¾î·v×U^º÷¿µ¿Õí®­¿«íj­oun«j®ÛÖ¶µUU«õªµªîª¶ú¶íVÖ­¶»uUª·ZÖ¶®õm®­mÕVõÞÕßêÖïZµêï[U­]­UV·_®Û{vëu¯«_½mßV«UµwU»×úý^«k{­»UªÛj¿µ[ZëW·µ½_­ªºµk«»VûÛÛ[m¯ÚÕµ«uªöîµZÝÖêÕ_[Þ­U×{kj÷mÛ­}V¯m}j«_·õUwöþ¶÷ßZºëm}¿U«×úíokUw®ÛjÕ[Û^µºê«UmßÕUo÷ê¯[õÞêëÛëný­k½µ®¯«»ÿUº»Û»}Wµë÷knµz·]õWÖݵªë«ªµV¶·U«mZ¯µuÕZµmkªívµUÖ¶ïn÷{ë_ýÞê×ÚëÕo«mõ{ý[w«kï½Zë]í^µúûêÝ÷z¾¯õVÝou­½[ßÕ·V«V¯×[õvÖÝoݶ­½Ý{WjõºÕjÛ­WjõZíª­ª­vík}omzÕ«Û«»î¿»uV«¿wmuUWïjÕ}Wª®Ú­ë{«ª«k­UZÕºëßê¾×[½ªÝZÚÕÛ½×UªíêÕU¿m«u«»íU~ÛV­_U^þª«ëV·êµÛuu[k_×{ªÖ­ûkÛVÕo]UVº¾ª«W«]V¾×ÿ¶ö½U_W[·¶½võVëv®µkkÖ«­^·W}ª÷ªÖê«kîöýë_{º÷mÛ_ªú­ÕïVÖöû׫Uo»UjºúÕ«Ö«níWjµÕݪڪÖÕ®««Zëmkµ×j»UÚÛ]Wµ¶¶·«ë­Ûߪ­Õvµõnú««^µ®º÷jï{«]w¯ZíUµêª»uÕ÷o­WUê»[{u½·V·k~¯muªîÛí«k}ÖëíU»µí¶ú­¾íõW¯Vë­ÕíUZª«ZëZµ[¾¶Ö«ªªµu¯¾¶ÕjÕnîÞªïý»o_në^µÝ{ëw]ïÛU]Zª«·º½ýj»]V¶þîê«~«k·«·µ¯×vê«þÚê½êº×õzª¶¶µ·mn»×moÛu¶¯[ûWîûú®ªímÖöÝZö÷½µUz¿û[ÞªÕU·þº­V®Ú®ú«ªµÖÛÖ¾þõvÕ»_U}Z«ý]«jÕ]Wv¿[׺ýwn«[zõ[ëÞ¯ouZÛ¶ÕíÚîµkVÞ®¶Ýõ¶ÛjÕ{¶ß·uí]öõþ­ÛW¯½W­öº­[uö½zÚÖµW­kZµÕª×oUÕWUªª½»Zª¿ÕZêÚ»êÕª»íÕmýV»ukýwU[V¾¯nëß­ë×V»­«êý^ûWî»mº÷Uª­ëu½ÝÖ­Õ÷·¯^Ö«Ußµí׺ºêïmë]«WµUk«ÛuuíV®í÷Ûnÿmk®»W«{jÖí]jݵ߷·Þ«zµm­j«íûÕ­zÚÕöª»ª«Vµ­wÚªÚ¶ª·uv×u[ºÛmª«oUvÝZ¯½¯Öª®ö½ªºëk×ZÞºÛUkj»uk­jµ×«µÕUª­uݪõªêë[êµ»mm×ÝÕ]µ×m{[Z»{Õk­wUwVívûêµWU½·_jõ^µ¾û]{j׫mUm[[õª«wkúÚ꯭ڵkZ»U~¶½[wWUµv­ª½ª¯_Vºªý×[·ÕZª¶ºö®ºÚÞ×µï]»UWn¿UÖ«Õm×Vµm[ê­]×V¿®½U­µÞÕ]«o类ßõªëûuõm}k½«j®ßûWÖµªö¯ÕZ­µ«uuº¶ª¯Uk«ÛUjª·kZík{µk·WZÖûö¾ªýöúý®ûk»ku[«koZÕuZ«õUmºµÕuþ­^½½Uk»^«µêê·}Wmk­k¶­UõU½­ýíoÛWµíÖºîÝj«ªÞº»vÖ¿VîÖ÷ZÖ»Z×W_®Ý½õý­«k¯zÞûëw{î¿«^µÚý­·]­jµ­{·ªÛµßvöµU­^Ú¯{µVª»ª½·m·wkÕjÕm¯º×]íUvÚÞ«ªîß®««Ûzª·kÚݶ­j¿mÚõú¶îÖêêî½UZÕkÚÖ¿ÝÝUUmµÕjÕ}Z«mªµÖ®ÝV·m­Ú½ý뮪տ[wUW×kVªÚÝõUí®Ûjª¿U»«ª·UV«ÖÖݺõªîí¿õjÖ·ú­j¯ªõõ}¿j¾·­»jõ¯®Õj¾¶µÕwí}«nö¶¯íjÞþ½«_kµ®ªÛþÕj½Vú«ºª¿Õ{mj½[n­ÕöÝÕëÛV«·vëWÛWZí½_ª¶µVýªµ­júÛ×u}ÞëÖ¶Þª·W_­«ªºû¶ý·º«ïëWmÿªí¶ëÖ¯uV­U×Ú÷W¯¯wzýê¿vûWwU«Þ·^­ÚÚÝZµWj÷ýUÿ½U·Uª¾½kjº¯û]ª®þúµÝ[Õ~ÕêïꪻU]]íUm^ÖÝ}Õ«­Ý»Vê»_­ª«kÖ­ûm]~õVÖöÖþÚÕûõVÛj«õWkª®µþº­¯ZÞ«÷jîÕ[Vê­]«êíÕkþªµvª­mkUßUmÕjÖ½}mµjºþ«º×ÿoµ¯­jµWm]ÕÝÛµmÝj­ZªÕúÝ]ëÚÕ_ê­j«ÕÖê½úõ~÷«êëoWªö«ëWê¶ë{ëWu¯­ý®ÕµVêêêªíwï]VÚµÿVõí«U¯oU¾«kzýzÖ¶«¶µn««U­UÞÛ~¶­µVþݯª»{mÚ­ê·ºªë»¶Ú«Û¯U[ú®ºÿWuº­jú×Ú·«®¿»j­ýV®«µVªÿomÖ·õÖµµkUµÝ¯­·UÕU¾×]zººÕû׫Öú¾õ®õµZ½zµvûjÕw]îëWÕvÕUêö·[¯Ûªº¶·ÖýÛëõ^®î®ývï[kUÛê¾ÕÝú¯V·j߶íïV«ª¿µ­º­ö»¯ú«kj½m]Uwk{{UÛª«WWû]Zþº­ºëZµýmz­ö뻶®õï«j¯võª­}Öõ«¶ºý}×­ª½Õ_ªë½»]j×Z®ßWwmuW]í¿ÚÚªÕª÷µëuU­_ZÞêÖöÖê¿UÖª»jªÕ^ªªÖ··kWºµûkÕßUÿ]»{®Ý·VÕk{VÞ×WmïÝ×oUúÕZÛ¶õ]UuZ¯[­ªÝ_ý®îö®ÖºíÕ¿­½W×j߶«]k«[×u{]ÛÝvª»¯êºÕUj«­ÚúÛÛ_u]Vµú«¿]nºªª­Z«ëín×»µ½jÛ­ýê«VµZûº»÷×Õ×ÛÕ½]kvëõ­íµo×V·®Û¿kVí{mVÝnÖÕjµujµm_ûUõ[µZÝ[Öêºõªµë¿VÝ­m^Ö­Þ«ukmn­m]]ººÛýê®×º·­kªõ[}õ«ú®µÖöݯjº»[u½Z×Þëꪺ¯­¶º­®ÝWµmjµkªÕÕo¯Ö«U[v·UW{öª­UWµ­jÿVý~ûuUWkj×WªûºÝW«UëZûW}­ZÕî®î¾¿U{«µVïn÷oZ­ªÕom×U^½wµÝªííUúíµª«wºÖµ[z×zÕ]jõê«V×Öím__õÞ¶úÛ߯½Zª×^®«»]uëµîêö«V¾µWú½ëÿ×UÖ»ízÞ»V­{[õZµ®®­¶õ¶¯WUõë¯Um­k¿oUý÷ݪºíÝõj×m^ÕU¯ºþ½]®ßuÖª­Õ½Wvî­~¶ªõU}­ÕV­]Úõ×Ý­U«Õ«Vµj¯½ÝUmÖÝ»^íÕöµZêí_{jõUUoo­~í[[ÝzÝuUïwwZÛµvú­­¶Õî«Ûõ×ÞÛm½ýªºªêÛ]oúÕµÖÖªÕU¾·ovëZ½ûz­[Vµ×ë­V¯vµýÝmÝZÚýUÛ[U[ª­½[®Õ«ê«µªÕWuºªÕ]í­®Úºß­ö®«]]¯¶ÝÕ··j»u«^­·ÕUîµÝ_{]ÝÕU½½V¿«µVÛn½u«Un·kÕWj«®¿ºû«õíÝUVÕö­¶í^µÖ­«µÝ¶Õ»_Õµª­k­]][Û]«W×õ[Õukj·]·UVë^ÞûUÛWkku½êÛ­µkëÚýÕw^úê·º«ªë×o__µk×®«ª­Zÿ®«Ûí×ÕÖÕwûÝÛ]¶ÚöëkÖíÚ¶ªÛÕ·¶¯·ê×µk»U­[Zö«Öõª·Uªõwkuݶ«ïWUÿûûo[jþµ]Þ¶Ûn×VªúÞëï{×µúÚê÷·kïjÚºÛê®­zÿo^ß·­{îëu[kßëµ]öÝ­oWý^­]½µýµúµ__îõ{íê«·ªÛnë÷Z««ZµZï­_þ»×Ú«×[o¶úµ_UjÝ]UµWz½m«Þ÷êõz×]UÕjÕo«­Õ·}Õuí×U­íkjÞµmõêÚ÷[¿½zÚÛv¯í­ßÕÕuuµîí{uÚªí½Uªºú­ªêõW­kuöª«ªííÝVúÕmÛz½uµkUuV·ZµWµÕ×W¿ï¿oêÕ¯ÖîÕ¾ý[­¯ê×®»Õ¿­mÛ­]×Wj­µ®·ÛZêÚ­ýjÚëûV«k[ïoÖ­[ú÷uתë]µ[·Ú«µíUzëZ·UZµV¾­^ë[UÛk]®¶»½­wõõÚÛ{Ý»êíÞ«ÕVúÖÚª×ív¯«_Ûêµ]­®ÚÛ®ÝêÛZê×W½¶õÖÞ¯Z®ÕZº­m½ëÕÚímµ÷¾ú¾íµªê¶îßîõ}ÖîíþªÝ]µ¾ïo»unÛVÕî»wÝZß^ßU~ûZþ¶®ík[º¶ëj«]í­¶Õú­]okªûë­UÕÕ¶­]·UUÖ®ÚµÞëµu¯UUUnªÖÖíu~µZ¿ZÖªÚÕºª­oöª¶ª¶êõÕWjÕwµuVÕWºí}Ýv×ÛnÛÝ}­î­^Õz½UjëZªÚ½][^ÝVÝöëkvÝ]Vª«­UU¶ß¿­þ«mÞµµ½Ö­ªÕm÷o®­[¶Õ¯[{ZÕj­Vê»VÛµ]^­V»­uÚõ­µê­]Õw­û]µUíënÕ_VÝëUÖ»½U«Ûw½Võªß¾«_½k^Õ÷ÚÛ¾®Õw{«ZëUþêíU»Z¯U÷o®×]Õ¶µÝ_VºõwÞתªÚÚÖª«V¯^öÖ÷Uªú·Zª÷m[ªûú·õWÖÞÝjß׫¯{v·ïÕÖÕ½UUUV߶ߪßþµÖº¿µ×jµVö­¯ë­z»µo^Úõ×UU]m­Uêõu~«½}öº¶þ«u·Wë·w¾ÕªÚýkUÚÕkýÕµÝZ¾«]«[õ­]]þµu[kÝkµVÕ~ªë_ívï¿Ûz×ÖëU·Uº­½Þ­[mj¿mîýª®êªÕv®ªÕk«{u½÷µZ»U¶Ö­ºïëÕUÝ}jª¯mÞ­®Ö׺«»W·×UµëÛ¾ÿ~ºª¯ëmZµÕ¶µkvëwZ­uW­»ÚÝnÝÝ­m¯{u_m[ßþ½WêªöïZª¿m·oZõÞÕ­ÖÖîÞê­ZÖÚÕUmu]ý½Z½kZ«UjÖ¿[Uõk{Uív»Zöýî¿]ÛmV«êú×u{ÕV»]ÝÛkwµwú­n»®ª×n×VÞªýº«öÛ«ÞÕªªÿunïVÕmÕ]UªÖíjªþºë¯[ÛujÕu­j­oWíuUõÚµ~«uíÛÝöªªûwõUÛµUõ_µ·k««v­u~íÛU½Öþ¯«UVºªïuµvªÛ×ZûÚ­j­õ»uº«ºõõuUwz¶Ö«~®ÞÕýo¯Z»uw­½í®««ëõj­ê÷ýVºµnÖ«m¶ª­u»îÕê·[Õ]Ú¿µ÷}{ö»Wmº«ï·mVÝU[_WïÛuknÝï×Uku«Ú­VÖí«W«vÝÚÚºÝû¿ëWkn­Z»µ¶Õkj­ýÿúëµ·{½uVÕÝÕjÚªíªµj­»]ÞµkU꫿ݪ¶µª½½ë_VíU­¾ÕÛ¶µ¯zªÝ×Zµo]ß¿ÝÞý¿ë]ý_ë­j¾«»­}jÝo«­þµ]]몵¿·Úµ×mo[Zºú¶«µ][Õ·­j÷ª®Úí_Õ_¿W¶÷u¿ÞÞý~·­Õ«õ·zõö­}UV½êû»_Õ«ÛUõ¯ZïW®­Öº«»µ­Uº¶­VîêöÕ}[UU]·u{¶Õ[ºõ_Vª»uUuº·^Õ_vª»]ªÚÝz«»Õ}U­U~õµuUzº­·íÕ][UZ믭µjµ]Û]ö½[ÖÖ­«zݽ[ÕÕUmÕU^µ~­uUo¾ú­¯mµ®ê­_{«¯m]mõ_V»«j÷ëÞ­ÝÖ·ªºµ^«ÚþÚ·ª»ÖíUv­j½k_mUjµ½¶îª­¿­jµêÚß]o­uZ«~¾ªÝ»ºº·«^ÕWjÞµ[íµ{j­u½Û][mÖÕwu«Õëv¾µ]VúëuÕÚÝm­V¶­zÕj½­Û_nªª×Ww«kZí¾¶ßÝ]_ûjµÝ®ªÚíëÚ»«Uj­½êµª¯më_»ÕÝW]mýëÛ]Vºµ«oW[zµZ«~­÷UZ÷oí«UVµ^¿­VöÚ¿_Õ®ºöªµZ»ÕíµmmU÷^íW~­Unú¾÷ºµmj÷ªõUjÖí¯»ûÝ·w·¾ëW[nÛ·­ºíÕ®ÕU}«Uj­uÛk]ujº»Õzú®ëÛ¿Zö×uwoºïWm[¾êÞªþº¶ª«­µïª×ýZªÛjÚ»Z­jïWv·vêÕµZê¶ßÝZ¶«µU¾õ­Û½n­[]WªíµUjõ­{·k}ú­^¶ÕëÕ]ºëV«mÕU{]kjÚûõ[õÛ[­ÛíkvÕ[W÷µÖÕ­êïWÞÝj׫µ×U«]zýVÚõÕUªêµkîµvöµUv÷_mo½^û®ª­{ÕÝUßoÕWÛ»UÿvÝjÖö­}WVª×[ký»]×»ZµÖ»ÝÕý«ûªûUUkZ­u»·¯ÞÕ¶®íVÛV×»Õ·UþëíUo×UÚµVõ[Ú«íÛÛ{k_×U­[ûÛnëZëknÛ¾»×jÝ]¾µ«U­vºõÕö×µÛkí­Û®õ»ê굺«¿_»^»«VíÿZÕªûµkµ¾¯V¯U­z¾ª·ê«U^µUkÛ~«»{궫µöµ·m«ÛëëUµ»µ÷]ª×_uu½Ö«Ý®«­z»¶·ª¿Ö­Ö«Õêú¯VõWuU«Õn­µ½V·¶½U­ÛZÝ[¶Þë¯×õíWZÖµuukÕ^ö×mZê®ÖÖ½¯¶Ýêöîªõ[ÚÕÞ»nµÚõZº­®ªÕ½Ú«ÕªëÛêµõªª·wõ·VÝïºê®Ýuuí]^¶ê»«Þ®ªï½jµÕÞíVÝ_{ݪÕíUm½u{ê¿jêÕö¶êï}ÚÕ]®«zÚµ×µZÞ·UkªÕ{Zݽ½ëUWÛÖÚ®ûm®÷[¯µ[Þê¯]^¿w_Õ}jµVµêû[Ú¿[Zßj¯ZÚÛÛ¯U­¾×k½wnÚõmÕWvïí®ë¶ªÝ¿×µ­]½Uª×º¯]¿õê«UíZªþÕªÕmm«V«»ÚÕÖ¾þ¯]»WûÝm®ßÖõׯûzë÷ÛZþ­^ª½­ý_­ö­ÖÕnªÖ½k×uVÕ¿zÕ«ª­[mU{kªÞÕvª¶ªÛ__ZÖÕUÕ·×kZ«Ý·ºÕZ·¶õZ«k«­_[«ªûmVÕõu·¯Uj«¯ïv®×Õ«÷Vû×Ýj¶ëêÚÚªª«]ÖÝÖÛõuªºÛÕkªêëÕºÕ÷]o«µkÝV¯ê«WWý¯W÷[×U«UW«µjþªÖº×ú®íõ]ZÚÕZêÕ½«]jëëwk½ªª«ÛÚªþ¾«Wv×w¿½kjÕzý»W^êÛnÚ«··[[]u¯mzõUmUº¶®¯ª×UÝWú¶úëÚݯ{mÕ«{kÕ_UUÖ¿ïÛ¾¯êÝVºÿûVïVíkUvõ{]ªÕuµVº«úûm¾ý÷ªÝZÕUê¶Ú×ê¾×úê®ÛW­mÛÕªõÝýzõ¶ÛUUÛêµkzö¯»W­ûõ»»w]¶Õo뮶­}víWª»»[ßo÷v­ÕÖ«êë·W_í«~®ûk{nµu_Uo®µ}U»­ûý]ouõµo»×ÚÖõ~ª¿]ªÖµ÷]¶ý¾­µ®×u]ú·ÖÛ»~÷«jíZ­[kízÝk}Uëuwm[u_wõÝUwþ­Õv­zÚêµZ¯U­ýúõwu^ÖÕ~µ¯]U}muõý[{µ»ýÿZ­íkÚûoz÷uïw}]Úµ}uݶíµjªÛ­^ªõU«VÖºªý^í«Ûë~­ºÕí¯Ý½¾Û¿u«U]^í[¶îíUZÖߪªÚÕUV¶Öµj­U®­~®µî­V­[­U[VÞªÖÚ¾¾«Z½½m_­»uV·µZë[Uuê¯]®Þïõvº¯ÝÚ¶×j×·ªÛ»­kU½vßvÖÚ»ojºµµ]êíÝ»]µV®µuªºõ}wmë[­µ­ÛW»­ª­¿U{uÖ¯V«oíõ­]¯­îêíZ×^«{ÕUµ}kí_mVÕ[v÷תª·Uºí¶µvõ_V«WÕUý»«]µ}ª«¶­ÕWºÕª«W«V«]Uo÷÷}®µmjÕnÖ·Þ¶­u[«·ª¿ÛkZµVÖ­UUUÝ{ë[uk[­}ªûÝ}o]W­U[¶ºêµ÷[m¶úßnµí]«»u«W­n®­]Zëwu¿Uõ»ÖÝ«]õîÛU[[Vë«Uµ_ï­ÕZîÛVõ÷jÛ{í]Z×jýõ­½VÚ½uZëÚµU­ºµ×÷VÚµ·«WûwÕzÝZºõÕ]ýj¶®êëmµ­êõ[«îú¯×µj¶»jÞ½ª½ªÿµ·ÖûëkW·¿­õ­U·V¾ÖÝëkUµÕºªõ^ýëU×wÖµõ[]Wê߶Õn­ïVÕ}UWªÚ¯µWW]o{ooº¯vº®÷Ý«[[êºöª¶·ýëÕmëßU«·õªÕöÕu­uÕ~õUj¶µÝ»[×Õö¾û]]ëjÕmu»v»WõªµÞ­Wÿ«êõZ­Úµ{[}­}[¯ÝwkWmªïê«kµµz×U½¿¯mo¯UµZýk­þ­ÕUÞþªµûW»kzµ_«U[¿U¯j­]Z꺷ßÞµÛÕ×jµuû·¶­÷Z­]­¯UkvîÛUuV·kîêÝ÷µ}×­êÚÛvÕjëÖúÝVöÕ_×µ_«¶·¶¯wmkÖ«ïÚë]õº«UÖµ­Ö«mU««j½}öí«o»[o½µU[Õª×mkumª·kÞ®«Ú¶Û­Û¶­Ví¶õjÖµWv­uµkþÕkÚõoíõ½µ_¾Õ¶­íößÕýêÚêï­{]®êÚûýz»n×UÛýªûõUnúßUunÞêÚëwmUõ­^«ªªúõkUúÕkݵwõ­}kþ­U®×]·{Úºµz÷wjêÛz«jÕjº×zÕUn»µ½jýë½êï[êª×»jíïõßýVêÕ}Un®ëÛëo]Zõ[Z¯]ëõ[k×ýjÖ®íkûªÕÞ­ÕZíkÕWëj¶µZýµ¿ÕkzµZ¿×W{¯÷nêÛmÖÚÝ­wî»U[~ÖíW]kUjëun«Þû¾Úªþö»ZÕUVµZ÷­¶»n»µmí]ý{ZÕîõ­zÚªõU¿mÕVÚ÷j¿UÖ¶¶ÛWºõ}wÕjÝoj­«mV·m}Ýu­íÕzÿÕ_Z­×ÚÖ®ûZ®­nªµ¯µ¯_ê»íßkÝjëûº­ºª¶öúê·m[kïmv¯{Öõ­Úõw¶«zíª·ïÖÕªöÕêÚ¶ÕÞµûU½Úû]¶®­ïZ«u[kÕÖ­·}oµ«n¿êÝ_ÚßUºµVÞÕën®µV­«UïÞÖÕõmµjµ×W[]k­vÿí[z¯WíZÞëUUWú¾÷uV®«Z·ëߪíj×vºµïkº¿Zµ¿ªÚ«Zµ«n¶µ]Uv½µªêÝÿ_¶­úßokU{¶ºÚ·ª­]ÛÚ®íowí­UªµÚýZëuµ[ºµn­õUm­ºªº½«[zµµ]Õvûn®ÖµõjßZ»Õ«µuu«Z­®Õv«[êöÝ×Uvë¯uuõUú½WumµvÚõÕ_]k}ÖµÝw»ûê÷UµUª»¶õµ[¾Õnõu®÷V®ïûõWÖµö½½VõUú¿Ú¯kZëµu~öµVÛ«ÝÝjê·~«ºßïV«mýµªí«mªÕªµÖï[}«uÚÞ»VÕÛVý[ûU}U·}µ¶ízýjµuÝn¾×k}÷jÕ}«jÕU^Õzõ¯[nÚµ¿­jª½Ú«×®öêõÚíkÛúû}w÷ºí¾ªú­}u}¶×[Û]WUmUkýu{ûu­m×ûêöªºêê®Õþ¶ÕµWõkê­÷îÚþõ«[½¶ÕZª­Uÿ®ÛW×k{­¿[W뺪µZª×ÚÛ}öÝßzíµÝµ[kZµV»jööÖõu_m[÷ªê­ºÛµvïºÛ_ªª·VÕêÚª»»UuÛ«U­ÕmÝ{Ö½UoÕµWV®µ¯_Z·î¿÷Ú뵫«ZµZµnµ_UßjíÕÕº¯n׫mÕjê«j«}¯ïjÚ·o×VÕ¾ª»¿UvöÖ­þ­ZÕ}Uõýë^­öÞ¾í]úªµW­µªõ[¾ÕvíÛWª·Õý«½®®ÞêÖºªÕÖÚúöÕëm»W¾ï¾õÕêíú×vÛ{wzõ~õm÷íW«½í}ëmV»ZíÖí]vûÛª­uµ­Úí]·ízöíj¶ÕUïªÕVÛ¶«^ÿU­÷îÖªµ­U«ª®ý½m«¯º¶×jë«îêªÕ¯¯nµnÝZº·ªÕUmjëWj»¶·êõjíZÞí·u«z»~®«WêõÞª¿«j®ëÛ­Õ××U¯ª»_׫kW^µU¯ª­ºõý]¶ß®¿^µk~ÛjÞõöÛuêÕWµ_W¾·Ú¿ºÝ®í×}u×jõ¿^ïûjÛ[ªµ«Uu֪ꮶ꺺»·Ûz«»uU®×õ¶Õ붭»ªú·[[v«µÖ«nýú·«ZÕvÞ«íÛ«^ݵVý~÷[U÷ïªÛï_mû¯Ö·WuoõuÛuëë«uªí«¯µµ½nomUkkj­[mÖ½õëÝ[½ZÿUµ×ö­UÛ«^¿kªßzÕV«][zªºêß®ÿ»ï½µjÝk»ª»ººÝêÖ¶Õm_­W[µÛoU¶ª½ÕÚÛUzõªºö¯õûU_wý^Ý[êÚµkm¶ºöõúûvîÚëWª«¾ÝZ­jµ«­÷wo^­­}{VÚ¯_¾÷×Wj÷Õ¶«®«¯ªªÚÞúÚª·»®«­µ[W«úíV¶«]Z¯VÝ­uê·V«¯Ú«ö߷Uº½vÖݪÿm^×Ú««ëkmëV½Vªªúµ×j¶ªúÛWu[U®µÝÕýÚºµ]w}WµµUý­Û×wz¶µªµÿ¿ÕukmµkmUëÚÕ×Û[ª¶í_½ÿ{­VõÛÕÚ¾ºÿjïouõkn»õ^½·{V­]¯mê·Õ_ÚµkÝm^îí»kµUW}­Zê»oßÛ{{z¾ï«]ª·_­m­¿ª·öëë¶õVªÕ}{^í[w×uZþ·oo[{­[un×nª×¶ºþ®Ý¯õZõ®ï½]zÕu^õµ®½·zÛí[ÛíUUý^½Ý®«WÕþí^®­ªÞתúû­nªÛuU·U·UW½jßVÝÚ­Wn¯^ïÛ^­º­Þ®«µöíUµU·U[v¶ß]ºß«_õÕ«][^«ovÕÞ»ÿÕ[^®ª¯¿º­ßk·]Zëk«ëU×vÚúÕkª«_Õªÿ×õokmÚë¿_­[ÖÛ×ݶ®Õ«ë_V«·¯UjõÖö×׶ݮ«î·ýê÷»múµzëU®¾ö­u×ïZ«µZ×¾¯««Z®»wz·~­{m¶«V®î»m^Õk]ïÛuî·ª¯nÖÕU[zëm_n®ú«Uº½mÛZÚê®×Z®º¿«ú¶ºªß×}Vµú­kÞÞªßÚ®öïíU¯[®½«½«ÝßÕ[Zî½^¶¿¶·z«woê«×më[]uõ­vîí[¶ÕµvÕjÝúîíõ~¿W»¿vµ·ª¶»WëU}¶ê×Z«Õª»[v÷]^µµ[ª«ÕU½j­V«ÚßÚÖµmÕuU«u­ÛwµjëU«ÝÞ×Õmwk^­ú¯ÚÕ}]ím^ßjÛ¶êÚÖ­[z«½uumµµ­VíúíÕÕ½m}j¶½Z»Z­®ÕjÕÖ½VûvíZÝ]÷·U^»½[Öê÷UZßwÝUµÕkv¯n¶þõuÚêºß¯wk»WWm­vúí®Õuº¶»zÕª½k}µVÞÕV½Z­ºµoõõm×}v¶·ukm®µkÞ׺­½{m·UvûZÞêªÕªÖ­V»UÛkm®¾«ÕµWnê¯jûjªÝºªúªêÛ¯õ®­]ª»kVÕÕUWª¶ûꪺêÚö«mõû뽪ޫª»ª­Víím^®ëݾ«W«ÖÖýu«ZßꮵµUÞ껪µÛÖ½»Zí[[«÷նֻݮµjÞÕvûjîõV÷¶õV×­~ªºªµUÝo~¯}ªÛë÷µv«»[Vûj·]zõªÞÞ·ºêµ¶½vê»õëmWíWµ[Õ[½j¾¾µ÷õV®Õ[¿­«Û~ߺ÷U­Û«U[]½kêݻյî꾵ꮯvßmÚûÕïz»ZÛ]ï_zí]«ujÚÖ×­ïkV®ªíV«[¶Ö·¶½v­ëº¶¯U«»úõjÖëí}m«ïn·Uվ׶Öë몾û{Õm}µz«wujµ÷Þöïz®«U}V¿{jûÛkU_¿uÛÛuÞîÞÕ­ªµÚ¿ÛumUWÕ]ÛÖ¯ºíÝm·ï«U[÷·¯u®õêµ}_½^ú«j­Vêõö­U«uwëZ÷nµ®½]«ízµkö¶­ú­U®í[_¿v¾ëï][Õ}«ëjöõ­UZßV·«koµV­½uuªÕZÝþº­­êþµúí{uWUký^½®­¿oî÷êµ][¯U]ZÚª¯ÛUVÚ¯ÚßUýûUV«n«j®ª«j­^ûmZ»mkU¶ÕUU«µÞÕý«õÖ­µU×kVï«ßuµß«×uª®÷¶Õ{®ïZꪽë]¯­ºïëWWÚ÷]u^ý®»w^ª­ÛímV®ÖÕ[[ëîõõí«íïßu­¯Ö½uÿÕ××võª®¯[÷}j¶ë­ªþº¶½jÝÕ}ºÖÖ·]jí~ï{«[UWµ[õUÖßmuZî«^íuU×z½ïkõªÝu­mß×}}ÕÛûíÕ¯[í­ZîêÿwúêÕ^­Zõ®µ¶½îÛkõwUõkUUu^ݵuÕ[÷­·wUZúªº«]k«ÛUWWmº»[{u{®×ÝÚ÷×­µ^ªÛ­oÖ¯]kZ¯j½­ÚêÛv÷jûkZ«ÿkÚ­}«öõj¯j­íW]UÕZÚ¯½¿[Uî«mµ{¯Ûzµ^Õ]U«[¯®Ú»[kWýõ{Ýjª¶÷¿{W]÷UUW®¾Õ­Õ¿kmíV®í_{j­ÛUµjõmok}¯jÝk×ÞßW­]ÚµÛÝÖÕ}muoU{UõV×]n­[íWUZµnýj«Uz÷U^ý½Õ[VÖÕª¶ªÖÖ­_WÖ×û¯«·¿UÕ®»»uºûUzݽ®¯»_­}®µßUÿj«^êÕ¿UµW¶½Ýu¶«µúûÕÕmkj½­oêßV¯µ½Ö­¶Ýºû}Wµµj·zª­®ÖÕUÕ½÷WVÚï{[UêíWZ·ÖÝöµ[Zêë]U«oZÚ¿Ö«kU[[j»ßÝU¶ª­VÕ[v¶º·UÖõ»V»_UjÕ·®µuWµ¶­­º¶¶×íÕVïzí½j·¯ë{Õµ«Zµkj­Uªýu{]ÝßZÕW½·U^·v·½êÕ}öëUõUõêµkû®ûkÖ÷ª½wµWë}µ{¶ÝõZÞÕVîþëW}Ujê·U]ê­ßjêÿµõ«^ÕW¯~ímÖµÛuÝ^ÕW«zµUºÕ]{µ­VÕZ¯k½ýU¯k^íß^ëo½ûöª­Ûmm{vÕ^»í{ëÚ«U¶ê­woíºÕ]kë¯Zª¾Ú¶Õ[º«}«vÖ½û^­[[Z½ÖÕª·U½wîÚµ]^¿{nï«Õwmv¯í×õÕmîÕWÚ¶Ýú­«nµ{ÚêÕ}»»uîµ×îÖ«ªïz÷o{k·W^îþÖ­kí_ªÿßõ«ë^ëµWõÕ·«uëVÚªö«wÕkWÚÚÝ­ëî­¿ê×þß]öëmµÚöªöµ­}ÛÕ­W«ë­­[þþý×Vîïkß{UWµoÿ[}ßÖ­ºõî«úª­Z¯U»{÷}íµª¯­®­®µvÛ­íU­¶«zÕUUkZÕm·ë~íuj¶õ^÷õÖ½µêªÝm»¿UÖµ¿{Õ¯ÕÖ®»¾ÿ~¯Zí½Úÿý{Öê«»ï[zú÷ZÝUZݾ¯UîªûßµªïµÕ{UíWªë^ííV½÷w«Umªõ]nµV»ÝkÚêÕÛ×wUvßîêÕµ[UýU]¿UUzµk»ïWß~ßníë¿õꫵ½Vª»÷Õ«^ßÛ«mZîêªÖ«÷_nÚ¿µUZ­WÖÛÝ­ûnõ÷jÿUZ·ÛÞõ¶ª»Û®×Õ^Û{õÿW­Û­^ëÕõëuVîªÝª¿W«µkv­ÕVõkÛ¯{nÚ½Õ[ª¯×Z«Õ}×ꮵwªë­o}«[ÛÛÕjîÝW]u}_­V®ëÚÚ×WÕmúêªëVîµW­nÛ}Ö«º»÷Úµû]Õj×ÝÝÕÕn«ojö­uíUV¾µÝ«Wu¶«º¶µ­ûWmZÝUÚ½[ýõm®úëwUºõm]]Uu«Õ¯_öëjÕ­k^íU«Z®ë×n­j«W{j»ýë^¯·Vûß«¶ÝÕkjªë­ýwU®íºÛmm¾¶ë׫»nÖ­»µ¯]kµêÖµªºþµª®µí»UWÖê­÷kk×Uª¶·]ªÞ®ÚÕ÷ÖÕ¶ªõ¶ª×múêïÚ¯«Wj¿Õm¿Uª®»^ëwªÞ½¿[oU¾Û¯Û«»ªõÕkwÿ­WU_uöêÖºªß{[¶Õë[kUv«uÛZ½ºÚ¯ÕU]k®ª«Wë÷Ú»µv«ªµj­·«UëªÞÖëmZ·­¾öª»WuêëÝîë¶þÖÝ«ÕÕVÿ«¯¿Uk®«_uzïõý­u¿«[Umõ·­o¾«­kUVÖú¯ºßk[wýUZ­z­í««jºÞïÚõ[UêêÝ[Ýkª×_ÚïuÝÖ«Z½w]zëv·]Vßmµm«w½¶ÝvµõjªÕ[Û[VöÖª­ÕzÝmVµ^õê¾ÕkÚêÝUWU~­^µjÕzµý»}ok_kUkk~Öõ¶÷[m»¯«ÛÚÕµµÝ»«»j·ÕuÞ½¯ÖÛ«{]wíZêµêÛW¶î­ªßn÷Õ»¯o¾µUkUZ­~½kv­Þ«Õ½kwuuÛ«êö®«ÿÝV»V¯[Öú¶Ú¾ªúÚ»^ªÛ«û¯Zöõ½j·vµ]ꪯuí»WW«ªíÛ¯Ú«õ^·µzúݺ÷ª¾íUVëµuk}j¶ª®µz×[k­vªÕZª®»[v·Ûÿµ«ª×omµ»m»ª«^ºÛë]Û®ÞªÛm^Û»w¶µî­ªÞê·[­÷[Z«kÕ^ª­Zú®úÞ×Ý·¯u{ÕVÚ«úµ}[ënÛU­[õµ}Þ½]UWµm[]«·¾í¯~¶Öõº»]º×WjÛVÚ¿Ý[íÕ]oªêï^­Ý]ÖÕß«­µuVºµZúª·­ZµÛWuïöµ{jÕu]Uw·¶Ý[uk«ZÖÕníª¶öÕmZÖ¯«uÕZµ¾­WU{VÕímjµkmºÛõꪯnÚîÕWZÕ·jÚµ­~êªßÖº½]zµÝv××WU¾ªÕ^ª®ªþú­Ujµ«UÖíêªÝßÕVÖýjªëjöªë½UµU½ßêÖÖ·Û{Õu­»¾µþÕýWmú½kýk­×^º»]µÕv®µ«W__íª÷U]mõn­µõkn®ª·z꾶յZõõ_µ«UZ®­W[uo¯}_}»mm®ê½ÕvÞ·êÕý^úë[í·Û¿UßU׶߮ªµkÕ÷z­mµ·ZÕ×uZÕU¾ÛÕn¶îú·WZÕÛïõþ¾ªÖÕ×nµußkUïZ¶¶ýUÖ«kÕ«{n»~ݯÛêÚ»uëuv»ÕouªÕní»jÚ­ÿ×n×WÚ×o¾¿jÕVµ­ªº¯Ýµ¶«ªµzÖíÖí}WýUjÕú¿º÷uÕÞµ]µ}jþ¶Ý¶Õ«í·¿êª­_k½[µª¿j¾Õn­ÖºªÕmj¶Öíj½õ»Õj¾¶÷vÝÚ×wnêúª½Õo®«[¾ëwz®µ{nû·uWÞõV¶·[ú¶­ÛꪻUnº÷ZÚ¿mº»îÖ·kÕ·j­u®÷Uu¶ÖªÝk×Ý®«}Z½u«_ªÝ·W½z¿Õ]תﶿmu½»¯Vî­öª«UwVöõW[÷V¶Ýnïm×ú­U­«uîµê»úö»Õ×jö¯míÛvëíZíÕ®Ú¯µ­Z®Þ½ÝÞõj«ÕumÞ¯kÛÚ¶®ý[m_[Þ­µW]ÚööõÚþ«·}j­ß¯k¶µw^îýUZº½jÛª¾Öí~½nßZ«µë«ºß_ëêêÕZ­U[nýkÛë¿ÛoUºëvµÚ¯×wÞêÞÕª«uÛjªê×÷®«mõÚýmU­WªëµÚ­UÕµUþ×UÖ­ZÖ½zª¾Ú×Õª­ëV­«jêêúõõê·mU×]W¯UÖ®«®Õû­vêµê¯Ö®½UVÛoõWõZÕí{êªÕÚ­uvº¶¯®®µÖÕ}ºëk÷íUÕ×¾­nÞÛµUªÖëUºÖ»UýUz»ëz­[k^Þ÷Wý¯»kª«W¯Vúê«ë{¯µ­WÞ«W]ݶ­[Z»ßWÖ½[®¾Ýö½jÿë}ÿºª¯öÖû»Z½m­ª«ÖºÖµW­»VÕ¯]«Õí½WµWªúÖ­oonî÷wk]W]®êïm¯Uí]U­­ÿÚõÝ[­µ¶¶ývÕ­»WVîõ«ë}õÕV¯õU×[}«WUµUÖ«½õ­ýû]vªíúíW÷µk­«nÛÚí½ë¯­U}Ö»îºú¾¯j­Zö·ÿj¯^ê½onªª­­Zú­_ÖÚÞª«ÛmUU]½ëêµUªºµ½VÚ­¶×{½ê·Ý]V­×UªõÞµj­~÷µÕ®÷UÕz®×~ëVë]õ­VíëkoUuU_ª»î¿[kvî«þúªë­Ö½mÖÞºë­ÛUjß{}]Ûív÷Võwõ­«]ûU_½U×V½v½«Z«}j«{íöµu×W÷ÚºµzÚîÞµê¿u{uvë{Ú½ÝW­÷zµ[k­­j¾ªª««ýkÕ{oªëVûk«¯Ukº«ºïj­wkVö·VöÚ®­þ®»_ºµ«Z­w­^«ªÿv¾ïUíwÕÚ®ÖÖÕ®¯·ë¾­ÛU¶¶ûV«u®×]úÞ×k·u]»îëï[_zÿú×{zö·[]U¶®ÛßÝUµUmUîÖõµW}ëmõWn®»{{µªÞª«UµÕ»µ¶õU«[«mú­UUëÕ¶Õûw[Þ­µ÷ª¶ÖÚµVÕ^®Úûmµ]»[[m¯kwÞîªßm¯×íkêÕÖ÷Ö·õÖ¯¶íík¯º«Uê­«îÛ¶ýwZ«^Ûõ÷þ«_u¶÷mU[{ÚÞ­z«UkUv½oUîÚõ]­u­~­Õjí½z­[VíWª¾Ýí½Uz÷ïµU·¿ß×öÝ}ýõvýµUïªëVÚ¯vÚ­oÛÿVÞÕ{»¯¯»uoWzÝu«ZÛ¶½uwí«¶ºë­uZÕU¿Ýv­uÝëWínªµÞ·ê­¶®µ·º¯Ý¯«Õ¶«Uk}Um]½ª¯oµÝ_]¯w«¶ÿv׫õ«ºíW[õµnªÞ»wêÖºªµ¶¶íºªëUkUW]îÚ¶º¿u~¶êª¶ë×^µ^­«­êÚꪽ­Öê«mnºÛu¶Õm_ï¯uU]û]ëöõ¯ï}m·×­^ï[[]_}Õêû}þÕíUïÚëWöµm]VÕ»ÖíÞß[vÝ]U®ÛVú»Uµ]úõkª÷î·w[ZºíÕo~µUß^«V·}UUÝ­U]Þû{ÕWm[UWýWwUõÕvµ­¶××]ª«Zßkíµ«ûkojß­mõ½­WVµÕím]Õ]jÞꮽwuZÕÚ­m¯µmW×V÷Öµ¾º«îª¾Úßm{º­ÕUU·W×[Õu_îµÖýk«º­kµuWkm®º««µµvëjêµUÝ»ëk­oUªõ[nîªþ·Z¿u¯]V®¶úªÕuZÚîÖý[½U·vª«º½mÞÕµ­Uÿ~«­Ûjïj»êÛZÝk{Û×z«ÖíõZ»õݶ»¶®Õª·Û¯»­kwöÝýÞëÚ½½ÝÛU]]vö¯V¯zë¾ý^µ{j½ºý»Õ]Ýjë]j×}UuÖ¾Õ_n÷Z½»µ×[µ·m][z¯ªõ¯½ÛVºÖ¯½VíZ¶»ê¯Ö×j¾«®Þ­mUµ«oUêíkÖÕZ¶ÕW÷ÕmµWÞÝ]]nµïÝ«ÚÝ[kµ[õUoUWo]꯫µ¶ÚëÕª·õz«v«Ö»kU»zµ½×¿U]UumWnµúív®­U{¿mj¿}µ[WjÝvª»]»v·këÕ¯«÷¯í·¯º¯Õí¶­m«mµÚÛª«_«mW[_¿nߺ®ÕíW®×o«mUößûÝ×WÛU¯ööÕ[}][îÚÝU}ê­mjתë_êÕ«U}}ª¾û^¶í_Z·ZÕnµU­_^µ}½õ®ïo½ªµkÝ×î®­j¯]~ßëªþÞµÕÞÛwV½ºµëU}UmÕ]ºú÷ö¿m×î×Úµª®êê궵·kuUU½úÛ}Zª×UÚÞ­½êªíºÕ[z·®ÝkÚ«¿~ªÚ­_»nª­ú÷úÝV­W«ëZë_Û½÷oºíýwUWÖÕwÛ­·mUêíê­þÛÚª¶êÕ^®½UµU­¶«ëºêºû]¯mW[µ[ªõzí®¶ïÖݪûÖµ»µºªªÕ{v¶Õ«m×õªê¿w]×zÚúÝ]uz¶Ú«Zªöïk¶½V«ª·jµ^­ÿZÝjªÚõjû[·º··UÖÕ{®ÚÖ¿·×ÚºïÕÕU«u]Ûõ·[kuë^ííÛnÝVº·ZÕý«¾«ÛWzÖ«]jßm_®ß¿{jÖëmÚ÷jÛª×Õw^­Ý^½^Õ¶Ûµnî¯Ö®­ê«ºîÿ׶«¶Ö·­j­«zµê­^«ÝZ¿z®ÕvÖªµkj¶û·í×Öë[ZÖÚïvßW_µ^Õ]ûnÚ«ªõkßU[»vª®êõ«]µWVûþº·m·®ëÕµê­UZ­·êï[µmZ·êµ«ªÕV¶ªÕºÕ­µZÕí]õj®õÝvªÚêíª½Zêý¯µWªßÛZ½[Uµ[Z··Um^ÕÕUkn¿U_ýª«vêÛÕ®ö»uÕµ]»¿m]{×uÚ»¾½ï¶ºªÕªõõ¯o»{^þº×ºÛµ¿¶ªÕWª­ëÕêÿVÖ¿¶ëíµÿû«UõõozªÛk×ÚÕ®ÞûÖÛµ¶îú·ÛÖ«÷ZÛ{W]UVÕþ»Ö꺾ºµ¾ª¾íª»]n®Ö½[µWº¿Wuªµºû«}uêëªëº½®®ÛU¾ª«ºõ¯ßÖûíî÷«[í]®¶­]Wj×Výê­n«íVÕW¶·ÛVõµ[ZêöÝ]uµkU]ªõUÚÛkU½íûmkµ[_ZõjÞÛ®ú߯jÛÚíkW]·êµª­ZºëW­UuUUuW׫­kÕv½míUýn¯WW]ÚÚ×»]Wm{Uk®Ö¿·®ª«µv·~µ}­µwöµW×uýmmo®¯í^·}Uw×ÛkÞõZµvµnýjõvÕUuõm{w_­WWjºÛªÞº­mvµö¯õkmÞºíWªïUÛêí·¿W[ÛíïýµmU]­®ïª­êÚÕ««·úÖµÝnõu¶Þëêê¯Õ]~Úº®êÝZ­]u«U½V½ýº»W½¶õ^ÛïUz«ÕV«oUUÛªí]­_v÷µ×»zªÕZ­ö®µ]ת×_ºêªþ¯ÿÚª»­WWµµo¶úª­WÖꪾ¾¿Õm]Õí[UÛªªÖ׶»mmukÛÕV½Û½o¶ýu«¶­jÖÕjªõªªµn÷UïZºµmõZ¶íj«j­m~·÷¯ê¾ëmµ®êëþ¿µ}^õmµ¾­nßUýõjëmõz«}ïµµÛ_µoúª­÷ÕÝ}ßo®ê÷ú¾­]V·ÛWµ«_{×ÚÖ»×û×úÕÚª­uµWoþµV®«ok»½®Ý]®¾ÿ]ª­oï^»VÕ[êÛuZ¶¿o~ºíw{Z»ÛºµU»{]­®®Ûïë]U»Vë]uÕVµoum×Õ[nêÛß×VµÛÞºªµ«U[o[uVÞ½k[}­ÛUwu«zßý­võÕîõêïµV®ª÷Öî»jëZÖªª¾úí¶ÞªÛÕ·n»ß»Úµ}ªÕ¯}V¯­VÛUu­vÕýn­öÖß߶µõZ»º·î×êÚÞ¶Õ®ê­Õ}ÕWmö«vþ«U»VêµWUk[Ûv¾ö¶ÕV»^Ý«ZÚ¯U«Ûª½u­µwkë_Þ½W}mm}j­«½ûvê¾·ÛÝ¿­m}ªíµ×µUUWWªëwµmZª­º»[¶ûºë]]mUµ¾µkïWV½UUZ¶Õmm«[¶«m­^Ö­ëúµk^Õ»vúþ÷ë¾Ýzõ]Ö®Û]õUv­uÝúÝÞÕ^»z®«jªßZÕÞ¶Õ^Ý[ÖªÕoWÚî­®­kößUºÕ^÷ëuµ×V«W¾ýu]õ¶­[­»êßz«ªÕ·Þõ××Uõ»­]oV¶»UÛz¶º«ÕUýõ¶õ[_ÞµþÕêÕªºµj¯j·ª¿UmUuÛßßêºÚת­kõ[ëÞÖîýÝmÖ﮽{­õvº¾«W[»UÛmëww·jµw_Úµ®ÛjêõßW««ë·Ý[mÕ»®ßUíÞÕºíÕ«®­Z­võ¶µoïvõj×ë[ÛêúîÚ­]ººµë×kêÕ}ÕU{¯µºÕÝVµ_ÿU¯ÖµïmU[UkzúúÕUíÛ×ojõk­[ÖºêÖ¶»ê«Þ«mo­Ýª«U×»ï¶ê¯ªýnê»×Õ«U»úÝÚ÷ÕÚººÖê×Uºµ­Ýkö­ª«ZÛëUª¯µn­ªîÞ½[µöµm«Ö­®íº¿Ö«êÚêêþ×]êÕ½Um[º­ê­{m«ÕµÖµêµUmjíëÚª­¾Þ®ª­]½ÛºÝjßw^ÞÖ®­úý®½k«Uê®·î«®«[·]uêß[oÚ®»kïµ­Zõ[«uÖݽ_ö­}{^Õjõ¯}úõUj­­UjµZý}×jÖëmz®­®ªª¶ívÖÝun«ª«­[oµ[ÝVªÚºõí¯¾ÞÕwUõûUÝ[®¯·ÚÛWVí­u[nºõíÝvýÛWë¶Õjµªºµ[v­×ZúºÚ­®íÚµvÞÚ­»ßzïkªÝwZëjªê¿mû¯­ú­¯ÖªÚýê×kû­vª­íjÚõ½umýÖ÷ÚÚ»WêµWzµ·þ¯{uWmº»VúÝî·nª»ÞÚõkV«þÚë×µw»ukûªÝ]»]Uêýuöë}Zûµµjú½U»wêÕnõUß]wÚ½ïÛVê×Ý[ýî­Z«ïVîÖëúµÚÝU«÷½UVÛ¾ÝUººÝwºýVíU][½µu«Vêíú­[mºë~Õmõ«kUZ×]÷­ZªêúµVº«ÕvÚ¿×jµ[ºíuÝÕÚ«ûUöêÕ¶ûÖ·[Z­¿^Úªµj­wWnÞ®êþ«ÞíõÞµ^«Û~Õ­«o[Uïõ»¯ß·ª®ío[¶ÖêºÖë×U]^ëÕ·mUµ[ª¿«ß믷Uojíê¯[_»jºÝ¶­Þí]]W{µïZí÷µVöõµwUvöÖ÷Ú·[Vê×õ»ZÝ[uWÕ»^Û]uí«ªÕ[kU¯{ëkjõêÖÛßÕZ»õµUÝmkwZ­UZ®®ªºÕV««oÕuÿ}_µÚ×V¶þ»U­{uvÞ®®ÕUUUµû¯ê«kzµkªÝ«}·}Ûm[[Ý¿k»kþî®ê®Ýu¯«ÛµµÖ«¾½öî«Zª«u]_·×{«wîõ¯m^®êíUjÿu«Ý^ºõ­uÖÕoun®ýﶭUwÖúõª¶ªõU{j­vÿV¶Öµ[UVºÞ·ûÞ»^ªªÛ½ë¶Ý][UV¯ê«ÚÚ½ïjÚÕ[ÝW]½ëÝkõî¾¾û¾ÕW®«jîÖªê¯Þª«µÚÕ­¾·­Ý{í¿µkõêõoU[jß«ÛU­~½Wª«×[õ]uµU¿·u¯»»µ«Uo_þïvµÚêýU_ª½]µÝªû[mkUUm]ºÝuê¿[UÛ_UÖ­VíZ­ZµoíZ»jµj»Õwm{]­jÕÚ­Ö¶«µß×w·uêÞ×Uk^·®­ýnµVë¿ÚßÝmnºµv®ªÞ«ë]®Õ¿Ý­mkëU_Zµª«ê»mUëmõZëïêµWVë­¶­V­«VÖºµûîÚûm[[÷^½¶ªªÖ­mv¯ëwµvõZµ_ÛnÛº®º·ÕÝïíÚ«UÞ¯ÚÖ¶Õ®·®ýZ«Zí[«Wª½Zú×Vµzíí_®Ö­­Õwu­uWVú÷U_Uº»UªõVíî½íZÕzû[ë×®ýz«{[×kjÚ«uUÕµ_omýÚݵkíÖÛú¶×ÝV«o·­ïºÖ­Úº®­×®ê½ÖÿµwëUÞ¶ëZ×Wjí{]W]}ÛÝ]]µ}ÿ~¿o{uV×÷[õÕ½^ªµ}Uëµ­Ý_jëokuï]jßïW«[«ºëuõµZµUêë{ªý¶ªíßÖÕ¶­­®ÕV×µww_wÝ_VÕ[{ßmW­[w^îÞ×UzýíWz»ëjê¿÷Z¶îÕWV«ÛU»îªímUUj·ª×}«^÷¿¶ïݵµ«Ví]Z»­«îëV··îºªõ««·Ûv×]®ýª»]}êû_nµ{ºþ×õ}Vêú½WmWÕj×ßý­¶þª¯[«ýÛÝv«~×kU×UnÖºõÚ»uºë}Uz¯jª¯ßWW®­î­{«¯jû×[×wv®ÖûÞõwZµ­»ª½}]j½ëZ®¯ºÝÕWV»{UõZö­®»¯Õ®¿õW½VÕµÝ}ëÿVõUýíjÛ«Wêªêínª¶Õn¯µUëujõ»º­uÛ]jÖÕWïÖ«µkUköÝn¿U«ï­ï«W»Uë×VïªëÖ®«ÝUn·ú¶µ~×U[UUn®ß]^×ZÞ꺫]öÖýծתýíZ×^öª×þ»¿w[ßmß[ª½möÞîÝm¶µWkÕWVÕumÕVµUµ¯W[{v«ínªëk~ÕïÖ»mVÿ]µêº¶õ_»úßÕj·Uuöµ]Um}·ÝÕ»×mjÚ»W^íïvöí{ßWúîµµÕkW«UV·µo½WZ·ýWªµuÝ~÷Z«]U_~×[v«mßÖÛVþµÛ}µw¾ëVßõ«µm~î­µ·î­ªº«­{«n­_÷mVÿW½¾÷Z«½¶õ«µ­V«}Ú¯«ê«_n­Wv¿ZßUvºÖ½Z¶ûm[¾Ößî÷·mWnµ¾ý[jªÖÛjïZª·]«·»þ¯v×­µV¾ÖÕ]zÕúêú¿ÕõUjÛ^ÖõuµÚ×jímwïÝõö¯}Õµj«kuoný[UWªízêûª«j·[ªíÖ½×ݶֺ®¶Û~»·VÖêê»oZꮾÿºÛßµ_WmuwÝ_Uz­j×[[nÖ¿V½}ª·×[ªûV«Ú«[ÝUvê½mjöÕÚ뺭÷U»­Ú»Z­õ®÷oÕª»nÝVê®Ú­µjÖõ®¿mzÖÚ¯ªÝZ¾êª¿¯­UvÕWÚ­¾Ú·Z®Õªþý÷VßÞú­ö½¯mÛ­õÚÞÚµzÝmUzÝ[½Ú­­ªÿÝ[ÛmÛµ½½U[]ú«ö®õ­mV¾º¶íj«UjªÞÿÕ¶¿µªÖµ×«zªµVÕZ¯¾õÕ¯®ê­¶û·ÝZ«»ÚÕW[uîºÿúµ­k«ß}kÖ·Uw®Ý«íWZêµ^®êÛ^ÕWjꮫ«íZ¶Õm¾×ZßZ­µªµßÕÕ¯êê¶ýZÝmwmÛ¾­¯UÖú÷Uí­ýVÕ~¶ª×v×k^«ª·÷^ªµV¯÷nª¶êµ×U­ö¯¯®µ×míkÖêۮ׶íõ­Õªê®ÕßVö­ê½_[jýßm[ªµµõWUý«[®½Õ«µUÝëj­ë«Ýê¿w_]{½í]{Um«nÕUªß{^×·onÞµUµkªÿ·ª«ÕkjÕU]­m¶ÚõÕïU­kj¾ÛvÕ]w[jµzö¯wjýµZ»ZÞýýîêÝÛkë­ßjïuõõÕÚÝ×·]]õvë×ÿWªÝ«¶ÚíêÿW½v»½ÿZêëßj»Ö­[ªíúµv¾Õk«nª­j¯ëïVþµm½om­µmÚ­êýU®×ªßêÕZ·wµÞÕU[¶×UÛÖªÝUêÖÕÖû­Uêí¯¯ÞÕU_mÖ«]«µºÕUmµ·ê«WkumµÖªî¶¿Z­^¶¯º­µ»×mjÖÛ]«ukݪÖÖ×n»ßïUµZ¶­k]uUªöÖëU[½Wu¯ëo®«kª®Öµë­}U¶ÚªîÝ«[]íµÿ¯ÕV­¶µWkVÕúþ®¾õV¶Ûª­¿ÿÖ«¶×nú«níÖº·}½Öõj¶îºõVÕU»Um[·}öµ]ýõÕUí¿mº¾êíëÖ·­Vêúí_m«U]jÝﯯï×ÚÞ½÷ê­­Z«·¶®Ö׫Vï}zÕ·ª­Ú¯nµU[k¶ªíªµê­¿õo¿WZ¾ê«j»[}ÕößZÕëÚ¿Wuû­û«¶ÚêÕZ«ªªª÷wÚ«m®ªë­owýÝmu¶ªÛ[»ê­í]jýWUnµ^Öím[o½Wu»ë½UkÚ÷]z­j½^«¶ºº«zÞÕWÕþ«[·mu«UµníêÖ«õת¾Ý{׫[­Ö½Þß¿×þ«^»õ¯ªµk­Þ¿m~½ýÚ«ª¯¶­[k»÷oÖ¯m®Õ«º«_Õ{v«}ÛuÚ­Zª¶ýZõ»¯{VÕ_Uwzú­[{oûWVîë[ÚÕÕ½U·u{­wêûÕö÷µkzÖÝWí¶Õí×n«íkÕª¿W¾®»Un«ÝwkÕUmUíÿ¯ÕUªº¯Vµ·í»u]^½jµ×uum¯z·öµW»Wµ_½ëZ½íjÛÝ[ÛµïÝÕUnêÖ¿w®ÝUºµ^ºÖ»µíµïöõUwï[~ª¯uW«[º««ÿõ«¶º÷ÞÞöÕ^½ê·U]ÖýëZÕoî½u·_kß^­®Õv»w½{uÕuWßÛÛî¯ï®î×_÷o÷v×ö×wV¯÷¯í¶®º½uWÕª»¶ë_îîµmWwuzöú­Uªª«VµWª­õV»»ýU«]¶î¾«][¾ß­zµ÷ý[«ÕÝunÚÖ»^Þ¶×ÛúúÕ·kë«m­»í¯j«m¶¯Ú¿U]ý^ªªÝëÕUuU[¶­ïkëW]·u¿uªï«þª¿{¯»µ^ª¿{­¶·ßÕWnµj·[ÿ]¶»ªõkÕµmz½¾õíWõö×û_ªÝªµ]_Uþ»×jªÛUöõýÕvíÝ]v®¯÷µwÚ­»«ª«ÛWêÖýk¶­¿oÞ­­UWnÛÛ­m¯íõýU[«Z«[^׫jÕÖ¯}Vûz¿«­ºµíµk»Ö·Û]ݪÛköºîÖ»ï«__®Ö·{ovºµ½jºÕßk½¾ë]vÝ[ZÕW­ÕíWº«Õ^êíZõ÷vÕWvµªÕZµ¾®Ö¯mVÿµkj»Zµ¶êÕëmïÖíêµ^®Ö·ÚµýíuÕk¾·×õµ®««µW[jª×mÞï·Wë¾ííÖëUíUkzªÛWý·ª«ýUîþ­Uj·mÿÕ®ÚÚݵ×uwU_»Ö÷µµ®º×Uª«õ]¾»jµÚ«]nîºÖ¿nµªÿmuÝumUµ«®õÝW»]vÖªÖ»î¿ßUÖ×UuUnë~ë]WÝ{ÞµÞÛ}Z·Õ×µëmuºýmuo­Wjõ[­_kõVµooª­j»Ö·k_ª­Wm[÷µ]¯ªÖ¿WªõUÝV­½wÕ¯¯~µ÷¶¯º·­U{í»«®ßµk[¯ªÛ¿¿«{÷·õöÿÕUjªëëUU¾îï¿ÛûmÖÿ»v¶¯kuv»_Þ¶ª¾ª×[í«U[íWÕnÛkuUzÝjºµí]WZµ×zíuýkö«ªÞëW¶Õz¿ºú×í«¯WuûÕuUúú¯Ûî¶ú¯]Uj­wýÞÕêÕoíÕÕW^®í_o­Õ«}ºê¾µVÖý}{n«êí¿÷í×~®ª·zªß«U궭}vÖúíï]ݪÚÛ¶·[Wõjº···UíUµukj­^­¿Ú½zÖêª×Õ{UW÷WkZ¾¯U¯uW×[öº«þ­ÕZ×®ÚªÛÞõÕݾª»U­VÛ»W]u­××ö¶×W®ºÖõµ«V­jÚí÷ïZ®­ÕÝêÕµÞ½ZÕZ«ë]U_kU·Ýmk¿ª½®ï]WjºÖÕÝjÝW_Õݵë®íÝ_·÷×jëZ½íºëíö½ºÞµúíëÕ¶­ºë~öÕ»¯zêºÖ­Ö×½[ªÛ­µ­WýZ×_jÕª·uv¯·kÞÕÖÚÝ_Þ×[­ÞÖÝïmm­wZ¯k­kÖÕïjºÕWímý«·÷U»­úë×z__WïzîªõuýV¯Z×]Þª·«Zªë{ÚõµZë¾µU~îê·ê­Öþ·[õ_{µÕªÝkkz»^Öû]­uUo»koÞÝk}õªµ_ï_êï[ëõ¯ÝWõ­Þö««µmV«mû­}^ÝWµ}õ«º«v­{ªúõ×ZÛ¶»ªºí×ZºþîÕ^êßj­_ZÚýõVïnÚªª½u[Ö«ê«]Uï»Ú­zíÕ^½®µ[]­¯«}ªßVÕ¾»ý]ÕÛmû·¶ÝWUÛú×nõ¿ïwî»k~ªÛnÕZºõUZ®ë}Vµªû[]{Wu­mתßjµo[»µUmjÝj¯_®íwV½UUÿ×­mÕÛ]u{Uµo®½{®«êþ«kk®í_vïÚÛ^­kÕ]ûVªÕ½]¶µkÛ}­®µ»þÚµkõÝëuwVª×·Ý¯îï]u[ªªºÛ꫶íz«·júº×[Uªª««u¿««ªÝZÕÝ^ÖþïUUÕUj÷m»¯íÚ«}îÝu{j»jªÝ~ßZ¾®Ýý][_[Z­[Uý÷¿«Vª×n»víÕÕ®í~öú¯­ïkZ¾×Õ¶º½]×W]êÕªº­_þ÷WßnÖÝw­õ^Õ«¯««õU­jþëVõ¯­{u¿ª½o®»_VÖëÚ¿µZÛ]mj®ëUÛï­Uª×v¯z½íÖßëU¶µëoÞ­µmzÝïwV«_µ¯ÕúÚº««]U^®«®ï×vµÞ¶º­Õ_}®µ«½ÿÖõVºªÕwõ}Ößﮪ«výU[­ÝVÞê×íUZ¯kׯmÛ­k÷mª®õ¿«õµ[[Výu[ZµWíWW_WõZݯm^¿k»úºÕ^Õ[u»·ZÞûU[ªõëVºÕ½ÝµoÖ¶ÛîÝuÖ»»«uöë۫꽶êûU]UÕÕµÕ[÷Zת«Ö½Zû^ÕUí}¶¯ÖíÕWU¶ÖÚíkÿu­ÛV­­ZÚßõnµÕ^ýªÚ»¿«vïÕµU]Wß[WWunöÕÕëêªÞêÛZÚ½z½ªî®ÚÖÚ׫®ï¯íj»Un¯z·j­UíÕº¾ûzö½ú«õª­[uwUUÝÖ®¿UÕ{Ûwîû«VÕWvÕ­ÿu·nÕVíWZ·ÞªÝµ­v×½­×«ýþõ÷V½]~½jÚ««®Ú¯Öíºë­ZßÕmõ¶íµW~ݵ׽ëÕ]Ú»_­ºÕuk}íkzªëvÚ®ívÝkª®öë®­µ­ÛÕjÞµí[uÝêû[Ö»^½wU]^¯ÕU¿w_ª¯ÕjÕÚﶻﯺ¯ë[^¶¯mmWm[ÕîíÛ»UU«VööÕÛÕתÕí­u~Ý{zÕëíoZ×[Õ½}êëÛûÕk×v¯«Z×mZ­^ûUWUZëUnÖë[×ÿUuÖ­÷wVû«m×}ëuïÕÕ[W»»«µµµ]k^¯_ZýU½­V«ZÕmîþ÷ZõwïUZ­Õ®ºû}õV¶êú¶­k·k¶½U¶Õý¯ÿÕwUÛUîõw»Õ÷Õ÷¯kWkj¯Ú­úÚ¿Uö»ûÛWÕUU«mu]j­m]ÛÕÖêíýú­U­®«¿ºÖÛگ׵õZµj½Þ®Öë{ë«­ª¶­¾ªß¯uV÷­z½µÚ«õk~·Ö«{~×õV«ö¶Ýz­]m®­oºÝW»·n½[¶×ý}WUµWV­kZÞ®úÕ«ÚÛ{·z­zݵí×ÛýZ÷µíµwWV»­v®ºÚ®êÖõU}ºµªîµª¶½z¿]ÛmívÞ·VµÕßUuo«wßmwê»ÕußÛouµ÷j몫¶Ý¯µÕ­Ûª¶»ëoÚûZµm·z×­¯jëÝ}Ý®ë^úî­»]ZÖ¯^ýºÕ«êÕÚ«Ý]zõÛ­^õk½õV¯WVÝ¿ßU×[µ[U{½ºµmZî­jêÝ»vëu¾ºÖµªíµ]jÕvÕj¶¶ªµ­·íÿWVÝÕ×V÷Z¶ÖëWk~ê­mÕkU®÷Ö¶÷jûVÛõÕ½[ê¾»WuzÖ¾Õ_»ÚÛWW_ª­ÖÕª­¯¶×j×{×Þ½]ª¶ë­»­ÖÚýU]ëmw_V««ß·ú¶ïZ®ßvõê«­ÖÖõuºß«ª½kßmU·m^¶¶«ªª­ÖÕ¯z­U½¯ºÞÚÕvöÛêªß{n»õ«mWß·[w^»ªºÕUëÖ×j¯]~õ}ÕZ½u¿U[uÕ[­ë÷Õú½ª·uõº½UWúª¶ë[WkµZ¶·«jÕVÖ½úª®ÕWouª×®ªýuv­×UuVº×Z«Z»]nßU»îÖ×­ªª«ê½W×ªíµ®ÕW«®ûUÕo]¾»ÕnªÖÕUVú÷»ëïvßW]µÕ¶½úëëmµ½·Ö½ºººÖµ×]o«U[ëÕÝÛnë[jÖ½íVÕí]}ÖÛkõ[ªÚµúíVßUkõ{½Z¶µo{jöî¯Û]·õÚö׿®½v»êÝ~¶ªÝ[Õu~«í~ºÚí»µªúëUnº×ÖÚ®­­Ýu®½ZëV·­¯jªÚí¾ª½ºû·k×Ú­ºê·÷ë·UjÕ«kýµõïUÕj­UµÖÕÛm[uíWí]Zµ_»wúººí¿vëݵZÕªÛ[÷½ûµUï_¾¶µ½^Ý^¿ê®¾®Ú½[ZëzÛî÷뿪»Z«U~ík^×µU]ÕwWuU]]}îÖ¶êõß×[þõíV»Þ¾öÖúí·µÝ­kÖªý_k®÷÷«wUÚÕ}íëÖÚ«Úª÷[UkZ·ýUºëÛz«Umm¶ÚÞ¯¾¶î¶×UjªªÛê¶ú½õk~µUn¯î­oº«ß»Z«__»ªª­W×_UýêÝ«Ú«ªÛ}uúÚïÕÝUj­oUk_¯íu«îºÕ»mW]W¶Õ«Öª½Uí{o­n«Û¿÷õþÖë­»n¾ëÝ«oÚú«~µÕÞݶÛ_ª¯·]ªªúÕUÛZÕݪ»Úµj·­¯Ý­Õz®Õ­{·õWÖ­]u­Úûî«®ªõ«V««uZ·«jµ­}Ö»v¯ÝVºº»V«}ººªíWU߶«ï[uWÛV¾·Õ{¶½ûªöµUêûº­k¶í׿ºµ~ÚÕV«ýmz½U_«}Õoªïõj·[[ýmjªë¯Öª·ªß¯zÛo­oÞõj÷«jªúÚªµÚ®¯^¯­»÷u­îÛVöÚ½jí®Õ­­[U½Þêý}¯j×úëknßm«^»uÕZ­½×ú«^­]ÕÚ¯wªÕkuº¾µ»u{^®ÿ¯ÛõVªÚÛ{nµuímU{{ªý»ÚÕöº«{]êµ~õ]ÕÕoºÛ·µ®Ö½ª®ÖÞëÛ·VÝW¯×[ß­®ºíu¶»WwníUµ_»Õwº­Zºïz®í_jõûÚÚ«Z·V­mµjßUu®Ý¯½Wokm®µmöµ¿ýõ·µ®·öÚîÕ«ë^½÷U»Zµµwík]ûªúÕµu]UvªÖíí~íýmWµµªßZÚ­ö«º½þ¯wz»ÛWÕګ׫­jêÝí¯«uºõ­]UWÖ½^Ú¶«U]Úöë}^ÛjÕÚ׿ÝWzïß]_ßw­ö«õ]ÝÛmªû×öê·½îëz뫵[[·Úµ»]­~¶·j»]}Û]õku]­mÕ×­êÝoµªë]m«úêö­k­{_­[«Ú·Uê®ûõúÛªªªÝª»U·u«Ý¿[jÚÕ¿ªÖÖ«o{VÝÚ«êÝÕzª«Õnªë÷k»«}«U­µnµ_U½jûk×UÝ·_뮶µ×UõZ½í·^ÿ«jª­W»Uª½]Uo}½V÷í¾«o»»Uný­ÝïzµWºþµµÖêµ]Þ«W«þµîZÖµ~µ^·ëUn½ZíÝk×ÚÚÚ¶Þ«WV®Öí¿o]ºÚÕêµjí[¯»oZ÷Vªº»u]ª«Zúë¿Uµ­U{kݪïuº®­oVµn¯kª¯êëµûUîÖýkoª«µ­uÕí«m¶ÛU^÷{ûZÕÖ÷×½}UººÖî¶Õom®»êÛ«ªµ]û^µ_íõ»¾ë¯oÖ­¯Ý[W¾ªµWíkÕîÖÛë¾þÕj­[vÞ¿V»í][nêÚÖ¿ízêÕ­êÚªº¶îÚÛÚë~·w_kUZªî¯knÕ_þ­VêÖ·®Õ·ÞýÖ·½ºí×jªÛUû׺õvõ}ªªÕ«mnÕëªÝo]_U»Ú½võZµºÝÛuoZÖîû­Uºº¶ú«UªÞ®Ýkª·z«[¿UUU]j¯¿­Wí]ZÕokÕ[ZÛ«¿­Öú®«ujï^꫶®­»mmÖ¶­Vêõþûz®Õïëß[׫¶ªÚÚ¶ÞíÕkV¶ý×µ{ZÕ[ëªëjÚÕ¿ßmkm߶ºÛ­kÞÖÞÕÕZ®ÕuUõ^Õ«ºýÝ_[[¾íªÖ­uî×UW«W_k]V¿½_õo®­jÝëÛUÖ½ºßZê­W]íµj«·«u¯®þ¾½V¯½Vûõzîµ[]jÕjú¶®¯UÚþ«×v¯í^Ú­×½×[ÚÖ¶ªª·½v·¾Ú«mnõêµ»Þê«UVÚÝmoþµj·ªõuWµ×·¿kn¾ÚÝÝzª¯¿­zÕ^ÛÚÚÚµõ÷«_íwêݵ·«ª×Õº¶½}ëu«µ½¶¶õn½ö½ª®­®íû[í»k}{w÷oW·}oW«öúºÕ½ÝmÕVÛ¯U}¶»ªÕõ«º­«W«U®¯W[µ]kWnûVÕUÕU}w}Z«··×[ÛZëUuUkÚêÛª«½½¶ÕªÝWÞµwêÛ×ZïZ½Úݫݾ»v­n×{ݯªºïuU®»®»]u}w¯ZÛµú÷jõ]nûu«ný¶êÕwmªÕ[½_V«ÖÖ»í^ëµÕ«m®Ýu_«U]}î·¿Ý~ªÕU[WujêµUím]®÷W_j»]×_­ÕZ÷ZµVÕoí~ÛíWµí[}ýþµUê­kÖ®ý}®÷n¶õºëuuwUo[UZÚÚõm«mëUUn÷Z÷jÚªöÝ뵫·÷ï­UZ­µký¶ï}Õ×n¶ªªºÕv­[Z¯÷ö¶í­V­[½ß}ª¯~ººµÖ®½vª¿km­W]uUýZ®»ýªµmwÕ]®×[õëU«Wm­WÕ¶Û½ªÕmµû_z®µjÝz«zúª«½¶ªÚ»ºîÿªºÕ­Wuݪº«UÚõÕ{k^ª·muUV·ª¾­Ú«»½ßº»_wW[ªÖ½õk½êÛu«u­[íz¯U«ë¿õ»k­ëuÖë}þ½}ÿÚÕÕ_«{ý»µ_}ºýíkU®ßVîêõun¾­~­kj®¿¶õUUÝÚÕWÕ^úëÚªëízöÞÞýkÕÝ[Õÿõ{mª»Víkwûõjº­ku®½ÕzëjõêÝ_uª«m{­ÕU^«[UVÝþýUV¿î¾ÖÛ}m_Vª®µjÕÝUõmo»Ö«Wêªî­}Z­µ[êÚªÛÕ^êµzëvÕjõ­Vî«UÛ­U]½ê»×{»ê½jÕöÕj«Z¶Ûúêû}{~Û{UZꪶ«¿}UU]½U«îÕ_Û÷^ëÚ««ëë·Wÿ½õ¶««WêÕµû»[ª¯µ½u·m½¯j¶¾ÕõUu·î«¶÷kÝÞí]^­«êÛ]îÕ®®î»íwªªõj¯ÖêêÕµWWU«ÛZÕ­ZúÝoÚÕת«ê«¾·{Vúû[nÛZߪûjíZÕ]¶ÞªïkVî½_¯¯u¯jõÖíÖ¿ýßvîÛÚ­wVÿ{­íj¯êû_êë¯]]ª¿ºÖ¾Ö¾¶ûÞÕW«ÛUZÛÛU}×Õªµúû­[{kU½ªõµíªëÕkmuÚ¿]«¶®½jµÛj®½o[Ý}Öת÷wummÞÕWWݽµÖ­m«­í{o¶ê­µoUnÚ·_vµ½÷Öª¯®ÕíÞ뾪ÛZ¯ö¶Þ×VÛµ{[Wþí}U×_굪®ë­¿ÝUµïmUW­«_jÝî×U««ê»­õº­UêÛU_kÕkÕíumZêîµ÷þõª·ÖÕúÞ¾¯]w÷Vµ»~®ÛUZºêµ¶«êþºÖÕWV­½ßU[[_}jÕÝÚª½«Z»jª½÷ÕoÕª­ª·µk^Ú«U­ª­Öª½­­ÕoVÕV®ê¶·ÕZÕvªÕ_mu«®ºêõ~îª×[Ö®ºÝÕ÷VµµÚ«[jªÿ·uþûUýzÚª»¾«¶»]ÞÞ·{µ×·¾ÝkºªÚ¶®®×[®ÿok­«Uv·÷mºê¯Z÷ê¶ëoÛ¯ýZïÖÝêÛÝúíïjÕªík[uªÛjÚ­«þÛZÖ«V­~ÕÕU×jªõ___ý]]ïýëµw]·_«µßk]õ½[ÚõÛU꪿õ[¿Õk«V»þ«vÿú¾®ë½®×VµÖëÚßÞ·­j½j¯ëµÞÝÚÛ][×VëUmkëÚï]®Þß]mõ_µÚ­ª¯Wÿ·V­ýU[uzµï«ÕUµ¿Õv½®ºíÚµªíWuÚ­]ÚúßÝ»j«U««»uª¿îíõuvëv¶×®Ú»µzú«UV÷}ÕzµWÝVÛU¿îÚÕÕn·Uí¶­õZ¾ªî«jµU¶ëݾª÷ºõwU­«Ý_ww]mk]m®«}n¾ßÝÞ¶ê«]ßz·ÚÝ]»_¿º­ª×ÕÕn«Wmî«Ûëv׿×~«¯ªÖêºÖúúúê¾­_ÝöÛ^êÕwWv׿{÷k]]o_z½m{Zºë¶­}ZÚªÞ·½½Û[UwÕÛ¯n«úÝUUZÝUÕýWmªêûÕ×÷ÕoªÕ®½Õª»­õëµZ×}ßw]úï¶õWíW^ëWýVÛ«Ö®¾¿¯­m»º¶º½¿í«¶­Zµ[ª¯_UÝëÖ¯m·kýv»Õ}¯­¯¶ªê«[uªÖÕuZÞÛ÷}÷µ¯ªêÛ]Uk^»jªßëv­[Zõ¯Ý}U¶º­U®ßÕmµm׫oîÕ¾í½ª½mmW®¶ÖõZïUU×}Uj·«{º½uíêÕªï××m½ªÛjÚ­{]ZÕª­Uªßí}ýn·­¶µm}[ÝëVÕ¯ÿêÕºÕ×Õ}Þ­úëÚº­Zê¶ÛVꪮ¿¶÷kªõûÕkíWÕ·oªê××vÛÞþ÷Vª»U}W®µ[U_~íª·ºÞ÷Õuîµj½ZêõVµõÕ{»u×]W»oWVÖª»ªö½í]kUj¶¶«WuïmWÝk÷UV¶ºªµµ}ëUö¯[ª­wvµZªÕ­Öªª¶ÛV¶Ö×uê×ÚõVýÕÛU}ÕºÖß®×ÿ­«ÚíëZíõnûº½wZÖ­^ïV­º«ºí{ªÛªíÚÖ¯ë­~ºÚ½®ß×o«úªµ½µ[¯·VÝÕîÝ[zµª«µ[íµßV«kn뽫UÛmo]Wªõ]ÝÛ}uµkUÚêíZë}×z¯ÛUëV·mû[ë­]ÕõÞïjþ¾ê¯õ{ßUW»ýë^¶í÷wn»í]ÖÛ«Úµê÷®«jÕêÕý_½ÚªÕ«__í^«U­¶«ªªÝZ««W¶¶«}êõoª¶µumÚÝÝ^»½µªÕUÕonÕ×kuWõ{«U·n«[V«»êÝ×ÝUo»ë×êëVÕuÕVÕöÖú×W×ëk^ûU¾Ýµ]kknÝý{·mkÖõ·Z¶Ú·Õ^ºÕµm¶ÕzÖÕ^­^öµUªúÚûkUÕÖ×Uzºýkûkºõ_kµ­¿ÕkjµÕÕ½ª®õݵþíkÝZµUUÕ}Vë­w¯õZ««ÛýUûVú­ªîÚÛªÕ»UÕ«kkëÚÝ¿Õµß_½{Zê«ÿ[W·¶ýªõjú½ÿ­×uµuWuê«ÖÚÚ¶Û]»UWU]jöý{W]V×jëû½WºÛ÷¯Wýë_ª¿í{V»}[«]­Õíµ×½n×U»}º½n­¯»Zúªª·Ö·Ö·ª×·µÛÖÛWuýjµ·µZ­ÝUõm~Þõv¶ªÕ­Uº¶ö¯U÷mÝÕm½¾ºÕ]º®¶×{®·×kuõ»µ¯¶­k]ÕÚú½_Þ«[ouj­nºµªíûV»umݮޫUmºíu·U[z­ªû«¶¶Õ»õ×ë÷ªÖ«ªµÕ[Ý¿Ö»oÕ½në^»]Vµ»}oêëZºªÝÕV×Ößj­VÝ][ªªªÛû{oZµÚ×U^Û~­[Z¯­­ÕµÕ}wjªÝ[W¯¶ªímZª·­jª·¶ªÕÕZêõ­}uõWWªºÕîêú¶«î×­¯­nÕµ­»Öîën¾µ«k{ª·¯^÷Õn­VëjÖÖÝUë¯VªëUÕíë«_ꪮ¶ÝuÚÝj×VݽmUÚ«Ö¶ú­Vµ»ºÝú·ª¿mv­W·Wjªúú¿«U[]wZ¿ë¶Ú»½ußn÷W~¶®ª·u½U¯­m¾««÷Zª­íz½ïUµW®ëoûõUníW÷]¶Ú»×W·}ï÷ú¾öíUZ·Ûvº«®Ýnêµ­o¯Ú×뵿ëmUßumk·¾ýª¿ïzêÚï«^¯½nÕ¾½ÕÛúÕµÞ½×UW½_µVÕ¿Õ¯]z®­Zýîÿ¶«wº¶µuª½·µµÝ®ëZë¶ÚÕUµvµ¯[uÛwWßõÕuê¾î»«Zºê­Þ÷ë÷Z­·êµÛ½ë»ïõZºªî¶ëê÷vÕÝ^ª¶¯Þ«·jíß®Ý×Wu®ªÕkZ¶º¶Ûúµ_]VûUµõúºõ«ë½ªµjî½Vª­mmßÝ}u]woj¾¯Uk«{µÚ½kWëÚë{«k·[ª­ºïZ­¾öû]_í]uu®ý^ªµ­®ýkª·k«jµ¯mU{[ݵ[þ·UÕWêÕvëWª×Vºõöö¾õZ¾î«j¾õ]ZÕ»u[­j¶ík«µ»vÖínµÚÝë«]Þ®ÚÞ«}uvÚ¯ÞªÕ]µîꯪêÚ¶Õ­ú½}ïz®·z·¯[[Õ­ßë[µj×»oZÕ­ªÖµýW[Z«[­Úªö·­o¯Wnï®÷»]ík½ö··k[ï^¶·]®µk^Õv¿jÝ«uV­^×ÛÕzßVÚõozÛUßmU_ö×mmïU]¶ëm{Uº¾úתúººÕº÷z­¯»½¶ÛºÛ·Ýkjõ[­jÖýÛmÿ¶ÕU»mWî꺻öÚíZª·z¯uÖÚ·ÖÛVýU¯]êµ¾ßWÚ÷kmmªÝííê×ßÞê·UëUWý^úª»WVµº¯««v¶ú÷_^õ»vªÛ»Ö¶ý·½Z×Ú«_m®ª»îíÚ»Õ¶­jÕ}Wëu¿[ª­ªê­ÖÛ¶íwk«¯ým]ZÕ¶ëWuuvµûÚí¯kÕwëjµUnµ»kÖ·­¶êí»·Õ^ޭÞíz¾­××ë®õ^êïnï}¿·­}UÝ]·¶êºÛo®½U«¯m}ûµ_ÞíUW¾µ×]nýUû×wÕ¯õý½ÕwïjÚÕ½}mo~¯·[ª«·«Öë[ÝkUõVöÝkªûêºÕ«í«êÚ»ÛÕªÖí»ªÞ¯¯®ÿ×µz×Õjµ[·Öêݪ»UÝö­®­ëÛWwëZªý­µ»ýmUÖ·wÚîþ«}½{U[Þ÷nÝþí]ý¿õ÷{k_­mVíÕ¾µUµnªµ¶µUuV¶½W¯Ö««ê¾­êÞªú­ªµVÖîÕ»Zª½}î«UUw¯mêú­}«ZÝ«UÝjê®Û×Õ[ºÝWoµV«êûª¿Úª÷~÷ÕkýkZ×~õÕí»¾»UZ·¾­¾·½uÛ«ëuº»UV¶º«VÕWvÕë¾­UÕî®­Ö«]­]Uê­ÞûW®ûõUÕÿkµ·mjµ[]ê×vÝn¿Ö·U]Ö»öýVªÿªµWõU~Õ^êÚ»¶µ½µUU{WkUÕj·ª·[÷_Ú«~Õö¯Ú­ÝzÕZÕ_½[­zëUÖªÛ]ݽï}WÛº¶»WÛZ¶«îµº»k×kw}·U÷ßw­wßÖûÚ­íUíVÖÝ{ÝWuV¶ÝmUÝÚªõ»Õª¶«~®ºíêîßWµ÷ïk½kýuõkêÕvÚÛk{~í×ÕûÖ®Û}jõz¯{¶­êÚ¿ÛºíjÕ®ªÕí·UÚÖ½ÕU}õý»z¶­]Õ]U[¿zëm×Z­m_Vë_m]UUmWZïVµªÿU»ZõëUm[·UÕWk½j»{ºëªÿÞ½}V÷·ÞßZÝëjö­«®µß]WªªÕu­ö«uUë]­¾êª¯jµz궫muk[mko×W®ú­VÖÿ×Uu[­]n÷»¶º¯¾Úª½»ïUZº­jªµ}vöªê¶ïmÿWÕ¯ÝZú·U}×V­[v×WªÕjõ}_ªêµÕ]ÛWUÕ¿]ÚÖÖ­W·U«{jþÕjÚûw­­ºí««nµVÝî«ßkëj޺õZ»}ßmuWoÝokõ­[íêÕªíÚ¾­ú÷»]wUUkºßUk¯nÕÛoUºíöÞª­Z«[n¯V÷]û~ÞÕVªÕjíuûwU­«Wºõ[{ªª½««nµj¯Z«ÚÞ«Uîõ}Uê­¯nª¶ýWUuo½ûz­º·¶ê¶ú×U¿íÝêÕ[UÕW·jí­½]^µuõµÞÚõú×{U­Zúµöí¯ïVµÕ][]ûvÖ®ß}[ú·»]köÖÞÚíz«­w­¶º÷õkêíWVî×½u]­ªë[VÕ­µµ»ªëkÖï[V·ý}UªúÕÕvÛz¶ªím¶µuw]ëöÞ¯·ºÕµm]­«]®¿¾öµuûj×_kí÷WU÷»Un¯Zºõú«[mj·u®¶ÞöÞµ«·ºíëõÕ{Ö·ÿû«ë¯¾ê­ûêë_ÖÝU]UuªëWm­®Õ~ªßU^ÚµkUmêÚÕzÚ«Ú­[vúªÛkwý½»z½U]ު׭U¶ÛúÚÖ뻪ªµmµí½ZõZ¾Öêí¯Õ®õUWUÝ{íë]«kÕ¶ÕkÿÝ«WW¶ÕÛÛª®×®½z­µ[ª­v·V¯¶Öºõ}_V«ê×vªÝú¯®ÖÖí««µß]W׫níî­Õuª­¶ý­u®Û­kU­×«Z«mUõ^¶­_ªÕþ½½j­kkWWº«zßU×m­UW«[k~ÿÛ¶µÞ­VÕêÝUz­¯öµjíê­¾­Z«¯ê×uZ¿ÕkW·Z·ýkWoW×­}ÚÖª­¯êª»Õë[Vª«vµ«µëú®ªî½Ö­Þ×oëWU_Ú­¯µ½Ýv®µí~ªõV­[}v·ÝzÖû­ª«jÝnÝ~»~Õj«vºÕUoW÷ºÞ­ý}Vî»n«¯w¶ªªªªµk^ݵU¶­[ííUõÛ«½V­]}¯j×výÚ·«oU{[êÚëªêÕÚíµ«_»ÿݵۭoª½Võu¶íÝ«uººÕí­Uk}mªªÖµÚ®ëZªºªÝmíUv»ßjꫯ_U{êûÿµzÖ·êµww]¿Umº½ýµk«Ú»u·í­Uzµm·µV®ëUZÕ^Úªª­µvÚîÛÖ¶µV«[Z­vÕ­o]Ýmº­îÛ[Þúûû½íkÝ÷^ªµo¶êªú­]w_ê­{U­]«z÷ßêµ®ë[«õþþÕ{ª¯Úën×W}UuëV®Õ[®ÞïÞ··W«ßu[zÚÖú®»½núªõuUu[®Õ«Û[¯n«½­u½}ªõÚÕV¯¿×VëÖÕµ¶Õ­w{WZÝÝUU½w«U}ï×mû·þí}v­­u½u]wWßvëmÖ·ºª«o­Z«jõkjï½õUoÝÞÞ­Öímmu[W«ZÝ[Ö­[«õ·ëkµªö·mõ[ú¯ê¯¶êªÛ[WWÖÕZûµV¶½nÝW¿[U]·íw½ëmZÕvÖÿµvÚë¿Ö¯­®ÝêÚ½µ®µVµÚ·]í×®µ­jîÝzþ«þÚÝuúÝÕ}]oÖ­»m_ׯ_Õ×vµUÖúëm[mjÕV½m~««V­½¾ê¯®¯Zûµ­UkU·n¿»[µ®×îþÖûUj«ë÷mjî߯¿µVöÞý¯«uÖÖµovÚÛ«®¶î»®®ª®Ûê­Õ]^ýU·}mÚí½Ýz¯U[Wöª®ªõUV¶Û­·Ýzõ½®Þ¿kmUV·kv×ÛmWnízö×]kµkú®ÝWÚýÚÕ«ÝjªÕ½ÛZª·­¯_WWU«m¯õ[V÷þ¶ß»­ÛZÝ_«}jºµ«uëµVÚÞÚÚÝkZÖÖÞÞ¶®ªµkÕ[U×_Õ­½[º­­­v®úºªöª×«}ÕUUWm»UÕ]W¿WkU·]VÕö­»«uu]ßoUkÖÖ½Uu½ÕÕZ«ZîíÛ¾Þ¶¶·×¶×­wjÖ¾÷zõ]×V¶«ºûzþ·­Ýjíu{Wuí[ë×^×Z½Û­Vºêªµuº½U{^¯µÛu×kvªß­vݽ½{[Õ[û®»»unꯪ«·U¾¶Úûj÷_×ÕU­ÖÖÕ½½o_®õ½wëZ®ëݽUZõkµ^×ÕkVÝV«µw®×[kíkZ®ª»U«_UÝVûV·_­Ûêý«­×zí]×Zê­¶Õªºßí­ÿÚªµ«_o[®®ë­UZ½UõU®ÚÖªÖïk¶­^­½»ÖÕÕ¯Zêíu¶«níUkû[jÕë_Wjëu×n½ÕÚ½wVÛ¾µ«þíU×íëmë×ݽªÖ®¯jµkê­{m¯}µZúÖ½ª¶×Õ_kukUÕmWUjÝ»Uj×µwª­mª»µïÖßk{Û~ßvµoUú»}Ý_j«ínõVݽWµZ½Û¾ªÕíªÚ¯kmU]½ouWÕ]Þª®õûzýV··ÕVêÕ]uk[·wõ«U®¿÷k­]vÕwVíV×[«ûºÛ®ÝZïÝo½¾ÞöêúÛW÷÷Uúëíjë¿w꿪·]n×W®®ÞÕÛ÷¿[ëîµ÷«o·¯ö÷V½õkÚªþþîÕUÿuÖ½ú½k­vÖíUku_[µíkwU«ÚÕUuZ«~«mU[_®¶ûõݵêµWnº¿[½·z¯UU«½[koúëëÚÖת«ªÚµkµm_nµýkÕ~ëïݵÿ]ZÚ­]ZíµU½¶ªª»­kïu_V«w]kU¯¯º­Ýj¿Wíöµoýjõ·kuý}««v·UÚÚßµV÷ÛVÞßoª»ª¶ºÖêªú×u_»V¿ÞÞëíWÕ»Wª×Õþº¶ÿ½uz·_¶«­ª®½«ÕZ×»VÚ®«»×¶µ_ö¿Wë[­ª®·zíºïÕV«ïWÝ×~·Õmuíõ뺫n«»îªõ«V®ÕßV®ªîû®ïõmºªµýwV÷ûî½kjµ}jÛZë¾ë][]ßîݵwÕÚºÕÕïjöÕn¶×_jª»¶¶÷uªÛnÚê½nªÞï^ûuïnþªêÚß[m~«UW__UU]jîýkW»Z«WÖÚ·V¯îµªÞë[jê¾¾¿k®îÕ­Uªªú¯·Û·z½]Þ»VÖ»[«WjõVÕ뺪«Öªµ×Ú­W¯oU½­õkUujÚ­®Öïuºúªÿª»uÖ¿·¶¾¿÷Ûßjµk½ûnªª­]­¶º«Þ¾þ«Z«º¯mú«n¯½jï»ïUÖ½íÕV«^·«ö·}ö½µª¯kUU«®ÚÝU]j¶ÛVÞÖÕú½}}ÛïVÖ«Û¾¶Þ¿o]UuÕvªíZ¶í[_®¿ºþ¾ÞÕw®ën½ßîÛuõ×µmwU]kV¶·}µmÕÚª¯×Ú»ªÖíÕ{ª÷W~þ½ýzÖÛWuZ«µëú«kVëmWWµ~­UÛW÷úµ¶íÖê¶õu«¿ïºõmþ×v«Úµ­WëÕ_o½]û·{Z¯·kmv­VµmZª«U{öÕ½ïºïÛÝÖµmë»^÷ÛÚ«­~Õ}꺽mZªµVªÚÖõºíÖÕÖ½Vªµë«¶ÕkÚî¯zîõªÖíª»Õ{»UZ­^®Ýv«ª««»V­kUzîÕ]¯U½º¶­ÝWêÞÕëuÕ­º­kÕ[ªÛê·]µª·­uV¿Ö·¾ÚÕV뫯[jëk[j¾ë×o­ªêÖ¯ûתíkµ¶«««U¶»ÛWk¾µ«þ÷ªÖ·½mmÛªªµ×j¶ªÚµjÝ­]¾Ý[WVÝUUõ[u_zýjíÚíí[îºÞêÚú¶×µÕ¿·®ïµ×mukµ¯U[·öêûÖïuV­oíõ]oZºÕõ}kµºÞÖ×ÕWí¾­{mj®Õv®ëu^µ^»_nõmuu]jÕýuíZ꫶Õ]ïºÕ]ÕõV¶«m­­Ýu_Ö«Õ×Vûöýµk­½jµUëV«¶½uß®­µuºªõkÛ¶î«íZ¯mÖ«jõíõZêªÖïë[ïWZ¾ª¿vÛëZöõÖ­Z·Wm»ýª­Úֵ߮j®êÕÛëuWöªþëê¾Þ¯W»«­}«{{Zî«­ºÕo[­½oµÕjï}j¾÷U½ÞÝ«ZêêÞ¯¾Ým{kõÝU]oªÕõõkÝukU}­U¿[½½U}[«ÖÖÝ^ýWþª¿õª½}ïm^ÛUõoUUu{׫[Uºª¾ÛmuUkµÞÚíW]U×}ujÕ·^«zÚîû÷mVÚꮵ½¯u^×ýw[^­µUw»Õ«}ªöÝ÷¶®îÚêúûë¾Û}û­W¶íÞ못·½ÕõUê÷÷zªÞ­~ÖÖö»Vê­®¶µn½u®ªîÖÿZ­j¶¾»ëoUnµ]ëÕ¶¶·ÕZªÕ]ª«¯}Z­Öí»ª½µU{{v·wÛºî¯nÖÖ¶êêÕõ}»·ö¿n¶ÖÚÕUZµîÕ½j×[ªº®­«­ê®Ý]µ½WZ»êïu·{®ªÖÝw­[j½[Ûª¶ºµ]÷{Û}ÕUöÕÝZë·VÛÝ]î¯j­¾ªõ]Õ¯­mVí®µ«Õjª«­kªÖ«]¾Ö½Öº½U[Ûomo¾û½UZ«Z­Õ­Vþ¯ZûµõWjª¿·ßµö¾­½ú«U×­]ª»×ë­WªÚ«»m~­j¶í·^Õv·ßµ»wu]·_ÖíªßkÚÚÕmµnÛ¶íöÞß«ë×V÷u{¶ªµm¯ZïZµkµµµ]Ý­Ýê­k­^ÖÕZ÷wzÝ^»­zÕÕUV­µ®«¯[ýUëUVënÕ[ÛZª«u[]Wu^¾ëuÕÖêê÷U»Uê«ovª­ªízºû]몪»V½Ú¯UÕnÕkU[Õm¯_Öµ½UU½¶ß][nªºê«÷ºªº««µ­Ú­UõWõÿÕmjúû]¶«ýÛj·ßnµUꫪýkõj¾·jºÖëVî»Wzêõµßvµmݵ}êªúí­ß¿w·[v¿ºíºÞ­Vë~Õî«ê«Wmm½W[»«UªµÛU]~ûmZ®ÿ}ÕÖµ®õW¯mõÕ[{V¶º¯¶­­öýU{zµonÞ¯kÕk»^¯]z«v®Ý­¶íu¶»U«VÞë߯«Þ®·¿o}ºÖÕoÛÞëkU]ªµ·¶¾®ûݵZ·ÞÕ]kVÚ×¾õVÛU¯ïõWÝõÝïuUê½v×­×n½«ëmõvÿjµÞ½­V««ÕÕ_kjÕuWUµUZ«­UZ»UoíݵZÕz®öíµ»[}~Ûmëkzµ­ê¯µj«nÕµ««ý®«­]ÚÝjÞïík]kê»ýª¾«ujªë{ÞîïõuµUWUWUU«kõZ«ªÝUkºµZõmmí~ת֫û½V»½jªÛÛ¿[ÛUoÖ»ý»Uî¯ozú¶Õ­×_[U¾ªÞ·®­ªºõêêõ¶Û­VªÝÖª»¯nõU_µVÕ¯ºÝïz­mõUvÚÖµm¶ï«¿V»ÛoÿjÚ¾ÚªºµªÚ®úµêºýný×UÝj«n¿ª½ÚýWzªª««UÕªºªÕzµ÷vÕÕUõÚ½Uk]v¶ªÖÖ­UWöµnë½^·­j­j·¯íV½ýuÖÕUu×]V­­Zîµ×WWzîÕ½Z×zêÕ]­~þ½mVªµÝ׶­vîµjÚõ]®Ö¶êëÕ[]½¶Úµ^·kU][û®·z¶½íÞõû_^¶ª«uµ­UþëVßuZê½®µzíêë^Öýn»®»÷jõîÚõêÝUÕÖÛuõZ­µÞ«oU½¯õÕºïoþªîÕ·UW¯ªûU½zÕu×}·mzÚ¶½µ¶õëÛUú¶Ûö××V¿õZÕíû÷Öºªßm[moÖíªê¯«ëz·ÝkWn÷ÚÚí¶êß]Z¾»UÞÖµíµjÞÛ{n­^¾ýVö·[U½mWÖ÷½UmwÖÚûvÛ}ªÝ[¾ïzë¶Ýú¿ï¯¶«V׶ºõÕÕ«VªÕk{µUÿõ¾·®ªÝ×Z»·ÕUuÿÝmÕ¯ujÕ«ÕnÖë­«][ÛïÖõWû×j¯Umnººöÿ{ww[Ú¿×úµÕ¾Õv½ww­«êÝ[k¯]¯ºÿß«ê«VêµuumýÕwëZ¯w¯µ·kµ]Z®«­mUÿ{}«W½^ÚÕjë^®ªêî¿W×[[UÝÞªî½ëÕ]õ_ö®®«}­}W^­«êþÕµwVõv·VÕº­~껫kv««VÕjÖö·«ïn¯«kÛZ«WUº¿­·¿êÖ½¶ª¶ªÕk½m[ÝUöú·­­U¯kUª¯UVª»Û¯ö¶µ¶µê®«{ZÝ«o{V·¶«õÛw««kûVÖª½Û½Vê¶ÚÖµþ½jÕ­kµmk»kÖÕºº×íZ­v®­j÷kU]kµ½«z¯[uÚÕ¾¶·«ÚÝ}µíÕ½kWµ}v¯õuÝu]·w½[^÷kíj«·ªëkw½]­ß»ÝkÚÚÝ]n×Þê«íµ]uíÚ­º¯ukwWWêúÚÚ­ßk¯jí­×Þö×®ý­nª½{]Z·ÝjÖºû}ê­[ݽ«UvÕZ«ýjõ»¶öêÚß^íÕk­«÷®ÕÝuzª¯Þ»î«^Ýz«êÕkU]µõ^êõn­¶ªöÕku]·ªÝZÖÛª·½[öªýj«µ¿íÝoZ«ÕÕõUUÕ_Õnûö¯Z»jº­~«ëkW­¾·Õþÿ~õ}ÝíÕ®þÖ¾¯ûmµµm®«Zú«Úî»Ûj­»×·«º¶ªêÞêû]úëm¶·úª«Wºëïú­Uïj­Û«j¶Ý½oõ·ujªý½u[êµj«z¶«o}Uº¶ëZë««jµ{ªê«®íö·Uµíwmö»µUUjýUínµZ«WêµÕwýuë×uUz×½íª­jÖÞµm·WoÚ»Û]«ÕµíUõU{êºÿ½mÖºµÚß«^ú×Õî»w[]Z÷¶õÝjöþ¯»ëvªÖºö«VîÖ»]®êºî·[«Õ]Þ«k¶«Þ¶¯ªÖ­][Wª¯nß]mj»Úµß®»o¯w»®Ýû[ÝV«Õª¿n¶íU»µÛ¯÷¯u»W]WuµVÝ­^­ªªï]½uu·õ_mUµ^õ}úªªÕVëw«ník«ÕÛ«Wµv¿ªÚ½µªº¯õÛn×½Õ·×½ªÝ]nÖÕvîÞ®ÕVµ[µkWµU[ÚµuoÕûíZ·ußõo{oý«µª¾ïºëW¾¶½êÕ«{n«Úë½[úÝVº÷U궫[]m{µ÷WzµzªîÕ×WuÝï{ZÝÕkÝuµ{uµ}}jÝZ«Û[U]k¯¾¶þêëÝÚí{Ûªµjõnµºµkµ[¾ÞÝjªê­½¶½¯¯^÷«ûUµUZÕ÷mÛª»êýݻ֫ú·Û{U½]ÝÛ¶¯oZÖ½íwvºûݾ¾º­mUjîö÷ºªíýwëºÕ·ºµmZ­Ú·Þ«{­µz­]ÝU]»®÷­nõú®­W[uVª«ë_«]jÚÕºÚÕ{j¯«UíZ«Wuuª«U¶¶û½ª¯­·ÖÿõUuµÕ_Öê½·uk×k^º¶Ú»·[¿þ­¯kö«Õ®ÚÕwWZ®õjõw«^«VÕUVÛªîý_][Õê¿wµÕµjÛ^«n¾Öµ®ªª÷Õµm}ko«uVûýµu}õuU}jÖÛ×{½Õ×µUWw«UWkwV«í¾ûÚÕ_®êý·UU»·Ý~¾Ûm[µu»kÕ×_«vÕöêµ]Wvïꪻ­êê׫VÝ­÷W­_­m][ֶ׿V׫u¯ýëºÞýVÖ×®ºµjíU÷mk¿¶«ÝUWU­­u÷^ºªÝ­Uëúí[{UÖ®ª®«UµZ¾ÝUUUvÚêµVþ¾íÚÝÚ«µ[·»û­UUjº¶»j¾êê­ÝÝ«k_õV«µU]Õ«VÕÕÝõW®ÛÚµk·Wzªêû_µ[ªëk]«ÛmjÝo«mV¯Û«}ú·n®ûºíw[ëk··V«ßû[Ú«u_wm½Ö»õu­¿ZÝ[WÖí¯m{Uê«íVÕµ¯ºû«~í]zª«Zªª·kuÖÞ¾ëÛ¶úÖíoÕ~ÕõvÕj÷«­v®Ûªõõ½÷«¿wº¾ÚÖê½kª¶­o«j·»µÞ«ÖíW­_u^õU»këmª¾«W·}µÕj·[®½ÖúïjýÞëÞ«Õ·zÕ®­¶®úêÕׯU~»ïÝmjÚ¯]Võ«w×[®õuõWUV½­Ûµjªî»_UÕ×Ý»û«jïÞõ½»Z«¯­µ]zÝÖ«U«{uoµ½·}×ëÝÿÖ­uÕ[[þëêë¯uµUjßmÕmþªµvÚ­UZí¿]vöµuí[__÷ª«öÕojÚ«í[¯]«uZ¿Ujõ«ªªÚ·ý¿]Ö­mZþª×¶µö«wÚ«[ªßjõ[_oÿwZªõ®¯­öÝ{»UÚêÕoªÛkÕ¶÷W¯ªªûï«·õê­{mUVÛUת¶«ëªí«ÕÕWoUõÕ^ß^ëuªÝUÕuÿÖ¯«u]·wîºÚÕ·ªºßõ×íû®­íëîÖµ­Õ×íÖ«×w[úªµ}uýÛ¯UUªÝÕV­V»×í÷Wª×õ«zÝÕZ»·~«{wµ­×k«ÝïU÷ªïmßV¾êÕ{_]~íwouí]mÝëkkn·¾µ·­{¯W­ukºû}jÚýV­·z«u«j¿V®¯U¯½[n¾®¶·Z׶ÿÝ~÷jëk_í­]®÷}UWîêýnº÷UÖ­ºõZ÷ªï¯×ª«­Wª«UÕZ½jë­«ª«]·ªµuUVý}¶íkUVµÞ¿[{unµµkí­Úµmm{}V®ÞÚÕµÞêÝÕ­Uºï_w[êõmëÛV·oë÷umªµk½ZímWõ_n«×­m«×¿oݵµZÝ^¾¶®êÛêÕ×]·]VÚ®Û¶êµmµÛZ»µu¯µu۪ݭª¾êï]ïUZÚ­knëí®¾ëµnûV®ÚªÞ«V¶ÝÚµVú»jÚí¶î¾îõ^íõ¾ûïWuëõV¶öêÕmZ»»Úß{]UWÿÛo««Û^îö»k¯o«[wjïZ¯ýÚÚ½÷^ªªí¿W]Uv÷{º»µ]WÛª«íUWz«}ÖÛݵuÛÛ·Uj·j÷Võkmv®¶÷ªê«µÕzëõ»¾»µu¶¯­«ÕVªµ}ªº××U­z¯õ­{Zú¶ëº÷mjêÕo·_wVÝî×{ֵꮯ}UõUúºû×­on¶îÛ[]÷þ×îêªïÿUv¾ÛÝ}­kõö·UVÝn®îºímU«[z×Uº«nª·[]zîÕ«ÝUªêÕ¯Uî®ë½w[WÕUµêÖÛW}nê«{nýwV­«ª×uUZµíU[WõUZªû«v«ºý­kZÕ¿^­­o}ªöªÕõÖ«Õª¶ÚõU]«»]µÞ¯oºÕvÕzÛ]­ªêÕ­êÞ»õ[o]Ö×Ö½ª«Z­jÝ}V÷õ«¯Ú«{ßUîÖÖªÕªµÛVºïkªÛÚín«ÕÚöµuU¯Wu]U}jªµj»^þÞ­¶¶÷Ú×n­Öû½zûmUuU¯{®·U·õÕm_[®ÚݵÝÚ«u[­·m·}»wµv·Öïí¿ÝmUVÞ÷[­Þ¶®®úýk½{_vî¿_¾×ÿ¶ÞëoUv«kº¿^­ª¾ÕªÕkký¾õZªú¯V­¶Ý¾¿jºíoîµ[õÚ¿÷ÿ]«½º¶«­ZÚûµ÷µêõ­ýVú­ÛÞÕ­WZÖÖªëµW«_k­uVZÚÚÚÖûý}«mµZõ}vÚ¯ºªµº«U[­µ}õUµm]kº»}¿ª·ª®×Õþ»WªÚ½ÛZªº¯¯v¿W×_m[µZ«õj¯jµÕÚ×vÿºÚÕmÝjºïZª­u~úªÝ{µVúõ÷­ºµ÷vÕתµ¿ZßÕ¿½ZÖµµ®ªª«»Õnת¯u¯Ú¿^÷µV½ºîªº­mþª·¶Õu¯×í¯jú­ß¿]ÚºûíÝÕzöµÖõÖ½]kÕöµ]]Öª½Öß[m½m_îõë­Zª¿WµZ¯Vªºí«ª¯jªßýW½÷U»×Z­vßu[U­«ííú÷·UUµÝöõ[Ö»ÕªÚ½U­·]u¶«zýmú½ÚÖÕîöêªßÿuU«}«·Z¶íëWo«¯nú­uÝîÝ­÷jííûnúÝV¶ßêëoÕVêý¯uZ­»]»ª¯ýµõUÖê½o÷U×Ýõ¯¯ÕmöµoÕkë]­­Zõõw~ßj¯ÞÛÿVêµëû]V÷ö·«k[Û^ÝÝ}]k«~ßÝW]«jºª¯ºûok[¾®·öÚûýÛ_Ú½ÕºÚ·½_º¯·µîÛ¶Õ]U«ßU}õWµZµjÛ¾ýU«ßZÞ«k^ö«U]ý·¯nµZÚï«»ujõ÷¯ÚÚ½µ¶®µW­V®÷]~ïnÕÚ­k¿«UµÝ×^îúª»»ÖÞ×Ú®«oï¿{[^­Um~Þº»«ßªªë{mÖ­jµ®¿oÛ^¶Õõ«ÖµmmU¯jõ}ÖíÕ÷µªîë½ÛÕî·m[wÕªëZú«º·ÛUíª¾ßWÚ¶×W­ûV¯êú×ÕÖ×_ÕÕu­u«Õ««þªÕÝÚÝWî»íV·¯·ýuíj¶­ß]kuoz¿µzîÕmW·mꫵuVíUnµ[Û]¯í[oZ®ÕWõjªÕjµm߯^­v»koõw®õVÕï«mÝZ«êê»U½^ÚúýWº«½º¶µ­~ª¾¯[¶ÞÕokW_U~¿ê¶·Z­zöÚýÿk¯µíj¯û·]º»ªºë¿UZÛ]{¯Þ¶õUnúßÕu[uvÕjµÝoÚímßímº«êÕµZÝîßµ­UÕªº·öª×Z««º×v«Z·ZÛöúë××[Z×jß­õv¶ÞõÕ÷jÕÞÚºÚõk¯WwßoZ­¿½ºº·W]]®Ú¶õ[ëu®ªµÕÕZýµjºêíjê·{m¿mnÚ­UUZöê¯ëÕ~׶µÛku®ö­»êÞúÿw«Ú«µ¶õúµ]V¿­ê­«WuÕݪ޵vµÖÕm·þº¿ÿ·]WZ­ªÛ½ZÿZºÕÕUz­umþ¿»¿ÖëzûkuWm×{¯Þª«j­zßZ­®µví»{z·ío­½ÞêÚê½ÕmzªÕmZÕu½]÷ú»þ¯Wí]]UUõº­Û[]ÝÝmV¾×ïUUWm«jºö×úÚÛÿµ·[·«ªë[÷®­Wêï¯nÚ«¿ÞÖ­mWj¶õÚëVí¿jÚ¿¶­uµ{¯V¯ëÖým¿ª¾Õ÷Õ_{î«­Õo®ïUû_U­UßUvÛÕVê«}ÕWWÞÚ®ß×µWV¯ûª¯_mµU¿õ»ßmµþÕõo]«oÖµm­»UW]j­[µºª½w­U¾»j÷»ú¿ûÖ¯]·ýûÞÕn­¯¯Zº®ûmö«öíïªßUíÛzºë¯mÛU¯ßÛ¶½uz»Vúõµ}VïÚÛÛûª¯Öû^½®·Zµï꯭_¯m~ëV½ík]{}­½Uúýª½ïýÝVö­nª¶õjõk[j­ÿ½·¯«ªíUZµíÕkº»­º«ënöµ^ª×v×UÕ[oUÛ_÷U·~ê¿jªîÕªÕþ­z¯ÕuÛ®ÝÖÖýjµê«ê¶Õk]uV¶ºê·µ÷½ýVë¾µUn¾êëmµû]µ¯Zß×»­­wªõ»ÕÚ«ªýïWVîö­U]UõnßûW}»ßuúëk½U_յ׫z«jºöµ­µ^»mú«^«v¯W½««Zê­Z·µUUW{[ª®Ý·Zõõ_U»ë¿öµë^úêªÚºÞµöëjû«µ_{mÕ»Z¾ýw}UZÿm­¾Ý¶öªÚµÛU­ÚºõuZ»µ«í]ݵ^»Uºëëo«]ÛUj×·¯uïÕvûW¯vÚÚÕ[^­kZ¯Û¯µê»[×îêµ_ªÕn¯Wµu­{komÛwõU[[~꯵ÚÝWnívÛZªëZê«j·v­u¯UmozÚýj¾«uUUj®µZÕßZ­{·n¿êÚý^ëvë}­jým^µvµöëµz×û[oµµUV«wÖ¯¯ZÝ^ê½ßwUU½×Uw·k]WZ»­Ý]­«ë[U»­«k[wÛ«^¿Þ¯VµU«¯oµêÝ_½Ú·W»}¶×jª¿uêßkík«¯Õ}µ®ÕÚ¯VÕ®µmºªëUn½w_k¾×UV«¿jêÚúª«Un»·Úµ]UÞªµUÛý÷õÝWªúêßVÕª×ZíV÷ÖÛ}öÕîõõ_¾ÛÕµUªªª×V­¯[·wu«»[mZõuµ×jªºêöµn¯[UW­Þî½W®×®ý®ßÝ¿­«[µ®»}{ªÝW­íu¯zý׫êí_ºÖ×_«W»¯­êªµ_«kÝÚ¾·Uú÷º»­ýwnªµZ¶Ý«]{u¾ú¯×ºµª­ªÕª®ªëýöªÞµWUvÿZッ­Û~ºµëvÖíëjõnªÝ¶Õê­·®®¾ª÷k[Uvû][Wjû·}ïÛÝuo¯zýÛoµ®Ú·j껪û]uÚÕUöëî­^««ÚÕÖ×ÕZµ[UoµªªÕ­ªëmÕ»¶ê뮫Uµ¿Ö½¯Víº«×^êêÝÖ«¯µû×zë_µîö·«V«ë­ú½×vïîÝUïëkVþªÕªºªöÛ¿ë]]V¾ßvÿ¿÷}»U]ÚõµW«ÝÕµZÕ{Uõ}öª­Öêúµí­wýÕ¶¯Õ­WkÕZ»kku[n­]Uw}Vë×­_®öº®ýoVõµVÖú½õ[ûª¶¯v꫺íúêÝUz·z×o]«}][ÕÕú«nÛ®ú»][Úþ¿ªªíUêëW¿VÚתõöÛú½Õ]}Õꪪݮ·]^½WU]WkmÕ»m¿·¯jÝÖ»uïÖµk×WZªÿvߪÛu]½ê«{]ªÛ­¶úµUúªú­¿«Þ×m«½«{Z®µ½íZ·[­¶ª÷º­{®ªõnº­»{«~õj·j»VªÝ^ªÕÚ«kwªÖïë^»ímºýê׫«ínµWjõnµ­wëµµZÿí»ûZîÛoUÿmÝ]mZ­ºõ¶÷WWwwºëWkVýjÕ½V½w½^Õoªö¯kꪪ¾·V·«×}ª¾·jê½×­í[mêýjÛÛ]mvµ~êµj¾ÕõÝwº®ÛÕªÝûWjßz®ª¾Ö«}®ª»ZÖ¯Ûz×níZêï^ª»un­Ú­[¿vÚ­k½]Z½u­Ö¯nª«]mVî×wzë[õ]µj»¾Õú«ÖÖë¯V­ÕÞ®¶ºªîµê¿¯­[íV«v­õ¾Ö×mU_Ýz¶úª¯íµ«_U~Õ«ºÛÛmkë×^­uív·¶Ý®Ú¿]Vׯµý¶¾þ¿µwnº«««ojÝ]Uk­ïmj½k]µýumöÕݺúÚ¶Õ]uªëz¶Õm׿Ujµ®¯·]kÚ«]úßU·u÷¾½·oî½j«wUVÛßmêÞÞµ¶×v«­ªª»WnÖíkßµîªíj®½{úë»zûv­k]U»Úí¿^ÝZëuûV¶Þ¯omUû^Õ¯«WªÕZþ¾µÕÖíº­U]wjïþµj·kk]UÚÚµ®ú··ê«Õí«µ{[Ö¯]WÝZþêݪ¾ªÚ×½U½ZõÛ¯V¶ºëëjºõvºÞªªÕµn®¯jõ[«[«ooÛÝ×½m¯mÛÞþ·½«u¶Öþïµõ­ÖÝjÞõZë­}omu^ívö­ÛWW]Uºýkµ[WmµV·{V«ß[÷kVÚúÖõûWkmo¾ÖÚ®»_UõÛªëû]Ý}WUÕÛ¾êÚ®î«]mý»w­[Úêªí­×UÝU[î¯Wïªö»Õµªÿ^Õí×u[]wW_]U}uV»VÞ½«}®»V­ú¯õWºÝkûUkUµj«m«]µÕj¿ª­÷®¶ÖÞëëÛ»ëz­íkªë]Û®ª½Zîúîß^«¯VýnÛßßUVö«[«zªúݵ]ÚÚ­ZÖꮺí­oºþ­Z¯[úíº»Unªêÿ­ZÕ[_í½[­}mª­~Û¶·«¶Õõª­­ï_îö÷o^íVÕÝVÕ®õWëÕÞõÞº«­UmëÕUµu¶ïµªê««j¯ÝêÕûkkv¶¯}öÛWº½uÚ«¶«u¯[½[ªûU»W»ÿmUk®öÝ¿}Ûwkµv÷W¾ö«Uj¶ú­zÛm[V·ªÛÚ½{®ÛÞªÛw_«zë®Ýõ«ßvÕ^ªßzÕ¶î­j®õvÚïÝkÞ×Uýª¯{[Õ÷뽫×nÕu«W_mU}¶û­®ª»]W׶íUzÖ­×umUW­µUíW®·¯·uZÛý®ÚÝÕ¶ÖµUª×nµ}«W]«½WÕÛon½z»·[][®êªÿ«ª¾µU÷_ªßZÕ^Õ××®×ZÛv¾¯«µö««mZÚ¯­[v½ªÝkVý¶·µÚ·ÛVµ]®¶ýu»»®Ö·«wêîÕõëVªÛU¾ýÖ»Õ[}nëÝÚÿªªÿjúëëZú·kõ^ߪ®¾ª«VÚµZ¯u{Õ½n¿×ê÷uVö«WÕ­»WÚ¯UÕmõ÷ÛjÕ·{ëµîêÕªêÚÕUµ¯ºÚºª®Õ«k­íÚ¶­×kõon­[[÷«jÝßZ­}z½UoWëõU­ýý«Um÷ª­«Ý®ë_¯ö«êªö¯«®Öª«j·«ýU®÷W¯Ýz¶öÛ[VÚêÛuuªÕu®»þ»ª÷µ¾¶­ª«zÚ¯U×nªµõ^ÖªÝí¿j»Zß¾×Ö»u«ë{®î¯Z½m_^ª¾¯[UU}­Zª­wºÕªµUm[ýV®ªú¶ö¿ïUuu½ÕUöíUoÛ¿uª«o_ªõ¾½­Ö¯UWVÞÖª«{÷Z·õµ]uïõ{U­WUmjµ[[okvö÷ýÖú­ÖÝVÚöÞî×u{ÕU­[^®µV­Uµ×nõZÿwkÞ¿º×VÝ]½ª½Úöµê«u»ºÚÕnÝ·¶µÛ«zµU¶½V»k­_oU½[^ªÿoV«V®Õum½¯jþïW­Uõ{j¾ÕÕw×[«]Wv÷Uë_Zª¿jûöµZÛÕZÕknûÕnúÕUU«WµÕWk«­ííUUUÕî­Uݽ­×]Ý­ªÿ¾¯ÞµõmÕjÖïzë¶õ]ûwWjï«W_·íUµjÞµª¿½¾Öîµmuj­íjÞÝUU{Õöª­[uÖÕV«j¿WþÕw½këªÕ¯wWWj«êîÝêîÚÕÖÚ«½ûm÷kU¶ëmo~µÕmÛkuõzíZ¶­º½ÕUÛ×UVÖþú¯í­jÛWUouí_jºíµ­Öî«j¿vÚõ»Ýêßë]Vöÿ_·ví[jÕêõmïÝ[V­µÚúêûnªêÖ׫uv­ûÿÕíªíëuU­·­UnÞî·]õW÷õ®¯Ö¯«wWú¶ú·úî®Ýªê·­Õv«ª«kVõkõë{ÛZÚÖµµÞ®·õîµ{í«Zß»ºëÚÝVêµk¯w¯êµZªê»¾Ú«kjµ«î»×îݺ¿®Ö«U_omu®ê¾»o«µ}_kªïnöꪷ[Úºµ[Z÷j¿okÝߺﻫ{_êýª®ªíª×·×Zª¿­w­kê¿ëuÕz»kÚëmmW®Öï}wº­VÝëïý½þÖ¾ûÖ®ºîµUê»mµmµmk½­Zº­]«VÝköïWöõÞû¶­UZúª×W¶ªßî»Zºª­½}UWmÛmÿ»w®û÷}[µVûWÕukÝ­®õ¶úîÚ­kµ­Zµ_ûV«u®­«·«UßU«oÖ¾ê¯o¶Ý]}ßm[­º»µ¶ªÕkVµ«º·ßÖ¿õ¶Ý¿­í]­íÖ궫×Wµz請ۺ½um½Ö÷î­¿[ÚÕ~µ«µjººµoÕµUZ¾®µÝ«×Õ¾û]n¶¾Û_k¯½wV×µõ·×þíUµÛzímÛÖß»U¾·U·k®ºêêªßjûÕ[«­[]ëm¯ºê¯^Õ­}ú¶µ½u]nµ«[_^Û«ª¾ÿ®ÝzúõWV¾­ÕZÚ«Õ][ª¯êënÕíª«Ujºª½×zõ·^×­ýjûûêþëþö½^®µ½»ïëjêÛ¶ººÚêÕmõZµu­nÖõV×zÖõW¯uÖÖµ»U·»«×V»U^ºÝöÞ¯½u­µîµWZ·®ï¿jº­¶ýzÕµª«»_ÕmÞ­}z»uz®ÕzÖÕZ«êëmªÛ^µû¶Õu­Þêû¶ªëöªõê«V·ZëzªªÕÖ×Wjûm}mÚöÛÕúµß×êûÕV­õ][ëíu¯mûë×}·][¿U][Uz·õÚ½m­Uÿ[WÖêÕ¾»n»­uoúÖ««VÖþú¯[¾ÛvÕÕku­ºßj¯êíukU_v¾÷U}·^¾«úªýíUw[UÕ­®½uW{U×]Õ«[·^ÖÿVëW«zÞºê­oZúÛ}­ÖÞêõ[­êÕZ÷ý_[ïmmÖ¶«j«^®Õ­«µûõ¶ëkmëUU­om{U}Z­mnºõÛ½Vºµê«×»ÕÚª®×º·m«V»º¶µµU¯ßVתµwUU­µZ­[^½½[­ÿVí[výëZö·¶·µ}­Z×jµjÞÛumÕnµÖª¯ëjï]z¶ÕõZ«z­}{Þ«Ö«Õ}Zõ®®µß^¶¶í¾®õ«ªµ÷·UªÖꮺ­¶½ÕÖªö¿u}_Zª·½ª×«ÕëknÛ®ºýÖÚªÚõ·VÕª»m»»ê«Z«º­½]ÕZíj¾ÕU­ÿ¯º®«·wª«Ö×Ú¿}®ÕêÛêëjÛ¶ëÕ½kêÕU«¶®­«¿}ªÝ×}×vݽÝj×µõ»j¯[Ý[]{UZú­oUõî­¯UU··Z­íÕ½k[wµU}U®Õ_ZÕkÛµ®Õ»êí»½ÛZÖêÕµ^¿wµµªÝ¶®­·[ï[µ{ííÛÕ]k­µjݶµm«µ·õÛUuzªêêúÕõ·[Û½Ú­kmmú¾Û«ÚªÝµ×[jú¿}×nݪ½ÕU®ÕnºÕwZ¶ÝuZÿ^µ¯ê»ê«]µ®µ»»u«]k­î¶ê«[ïZµomk½ÚÕ¿ÖÚµ]õWßjßꪽ¾®»«µU«_k}uÖªª÷[Õ­k­W·Ý»Z«ººë½«¯u_Ýkzëu½kZÛªÚ¯õÕU«Víê½ýmÛokjÛu½½^µÛý¾Ö­]×ZÝ­Õ×ëÕ~µö«]×_m­­W]«ëjîõZª¾ÚݵUÛk»õ®ªº×oUÕµë{m^½Û]ª»­núµµª­jÛ^êþ­û~¯ªºõ~Õµ®ÛëUmú껵ªíÕ«uj­ÝwÕÚõ×µzµ[þ«ª¶ÞÛº·®ÝÕ­ª®­möûUZ­îÖíë­ªªê¯õ]Õj«Ú­úª­[­oªî¶öª½ê«UWþյ߭]UºëV®×«Uuom­V¶½úëj«ëµ­®ö­zënߪ®«m«¶¶ûvµ^ªµ}okj«ÞþÕmÕÚÕëmý®µí[n½µu»j­µõõÖµªª«]ûºÛÕ«í¶õ«jíuµ{¶êÝ^í¾×vÛj½U½Vªöªúí×î­öÚÖ»]uöï×ní[í]V­z»þ¯ª«ëÕ]WÕWuUk}ûöªºµo뺪ÖÞíõ«ß^µíu­÷õ}õ~»ûªªµÕouu÷ûªê¿¯µ[·µjíj­]µv¯}®Ýºê×Õu¾Þ¶ëÝ^Ö«·µUoª¶×mujÛÛÝW½ÿmª×UÕªÖ­Ö­k_«w«Þº®ßz«­Öû^¾¯UjöëëUwíU]~ÖµkêëÕk]o«µj¯~«Ýmª«{ÛZ­Ww¾Öö¾®ªº¯w{Ú¾ªêõU]mê®ÕWj»UzêÚþ«ªµµêínÛZêÕ×zÚ·­_öú­µÛ«zª÷nÚ·­õÛ×õë[«µÕ»ºÕ{]ê«ö®µV»·µíëµW«þµkûU­jÖµªµ~Û¯íU¶»½»Z«WÕkWímÕoªý×U_Uªªêþê×Z®íª·¶µUÿjû[ö«Õ_í]j»ªµ·]ëk¯Zµîºõ·kÖ®­«kZ«]®ÞÞªßUuëkëÖïºÕõ«õV¯Uªê­½Vµúµªö¶ï[­mo]Wõ}½kzëZÛmÛþ¯WªÝjª­{v«kµïUzÚª¯j¾µ­õ^Õ·µ{ºÚ½¯ºí¶«ï[¯­µºõUVêþ«ªÚíºû»[®¶­j¿ª·¶º«ª¯­õ»owk_w«ÕmÝ®ê«[ÝZÚªµU¿U×oÕë«ëm×ZªÞº­VÕzÚë«®µ÷n®õUuý^¾µoªÖÕÕVª­j½Uuÿ«Zµî¯UmVí­j½ºë[Õ]ºõUëoUoª­Ûö½ÛUZûUý÷¿·ÕVû{uÕ½vÛz«îê»WÕU«¿ï~·n«­Zª«ªö½ÝU¶·]µÖÿW®Þ¿­®êõko½µj·úÕþêëV®ªí]ª¿}¿{ëº÷uV·Ý[­Õ]U·­UÛkz½×õº×ÕWZýÝWÕo­¯ªïzÚÞ®·ëõ{×ê·î¿jÛVÕµµöÛª­m×Uº»«U«÷ÖÕûõíVßWmêõ»½_mº»kkZÛZûíV¯ûm­Vµ~×êÖïmÖ¯¶µV¾«u«]þÖ¯{Õvªïm«]«wÕmÛ­õ¯ªëUºýWßo÷WêºßjõV­m®ÛÝ¿õ[­U[W¯ªµÖÞ®«mõîõ­}­õU^õª¿¯uUu]m×[»îÛUÿ«j«µ½uo[Û¾ª¶õWîîÕ·Õ·îÖ¯m][ujúû÷wuëmU¿ÛÕk­_mZ½{½VÛ]kÖßuµµ]«^íUVö­mkjª¶»Õµîµz×Õu½ª«UVªµU¶µ«^êïu[W¾½­u»{[kWZ»jïW¾Ý]Z÷uÕz­n­ûoÛ~­Ûº«ßÞ»ëÕ]V·ßUªµý^ï«mßk{Ýo×Ö·ªê·j¿½[{{µß}ÕV¶«·ë¾®Ûݯ^Úúõ[»ß­ëÖïú«V¯¶ÛmûUu[W_Wj­­vú¶Û]Z¶¯jµ{~µÚß¾¯}VÛû·VÕª¾«­U]ªî×»ÛúëkVÕU÷VÕmoZÖªßÛíÝÞ­õÖª®µmm^­þÕú½_»[mmk{êÛmwwm»ÕuúÕ]zª÷Z¯º»·U«UþµWîÛµª­kµµ­Õª½k®Û­­_ZÕ¶ÕºÖµvÖ·¾ªªÖ®Ö½Õ{^Öµj¿kkmÖ¾­v»k}»ë½­»~ÝzïÕªªº¯}[[[{{}»uµkÕUµÚµ[uöÕjÝV¾»ºõvµ·»­Ú¾õëÝ[_U­¯¶«Uµýÿ]î×wª­ïmmvÕÞºÛê®ëV»ÝWw¿­½ï­®­kk{®Ö×ÚÕ¯uu[}UZï[ûým»ª×U~¯k®­mÕÝÚí×UVÛ«m­U[V­íZ¿U×êµµßëêÕª¯×mV­vÖýßúÖÛÖ®·«Ú¿õ{õv¶êµowõ¯ëk}w½uú×ýÝoµ]Ö¯U¾ÿÝ[ëk¿ÕþýëuÞû×{Õ[]vê¯^õ·Ú¯½^«·÷v«ª®ªÛV­v®µn¶«[{VÚ¯ëjêºÝµ·÷¿­m{Ö÷]÷[vªßÚêºÕUUõV®¶­k[WÖþÛ×U·¿¯Ö«on½Wýû^÷ª«îëïݽíëj«Vªþß«ëvýk¯vý»þþ­»UZªµÕ¾®ª­[}ª»«Õ[V­Öê««­öÕk¶Û]®»µUë­ZÖõ[º®¾Öëk«×_}UÞªÝn·Uµkuwn­ö½mÛokwUW~Õuº¾öýUõV«Zö¯Õ[[®íº·UíVÕZë¾õV¿k[»¶ÝWk{n­^·o}UªÖ»o{kßÖß«Uî®êî¯_ÕU^µÖíÕ×Ö×ëz·vÖ»«Õ{]Ý¿ª¶º¶µz×îê»Z½U}­ÿ­­ïU^ÛZûkêÿ]»[µµ]UZÕZ¿uºÖ«ëÚ»®÷¯íö«ík]½[ÛÕ­}ZÖÚÝZÖê®ýo[Öª«þ¾ÛUjíîÝWUÕkWzÖ×®µû­­_]jÚݵêß]k[ïwÝn¯UZ½¶­[ª½mZÚ»z«W­Ý­Ö¯^íkêÝõUZ×[­ª®½ºµ}ÕV­kÕÖª­nª«mÖÛõª×UÕ­ª»­uUÖ¶µºû»ÖïvêµïïÕýûÖõªµ^»í¯_Ý­íu{VÛ«ÚÛ«ª÷¶ê­û®ºÖõ_®¯ª½·}µºýUUö½j¯wZµÚ«ª«~Úþ×[ÛêÕ¾×UÚëmn­^«·VÕ«·Û­µuÕ[½­Uö«v­»ÞïkUm¾×«½m®ýU«UjÛ¾«Ö«öÝÕ]k¯êª­¿ªµ^Úë·ÛwVÛo~­Vêß^«ínÚµzíu«w·V¯öÚ¯ªµ®ª¶Ý«¯Ö¿W«_]¿}ꪮõµUº¾®ºÖ«ýÝwö­w®ª®õmªúûzíVê½}]U[ßunªõ­ëí®îª½ZýÕÚõ­k¯ÿµmu«V¾¾öö¯«~«ÝUU}ÕýUu]w«ZõU÷WVßÖ¶ßv·zíý}ú®»]wm»wmíjÕ­j¶ß_[Þ¿¯Zëê½ßUßjÝë¿~íWߺ¯¶ê»mª÷»_­ZºªÕ[_zûkꪻ¯ïú·wZ»k½Õ{®ÛWï·Ú½mn¯UUëk_ÕþõZÕ«ÛmuÛµuªöÖ«jµzÿÛU¶»Ö«u«]}v×UvÛ·þ½íjú×][nÕª»kú½wV»·o]­ºµÝ·«ÝU_ÖîªÚêÕ]ßVµ{·ÕÛm^º¿[õë«k«ª­z¯ÕjÛm­µ­µ÷{uÖí}]ëÝ÷ª¾ºíõ_ºßmkkkvÞµUzí]V·«{Uw[ÚÞÖ«·«ªªÕ[[UÚµ{uÕ]{¶êÕ·ï^õªÞ×U]jÕwk­Ý­VÿꪭnÕUkÚÛÖ»ÖªõUkªú½[ºªêªªÖ«UZö­Ö¯u}wֽݾ÷ÕûU·ý®µîµ}}v½[vµêêºßªÛ}ÿ¶þÖÝV«WÛj«ë}Õm¾õÞëÛÕVº÷ÖÛ]umUþ×µZÚ÷õU__Öµ¯vúµZ×ëݺ­kÕ~ê­­nÝëVÖ·ª«U[«««z«ÕU_V÷]_]ª·ý^ê«»®ªÕjßֺ꭫ºÕ«_«ÕûÝwÖêÿU~ºÕª«ûêݺû꽫WÛVõwÕk[o­kÖÖÝUv¯Uê­[î½Õ«­ý»V»ÿmÖ­UWî­úªº¿ÖÕÕ·Úößu×Õ^ÝíUû¶µo­{­µzµ«ÚÖµîëíwÕZÝõúµuU¯WÝõUíj×_[mzºõk×mö®îÞ«ëvÚ»nþ÷UuU­îÝVöÛÞëÝ÷Uúë{]_u[oÛ»ëzíkë­ªªº»Z®ß½ý·VÖõu®­U®»µïuõ«Ukkê¾Ý·V¶ÿ}[^êµwíÝwmÕïÝÛWû{«µÚõ­o_­mvÛÕÛU}Õín·¯þöÛvÝ»{W]UZµ}¿j½]¶×uëV­Õv»ÕZµuºîúõ·vîííoUö­Ú÷^¶î­ZíÕÕUjê»ëÚ·ï®­Ûkîë¶Û¾­Ûý·µê¯¶ÝZº­µm¿ZÚõµªÞÖµöÖþÕªßzµZ®µ«·Õ­îÖµ]^­¯«o»z«jª½«ÛÛÕ«[®ªÖ½~µkuïkª«í_~ªõ»×Þí^Õ¯ÕU÷¾­×U·]UÛÕ·uWªýV×omÖÕ«ûÿõ»}uÕÛ«^¶Ö«mûjªºµvÝ«Ö½ÖÕn¾«nªû½µ­mkÿjûÝV·¯U­v»º¯_µu[uVª­×[v꺮ªÕoî½wÛU¯««®úí[k{ªÕjÝ]j½UV·Z«Ö½k[[ß«[ûµvîªÛm[ª½¯ö®Ú·»WÚ¿ÛÕµ«í­V­í»WªÕ«jºÕU{UÚ®ªõ}Z«ï«­kÕ­ÿ·__U]jím­j×zþ­»ZÚßwÛWmí{mvºª×ßÚ­ýªßíuÝU¯ÝÛkUWµVÖõu{Z®«U}WokÝ}Vºîµv­^·U«}¶ßº®ªª­u­Ußý÷Ú½ï[~·WUZµvúÕmUjªßºþê××_»{n¶µnú­õ[w×mz¯Ö×_íZÕÚú·Û[W_UmvÞïþµ®ÝÝV®öî÷VíÝ·µWª­vþ­½ê­jµ­®¾í«^¿k]Ú÷Zµ¶«ÚÖ«®¯]}êú½zµ[÷UWVª«¶µµß×ëWnÕßÛW·îëjëõkZÞõ{¾ªí]«µuïë}U«®­µÕ·µV·UZ»mZõ}®­[µU­»UUW«·ªªªë{ïWÕÖÕ]]®÷·u«Zêªê»«}U{«m{­Uî×V½n«¯»­®¿]k«Uv­VÕUµUµïÝkZ¶Þ®ýW}^뵺µ_VºõwV«Öݯzí¯÷]m]U«êÝZíZú½«WöêÖ»ÞÕwë۽뭮®ÞµmvÞ«ZÛÚÝWkµjß÷ý«î½ZºÿÚímõÚ­Uÿz÷­n¾ÞýZþÞ»vÛ·×ÚªêêªÕÞ׿uWmZ®ÚÛ^×mV­®»«ªú«UúÝ¿ªÕõªïú­k¾ªÚí_ßÛê­×ÖÿÞÖªµ[·^µëûöª¿[zëUýmWuªúëUÖµVõÛ[¿Ö½×zµmZ­]ýU½×µí½j××·­}[[^ýWV·kVÚµÕûªºµõëUÚÕþ½½«öþºÿVµ[ï­ëW¾µuÛUûU{Z붵ÚûÖêׯµo[««ÚýVöëÕ}kîõÕÕ]ßmë__붷ÕÚ®»µ}®µ«vÝZîÝýU}ׯªý[®·Z½¯_Ú­«»ÿ÷ïÕ[­ª×m߯UjÛ÷v»um_~·}VÛßݪµu¾ÞÖú붶ª¯¯VÚû~¶ªÛ­V«ê­uUm{u«~«ëß]«j­½ÝÕµ½µU¿«µÝí­µUwZ«ª¾Ú­·kwZ­Zµ{êÛÕµ«·uwjÞ»]]UÚªÞ«Öën®þ«ªú­×ZÞ½[}]W¶½zº×[µíÖ»[ZþÕúõ]ÕmmöÖÕWwj·µm½¶¾­­»ú÷µ[]Õ]×öÕª¶µZ×vªë×mªµ]Ý{VÖö÷[·oíµ~Ûk}U]­ª¶Úª½Õ×j»[÷[¿]Ýz¯jµ]ûu­jú«¶¿oÞõo­®Ýõmvµªë­j¾½ê½jÿnû]«UûZ»[Þ·[êª×÷«mZªïÛjª«Z¯_mêÝU¯½õWÕjÛ¿îÝ×U«VÞµuv®¶ÝÖÕÕ­k^ÛÛZµ«V½ïû®ÞïU«^«u¿ª«jµZëVÝ×km«ªõVº«½}V·öý^õnµUµ½ZõV­ÕWjÕª­V½Z®îµVÝj½­í­{¾­ÕZêúí¿«_õ[v¯­Uÿªûþ¯ýVµªÞªûzívõjö­®­ö­ÛëªÕUUV­·u×kîÕª»ºýµµÛkík[ëõ¯ÕUkª¯ÚÕ·Víkk«ë¿_U·n¯«½¶×~­Ýµm[ýnê×U}íu[WízÞ½Ujû[ë«ÝwZêë·{mukZï­ÖµûµuÖëVµz®öÕÚ·Ûj­kõ[õ¯~¯Uvº÷Uª¶ºë[W½Õí_jíUU«·Zë]­zêí]ÝU­¶¯jÖ­¯µí}{^ÖªÝöÚª«mµ««kvÖÕ­í­Ú®ÛUÕ­jêªµí¿­UÕkªýêîê­¶ªª×º¯­VíZ¿ªþ×êµ]wZ¶½UûÕz¾ûm­×ßë×wêêÕª·­z×»{º×ëuõõ«U®ûWõööí×ZÝÿ»÷Þ«ÕU«WW]®ö½kZ­¯uWÕ{µW]¶®Õov­¶¯}Z½U·««Zºª«uÛõUZ­n÷×j¶½UZÕ[­û¶ªïµzõß«ê­__Vª¾«U^¿ªõ·ímZ«þõkêêí«­]z¿]V½­moë]vÕZ»WVÝuªª½V¯{Zµ~ÖÚ·]^¿{ÖÝZº«»ZÛZÛÛõ[U×Úº½jÛ­W­j®ÝUºµvßUZ·»mÞ½«jûê»õ[]­jöÕ}Uõû_jõ»}}­]uzßöÛV­WwouÖ»[j꾫Uk[îÝíUu]«[uÚÕ}[[}mWÚ»µu»Uµ¯k{j½ÖÞ·mjöÛ­kªöºÚ»wÚî½úþ««VÝW]º¿º½Uëm­µÖ»jÚ®«më½jÚýî­»^«Öµkê¿nªú½íw^Õë_ukö««u·Ýµu~«ÝjµÛjßwU]õwß¾·W]Õ_Ý®ÕV«Wj÷UZÚ·Ö÷oµZµUv»WÖ¿]v®«Úµuzª®µ«[ê¿õ«ªÖ«ª­VÕ­Õ[½mßUZíµ«÷kW]¶îÝZ×þÚ×®½UW_ë·¶Õz×U}_«V·×_¿}V®¿VµVý]k®ßµUúÝwu»®­UkUªÖê­uê­W½ºªÝUí­vÛßwVÝÞë«VÝvÕZ½nªÕk¾êêû½·vû{WZÕw«û»Zµªê·õZÚÕ[_ª®¶«UZþªö¯u®½UzúÝ·ïWõZ½^ë[Õ×UÖý½Õ·m«UkVÚõuª×~«{z¯¶ªÕ]µ®õ^Ýn¯×UëZíUWVÚ»ºÛ½]µµêº«¾í­Uªª»on­Zîöö·v­ª¶ÖÕZ½®Û[¯Z«kWkU×µv¿oZíꪯzÕ}Wv·k·jínõ»¾­vÿU¯Ýw]Öº»nªï뺫¯UªõUUµ®»{ß[·×mõZ½Un»m½oöë]êúêÛ­¯W¾ªíÛm«ZÝZªêÕêë«WU«{W{¾õí}uº®Þõßj«m®×j­}[ÝnêµÕ¶«íV«ukmU«¿µo^¯ª®·umõkv«[ÖºÛ¶ÝVëUÕª×VëþÞ¯j¾íÚ»w]Uk][µ­ªº÷{ªµµ]úíUí®Ý]mªªÚÞ«]½Þ»Zµ]Ú­¾÷Võ]®­]½¾ªÞ««mU­ZõÕ¯nêÖê½­·ÝZû·Wj¾µU»ß»Ö¯µ»k×[]^ÛÚí]múÕë¶öö·uWÚ®Úþí[µµuëWuUëUº«·~ÕZÖ¿®ÿ^ëm[}jûU­¶ë¶µkVµj¯VÝkª«Ö¶«ZÚÞú¯ÛjûU½[ÕÝ~½µ¶½j¯µ}v×ëúöþ«UÝUvªÝõ}ªÛ×µª®ºÖÝmW½v·m}¿½êº½Vêêý{kkumªºõëú×UUµ¾º¶×]ëº×ÿ­·^íºêªúÿïíí^×vßÿïÕZ×ïïWÖ­u{¿UÖßjêµî­V×ë{«oöÖÖÞ«kU­w»uUÝz»V»ú÷ßÝVµý{wÚ«kV«­v»«Ýºíêëu½U}®¶÷_uV¾¶ªí·}jª®«µk]«uk[UÝ_¯¶­zꪷj»[z­Öû»×moµ«­¿Ûú®¾ë®ö®­nªÕuöëµZÕ_Z«z·_^õÛ[µW[j·Õ­ÚµuzªÚ¾®»j­¶Ûjõµj«µn»o¶µ¶Û^ÕmzªÛmî»[kVêµ{UµUUVï]w¾º·º×j¿ÛÕ®þöºÕZÖ«ºîë×Uv»u{UV«í«UU~Õº»ÖÕUÖ¶¾¶½uûv÷mºõ®µ·]µjîµê¯[»^µÖÛ]굫·Ým][V«[uW^·~Ûµ®Ýª·«Õ^«Û®«VµZÕêª÷{]}½nßnîµk¾ºíÞû¶º­nª·uv¿×¶¯öëmÿzªÕª½¾¶»j­]ým¶Ö«µW«WÝuõ®­½úÛ»ª¶¶»n«¶µ¶½U{¿µª­{Ý[U[U_ªµÛ]½jÚ½úÕ¾ým«Õ[öµö½Û¯uúÞªë¶ë«k[µZºíÖëkÿZÖµj«W÷}Õ[VýUïVµÕvÞúÕuõ¿ßk[ÖÚ÷¾¿µ¯kî·u[kªÚÞµº¯ßꮵU«oU׫ºÕWmuW«~®í½ý{^íkkZÛºÿ«jëU®ík»íõojÖú­ªºÛ·­¾×½k^­UÖ×{kµ[ýµvûoujûª­m­jÖë½_o_jíj«õum^öë}{ûVµZÖ¿oÖûU·v¯ßUíÕzÚ¾«{Z¶ÛÝZ¶Ûµ]V»íZ®ö­V»VÚízÖªõÞ«ªï­~î·×ú¶ßªÖª¾ûZªÿo«««ZêµûZÕþÝÖÕÚû]ûÝU¶Ý¶Õë½kWïUª½VÛUzýZ¶««Ö¶¯®õvª·ÝUz¾Ýu}ÞÝê»mUUÖ¶¶­]­_[½{]»VªÝ·U^íUÖµ[׶«ßm¶×»«Uuo궮ÕÖõ]VºúÝÛ^ªÿ÷«º÷ÚÚ«wz»®ÕW}wU¶ÖÝoª­×ûUZµî×íªÕ×»vµmýoW]»VÝÝÖµµj¿»«mµûï¯ÿÛV­Wë·n×½k[jê»õkÝûÖÝÖ«µÿºßW¯õn¯×Õ~ÕëuU«ûZÚÞýUo[Z¶®ßZ¶îÛÕVÕªÿoZ­{¯»µÝª­Õ×UkõëíZÛUu¯×Wµªí×·«»z×Û­®ú­~ÞÕ®Öµ¯Õ¿]ozöí«W«êµ]½]jºúµÚ®îÿnÛVí½V¶ëoíªÕ¯U{{^߶×uUmjÝm»V·ª«ÖµWª¶Úº»oz«ö·ÕZíW^Û»U»}{z¯þöÛv×V«UWWZ®µ­ÕªêëÕ[[¶½ª«VÛ­µëª·ÚºÛÕöîî«ûUÛõmuknµ¯­WÖµu×UëuW_­Uµ]¿öêßVõªõ¾·Û_¾í·×ZªßÕUõ_õ^¯·Z¾ªÖ¾ûVþÕVþªÚÕµ]]ªýÛêêÕ×[]«­·õ]Û}ÛõUµ¶ý{]ÝW½Z¶¯zµv«µ¾®íUÕ]Zëníî׫j­jõ­_n­Öµïnµv®û[ªµvßw×Uÿ^ªÛ·ÕÛn·õnªÚíVÖê××ß®ÕÛݶÚîÕ]UêµÕZ®Õ«jµ¶êÚ­·ª×[[uWj·ª¿Õ½UºÖÕ~¿uíwjªëW¿ªÛmº«õþÕºî­×úïê·ním·Õ«îí­ÕZµ{]]u¯í¶ÛkõµïÛ«½êïu}­×[uVí­ZÕ·w[úõv»×ö»ZëÕµ÷kW[úºÕ]Wµw«m½××î½ÝÖ®Õµkµ­ª­Ú¯^ö¶ëZª®Õª­WU»×íöõÝk[n×o÷«Úº»¯·¶­{_WZ¶Õ»µ¯»ßº÷êöÚýk­mZõv¶ª­Vízî··v­Ú×絛_on·Wï]­Z«ÝVÛujªÕW«zÕ_ê«÷õúêû^ݵ®µ¯ê­ªª¶ê»ÚÕ»jÞ«ÝïÚ«u¿õ_]í¶ÝUj¯{^Ý«ê«õ]¯[ª½ª«m½_k[ëëêûÕ®Ý{½ußöÝ­ÝVº«vûkÞªö»zÚÕú«µz»ºõ­o{n«Uû½z«Ûkní«ëõßëÕ{UU½ªªêÚ¶êêß·kw]j×]_·îþÕU[ííoߺõVµï«WUÚ½ÚÕÞµëVÚº×k]zîªîºªªÛÛ^í_WWí}þ¶ÕÚõ~«[mjÝ_µÕkÝï×{»n®ïº®ënÖ®ÖûõU]×½VÚï­·zê­½]«vßWV«Ö¾Ú¶×Õ[ºÚÚ·½úî®Õ½n·ßêý]­ovÕÿuZªªÛjÝÖªÕ½ª»}U{ö«ªïn»¿~ª»ÝUk®«·¶ÚÖÚµ¯»·­«Vý«»o[Úׯ[­¯ªÕÖ­õÖµÚõÚµZª®Ý~ªÛu[ýZ®î·omÕU}V½ª×¯ÕvºÕêý]]]uu»UºµZ×®ºÚîÕªÛ_UjÞ½Úµõ_ªê·Uî×ëjïªÝ{»×ïºÕ}{Õ_µ¯Ýw¾ëþ¶êënªõjûu_ZýêÖºßmZ¿zûÝ_UuV¿vºö­Öµ{ÿVµ»Õ«[êú·Õ¶õï]ê×kßzºÕí{U}z½[»m«]kÕWýÚ®·µ«½_m­Ú»}n®ßUu«¶îªÕjª»^×ÛêÚ·zµÝ}Uµ­µªÿÝo{V­ö¾«wj­u»UzëÕ]VºÕÕ«Uu}zî¯v×nªÛnÚ¯V½~êÕU¶½¶¾¿Z·[WVÛZÕ^íuu]Õ­ÕmÝÞ×­jµ«mjªëvª¯V÷®µU»]^­kjÞª½¿]vªªµ­ßÿ«ªÖ­·n½ºµZºï¯ª¯kÕ·~öêïU¶·ªûºë«U«Ö÷[º½u}µ×_Um¶µ[uý·ÿÛjÖß­]Õ®­^®¾«×kÝ}ûwª×jÖÿnºÛ×®Õõª¯V­Õ×ÕU]V®îêÿU»Wûu¾½Þ·UZÞúÛµ}[j¿V»Õ]jÖ÷mUï÷ïÛ[î·V·ÛV«jÕZÚ­¶Û{k_wkUªÕU¾ª·­»[[Ûwë­÷î¿U«]ÝVõîöµïݽÕUÛmîÖëÛ«}jêÖºö¿ÕªºÕº¶êÝZ½ëvÖ»îºßÞµWµÛíëukÚªÛÚÞµÿߪëmU_Õ«ÕU_oû_z½¯zÚ¾Ú®ê®õÚï¾û½uµªýjªÕµw½öý«¾·Ýoz»¯j½Õªßª¶ÿºõvßkUm¶¾õ^÷¯}Ýj×võ}·ö÷W^Ú»[]W[ª«kµ¯_V®·_kúêÿß}®­Û{ßmÛn¯½Ý×Vë^êú®»k×»­kv¶«­¾öÖîÕ«Þ»­Vª·«­k]}õ»[öú¾ÕªÕk^ÚÚûµUknõµuvÛmz»mû·ªº½Ö»WÝUÕzÞ«[ª·õªªýVÚÝýUoj½«Vý½[o«kk­m{»WêÖ÷º÷[Û}_ïvÕ·îÞ×_¾×[w^·WÕZë½ûݯ^«]U·«»ª¾ªÞëm®êÖªÝûm®ú­}uUu·ë]VªÝºÛ­Õ}Úû«[í½më¿[ÛÛª®µmVúë_^µ]^ÕkÚÝ^®êÛvµëëuU·wßkº¾ß꾪Ýn­Û½µßºõUêë®ÖõÞµ×zµU[ÿ]n¶«~÷UÕUÝ[]k{kÝW½«[ÝÛk®ëZÛ÷ëÝúÞª«¶·]õ«uªõV¿­]íÖµ·Uj­}ïoj»íoÚºëÖ¾ª×z¶µZÚÛ]®Ýª¾ªµÖªÖ­U½ßúµUÕUvµûµzÚºÕ«nª»ínßíîºÚ½®ÝÝuW®ªí®ß}Õû]U[mÛukU»_«kz¾µÕZÕmí½Zª­Ö­v½o»W_ªµn«wÚÝõï·Õ[wuµµõU¯^¶½Öö«ª­ªÚ꽶­¾ÚµVÚ¶µnºÝ]®ßõmÝmººÖí·Õkê«WjíûuU­^·}Ûk½jªÚîöú»U¿m[zµjÕ]UZ½^½mwëÞ·êïVÕ÷UZêëú«[¾««ëV®®×uu[Uk½v÷µîÚÝ­uªÛ¶­uíß½uZëÝW­[{Z««~ÕµÚßo¯jö½­_Ûýn­mjª½^®«ªê·ZµW¾Ö½þ«º­ºûªªíµ[Ú·u«k¯µjû­úõmj»Uu{®µuvª¯ëWumUÛzú»ë»ëתûµºµª»ªÚ«ªþ»õ~¶ÿj«VÝûêëVÛ¾¶­uvÞꪫþ®«ÝÛÛ~ª«¿ZÛõºßo[m못]ý»ºÕõªµ×¾«W¾ß·»ö¿Wû{µUª«ÝuWÕkýÕUU¶º¯jÕÖµ[jÚ­Õ­[굫«ukÿ{µk«^­ÚµªªÝª½ÕÕníÖÚÚ«Û«ZªÚ®ª½ïUîõëíkjºýmkßU¿^¿k{»Uv¯«z¶«Uêµ×ÝÝvÖ¶Õ~­{»¿ÖÛU½kªÝW¾«{zëÕkV½v½]]ªíkß«ojµï×µ~»º¶ýªªµª»mUZíÞ¶¾õ½ujõ{Um^¿Õ«»[v붭®µõkV­V¯÷µ»÷nÖõVµU­j½×Uvºµµ½×µÚµuwíW·Uv߫׷«jµ~íëj¯Zª»mµ¾öݪµïºïmýÛzþÕ~ªÕZ«µ^­Ý}Þª­mím­ûjÖ­ínÕnûÕ»×kj»wµVÛ]uÕuWU¿m÷­÷nª×Õ^Û«¾ïÕ^ªûWÕëvõk½v¿õÞ¶·«µm_uWªõÞ¾ªÚªõn»µ¯j®½Uo^ªõ}¿nµý]ªÕ×}·¶Öê«Õ«îÕëûUv½¾÷ëýÝ×wõ^íjë­~¯^ûuÚªõµuÕmªý]×ÕÛ[V·~­ëU]^þ¯uVÕUW[z¶µïÝÞꮺÕêíÕîÕ]Õú½UÕ¾º·o{Wª½]·Vµ­¿Û]õkûk}­ÛjµjµÝÝëÚÛZ®µ]«]ÿvöý½n÷«Ví¶ëßw®ëú¶½V®·öµõÚÖê×zúª»»j­«®ÕUv»m]UunÖêÞïÝu¶®«]ªûkkÕî×µWªÚûm«jÖ¯VÛÝzµo]j½¶ÖÕZ×ZÝ[¾÷ö¶ÕýWv«õWµU»}]U}[µ¶íªÝU¶×jëß}u¿÷¶ýÕ¶½U]oµÕ¶ÛkÝ}uïV¶®«u]zº¾¯j­íZïWWÕõí]µ«k½­íkÖ­­mëoݵޭõýµ×ZßjÕ­~ºµVÚ»ªÝVûÛ·ûv·µ½kZ÷º»U«µÿí÷ÿ½»Vª«u}}ko]nö­j»Ö­V­kU»kU}]V¾­z÷Õ­ºÕ»WU¶ûW·]VêªÖëï·«ýíÕmª¶½ZÿïW^¯_vê«Õßõ»mûî×^÷}»ÿUWªêºÛUµõ[Z®½Õ[_U꫶Ú÷¯Z½Ýö¿Wk­V÷Uªªßºú×õ«Wk­}Û«k÷»uj껫ںïÛÚ·½VºûwÕUµ]íjêÕ½®­u¯mw[U«×ºÞí[µUÖÚÖÞ»®Úëëꮶ­U^¯ûÝw]¯]«ÕÕµmÕUVºõ[Z«UÕ­k¯ëÕµß^µkÝ^»¯ª·­n÷µU[}VªÚÚûZúê·ëµk®µî¶«ªÖíÚ¯Ú÷êÞ·k}®«µkV«Uíµ_ßµ½jê·[þ«ßÚÝÕ]_«Öúý½¾­zïu½Z½»Ú»ª¿îÕwV÷ª¯ß®ÝUníÚõkZÕ_¯Vïwê­U[¿_Wî­ßuw¶ývûöê­»U·wÚ÷WëoU¾ªÕuïZ®ûz¿ë[jî×ÚÚºûºÚÞ­nîÕm}¿Uë«uý_µU[¶Öö¿V¿Z»íu^ÖÝßWÕmë^ÕÖºßjÛwµ¿¿ÕuÕu­m×Uö¿÷jþ®ÚÞõ_[WÝjת½V¾µoÛÛokWk­íëW«»õõkz½{Ö­·¯[ÞÖ»]VÛÕZµ¶ë·jßõ}_}½V·¯wU¯VµßµVµj½½«^õõUµv·u÷Õ]ZßjÛV¯]{[{¶Õ­Úõý~­V«õUÕ»Õ_VÖþºÚíªÛV¾¯nê·««ª¶êª¯]·mZ¯Ú»»®®¶µ]UVÕ«vï]ëZþª®­}]W·[­ÝꪭëÝj«÷¶­UUÕ¶­íÚ­[­Vµ¯}ªêªª»jÝÛWíö¿U­k]«×ê¶×UuÕ}·µwVÖµ{[VíuZÚÛÛVö·]kVßµëÕ­Uÿߪݭ¾Õªº­UZ­ïZ×úµw¯«Z×uîªíUUÛvµÕ{¯êï×ÕëWz¯¯n×jýÚëÿµ[U««U~ßëkÖêÛíojí_ªÞÕÛo]ê¯un«×uUwuu®µVµZµ[ßÕ¶Õmn«­u×~ý¿¶µuõ«í÷®µýöÛvÛkÚÖµ¶ï·U¿]v«êÛ­ZµkuÞµµnúº»Wj×oÞÖªí{ûÚÛÛ»ªÖýj·uê¶ÝZ¿v®û믭U[ÖúÕU}ßj¾µW·Û«}}[«ímÿjÿ÷Uj¶¶Ú×®¯WÖþ×}·ÕµêënëkuÖµ_{ëvîµßVÕwÝ_ª»[«zÛWoí^·uwºÝWû­ê»­Um[­Û[mV½ÖÛµªõ÷Vëj¯VÞ꽫jººªÞêꫵuZÕ×[{vÚ¾Öõö·Z·­]¾×[uÛÞ­ªûÖ½½¶êýõW¿Wª«ÛÛ}{«w«Uû^ö®«¶êÛ}¯ZÛýªö¾Ûµ_Vö¶ÚíuªÕÕ®»Võë]µßzª»¯]j×½»õµ~û«j«}ÕvÖ÷׫[]]¶ªÕí×­µ®®¶ªÛÝ­ÚnªîÛU­Vý{UZîÖ¯VêÖúÕ{õî»]êîþ÷»]o»½{ûu۫ݽWª¿­­¯[Ý]k½UººÞ¶Õ{­Uë[Vï~¯[«ï[ÛÖï{víu­÷ªÝ·j½mªµ}U÷oº»ÿ­Uj·mÕkõko¾µoW]þí[ÕÝ®ÿUm­ûWkï½½k¯Z­UªúªöªÚꪫku»m~ªÕuöªÕ[½öî÷­«WU·ª·mn»ªêë]»zöÝZ­kõÕUUßÖúíýÕ»Õ­wªº×jëuzß]UmUkõë]}«[ní¾¶»mjíWµ¶·ëmmÕ­ïêû­mÕ¶­êÕúÕÕWÕn»Ûmj­úÚõZúﵪ®­^½}«Ûª®ÝW½·í»w»Õn¯ªÕnÕþê«jµëÖ®µ»zêíÛ®ýº½uU«^º¯«ýêÕêûZêï}kÕÕWõªº­}ý^ÖºÕo¶úªë½Úë}mZÕÖêõî×½_¾Úªí¾¾ûUZꮫ}×Õ{µ¶·uëjßÕ^½VÖ«ÕWím­jµmíº×nÝk­Ujö½Uj«¶û·U[[[ûU{kmº«Uß[®êµk½[­mªÚý·»uïuú÷U^íu¯^ÕjÝ·Ú­[më×WZþÕVÚºÚªª×UmwÖ­võ¯jýõ½UêÖ»·ÝUWöº¶½u­U¶ªêÝï«Ýj¿Õï}ºú몶»Z­ëÛj×]më»Õë¯ë÷¯Uµ^Ú÷m]UuÝ^ÕoÚ½víjµmÕWUÕßU½Zª×ÕÕ­¿Ûw^«®¯U÷V¶ÕÕµõ}ík¿j¿ë~«]]ë»ú÷»WU^µnµzî«ëï­ªûWõW·ÚëUÛvÚú¶úÕwVíÖW«wÛ«ýoÿkÚ·¾×Õ}Z«¾Õv­UVÕWuëU{U»µªú®××»µµª×{­kUªµõZº½jê­êöÕýu[VÖ¯Vµnµ]jÚë[½vî«Ýº¯víj×uUýjþµ[·Ým×Ö¿z­µkîíë«z¶¿«»ÖݵnÖÕ×½í[ÛV«õ{ouzí·µÖµ»{×íµõUkÝ[jꪭWUÛzÞ­­Þëm·[j½Úö½nûvª«WÕ¯»«ªúµU]®ê·®ínº­»õw¶Õ½µ}V¯Vým×uZ«Û½ÝÚªß߯[­[ª×î¿¿Uíÿj·U¶­WvµW{º¯[UíZµöÚÖûí_ªÖ·Ý¯WU¾®­ÖîÕµêõk«ªµmÕ[îí½«n«uu]kÕ«W[]ZÚµ·Uª«unõuuj»UjµWzêª×ºíÚ«U­êªÚ¯ÕêÚõwÛ}uÛ]VëWÕ÷ªÞí¯Õ¯kºµU½þÚ¶­nÕ[µoݶµU­n»Uºêºþ­Ví·{^»kº×ªµZ«kÝ»®ª×vÚºû_ö­­[uVîտݵ½»w»U[u­¿j×öª«­«þÝwÝký¶ª®¯WmÕºµUªÛµjÝÛÕ¶¾­uvízµõjíÕ½ý­­}_Þí[µ­ZµÛUWVÚÕ{¶·êõýZÕ®Õê÷oU~»w­¾«÷ÕíZÛUjÖÝzïÕª÷·êí­{mU½þÖ뺿~«êík}Wê®»êê·]¯öû«ëý»k[¯¿¿®¶öý¯j­]·í]·{õj½õºúÝ­nÛµ{uëµ­Úõ]×½ú¯Z¯jµuV­}ÚêÚú«¾Úº½W[¶µU×íVëÿ¯U{õ×µ_U¶ÖÛ·Õ­­Wµjõ»Z½­Um}ÚÛÚµ­ký«Û}^Õjõý»]ZÛkm½]]VoUU]z½]®õW¯oÝÕ]Öê×Ûj¶ªÝv×}o­Þ®í{Uûí¶¯}uVî¶Ú«Vº«íU÷Ú­¾»ªÛßýoªê­¯÷­·U[j«ÿWWªµ[¶ëõ¿íµýÕzº®»UUmï[Õ·ú½}[UVÚÖ¾®µïÝ·[kªÛ½V­UV·j×U[µUÖ­ª®»ûouk__Þªõµ[×këmZ¶í·÷z×ëÚ½¯muÖ¿­u»]oꪪ®õµ]®ßwkZ¿v­Ûký­Vß«mÛ×Vªª®Ú«Ú÷µuZÛkmjºÝ×®÷«Ö¯­zõ[^»µê«ºµ_mý÷ZªºÕÝ[õÛ÷»×öõª·uWÛ[]ºÕVßuí]^¾íVÞ«W{Zµnõí_V¿]×îÚÕÞëÝnµW]UnÖ¯~Ûë·½nÕ¶µZÖíW¿½mWZ­WU][}ª¯·WÖ¿µm×­n×}vÝ«µê®Õºûuýjõ×Ö­UVúý{^ëëoUµµ·mUU[W×jµUÝõ­U«÷[U{ÿ·j×Õmº¯nﯿ­kªµuõ·«VÕVÝm½_Uë»kþ«­_½uÞëj«µûªªÕw_WªïmZõ«º»ïªî»®®«{ëu{êßjµ®µûªÖ¾ûÝjÕªúî­}nëªÞ«^ª»uw½µÛ®ê­W÷þÕúúíõmU®Õûîµ×Um¶·ë]¶¿WVõÚÖú«­¯ëÝû®õÖÕ[kÕíú«ï·mµVþê·j»j»êíµn®ÿ_ßuÞ«½«kêÛÖëëZ½]o×UúÖûU­ªëëûvÕj­Wµ«ýwí«kþÕÕú«m­ßm}ë­­Vê»kµj«ZÚ»«¯Ö¯¶­õzÚßZÕÕUºßvõ×UÕUoÛ»}Ûk¯¾Õu·«õúµU»½_ýÕÖ»«Õ«¯¯[×^¿½Ö­Zû×]UÚÚ÷ÕV×~×WUÚÛºêú·­Úê­Ö»­Ú¶»m«jª·{Û½uº·ßjÚ×k[m½UÝj·uÕµkª¶ëÿkí¶ÕWÖºµÕjª·­VíZêªê­ê»^ý¶­®Öíþ­V¯ÕW{vÖÖûínµ]]Ûíö­ûm[vÕu·¶«Õ­ú×{ZÕª»ªõv×Õuu×{µªªªÚ·«ª¾úîíÕmVÖêµêÛµwZ¯ÚÖªª¶¯»Ý¶êú½ÕujûUzµÝÛjõª­V«·uuUWµê«ê¶¯jµn«Zíw«µ×UW¾Ýõ«wzõ}í«mµv«¶µÛ­ïmz¶®Õ]z«ª«j«µ«º·]ëUjÞêûk÷vÝëwmVµkmºÕ·ê­Ýºö­ZíWmWêÝ«¶Û[­[÷õkïÞ»«×Û»ÕUzêÛ[vëUjý«öµ«m«¯{zµÚþ·Wêë~íê«ÿ}­®ê«v­km¶õW~·»j·WûW«nÝ­úÕëZëÞýVÕoªõu·¶ªªî¾ï[¶½¾»õm]ª«U«Ú®×íu¶ÛZú»[îëV¶­UíÝÚ­z«u¯kë^í[wU¶ÞÛ¶µ¶®úµ­×«mU¯ªª«»Öõ{ÝÛÕ}WmVÖ­ßÖÖëmíÕÝnÛWVí·_Õ«®¯]½×«½[ëWö½UZû½ÛïuµZ«¶µ»ÝZÖõ®Õ»zÞ»zûí[Uê·¶½V¯»¶·{[ªõ¶·Wê·{®ö­[ZÛuZ®«VºÝÚºÚ»º¯¶½U¯»êÚëµuw[z­ª«mkZú»]ßÕ®öÖ«·U­VµWUu×U¯ëUêꪾ«íZ«­Õ_ú®«U]{]Ûª×^ÕÚõµk}kíU}Uw»_¾ª®«uµVÚÛ­íj»×ÿ«ê·êíoÕºêÝ]Û[vª¿ªªêëzꪵmU­]{Z«k»ßUU¶µ^õÕW^ík­«n®û«kµ½]÷­®¯]¯nÞê×µ÷]ª»U¿µVµª×{]^µ¶µ½®÷Úµ[Uþúê­·]j×UÛ[ê·«ªîºÚ×Zî½öÚ®ý®ª«jö¾¶õwmvºÕ½Ú×ÿÚ®ªÕ]U­êÛZÕµÞÚíºýZª«­kZ»ën»uVÕ¯kë]õê«UWÖºÚºßuêëjª«íú½VÞ¯ªµÕmWZõ¿kݺ«í«·U{Û×oÝ]ß[êÝÚªµÚ¯uWß·×n¶×íUU}UuozÞíUíö®þõn·ëºµvëÕV½u¿µuõj»v×u[ý]o×nÕ½½[ö¶ÖÕzê»í»ûÕ­j­{jݵպ»×jÝzµµöíj·jÛzþêÛõmV­Õ_ª¿jªß«koúÖÝív«^Ú×k÷×_ê¿öýZýU[úöª½¶ÕßÖ×WW]UÕÞ¯íj®¶Öµ·U¶Ýª¯·VþÝ]ïWW][^î­þ»µz½¾¯®êöºë½ªïUW¯«ÛÞ«»Uwu®ëU}WVÕUmíÖúÿUZê«ûµW^ÚÝÝ]]êë_z¶¯kmýªµÚÛW÷û»mW[vº½«í¯WÚ­}[«wÛº­íëí[ª­Þ»­½úöª¯¾ÝûmÚß]ëj·jÿ]Ví®Õ_}UZÖÕn¯_Z»µûWû]UU«êÖïÖöëõß_¶Û]WuîõûuÖÿk½¿ZÖõkÝï[­k¯Z«Û^õ[]_ní}{µª­^ª¯·½«Z¶­»}U»¶ºª»~Ú¯Vº½ZëkUÞ»VþÕmwV­Wõ_kV×{Öý¯}Ý·»Uj¶Þ¯nþíª­jê׺ª­«íW¿»«¾×Öµ®ëzßk­®·]®µÿ[­w­V«ûúíj·ZÝÚ®µWZ½^­k®Õ«uÕ{­zµ®ûõÚë[{zªÖÛ]núªö­z­­Zÿïzª×ݯUWu_µk}½Ýڶ뾭ví[uVÚÚõ}^ÕÛUjÛk{uZ×][wun®õ­oUºÛÛ[«íªº®·Zë¿U[Z·¯vÚ¿VýVí[W»µÕWmz¯_Þ¯[Võªê«uÚþ÷®­Öï×V®÷»·ÝªÝVÖë[úµ½ö«V½_×kõª·í[µW[]]­·ª½oÖÕª¯úÖû÷Vîõ]½»]ª®½¾»W½U磌µõW½nûUz½»Z¶¾×UÖ®Ú¯j¾í{Û]Úëo[µm÷ëÕZµ}Ý¿jÖÝUZµºµ[k{ªõZë]uZÝUªþ·Z¾µÕ×UZÞõª×¶Ûº¶Õoß»íî­Vë^«®ª·¯ª«UVþ®»×k«Uªû®¯W]Z½ÕõÕwÕU¯Z½U¿UÕmºÕ]ÕV×÷^»õu½kj÷jõê®­wµ¯Vûµµû®ÿë¶×U]ª«u[]Uº¯w]vÛ]V¿õWª®î·kö­wuUWZ­ÛUvª·Wjþï[­ÝÕþþß·ZÛwÛjµZ·wûï][{۶׵u]µ»VÚÿ_Zº»¾¾Ö·½k»×½½]­®¯V½kU½Õê¿jÕW­Þ»õ®ÝÖÿjíªªí·míµoz­jÚÿíwûuzºÕÝV¶êíV«_ýÕZ­w»Ují}WUïº×j«^ëúú·Û·«­®µÝvª¾­­V뫵ªÝö½Þ¯ßZ­]½ëõzªµªÕ]ߪë¶÷Z­»UU«nµUÖ¿w×]­ZÝý[«ªÛVív·V·®íuÕuVÚ¯ºÛUÝjªªïU¯«[[«ªß[Öµö®ö­ÕvÖÛVÕµ­ªÚý¶ú½öªíjÛuj«V®êï[kÛu¯ªÖ«V½z­«ëº¶×ú×ý÷Úß]ªë¶µn¯Vµú®·µ][«unªõ·_÷_ªµ®Û«{v®¿W­j­wîßZµn߽ݵ¯­Ú­V®ÛkVÕUkV­zßׯ]{¶íÕ®ºÚþ¯­¶¯në}ê­U_U×kµûVï­ÚÛ­ÝÖ¿×[½^Õ«U·×muö몯ww]ººõê»jê­®µUVÖ®µÖú¶×]W÷×~Û^®«Z®µµZ½ÚÛöª¿¾¿µUî¯m]­¿jýz¾õ]ZÖµ]nªÕ«WUºªíkÕm«ªµUö¿¯zö«nÕÖªÚµU^ºí÷ÿVë½[½n­]jê­Vª¯{­k÷vµª­ö®Þ×½µu[ªÕZÞÚöª®ß}úªîµíuµÖ­u®ÖÖíV­î«mWý¶·Uk÷«uÛªºýí®ê­ê½·ªîýVÝU^«}Úº·mÚûjý[uW¿ZÝ·ÕUjÕ{«µ]]ZëWíZµ¶ÖµíuZÖÕjõ®êµ¿ZÛºëú«­]÷^¶ºÕW«íví«koj®ÛkÝ­júÚ×íº­ZïUöºëVµîöÝj½UUÛVÚï}um[ªªµªßUí«Wn×vß®ë_WnµUmu][¯V«Uuv÷õ½ª¯ÖÖ¯Û^·ÕªêÛW»ÖÕ­V½}U¶ßêºë{ªïîë{­oúÚº«WªÕ]ujÝÞÖÝëú«µµ­­W·®ªëWou®º¶«j»kµÖïu·{­wë[Ö¿ßZ÷ûjí[]UÿZ¯Õ]«ï¶ý¶êÚ«ZÕ×wµµ®¯^ë¶Û]UÚïݶ«][¶ê¾Ûíª­Zºê½ºªÞ®­ë^ª­Û]íkª¶þ×õ[º¾ÞöÛ÷nÛ»zïíz×í·ëUU½j®µÝÚ®ú×j­Vö½_vÿ{×ÞÝÖ­­ªýW®­ú¶®ª¯]µU¯_Wm®ºÛkkõ[_VÕWvïuê­º½ú­×µ[îÛuUÞ«ÕUºêªëU­Uk­µ[½¯UVëZ®½µÕº¯ÛVµµj®í[ÚµkU×mµ]ªöû]U}êíUz¯}×Ú­¯kmm×V­W¶Û«oÚµZõÚ¿V««ºÛ­×ÖÚÞÖ»¯íÕuU®ß{z®¶µÛÚªõk®«öÕºµZª®ÖÞ»wîÛÞí]ºªª«wU]¯~ëkÞ¿Uê궭«®öýZ·zÝÕÚµVë]¿_vý]µÞª¶ímW×ÚëµµwkuUýµªê»Û­z»«W}­ÕWÚµnªµjõ[­»_[{^½vÞ½Öº«îµUZ×^×UÚëUuû]«½jûïÝUî÷«]j½öí¿«]w­n¯ª­ÝmvõÛjÕÞû»ÛV­«k­j­j®¶ÚªÛmkÕZ¯zÛªëÛµ]^ý]ßUwÖíjÝuUª®ÕªÛÝ«[Õ]ÝÞµZºûëm¿êï«íª«]ïmVª®ÛZÛWw궵ëµê«jªÚ«m[¯ß½ªÛûï]VõWþ×UíWjëö¿­¿jêÝZÚÝVªëmnîÿ]«ªµ[]º­¿u·µÖ·«U×ýªµí«ÚÕë­WnÖ»uöÚ»oZ¿vµoWUZ×­®«­Ûm­êµ­­^ÕU~«U¯Õzõw»µZîêÞÝÖ«uê«Vµ½«·»Õ]U«ºû}[VµZ«¾Û_ýjú«½¯zµmo®õÿíÛm¿¯W[ujê½UßÞ¯ou·Öª­ê»Z®ý®¾ë­jµW]úßUVÛ«V­_êªÚú¯Ö¶µ^­}ª®®­µ¶¿µ««Ý­µ«[­k~¶­«Uë~­k¶­ïÚ×­Wþ«î­»Öª¶¶¾ªÝ^î«þëµj¶êªÚ«»WVªÚ»ö®®ýkmoºêíU®½Z·ªÕ¯ÿ×ëÛÚ¯Z¯úí¾ÕZ¾×jÚºõªÛªµ×ݺÕ{ªÝk­¾ê«jº®½_ÛWUÝ×Vªêêí«U_Zº­vª¾ªµÖ¯V¶ëUõª÷V­Uï]n·ÛV½¶¯[uý÷êªÕýÛ×omÞ×níU­½Uëk×u]ºïuÕmµzýªõUÝuíê­kê½nêúÕjß½ºÖÕªµýv½Ú¿Õþë_­UÖ»UÞ¯ÖÚª¿Õµ_zÚ¾ë«íª½µWZª­[½µÞÕ[Z®¶ßµjº­®ºªÕµUkZÖÞ¶»«VïöûkjÛÛ×m®µooÝÕWÝûo­zíºµ®½µõ®ÛªëVªþõ÷]·¯Uõuvëm]ZÚºõuwU~«W«uîµ¾·Ú·UµU}]¯µÖ¾µ]µª¶­º½VªÕëz·mÞ®Û«ªî¯uû]µUÝ­­×^Õª¶Õ¾õ}W÷jµªÕ]uU­Vî­UÚ®ºµjªµzÝUn¾ªµÕUÕݵ¿¯uW«V­ëï»mú­õí]ºß«ëmm^¶þªíþ÷¯VÞª«­z×Z¾Û^ê×kª»Uv®¿«­Õw®µ^ª»UÕ}ýwW{¿komýë]^µª­Õjºµ¯­UÕµm­­·V«ºµµnÛ^×ïuú¿ÚþÝ÷]µVªíj¯oêÕªÛk{WÖ¶êûª¯o]×nªö»ÛUu­ZÖúëoo®Ú»¿««ªÖµúûm¶­­Z­×U¾êµ}Ý]V®­UÛ}ÞµÕZÞ«¯®ªíµozյ믭º«ÿú¾­jím»õV«zª¯mÛë¿_Ý[ÚÝ®®«o[«·uoûjÛWwÕ®½Õmkꪾ·Õ­ÞµªÖëíßëUÖ½vêÝ_ÝÕªï®­ÿë»[U»ÞÝ]UÖ»»µýÞÖ¯vû^Ö¿Û­µºµmÖ¿z««Ujî«kú®ÖÖ®¯^î·V­jÖÞíßêêÖ­µj¯õu××UÕµµ·[wºíUjÕVÛª×V­Ûk»m[u[ýZª»µ¶®¯­uê»·ëVÿ^«ëë­_ëÕÿ«Vª¯U¾·ê·®ëUU~½»}]oªªµ×ïڿߪ¯Ú«Õ­^Úö«íº«j®º®µê­ÝëU]]VÕêêµmW]·ýê×ë{}®õ»~ªîêÝnÝZÝ¿U¯·öº¶­kï½{íë{êß¿«¶­÷÷êµê­jµ{kU{}v«ý¾«m{¶Ö÷êë­½ªýûm¯µ[Uþ­¯®ÕumªÖ÷~­UV¶ªµUkÕm¶¶­ÚÞ»Öºµm}]uëÝ_ÕýëÛ}¶ÛVÞÞ­íUZ«úîµmj«n¯ªëö­ZõëµÚßÕÛÕ×uWkVºí}Vûª¿Ûzµºÿ_{_]uëÝ·ªÕu_n¯­¶ûV¶î¾ÖÝ[Z®ÖíWU­[U®­uÕ_]^Û[÷«ªÛ}Ý­{v­Ö½Vö­^ûµµ]×ûUõ««µWêíjë_k¯j¯[«ªê»[õªö«{Zﵫ­kjÚÕvµVº­ªí»ßª®ÕzÕUW_¯¯íÖÖ«µªµW}î­{~­um߶½[z÷ÕUV«ÕÞµWµö×U½Õ[ÞÚ¿UVÛþÚµm{oÕµÛUuwë­kÕ^õj¶û¯«m[uöÞªÚ÷®»mýªÚª«]jªú«õvªªÕõºµ¶¯ZµúÕû~Û¯WUWW½¿öµ_ë^×Z¾«mÝõ¿Ú«{U¾ªÞÛz«ºÛuVî×µÛÕZ·­­WÕûzú¶¯µª·½u_m®êþëU}Õ}ªýnõꪫµ«·jöîíªÖºÚª×]íkov½U«v¯Vû«u·µWuªªûj­{«¾ï[µÚ­ÛVõ«Ö»U­×ׯ]Uª«ªîÛÕ®ëíZÛªíºþ½V¶ý÷koê¿÷]Ûª½mëVºëkúÛõ×®ÝUêªëÿ¶»om·õUuUµ«}Võ½UuvÕ®ªÕ«þõ»ý]ZÕ]j¶µk®Öî¶Û^­]ë^õ¶®º»µUëZÛZ«­U^ímU]Z½vªíêÚîÕk¿ÿuw{_ªÝÞõÛ·]ª»j×ÕZ½z»jêêªÖö»¯]mU}××Ú×]UëU]VªêªïºõZꪭ]_o®­«ºÝ_ß­[UuµÛzµÚµ[êëî׫ëöÞªû»W_uõVººúï·¶Õ]º·wõß_÷Õzª«í¯¶Ûj½Uz­m­µ«uÖê«Û¯Vß]^«¾«jê­ºÛªõU×U·k]WZÚ½×]ªúµk¯­_ýêÝ­jÛo{ÕUµê­_ê½Wëuê«]ªíªÿ¯UVÖµÚÞõ¶ÖªµZ·ÝZ½­»­Uõwªë_}_­¿uUV«÷z»µVë¶í«ªÖêÚë«÷»ÛêÞÚÛûV«{ý_õknêÝëÚ­®ÕmÚÛµo^ª­jºÕ®«k­¿{Z½{o¯zîßꯪº×n®ëmïVµ_«[­ÚÕ¾Õ¿{Uoªªµ·Wj«ëmZª­«Ûv¶Öº®×ví}µU×µUUîõvׯvë­îÕÕuÛ[VÞµU¿¾ºî®ëZ¶õoouµ­{u­U×½Þ¯õ^×­·ZÕÝÕW]mmwjï­ëÛîÚï«]êµ­ÚÞ½U«¶¶¿mõÛv«µU½ýÕj×Õ­kýZ«ß[]oÕ뾫µ·]ª¯ºÖ½¶¯ÕUkwÕZ«}V¯íUÞÕÚ¾­WïZÖÖ½î×¾µºö«µ»W­í×{þ«m«ý_n¾»uëV¶««]«~µWUë^®ÕWUöª¯^ª­UU¯¶¶«u¶ª«ÕjÕµv»ÿªÞµu÷Ú­½~«u÷mW«½uµ¶ªî·î­[¯®ö­õV¶ú»¶­«Uµnî·W[oj­_[UmõuªßVÖ·ªï×þ»¯[ZëÖÞ­ÕÖ»¿}Õ½®µÝÕZº­WUzú¯ïw]½×u·vû_½ÕU­ªµ[õkõ_®­Ú«íõõßU¶Ý]^¶î¶í«w÷Ö¶½«ïÕuµVÚ®·uVª¿jº­~ÖªëÞ­­ª«»ªíWVÝV­«]ö¯ZݶõwµÕ­½ÚíuWÕmê­Zºëªë껺õ­[U­·VïöþÛj×úº®íë­w®½«mÕ÷»·µj­k[^»»~º«uujµ^ö·úÖõUí{W[o«]j­UïÝmjëµoÖÕ·V®¿kíuZÕÕv×UVºî×]mõw¯ªÛÕj«kU^Û{µvêÖõ]÷ÛUõõjõßÖ¯W»uÚý¯»««¶Ý­[»_굫n«Z­]WõWz÷×Õ¶ïö®®ÝUnÞêÛê«uº­_ª¯_ê×mïWuUÕ]w]_×n×WkjÝ^»ûumvê×úÖêû]mßUmûm·mn¶µk»úê·uíïwµº®íVÕßW½«UÝUÝ­Ûuíªµ[v«_Õ¯Ý^ÕUëí^ë««êëßêÕU®¾Úªõ{¯úÚ«[¯VÞ­[vû­ommUúÕUjÚ®µUwUoWë^¶ê®º«UíïjÞíÕÕ}Ûõ]n»«m­ª¶¶­Zý_WªµW]]_«mÝW׫úëwkö«[UUW×[Uoêë«­¯½omz­kUûj«ë]ÖÚª¶ÕukWjÚÛõmúÝWWmm¶×Ýþ­Zí{U«¶ªîº¯^Ý{·µU»Ý[U_WouþÝ«mÚïmV·ö­{v×u­k~ÕoµÕö¿mjª½Z¶Ýµ×½mÝzµ[Ú«ºÚÞõ¿ê½]ÕV¾ºÞ­jßÿvݯ¶¯¾Õwu¿½mjëڪ뫪­º¾öÝZ½mÕõý×í¿UëÕëkÕ¿µ­]÷ZÖÝvß·kWíkªª»Û×j«~×­õU¯{­«o_ÝÖë×­mÛW¯kmZëm×ÕUݫݶֺ߯۵jÖ½íjÕwê¿mm«õUÝõ«­UW_Õ¾ªï­_Wj­®ªÕªÝÚÚë{ZÖÛVÕu^Ú¯z½nªªºªþªÕ]µ®µ[ªõj­^¯u]ÕUëkª·îªê«¯ZÝ­jîëß^«W¯U~­V»vÚªÞ·u­Uºë[ÕªínÕ»Vº¶÷êÚݾ·íuzºµ»÷ÛZÕª¶¿~û{»«uݺ«íÕþÚµ¶õµºÚþöµ[Vµú¶ýkmÖ¯UWµjëUÝmë[^½«ïV®öõz®Û_«ÖÞ¿«^ýÕo­v»ßªÚ««µÛV×Uõµ¾íêßöÕV®êþÛk[mêë«UÚ½ýj¿kµWvê»^¯^µnªÚëU®Õ®îþ»]ꮽëµoW}{ÝVÝÖÕjÚöµ¶µj·]­µ«m^ííWjí¯U}ëVû¶Õ[­îëm¾¶ÕW~½ÚªÕ[î»WWíW{[oý½kÕº»{­WZýVªê½Ö½jûëêÚµ®Þ¾µÖ·w]u]WmjꪪëÚëZõÝÕÛÖµ×Z«Õ®µm¿mÛÚÕnÕõ^«úÝ«µ¿«µ·o^ºê¾·ú½Õ_Umk^«W«î×ûv«kmou­jÛÖ½Un¿[Z®þ¿êº­~¶¾íkÛתõ®ÕUúþÖ­[VÖ«½Ûêû×V½®ßnÖën÷mÕ[u¯¶¯×ÖêþÕ^úÚ«}«º½UõzÕ­_}¾ë{µ÷·Vݵú×ßzµz­ZÚ½ÛºÕV÷ÝU«m]ß]¯UµUUíZªÕëÖúÕoUûuµUU¯¯U^Öë[»Z¯¾¾«Õ^µ·ÕÕUjõZë­WV½ZÝV«m½Unê½km¿Ußm뮶­½mzÛÕkýzõVÕ¾êºÚÛµÝÕÕ¿»­w[ª×¯Þ×µ¯Ö¶½V¯­v®ªï][«Û«]ÖÝUÚ÷¯[{Ú½U«U^·«nÚ½U]­níjï÷uW­nÕm«nêõ­ÛV­[]ÞÕëVª½nÕnÿþꫵu×ê¾Ö·]ë}[UµU]mvªÿ]ÚíµZ®»mµ·_ZþÕÛ×ú¾Öõ¯­_VÝÝ}ZïWµ¶÷÷}VÕj»«ë_mëz½oÚµêÞݺïîµµ}»j뵺»Ú×Wî»[®µ]»]¿}­k¶­UÖ¶ÕÖÛ¶µÕµUíU®ºë½n»mnû»®µº·×mw½­mµ½mÝUm¶»Wª¾ö®¿×«Wªí^·ºëk®í¯ÕZí[^ºÖõuõ]îﵫ¿ZïV¿j¯jê¿Vµ­nÛ¶·VµUWZ­ÕozµVú­^«ÛUVª½Vú»ÕUj¶¶ÚÛ{ªûª·­×ujÕUí}UýZ×µk]{ÛZþ·­ªµoWkûV«VªÛíUV¯}­oí½kkµ«»­Õ}]]Ý[õ궪ڪÝëVªíÛ¿»z×w»¾ÕkVõuµ»µ]mí[{ûmµ«k­UUZªµu~­zÖþꫯVÕõÛwWÖ½Öþ½ª»Õ·¶¾ºÝUêÕº¶êªÝ÷ª­ª×mmíû^ÞÕ«[·uU»ïzº«¾µU½ku½êÝwÕµ»½õW·u×UÕ®½ojúíwkÞµ¾º­¶ºõ¿­Õ­Õjûu_ªµú÷jݾëu]k~êÕ{V÷ßÕ®ºµª­ªª½ª»kVÿZµÕ«ºÕê­Ûjöµµª½ºû«[^õõ»[]m}«ÖíªÝêÿ[Õÿuª¿U^Û­_½ë¶í}jÚÞõ¿ºÚÝWUV·wW¯ë׫¯×«¶ªÕkÚ«­ªÝVµ½Û×í¯V«Õëþ­­Wn®Õ[Û]µWµWÕÖÕVÖºßûÕÚíZ«^öª¶î¶í]ªÕ»mª­«^«Þ­jïÚÝWëU_[j¾ëª­½ê«µkV·®¾½k{µêª­zµm}µU÷ÚÛ]¿¾ëuª­kÿ«[Zß}»uªÕm·»µßk×UªÛ]Uµ{½m^ÕmÖߪÚëÚµ·ÖªÕ·Wµ«¯µÖ¾«º½z÷múõ®êê­×Zªû«µk{mÛ»µU}[¾ê¾öúí^í[mÚªï}kkj»k­oÖþªÛ­wUûÚÕUÖîÝ{^­köêõkëþ­Ý·¿µõouÛVÖ¯U·Þ½÷z¯×zת½­½íV«U}V«mík{}í½V¿«m¶×Ú×õZ­¿­]÷«Umk«n®«Úêµkuû[­Ý[«uºµÕkU}Öݷݺ×Zþ«µ¯º­}ßÕö¶Öî­ªºë­µª«õ®ªÝÕ]«ºº»®»^·[Ý»[]Ûõ®ßVª×Ýúª·ÚÕ[]mÞ×Û~­­[UÚÖºûuU«{Uo[Õ×ÛUýw{í][wuë}V®­½¶ª­mõÛwWw­zÕ«Õ­ÚÞ­uZê«jÕ­íÛªÚúû{ºÖ«®ªºÚµmkWý·kÝ­Zûo¶»ê®µÛUêÚÖÚ·µ®«j«ozíU÷m·VÖªµïVÛªÕWÕÿ¯í}õÕkúÚ¶õ«n½Zª¯ªÿ«·ªíß¾¶õV¯kk­U_Wv­kkªÕëm^Öªî׫[¶ÖÕÕ¶»µoµ­kmꪻÿÕuvÖªê­w]~êíëõ­«­¶×v»ÿ]ZÚÕzßê­vÞºÕUvÖ­Un·uëoUu«ÚÝkª«ÿÕ»z®ªÕuUë­þõµw«[Z«j¶Öë]Öë×ÕZ»mkV¶¯[^õÛ«U]WíW[º»«Z­Ö¶­}U[«nÛjÞëVÚ®×®­k®¿_ºúêÖ­mmuêûuªêÕmz·ý[µµ»®î¯Vµö­n»mûUj×uZÕuëU¿ª½[Vª­ßÛÕ­Uuµ[{Õß×Výw®½­«×_µWÛwþ¾µ_ºÕZõUV¯W«[ýw¯­µ­µoë{­ÚõZúÝíꪵª½ë®µ[Zº×^¯ö×Ú»uÝm¯¶Ö궯µõjý}Ö»ÿ½Ú®õkoUWmV«V®êúïU]UUÝ×ëV·µU½«Öªµªºµ­Vû»ný¶ºíݶÕw®ÚµkVµ}UµU[kv×~­¿UÕ«ýën¯k}][ívµUݽê­úÕÕomW]®õ«­öµíÚ¶¾î¶õVµÝÕk_ݾúµZê·[ÕõzÝw­»zï¿ÕzÕvª«ÕµÛïm]Ýmꮪµkku­uoUuªºÝ®½Wu_m]ßku¯WºÝÖínî«z·_«öªªªÖï]ÕwÖ¶êßµWn¶­w[µ½Ww¯}UjÚªöíÖµª¶Õõ»ÝÚûµ{v½z«Õ}mumv¶ûªõ]V»v·][ÕVÚûUouÕ{{~ÿkzÝ[[¿V­¾¯{í»kÖÕ]^ëz¯ZµV¶¶Õj»mzê¯z¯{«kÿmVº­ëu~ªïk»uª×ÕתÝïWªµjõ[mok}Z»uz­jªÛí½nöµëëm»«j®ý]«m·U^Õo®ª««ÕWuõUÝݪÕ^®®íëëºÕ[{jêíïý_ZÚ¿Vë[ªµ_ýZµUm«­½{jÕoµº½]¾îµªÖõouUk·kÝ»[kúîÕVîöÞ·^÷·U«]}núª·v»Ú¯êßµ½Õ­wUU[·U¿¶Ö«u«W[uWûoºíªÝVµn÷m}ê»uÿÚµúÿ®­u¯ýꪺ¿úÕö×]ÚïÞ·jýWj½ÞÚ­õªÖ»[Z¶×ÕUkë}­^¯z·ÛUõuVªÛÚÝú­ïÕ}ë®ÕÛ[U÷uªêõº×nÕvëªÛmkÛnµ~íkZ¿ú®÷¿V¶ªÝÚ«~ªÕz¿íï]mï[V­ööÕvûÞ½jÖÖ®«×­Õ­wm×U·µU®½Ví÷ÿjªµ~µmuÞ»Ú¶ÕÕ~öºöªû»}WêÝk]z­«}j®ÕµW^½UZúö×¾ízªê®ºëºë[U¶»[î«ê×½zÛÛ®µ·VëÞ­j·om­«ëWïýö¾­µooUj«Ö«]VêýµZªÝÖ«ûW«Z«WõµV¶¾»îÖÛ»oÝj¯»ëu«ûnÕWµuuUÕmWÖë_ªí{¯Vî­®«[uvþªÕUúµm­kk}í}ªº­µ¶µÚ¶Õ]^ÕoµZÖ¾·¿z¯Zºê®í«^®®µku»jµm®ý~ªýÛºµZ½«µª×w]~­½þ×[_U{Wjª«}¾µZín¯Õ­uVßµ«êö×Umz»ÝÖª÷í­î­{n«U«»mm׫µ®­m«­k¯WuûZ®®«Öª·uÝZº«jÞµÕ½×}¶ïëíµûVêÝêµuÚïjª··÷­}ÿUnêê¾û¯ú׶֮»ýÞÖ«®õU{[­Uvº«­uU¯W«ZÖþê½Ö«õuuUZõÕUZ«u»]uUÕë¿[]jµ~í{nÝU[jõU[õíþÕ^½¯Úªµ¯z»WÕÝÚÕZßuªÕµU{¶¿}ªõu¿»ý¶×îÚÖµ^Þ­[n»[»¶·þêµkÕ·ëV¿uUm]Õ_¶Õw][u׫]ª«{ßõuj×^«ªíU¯Õ_·m­ªõíªµÖýZ­í﫪·WvÕjÕ{[Õm}Uµm¶ýUj÷[­îÝ·½U_ZÝ]·ëW­nÕmzÖÕ_kUkÕª«W_më»Ý×»_­VßuVîÖ­ÚúÕ­knû»j»WVÖºúöݽU¿¯«ë¿uUÚ»®®®­[wU¶ª­ÕêêªÖëjªýõUVý_WV·V¶ïkumv®«_ÕWjÝ]UV·omj«owíîÕêê½Þê«mýí¶·Z½uVßjµW[Õªííݪµz»U®­Þÿ­Z¶ªõ¶×zµ]]¾Ö­»ºªõ×í_Uµ®ê몫W¯Úë×ë¾¾ÕÕ]ëUֶ뷶ßïÕíÕ[Wªê½ïïöµëý­]öïúÖªÚ½v¯ÿZßk½um^õµîõV»ªÿºýÝ«n«½k_w]mõí¯­U{·Vê¯_jÝí­^ëUµu}Z­­½ZýÞµ¶î×jîºõº«Vß]º«»nÞÖ­»v¯mýkVµ[Vë[{n·­«zí«ý·ïUýVÕ^Ö¯mV«½Z¯U_Õ¶ª­_Wõ]Uo·×VÞ×Þõ[ëêíï_Z­^Öû»_nªµûu×믷vÕW»Õuj×]kZµ½­µûnõ¿mUvÕÚî¿WÚ½mj®­U­W]ußÖ×ݪ֪¯®¿Õ¶«Uª®ê¿«Uº«WÖªÛ­UkÝëëWUûÖ«mû¯öÚÛ¿îÕÝ{}½ZíUU½uv¯µ½¯·õ~ï_¿oÛ«·«Ú¶ÞÝú¾­knª÷oZýu^»½þ­^µukUÕ]V»oz­úêë}UÚÕZ¶½Ú¶ª¶ÛÞ·v¯v׶ï­w«}öÕÕZ¯[«k½]]ÛZÕ^­ªíݵºÛí[﫽{«[oÕkwî½mÕÛonº¾¯¶ëÖÕ¶Ú½·«^¿«­ë}ÝZ»WÛVªíÝÝjÛj¯µmj×­µ_ëvÝ®Öú»^«[]ÕZ­WVïz¶÷«­}ÖÕZ¯ëµwº­wm¶þÖ®×ßv¿õZº­WuÞ¶ÕWõß]¶·¯mmjõ×zë®ëºµÕýµkººÚ­ëuWUZ·¾ºÚ·½~Öíúµn·[~í¯kÞ÷_kkuZßVêíoV·Õmv«jÝ}·[»VúÖëuvõëW¶µ®¾ª·êÕêÛëݪµv¶»u_­¯¶µ_¯ÿzþ×_^Õ[_îÝ}V¶¶­ý[UZÛÖº·~ë«VÕoUm_këZ­ûWúÝuÿêÝÝ[µw[Ý_¯«^êÕ{[õVº·UÚí¾µUÕV¿zÛzû{«­kõõ®úõÖûkVõ]÷]«UVõߵݿ»ª¯¿ZÝkW·[ëWUj¯VÚ¯µÕußZßním­®êÛº«Þª¶®ím×jªª®×U{Þïêµum׫kZ몫®ê¶¶úêº÷vµ·[öµ¶ëõöºÖ«º¯kW몫U¶ê­WU}êýjíöµ_kªê­mª·}mV¶Öúîßöí_j«Ûõ}µµmëÛUÞ®µwÚ»Vízµo¶·µ{¶«­UnÚª«ëªÕUw»¯Þ¯jÕõUVýj®·Uí[Õ«k]W}Wj¿Þ÷ÕÚ·uö×]zê¿uZîµÖíU¶û[ºÝUV­¶«_íU»½]mv¶ëª­Õõ×]mº«VÚ«VÕ»[­®ªª»·j×uZ¿ýoÕ^«­Z¿[Õzªºªªýj»Ví½[ªÕ~Ýõj×»[jÕï®Õ¿Z»º¶µµ^êîÖ¾ª»V÷·ª½]½êÕWk}íW]ZûW«ªªªÝª½u÷UjÚ»Õí«ÕWkV­ÕÚÕj¾ö¶·®ÕêÕµ[W·Uwv»W·{u[Ûªª»ÖßzÛõZÚívÕ®îÕ}µÝ®Þ¶«]ªíjÚÛ{ÛZªýkuU_ú­V×oÖÝzÕ×WvÚµªÛVº·¿Wkª½kZëZªíkûjÕ[uÕmªößÕ«_Õ¾«Û»ÿ}Ý«o««möª»ZÝׯúº­]kµõ­vª®û]wZ÷îî¶ÿî»]¾ÛmZëÿÞúêßz­­»~·ïªÚÞÚÖ­¶õjªÝµ[í½]jîµVï¿®ëZµ¿¿Uª¿mU·ßkÞ»¶ö­ýöëZÚª½kU[º«]õÕ­ªõª¿·»÷{þûõ~Õ­µk»«vªíu­þª÷Wµ}Vµ[Öí»ï½º¶ÞûµUõöÕ·»oUþ­^­¾ëªõ]Ú­mõUªÕµ¾ÝÝ«ªÕÝ붵k«kV«U_nÕjÛ}¯V¯ZïU^Þ·_{VÖ­¯ªÕ[jõõ]jª¿õUVßVÝWmUmÕko½U­¯¶ÛWûºªµWª¶¶º¯~ºÖ»[¶ªë]÷Õk¯ß½võUmn¿ïúúë«®¯¾ªÝUkªû_W[V¯«~«½U[ߪê»n»Õû}Õöª«uÖêíßëµU®ýw꾪®ÞÕ]µ«m¯®ÕUÛoÖÖ×uuköÕû«õmjúÛú®¶÷UÝ»n¾·ëVÖÝjºÕUÕµ_U«ª«UWZÞí·«mÚºÚýUU½]÷ZªÝý«ª®«Û{ªíÕWU¯V¶ÚÞ«jªë½ïßmµ^ÝoWok]×½WÞÝ_ªú«ª·V«vú¯U[õ¯íjªÖ½íW_íÛjµkªïûkû½uU[ª®½¶Þö¯V«­uëzº«UUêÞ­}½mUu]­×n«[µ¾ý½m}Uª½ª¶Õ¾Ýßz­º­¯êÛïÕ­­îµ_«^ÞíïëkV¯뺪µ«VÝwº«o¿·mUuÕí·þú¿îªîÿ]¯Ûjµïu]Zªµuk}jßÝ­Uªº·»uW[]n«Û½¶ê¶­µÛUZ¯_«­µµu­{u][m~Õ½õkWߪº«jîºÖÖ×VÕêµU½Um­Ûj«m_¶½µ»j·µm]½U½Û}^»Uû«_oµ¾ª«}Ö«ÕªÕÞë[jÿmêÕ­úí®ªýU[ºµUWWÖê­[_WUz¯u½õuýµºÝvêÕníµw]­ïª·w^Öÿµ{W}×ÝW^ªÞíꫪ껺¾Û»½{]Um¯}V·«×zݪ۵ë]Zî×­mjÖ÷íºÝ[íkUuþÕnïU_µú¶ÕÕ]«Ýk«ÕZê¿·ªõuÖúßÛ®·ÖíîÞ½}µ·Û×U­[úÖ¯]­wío^×ûí®µ]¯[[U­öÛUuÞÝ­V¯Ûz×mÕ]Ý]uu­½¿·ûëºí[µ¾»öß¿¾Ö×}Þö¯jµ[¯]굫«ÖÕw~®÷Z­UkuVýoÛ«ª¾«Ö¯Zö¶®íÕU×UVêÿV¿«®½wZÿÕU¿[þêµoo]·k«{Õ­Öý­U¶­_º·»îûÕv­Úêíý{vµ·®ú­uÖ­ÚºúêÚÚ¶ªÛ«j·ïõu×_UêÕ[UªªîÖ·zÚÕÕªõ}úÕo^µo^¯}î½U½u¿zÛÕÝUÞ­¶¯]wªº÷­Õ_ÕuWmö¶«ºÛª÷u]Öª¿þµUUí_Vµº×­·j­Ýªº«ê«u»Wz«UkUz¶íê×[Z¾ý[¯µw­]­ýº½uWÚÞßïU_ZÛkmW[W¯«»wV·ê«W{ªÛj»¾ú¶Úûj·­m÷֫ߺµ_­ÕÖÕkÚïmoúýµþµ]j½ý÷jÞÕjÖ׺ַ~ê¿ÕjíÛÝ«j­­uíº­kVµjí×UkÚ­k·ÕU[WZê«·m÷ï[okkª®ê×Õµ¶­Ú®»_vÕ®ý¯UVµoVëuv«­Õª»ýZ¿õVêµUׯUÕõë¶ßumªê×jÚª½k]uÕúõ«·×¯ÕÿëßjÖ»kWzöíëWv»¾­ªÛZµ}[j¯·[µWw®õkþÛ[½UÕon»vÕ­jªýª­Víou¯ëZëUï^®öÝuÚõ~õWº¾êªÝª¯uvïkUm}Ú½õ[n¶»ÝµwU[Umµ^ï[jµö꺵{»]m_W­­ª»¯Uê«öí[ª«jë×¾ë­ëu[µµ«Öýj«_¶îµ®ÕÝ·uW[ïWúþßÕ«¶ª®ë·{ÛUßukv¶ª¯ÕVºû½Ûµm·½VÕÕj­»÷­½þû­U­«¾ÖµZ¯~ÛU{j«µ}V«Zºê¯WÞÝ«V½mjïU[WVÝÕkwn»UªëU{kzªÕÛ÷^ývõ~­«­m¶ªëª·mk¶¾¾­vëµÞÝí·¾ÛUZ÷Õêí½®×µµÝuV®ÞºÖªÖêÞÕZê«ÕÕÝZë»oµÕuw­Zí{®êªµjÖ­kZ«Þ«}u»¾ÕUµ¶½«Ö»ýuwÿ»îº¶¯[mo¯ÿÕÖ¶ªº¶Úýúªúû_õ]j½Z×ûÝjÚÕ~»wnª®×¶¯Vª½kk·ú·«ºï­_í{·_]«ÕU¶­µúíÛ¾Ú½nµUo]÷]ê«uöÚ»×ö­[¾ª¯Zêûë«êÝ[õokýU¾­¿µý][]WU­¿ZÖ»kmVõÛµµµV­W¿Z«vÕ­m«ZÝW½~ÞïZÖÝkëW[Umk½Õv­jºº¶«]oªÖ¯ªý[­kvª«ÛmÞ­µ«^­Uª÷WZÝïw]Ö­u]wÚÛ«í«öïµ¾»ªÕ}×}ÝÛÕzÚöêÕµ½ªõÕojß{o×UZê­VÕúíÝ[êÝïn®Õk¾Þꪷ»ë¯«wí_êû­Õ¶¯ujýêû¿u­¾ýuõ«¶º×^·UokUííÚÛ][Uª®Û{«Uõ­¾ßnÕÚÖÕº¯ÕïUëµ}¿·Û¶ûÝ_µºÿvë½µWVµ{u]u­õªºúímj«kÝëZÿzêõ½uÞ«¯»^Õ­ý[µj·«í÷Ý÷µU®¯»ýµUºöío]ªû­íVêÕ­ÖÛnÚ·zªÚú«m«õ½Úþº®êµ[Zªµ}þõ]÷¶·ZÕZÞßj·Õ«m~«®úî«W[Õkjþ÷»u½j­õW¶Õj«®«uµ]ª«nï«·{ê·_}ªªµ[kÕýµê«zÕÞªþûµªÕzÕ_ÛÕÕ«ßmµn«íuïêîª÷v¯ïª¿×UÕvÚï÷VÖº¾º®×_µ}]}ݪÖúµokjí­kU[¶­kµ×Z¾íjµmUÖÝo½WV·Ö»«Uº×k½½»[­WÚ¯µuÝÚû¯[W[½kUnÛ¯íí»»u·®ªÛ[«~¯^«]íºÝ¯®«WVú¶ïkí}[V¶®Õ][ÕÝumÖþí®×Õ®ÿ¿{w«¯Ö«wm^Ö×oWm·km[m_ÕZªÖ¯×Õuoö×jÿkw^Ûõ}­jï{U®ÕöÛ{õ~õëkmµUZÚ·¶ª»µï»ZµWjêÕUÖݪ×wjêµm¯}µßnª½jÕV¯ÚÞêþµk}þ·×w¯¯íõÞ·[®ÖÚívÖµ½oíûU·«UªÕí¯Ú«Õ[[Õ½ª×®ÚíÚîÖ«}­®×oß[UuU¶®Ûkuú«UëZ­µ¶Þþ«mujýõw¿ª¯í]öÛukkkªªºýW®ßW¯¯íµ[uöµnûUU¯õ®®®ßUªë÷jµWÝVë[VýªûÝÝUWz¯U«[µ­mý]WVÛ]íëzºªº÷k«j­·¯jÞûuVª®­ýj¾µª«}k½V¯zÝ^­­­÷ûo®×õýU·Uzí]kv­ýµj·UvÞ­«]]vÝÕ«VÝÝÛ½Zݵí÷×jÕÚÝÕ×ZºýVþÞ­WW¯µÕºÝUVÖ·Þ¿µÚÕ[kz·uUµµºíÝjÞ꺮ººµºÛoÚ×võêî÷«ww­kj­­í¶Ý~«½{jÚï¶ßmmz·êªÖêöºº×]k«V·UªÚ׺««í[ï¶î­¿õÛnµ[WZ½ºÝ¿kv®ÛmZ׵¾¾¿¾îÛwUW¯¯ÕUõª»ú¶ª×ýµÚ«½úÿuÛnºÖÖ®ßvîªõö»­[­ª×zÚªÚÞ¯uëVºªë«½ßjÖµ«kÚµzö®Õ_V­[﮶¿Z­Z¶ÚÝVõuÖÝëµµ}{«Õۯ߶÷Ö½»¯ÝµÞõwí{«¾¿õuÝíîý{Vî½^«öõ[mªõÕ[íjÕj¯êÞ·­ºëµÕª»îû­ú¾íkUußo«U«º½j÷õ­mU½­»Z­Zª­Wºëjºêýu÷}j÷mÕUwÛÖ¶ëkêÝïënëV¶ÿÖë^·VºÚ·ÚïW¯nß­Ûµ»«{}Õ~«Öû­×Ú«õ«]Z·jÞþýµ_Ýný[ÕÚëU{u¶¶µ¯ú÷V·ojîï·jÕ¯jÿ_¯nµþ«®¶ßnÞÕUZ«µê·ûº«j½nÝoúª¯ºöÚ¾ªÛ¯«êµkZýv«U{UUõÕ»{zªûuºµuu¯»[z­w»Û®®ªê¯·w­«þöꪾÝתݶ«mvíëö®Õý½ÖÞ·jÛímµný»{®¶¯º­W¶Ú×Úªµk]®Õ­«Z»ûnß[¯_V«WUÛný}þµµU}júõ½}[µ­V¿­ÕZ¾êªõ^ª«zêÖª½¾¯WnªºÛý¿VÚ®ªÕª­vêêÛuÕWmªªÚõoU]­ªú«ª«ªê«[U]{Ö«Öªª®ÕmUUªµ«Þ­m­ukVª­Um[íWu{wݵ_Úß[W~««mozÛºª«Uz·ê¿­Vºªö¶Û_×õ®Þª®êÕUÖ¶ë~ÕouZªª«î½»]UµWkZµz®ÕêíUººµº¯·^«ª¶·¿[ªÕU{U®µjõ·¾ëkºëw^¾ª¯kí­õ{ÞëÚ·÷ë]Wmíí»×½Ý¶«k­jÞ­­ªµÚ®ÕÕÝU­·­ªêºÛW¶·u×»wí~ï{ݶ¾ûVÖꪵ[Õ]ªµkêíVëõuÕUíµ[Ûö½]«uÕ¿vÕëkmj«·VëÕ¾»«»U_uªõUjíj«½ªúÝ]kÕÛu߻պöÝkZÛv×õÛíë[]zí]nª½õ×umjÝÕUÛU_«ÕÕëkmu[Ú»íº·Õ«nÕõWUµ_[®×׿÷v­»m®»[­«j­WZ¯uתÕj·­]Wª×îÛª×wUWÖº­ß»kí[õöÖÚê­­{ov«_n×ûuU[zëê½jíW×ZûvÞ¯ª¶ÚÕVÚµ¯ëî«{ÛÕ¿Z«^ïÕVÞª«Þ«wj®µk×]_UöÿUëU}kn¶ß_]«Õ»uÝU­Ú÷êêºúÿÕz­]Õuµ®ºªÿZêÕ[Výë]V­{j«v·¾µÝí]ݪªíUº­þÕî­oV½Þ¿{ûzªÿîý·mÕu^Ýý×·u÷W]­÷·oWÞ½]­oU×ÕÕÖÛ­j¶µ«×ÖªÕwVº«Z¯ý}×nº­ë«{m×[jÕUVªúµu]mµÝªªÕÕm­ªµ«{j¶õ׿^ý«Ûkj÷ªþ­Úõu¿nëUz·ÛUn¶íj×^ºê«v÷]Z×¾«u­Uíºª«uëZ¾»¯ªÚ¯»õ¿^Ý«om߯j®µkuÕVºÕª­zÕ­êªúûn¾êºýêºûÿ¶®ªõêݯûW[îµíÚµÖµZµÝïVíµ^ûº®öÖªõ×ú×z·«[U¯ªýÿíV«Ö»·uW­}ê««wµuV½]UVÕVµ¯µÿ}½µkêÛëÕmWµWÕ}^ªÕ­Öµu[ß[ß{_붫V¿UWZµW]_[U^«[«}µ«Vï}úÝU__ý«Ûëï×Û_µ«^µ¿U×ûjúÖ¯uom{­·×WÕ]¾««jÕÝn·Ýûí¿íwUvÖíëUUn½Z®µ»knïzõ­Uú¯«U]ÕÝUnö××uj«ÖÕ®½jÕVÕUmwÕßkjíVꪶÕUmî¿ë»ëoÕ^«nÚ®­µïjÛ몫jõ[¶õ×}UuWïVÝ~õnÕ_kk»_mujÚ«Zýýª·ZÚ¯ÞÛ[Õv­]w÷[û­ZÖ­Uªµ«jÛZ×ZÝÕÞºõmku»·v·{ûW«jêöÖÕ»[jº«m·êíj¾»Õ×þ­µ]ªµõõ^­Õ]^ëõÛö׫ªªõþ×­««z®ªë{Wm½ºº¯[õZÛWÖÕªªÕVõí[uUÕÝÞÖ׫W«õïv¶íUk·Uß­[UZ«¶öê«õ­¾×µÕmVßzÝ­ÕÕnï¶ßõj®õµ·k]ïWU­­wj«]kZªëk}k}º®»íÛV«Uß«µÝ[wú­íuµn«í¶­~õ^Ö«ßÕZ»mzºÛê«j«]kuõ}¯Un×WÕÛWýu[¯^®×mZï~ûÕuUª·W·]ÝU}UmUjªõV½m¾íÝmڪݯõuW«u~ÛõW«»}ª½ÛU{nÝ^Õ®ÕÕk¯Uv뮪·v¾ëUïÕUëZµ­}öûuz««]j®º«·U·[[ßz¾·ÿw]]¶¯_î¯×~Ûm»öÕmn­ußíUºí­[ÝuõW·Ö¶¿»vÖ®¿oZ»·UZꪺڪÖõUkku_kv®«®«½ª×_WnÕUºµj½ë»ªÕmWmûj»­«nªÚ¾ëU«z¿ªï[«õwj«ª¶êûZ·jª­ªÕºÖÕ{}U[Õ»Û·nÛ«û¯¶êîÖõ[VÖ½]v몵ëkw÷]zºÚí÷ºî·ºê×µuWºýÛÚ®úÝUÝZ«ªÝUVºõUVÝíunª¯ªëÕ_vª»ûúýZîÚ½uêïuõ­VÕïûÛ«ª·­m­­½{õW]ëýZ®ªï}uµuzík«ÕÖêÛmݵnê«kªº×Uú¾Öî«VÖ¾ÕkZª«×ªµwmµÚ¯û­m[«^»ê»·¶þîÕjµvª®ÚÖ·Uêú×ê·½·UíÖµZ«ÖÕou¶ïn­UßnÕk½}ý_í]Õmkku®Ú×ÛWÕWª¾ÝVíûí¶ºµÕÞõµÛm_z­íû_VµÛ_oow×õvªöë¾ÕwUjív«ßoWº÷]UvºÖê¶×ûv­¾ª·nõº®®õ­kµ»k^í~×{z®µVõjÛj×UÚ®Ûý×W­ÝWWª¯}µ®Ûî½ÖªúÛjï­^ÖÝWz«^þï÷ZµûÛíª×U»ûm­këÖ·WkÛ{Uu~ÕÚ­nÕëWz»Ýk½ß½ºÕ{VîÕªºªº«_Vû¶õª«Zݶµ¶·_ÝûuÕ¿Z«o½WU¿«VÝuÕöú×uêÕZ­Zí[ÕuµUoêõÕ}]«º¿w·m[÷UëuZ»®¶«^ªþÕvªõõº®ÕU­¶Õ¿ö«[ÝvªÖÚ­]ׯ¶º«ZªÞÝß­ëï­}»uwn®ëÛÕ^ÞÝ×oÝëwVöªª®¿­×ªíêõº½¯ª½Ú­[½[·VÝmµ«÷Ú¶÷_mUß®¶ÕZûºÕo{j¯]êÖ«¶Õ¿öºÝ÷ûÕµªíUª­õ®×êªõUv­ûj«~µ»WU[oU]÷ÛµëëUÕwëµ½½ÝojöÛ¾ªºõuÞ×}uê«VëUÚ¯·]}­íª÷ö«koW{oÕ]®ÝkU^öõªÚÛ­ZÛ·m[vª­êª½ÞµZëu{ÚÕ¾ÕßwÕ]U^·oU~Õu[µ{ª½wuÕn«vÛ]_]n­¯UUÛwïÞÖí÷]ëÝ·WÕõW¿Z¯[uªÞª««½µUVªªªú·^»jíwª¯V»WÕÕªÞµVîÛj½í­Û×_«_®ýõZëmÕÖë~¶õê¿nªëoþÖÛU]×·ïêúÞë·Ú­W{^û»m¶íí}nªõï[u{»mµokÝmëí½j÷ê»kjëU«­~½µ×Û¿»m­ê·wûV¯ÖÖµ«­®×~íïWÖ«ÿjÕZ½ý½WWµwj®­jÚêÛº÷mÕm^¿ÝîëëukwZªîëWuuº­ª·^¯¯­µuë}®Þîݽk}ÛêÕ}º×^¯u«öÞ¶­úªê¶ëUm«Uۺ[W­}ZÚÖÕ×ZõwWoßWWÕ^þµ¶íúíVª¿®­m}Õ«®­jÞݽí«õÕÕ}mkzïëjÕµß_öÕUý{zê®ÕV½Uö»_ÚÕjªÚÞêõ×oW«¶Ûm}»êÝ­µZ¶·®½[níz«]Zßj®»^·]«µWnê½­íU½V®ûo×µuW}µuíÖµõVýjÛÕëõºªÖª¾Ýþ¶¯Vê­î«¶÷÷Zë[ê½êÝjÕUUV­{V¿UWUj­«¯¿ºÞªûuU¶ï®¶«Ö«Z×]]¯íúÞ½ÕVª¶¯un«WVµª¿¾ïkîÿ¯{õmUnê×zºíuVëwkVºîªÕu«UUUumö¯UßZÝWÛW]z¶ª®Ú¯µ¾»u]WíꪫvÞÕ^ëWU½Õj¶ÛU]zëVßn¶»í¯Uîµmëû{m^߯úÕ[[kµv«}Z«½®ß~Õ~÷ZïU¯÷_µë­[mºÝ]Õuk«¶êµ]ö×µªÛÕµººúÖªÛºÕv¶ÝתõUU­ZÕ®ºº»¯Wµ[}¯^Þª«n«]kÕªþº»º¾Ú·zµíUj«ë«]{úª«[­~ë]uVÞª×UªëõuV×uun÷k_Uú­ÕûuwW«ZêûªÕ[Ö®º½ëªë¯µïjêÛ­U_÷µí[Uª«÷µZ·õUZß{ª¶íªëUWµkZµ«ë}j¾×kõÕû¶Ö¯UUÚÕö½[íjõn­Õí·kíÖ­wvÖ꿪¶ÞµÚë__]·{¿Wk÷×®ÿk­îÕî¯wÝWíWZíW¶öªÛnÛï­^×µÖµëÝÚ·»¿þªÕUú»nÕ×m÷uºÖí¶·­UVëW¯oÛþ·Û×õÞß}í­zïÚîÛ×[u_Wv·knª¶¿Ö»UVÚ®µÝ÷j·U~ªê­×_m¯·U·mª×v¯j·ªîÛ·ouwÛ÷ÛûÕêßÞª«[×nµmUª×^¯W½Z»më½Õ­W~÷µwou»k^µ_õõn­×j¶­[jÚ«]_ZÝU׫½mj­Wíí«kíµ{muÚíµöª­okõ]WÕ÷·îÛ{·uVê½Õ]mVÖÚîµ×j«ÕV«½Ý¿Ú¯Ý¯Z×¾½ë¶»ÛÕj»kU®×ko[«V¶®ÚþݪÝm¶ª·j¶½mú×½ZÝmuªª·º®ûU¶ÛîúÕÝ­­ûÕ¶ÕºëÛý[Uík¯[Zê×_n®«îªÝkö¶­¾»µ·U«Ú·umu^þ««]Uuýo{U]]w·¾·[ÝêªÚ¶Û[ß]{÷jÕUm÷½ÕêÕUý­ýo¶Ö¯V®Ýª®ªÖª×[·µ«­u­½¶ÕßwvûµýÕÚÚ·ÛuUmk­mUý®¾Ö×ÚÝÕ¶ê¾Õj«[Zúݪµ­ZÚ«jµjß_½­«Ûknª¶µo»{ºº½{ÕUmU¶½]k®ªª·«]×­ë­ª½[«­ë»kê¾ýoí]º­ý{^ªÕWµûm«¶Úµµum­]ímkvתþõ­Û»}ÿn·»ÚÚºõëZªë­^Ö·Ö·ºÞ·~­ÖÝõZµVÚ«û[_×u[oÛUU_Õ¶­ª«Úëõ¶®ªÝ½«ZõÝj׿V½»{ÕkW[Ú¯¾Ý¯íÕ«_w»­UÿzöêÞÕ[oªÞÖÕ÷ú«ë­jªºÿõÕ[{ëZªÕm·j­ÛÛV·ÕU­uÕÛ×UkvïuUպ뫫uÕÚÚ«[ëµuÿv­»UÝn«Uu^ÕwWoWïÞ¶«UºµþþÚꮪ¿uU«·­^»W]ZëUÖ÷»û×jªºª«]Õ½k[ZÕ]ÿ­µ}U}~µuºêëZÖëuWí¶×öÖ­ïºïzÕ«ZÚ¾ëkîÝ­[Z®ÚÝ_­V·jºÞî¯[Õ}ZßUj­¯×_k¿}÷mnµVýµ»ZýÕ®õÞª­ª®®«»v½Öî­¶®»Uºëµ×^Ú««mîÕÚ·{wê¯Öÿnëû­Öï·ÛV÷vÕV×­oÕW»o·ú­ínÛÿ¯k]¾·ZþÚ«wßÝë×µUZþëïUVë[ÕÖ®¿«ZÝz«}_ªûUUkUª­¯jí꯫mºþÚë¾½mW½VÞ×êþúÞÕÕjö¶×mÛ­®¿o×U«Zë}·jºªÚ¯ïVÖúªµµ·U¶®º×ÞêÛmµÛ»{«ªµ«]íj×UÖõ«½oµ¾®·ëVÖÝ]×]uj½UßÖÝÕÖÖµÕíªÛuÛ^ÕõëzªÕ׵ݻ¯ªêºÛª¶îê«õkoVª¶êªú»­VÞ®ïU«~Ýúª­kZë×kZ×Õö·ªÕo­VÝVÛkÛ^ëVýîím[«j®Õ﫪»k¿­n×_UkVµêÝ·jªÕ»ouu~ûuW­Ýwõ¿Wv«V¿UÞ¶¯^»Z½U}U[Um«_[^íW­µ[{¶ÝV××zµjõm¶ÖýVïÝßuºßªÚ®¾ÿÚõm½Wwj«ïkuÚµ]¶·®×zöÝêµ]Ují«Uëë¶ÖÛnëÖµ®¶®»wÕZ·ªúÕ«ßmn«·¶úß{»ouWk]¶­n«u¯ú«wÕkêÖ×õ]mj¶«k[õ·zßWz×ok×]ö½Þ­«®½U½Úº«ªë®Õ{÷Ö­ºïZö­{V«m}¯µWUVªíÕV¶×¿_µºî­kío[µ­î¶º·oÞï¯Zý×­ojëï­}õUî«^ªµkj­_ê·m«µVÕ[º»jêëU}mÛ­®ªÕ»Û­Z¶õþªµÖî«®Úª«vë­ªínîÕ×oªÖýÝWuUVªªÕ«nÕö¶µjÕõ¯zªÕ¶·µZÞÛ½µ«mk^îÚµý½¶õë­ßWzí¶×»[^õUu]öÖÞûZí]Uï]UmZÛ½[U{_Þ®¿Z«o»}_­_íÖ¾ÞßU½uUu¯U_U[VÝ_k«öÕÕ­ÝÝkW[j÷j­ê·¶ÛjÞ«ö÷VîíUõÛoêÕû]ß·«íÚ®îú¶Úõ^ímuw_W~ßµ«V¶Û_VõÕkºÚê«muuu÷Uu®ªíZªíUkªµµíº¾­U·V­­º¶ª»Z»­k[µ[Wµ_ZªýUwëZ¾·w½ööÖê«ÕV­^îÝ[ê®­÷®µUV»W»í»ZõwëV¶¯ºÚëv­Z¾í×v­×oUª¯«_ï~¯«¯}ÝUZ­ÕÖíuõý[oýojÚîÕ뮶«okUm­U¯V·vÕ¿íÕ­]Ö­ëuW×uº««j»íîíÝÚÕVÕ꯫Z®­­»]WUj×j«nêµkîµ[uº·o]µ«µjíݵªº½¾ÕW}ªÝ«×õZ¯êÛݪÕ[ZµoUZ®ÛjíjµUµmZ«_½Umú«uÕ]·[^õUÞꪵWÚ««U{ûn¿ªúªëþûoºÛÖûzö¿kµ{]~êÕÛ½ÚÕUZ­«o­µUÚÚßUÚµ­»×Ý«ëºÚÛ]}VÞ·Û«[[ÝÕ}õ¯ºµ^Ýê·o[][~­õ«Û·V¾¶µZªÝ^ÝúÖÕío]õj®µûjµ[[¶ÚjªíÕUëµîêÛVª«Zª«mÛ{ßµ­kw[·ÕvÖª½êë¾í®ýÕ[{µVûµ¯×k¶úÿ]¿mÛn«×ºímÝ·]u¶ÖÕõjµµw÷]]ºªµïïîývª¾õV¾ºúªª«×¯Ú®öµZ«ªëÕ_ukmw®ÛUÚý­_WmW]vÕ«Ûj­^ë½]Õ}Õz»]·wUÕu÷×ZýZ½mÕíz­UÛ[¿{oU]ÿ^ûº­]ê®×VÕm]]{V­®ýªºª®®Þ¶«½ößßV­¾­Vúµz½ÚïÿµÝ^÷W]­UvÕÛ¶­ºõúý¾º»UëýZëZ»­ªÚÕ½ªê½uu[w×ýßZ·võ}_Uv«ºÕUÖ­o[íºÕê½Õêµoªº×ºúµvÖúªÕëªïµU­ÖÕj«}½¯UûkZª¾ªêµkvÛW¯]µu{~¿Z­V¶ÿ½­®ï½­UnªªªïûkÖµ~ê«UZêõj¿V«ªû}UÝï]kµ¶¶ÚÕëëµ{ßj·¶«ö¶úÚöúêµúûu«µUVßo}ª­{jÚª­««]®®ê¶ÛªªÖ×®«¯U]VÕÕUjöúíúï^»·[µUªÞÛ®®×jë_ßWm¾­ºµ÷z»µíÕûÛ»õk[µÛ¯õkU¯]ZëÖÝ}UUU÷vþ®­ªº«º«¿{µ«ÿ½]ê½î·^­Uí½Þ·[ozµmZúëî×ZÞ»kmÛ·jÖíí]¯[öµUþ«¯^¿ö¯ªª«ÝVê¯÷k®û~¿÷Wu}Û×Uí­U[~·Öê«Ýnª®Ú·[k­ëÖþ¾Ý·õµUº½¶êÖ®úµknýZ®ý­nÖÖ¯mm¿zõ[ÝUûmª»uu×µªêªõö®ÕzºÚµvïêú¶Õö«}«¶Úë[­µýZ®¯ª»U×_VµZ½õU­mo·÷mª®Õo¶ÛmÝÛunÛo]­ýÖµU¾Ýµ]ÖÕ­mz·UÝ]êÝjªÕ]î«ÝÖª¾«¯½ªÕý¾êõUuµÕßVÖíúïm·}ºÚ«®þªõ÷õ¯]zªßV«ª­õ·v××ÕVÛj«»UUÕÚ¯Z«v¿U[ë}]îÞ«]mWU¯Zïjí^®¿»÷]­ÞíW¾ÕU^«[­m[]j«µVÝÝm]w®ª¾ëÕÕV­oë[}Õþ¯[^»¯UW[ZºÕZ¾îªûj¶öÝU{ï[kën®½Ö­mµUÚ«VªÛU]U«zëõÕk¯«nµ{­uõª­Wë®ýÝ^«w^÷ÚÖêÕöíVû­ÕíVýÖ«}u­º®«ûÕ~ý«z®¾ªúÛ^õö÷íÛ¶ï]V»]ݪÕú¯}ª­Uëm}mõêÛ}u¯[z»«Ú×um«V»ZûwUºûzµ÷Z«ÕµëïUzÕªí^®Ú×nÛö­í½í½ZëÕmÝU]»UûzÚ®¾Û¯j·Þ¶¾»ÿm­z­Þ×^»kªÝ[[ú¿ÖµªíuÚÕVû[­ª­jÝZêÛµWWU¶·×v®Öõ½ÕUÖªº¶®­­¾­Úö«mjÛjí{}ÖÚ¯j»Z÷wuUÝv¯Unë½V÷^®ºÖÝêúîÕjþö«ªõݭﺺíÖ­Ûªîꪻ]­k»ºµWmêÖ®ßW_vÚý}zÕ­_ªµªµZ÷wW»{­½µ¾µº×u¶«}­öªÕõkvÕ[Þ½»ZêÝ«]uUµWëmõ­VëëmUkUõõWµ]Þ­õwº¶­}»jºÕµUzµÕ»UÕWZ½ª÷Ûª¯ûU­­ZµU»î­ªßª«½kWZ½µûZÚÛ[Úú½½mo[·­ëU÷mo»î½íV¶µjÕ]]º½UõU¶¯­WºÛêÝê«Ûm~¶ßZÿõ{V­«µ¶õªÕUUíW]»Û¿ª­z×[k·îÚ­[½×^¿ªïÞ­Õ«v½öµÕUûýU}UU®îýkjëm¾½ú®­º÷úÚî·»]]n«·î¯«]½Õzëõ{ÕzÖ¶¶õ½jª¶õºÖê¶öëW»o_U[jíÛ^ªÞ×Zý]µ¯kWÚÝV«]mu¿um«}Uoݽ¯nö­íÛ_ª×ïu}×v¯Þ­í}[zýk¶÷uU[®ª×UÖï÷]ê­}í׺«U®ö÷k×wï­VÚª¯jþíßÝkUVûm]ÛUöºÕÝõ«uo[ºíWÞÛÕ¶·µÕ¯íݺºí×^õ_o}W]¶»×^Ö­õU­ëõ­U^ÕZ½oõ¯Vª½ª»Ú·Öêí߶µÕZÕZÕU«}ZÕVßV­W«^Úý~õVÝjµ][êÕm­­ª«V½«ë«ª«ëÛWµ¯uU×{Ö«ÕWÖú®«íë÷«Û_kÝWÛZÕWkk«[]Z¯õ_[ÝÚ¾¯Ö×U·m«W[º­]·Õúݻ޾¾º¶ö½{ÕZÕ×{»Þ»îûîúÛÛVß®º¯ªëvÛ]û»×]ÚµZÞõ}k·UumuU¾î½«ïW~ím®Ýn·VßÛ½êÖµW]kWU[×½o]¯ªÖ®¯jµuªÖº·oöÝ®ûuþÚÕªÛ]_Úî¿mmUµmZöªÕwVµíªíw{·õU­®«­{«ûª¯õU­¿}½k¿Úªª×ê»ûn»íjí{U[ú×w[ÛnÚý[õZê­Õ]Õnõ«­ÕþÛ_k]m}º»U­»_½nê«Uk_µkÕÖÝZ¿­ukUUjëUZºª½ïUmZý{¯oïúßÛ¶½[õ¶íV»ת«ª»ÕîíuUªª¯Õëõ»¶ëWU·ÚëU]½Úý«÷×Zªöö®Ö®õµvµm¶µ«õuº¶½VÖµW«kõºµïíUn×WUnß«kjõ]Uµ·ÕêëÞÕ««Uöë[Uu¯UÕûÝ®¶Õêî«Ú­¶¶õmëw]«¯kõ×[moÞýW~×]vµu[Uv¯«Õßk{Zíjê­­÷úªõ{n­¶¿µvµkk]kßuWúªÕ¯m}Õªµ×·Z­úÕíWªí¾«¯¶ÝëµÝí¯ÿÕÚ®Õë[ê·µ{ÖÕU[ZýW¯wU{]«Ú«k_ª­[kn×uûúÕõ[W¿zÖ«÷º·ÛÚªµ­®ý·½{÷}_]ÚµuW^õ]mu­k[k}}º«õî½ý~½U]kºÕ]®ïêªÝßuÕUÕ}z×kkjÕmvº¶ªµº×U®ÕÚÖº®ÕjÝZööÚÕú×½ÕµU·jý«jöíµÕnªµÛVµZÕZ«¶¶«Uﶮ«]]]÷ª½uWuºÖÖþµÖµUõk{Ý­]×ZÝVûý¾÷^ºÚµê­ë{}kZ×]VÝWj¾¿w­ÕjýªµnÕU[ÕkjïÝ·]î¶ÿuÞ­¾ÞºªÕ}Ý_U­ê׶î½mµ{mu·Uº½¶ÕV×jÖªß_ûkÕjûëíµ¯mú­þ÷UUZªïµv®ö꺪®ýõn×m®ÛÚ­mw¯ë꾫VÖªÚýU½·ªõ~®ÕîÛU®®·wÕv­»kUZÛ¯{U[vªÝÛÕWWÞÞ¾­÷Z꽯omZºß[^¾ëkªµvÛ[Õ«Ö­U­j«m¾ª¯ª«­ßuß^ºµ­W¯[ëÞ·ZÝUÞõµþ«Ûûµ«j«þûkÕzîªÝnîÚªÚÚ­ZëµUûwkZÖ®µ÷µªêÕÝU«ö·ÕU·{µÝ­Um[¿ªÞÞÞº×Õë«Ýë[ýWUV«zÕmmkZÕZÞöª½·u{Z«÷µjº¶ªîºÛªõWº«º¯½Unׯ÷ëÛvÕj¾º¶ºõ[o»wÚ½­µµ}W®®Õî®ê­nµýV×m{¾º­«¿ÚöÕu·­½õm¯î¯ýí_Ý­uWÚ¯õoªýVÛµmºý}ïvëºîµWÖ¯j¯UþÞïk¾õ{½íêµÛÕ«UZ¯Zîêªëjߪ«UÞ»öÚ«Ö÷õZú»ªõúª·îßûªªÕ«[[zÝú×½W[¶õUo­ÿ[ÝmU·jí÷ª­Uoû[­ë¾»zÚ½ÿo«U½·V­uµzº¿¶Û«·ÿª­v«v¿W}U¯ëUUµÖ»úÚ÷­îöªß~ëÚÞëvºÝmîßu«o«k¾¯[UÖî몭vï]mý¶ªîê×W»ºß·mwZ«k{WúõUZ¯Ýn®ßÛjµýZÖ·júÕUzî»õªÛuö¯ÞÚÖÛV½­[V«ÛuWúíß­V®Þ­ªµjÞÝV¯mUú­ªÕ^·µ½[ÿ][nªÖµVµú­V­®ïZº¶¾êµë[¯U_j·Õ»zÛ¶íݺª­­mzªºÕ~Õõ_»¯Zú¶öú×õU»j¾êë»Z¯ÿkzÚÖÖÕõuVúÚÚÚßíoUµ·­ªúÕÿ[UU­w׫Z½µû÷Z·ê½½®­êªµv­¶µ®êêÛ]W{î­êªûíZתëm[VëWZív®º»­[«úªêÖ¶º¾½ª®­[ÝíÖ«µ]îõª»×ÝZÕvµëÿºµUZÝZÿ¾ï»ûVª»ÚÝWÕ]zÕu»zîºÛVëjêÕ¿Z®õõWÚµujõûêîÛÕU_ê­õUVêõí­W¯m]­Õº®¶õï«÷Öõ«umû}_{oÕµVÚÕn½U¾õVÖªÕßkuní^¯^»ëZõWu¿¯{_ºµµî÷m·Ukë[ÝÕµ®öÞª­{w_j÷µ{íÚ·Uu«o}[ú­j¯jëU}n®Õ궭V»¶Ú¯Ö·öÛëí¯­û¾­Uê×VÕuÞõ¯ß}ªúêµ{Û®î«ÝU«ª·þµwUuk]WU­µuÕ¯û½n»ëUõÚªú¶÷Zö«u¶µ»ö¯n×mw¯êÕ¾ºê­­k­ÞöõÚþ×Uõúíz®µvºÖµëuºÕýï×­u÷߶«½[jµm]ÛU®íuÖûu÷}]­o÷nݵ½µ}ÖÕÛ]ë«»×µ¾íëï®®ªÚÚÕný}ÝÕíö­«ZÖ¶Ö׺íÚ¶®ë÷Õï}u_ª½k[ë¾õUWªª«UU­oªÕ{~«}nª«½»µ~ýÝÿ¿­U}·µ}jºÕZíª«]^½­v­UzýÕUw¿Uoö®¯ví­ÕZÛZµwµ÷«^ﶪõ¯¶÷mjêëëwUUW_uVÞµ½ëjëZöúµkºõÕ[¾Ö÷µë­[×W«}ßëÝÕUUº¶êªªßW^­Õ÷ÖÕÚ·öÚºïZïö»jî¶ÞÛk®ªµ½º»mÛ·j»µê½µêßUµ]íÕ{zÖÿÕ¿mµz×^¶ëö{÷_jÝûíïµÝú»ZêÚ½»~Ýmjõ}êÝ]ê¯jÕ«_kÖ­ªÖ¯ïZúªªÕëkûu®µVµ[këÛ^»­kZ¯_Vß{º¶íuÕíÛíjÖ­¿U^êÕUV뮽ý½}ï«»m¿V«µÖ½ýíuk«jß]Õ[]ºÕ¯þµê­­UvÕÞÝuwÞ×{ÕZûn­k¶Öª¾µUß]Ö­n¶­n­u¶ªê¯»oµm]nÕëUm¿êî¯UZëkî꾭¾ûZÖÖº­m«WªµmVµ^×UÕu¿­î·»Zë«[ºÖ¿WÛ¶ï×]÷wo~¾ýßµýÖûÞÕ×õ½k{­[ß½}]·ÞíõݵÚ÷×Õ{~ÕUoÞíí[Wµ¾ÝUºÕÞ®ª½uVßµÖÕUnÛwÖÖú½ê½Õ[Õþµ®««Úú­kê»nªÖ¯^­Uê«}jÚÝo¾­oW~ÿîªêÛo·Vµo^ïVÕ¯Ú»í­÷U×·[jÛê­ªªî»j×Úíu[ë_^÷¶½÷mÕ¯«¾Þõ¶Ö«Z­ÖÕ{Õz­zý­[ZµÝº«uvªÕ½{WÚ»ï®õëµj­j­¯»ÝVµUmUkÝnª¿UÚݵªº­jµêî­u¯ïUõ»ëö«{~¶ëk®ïkzµw×[Öª­Û{µW­mZ뵫®¿z­oª«U[Z«êÚÛöµÕmUë}Z¾«U«jï­¿­«·_Wj¶Úõ«·ÝjÛjµuÕ_ûÝunë¶ÚþêÖûj­ª×kZµk½Û·­^ºÝk~êÛU]Z×UúºÕjÝV­­k×uß½]ºý[«Zµ÷^ª·ë]W¶½­[ê½Vª­·­®­[¿·v­Wkµ_kvªºÿký]]µvª«Ýw®®»u®»Û]ßÕ¿º«]ívÿ·Ö·µ­Ö®îÖ­U][êßmíëÕ½ÝZëwïU»º½uZ®«u]{û®«¯ZíßWÕU]_î÷kUkÖ«÷Wý]Zµê»]UÿíïÕ¶µ¶Ýk«®Õ­nöÖ×^Õõ_VíÕV­m{U®ÕoZýV­õõvÖµZ·Õ×µ»]mí}·Õk붽ֿm«»«WUZ­UVÚ÷ºëÖ·­^»U[ÞµV­®ÖÕß®¶Ú®µ¿Ý]ª¶þöö­íz®½wum]u­zßU·Z½kíWWu]íÕZ­knê­u­îÿkí½ÿjß^ÕUºÕí½[ݵµ]UU½Uõ½Ý«Ú®ÕWUUm»^í®Ý«m»[UVÚ·ÚîÚ¯mUµuêµn÷WVª½»mm¯ïmUmWÛ­[««V·nÕúºÛ»júµ®í{­»ÚߪݯuÿÖ×[µ«·vÖú·U·ÝÛÚ®µvÛWíUn·uW}[v­j×í[wú»ÿ_{«kÚÕµ~½jëu«W»~«vµú»ªÕUõ¿®ÚÚ¶®µþ­]WUmkíµu»km­Ý÷µ»k«{}×wv»m­WU»êþûU«Õêþ­ªÕUõ[]«­¶µkwUµ[_]kºêÕµmÚ­UÖ»«]÷UZÖ­[ov»võ{^­«×Zßj®®ªµkWµZ¶­Ú¶ïUêýuÚÖëví®®¾ûïUu[W»n¶ûµv®µmû][­Z­µ×«Z­Õÿê¿VÕÝ­vº»vWjö¯ûÕúõ_W~íj«þÕ¶Ý[ë_UmõZëë^ªÕ{}Õ}Õª®µ½Õµ¾ÕÕ­jµkÛuûûëÛý­Þê®õÕý^½mW[~ﵪºµë[¯Wk»ª»ªêµºêßí^Ö÷uz¯}o[Õ^µªÚ½kz¯õ}W]m¾µU[j¯Úª«mö«ê«Vµ®º¾·UuoÕU¯]ßz×ßVöê·öºªÞ«ë·íZ®ú¶÷ªß_]»]ª÷uWk½vëj¯ooÛ®»[u}j­k·nÕµ»uu»ZºÕUjëjÚõª·Wvî×õÕíZë­Ö«jµ_]}ÛkzÛ[wê¯Zªµm¶Õmu~õmZºÝWZ·Úº·Û»mou__ªÕzªÚ×u«kj¿½U÷¯¯WýÕڪݪÛÕ»«Ýß^í«_Wîßë®öëí]]]UV«jÞÕ_]UZ­»«Ûªµª¾Ýw[®¿«kïV¶¾ÕUoº×m¯UýVõµªÕ[ïZµm­j·VÕuwêÖÕuíö¯Õ_[k®¶­ÖÝÖµ^íµ[×kZÞ­^·VÞµÖµíWz¶õµµk]íë]u¶­[®ªÕ«ÕUj·u¯«ê®¶Úë­]uëÕz®¶¶¾ïî­ÝÛ¾×kµ[·UÞß×ÛUV«µ[}m{^­kvÝ»wVíëµUõí×U_[¶ýVµVºê¶ëmÝ_]Ý»ÝwvªÚ»­Wwjת½­û}µ»_ÕoÞÛvÕVÕª½n®ª®í]­U­êÚ×½Zîí·«­mwíVÕko]¯Ö­ÕßWº½Ýõnµ­]Ö¾ëuºÕûwµj¶¿ÕïUºöª­×í»]¾þ­µm{ºª­^Û^ík¿¯vµªú·[½zë}ß_^ê÷¯u[ê«UUµ­îúÖ««V«vî«u[mUÕöõÖ×UÕ®»×¶¯Ö®ª­^î­»Wï{]uk«m¿®«[^¾¯j·^«öûßo^®Ú¶ºÛ{wVöµUj·ª¾½ï®×»«ZíÚÕU¿ß^«UVß½«Wëm[V×_ºí«[»[UíUÚïUmk­Vꪵ{ßjÚÚ¶®Û[­·k{½u¯ºë·kµvªî¿½Úë­]­·Õ_õ¶®«mÿV«U¾Ú­î­u[½îÕÕ[í}º»u¯kÚ­núª­jöýÚ­[UÛ~½ê«ûµ~¯U~ÖîÝjê¶õÖýï]¿«VêªíoªªënÞªµêª­«®ÚÚ®ÛvßmêÖ®µwuj«ë½¶Ûí{ª»ÕßÚÛ­wVëÚº®ª¶·]oW¯jÕ×mõUª­µU^öÚ÷º«¯­ºõV«o¶Öµ^îµj·u½ÕkÝ­[nÚ®­Uíû·«ÛÝWUj®ºª¾ÝîÞ­U×·WUÚºµÛ¯]êûý­Úöß[Õ«¶ºÝmº¾ûmßîîÛVíZ·zÞõu»uwíoõ~Ö­ú·z­·W{mºÝÚ·jýoµW«wÕwÛZÚµUZÿ­]Uí×oUk]÷µZê÷kUuWVÕÝkj½¿u¶Ý¶ºÞ­m}u~Ú«º®¾»~¾·{ª×ïÚ¯ÕµWºíëj÷íÝWëµW[ßõuý}íµouk«½ªÛºªª·UwÖ­ÖÖµ­ïÖúÛµµU¶Õµµ]îµýw­W­·í~ºÛVêµU_Ö­UZ×Úí«zßíV¶»µkVµoõº®Þ¶«õÕ­ÕÝÕÞþ»ªÕV·ªïúë]­¾µo«Õw«[ZÞÖÝwnö­níëv­wíú¿unÖµµ]kV·Õ×µêÛµU«muuU]]êú«îÛjµjÞ«÷µ]몭kîºÝÕ¶Ú¯mÕw_uêÕ¿Z«V¶íU[ë½õ]_UúÛjµ×ÕõÕ¶ÕõV«_Ý÷VÞÕïk­­]µ×êõ{o[þÕ¶·Ú»UÞ«½wz¿jÕõmªÝµZ«m}]ºµê­]ÕÚ·^¾õ×Ö·ÕµëZÞëê֭ݶÕmíµWû_Öû×»«jµ®Ûöºµ[þÕûí]¿µkÖÕ­Ûz«µýZ·­_Ýê¯[×õê¯ßׯ¯õ}nº¿{ªÖ¾µÖÖí]¯¯û®ªûVÞÛ«[V­ªßWëWVíÕ¾Ý}kß½ºª¿mv®µû½m®¾«Õ×V×w÷Õ]Õmzëý]z®î÷«nö×µ{ëZê­o_WíUº­^®»íïÝu®êÞë[ýÕí¾ëZ®Úµ]j­Úíöêÿ_UzµÕ}íµUk_¯îýWUÚ®¿]Z·Uv»ë·_V¾ÝÕ·Õ½WU«Ûö·{]~®ûk¯Ûº¿ëv»û~ë×zµÝ­»ªúï·¿Víê¾Õ¿V¿ÛUª­ÕUÚ¶ªµmî«ûº¯wÖ­UUµö÷k¶¶ÕÕßz«íýÛ]×ÖÚïUÕÕï÷«­ªÚµj«z¶º«nµkê×­]Z×kUöÛZ­»oßÕÕÖÝ}_j«×j»]«ª®Ûª·]ªÛVîªÝöÛ¯÷ß¿×vú¾÷µª¾¿WÕßjµ½kÝmµíw«µVí[n×Wz×WjÕÚî«u·ZÖª×ë«Z®ÝZ­o­U^·ªõ[uZ­U]ê몮¾®î­¿}m¶Õ{W·í¿Z½×·­µÕ_uûÝz»n­]u뵶ÝÚÕ[ï­«}WVÛßm½Û®­Õªíu«}¯½_»[UUZíÛßwÛVªµÛ]u­õ×ݪ«uõ}¿¶ßzëZ«[uUª¯ö»·×ú½º­j®¾­Un­½ê»~ëµ»m»öºÖÚ­w¯]«×µºª·jݽ]ªÕmõk^U¶Ý¾«úê÷½[_Z«_µ»V¯{«Vª¶ïÕzµ­z¯WZÚ«ºÝî·{½ëj­z×UUZõZª¯on¶Ý^í½×Úª½Öý_[[{­}U}º¾ºím·®¾ª·ªí¿VîíZµªµzö¶®××U~êªÝßoUjÛÝ[Uvëoªû½Õµujú¶ªµõZ½ªª®íêêÛ«ûöûkþ¯wë­¯ëuª®­j÷Vöõkª¾ÕµmW®¾µõª­ÕkkVîÕo[uÝjöÕ·õ{_Vº®ºú×UZû®õ]ªëêõ_ûU×Ýn®ª¿UWVïZë¾Þ·jÛÖí½ªµ_Ým×WwmÚÛª½ZÚ®ÛkW^ÖµWµ««Úµ®µ­]oµ­×}ßVú»ë½½®Õj·µÝZêµ^×õ{V÷[]ZÛZ·]µ­U×[­½j®î¶­ßZ­î·­n­·÷Úý×wµ{u¶º­[nªµµÕÖ­»¾­m­UÝu¯ÿjýoª­]­WUkêµ·ªë®®¯v÷»Vëõ[ïµ]]ºÖío×UzíºÕ^ýzÿÕ_öµUW][~»W­Vµû[kkÚÕ[ZÝÝo®Õ]÷ëZ»íWµ}ß]¾ë¿]j­õ÷Ö­m­]ÝÕÕv»j­ªê®úµ»ÖÝÛUÕÛZêý^ݶ·­ëúÛkÿ®ÖÖ¶«î½n¯{kÖ«WUZ½uZ¾ö­{ukVê«÷öÝ뮯ö¾ª¿jÝ®í~ªµÕ­½]½UýýµUÚÛ«­mW]]¶½ujÕ«jÕWÝ{õ]w]ZÛ««uÖºÖ¶ª×U¶ö­û{»ªÕßUþ«¯¶ïzµªµ]·[vëoVªÛVî«ujÚï^µV÷Õ×­k«jÚÖªªî×_ÞµVêûª×«j·z«Wµj­mv¶ê··½»úõV½[êÖ¾ªõ]o«­ßj«o¾µkõU]Öýõ×w«ëuîÛj÷Zµ¾ºµÕU÷[Úª«W«Z«míoÝZ·×­Uµ·nÞßz»Öª«nºëÚ­½woW]¶ú×VºÝÕ^ï^º¾Ö®ºû]Þª·ê·ïßv×zÖº«WU®ûví{õUºßª½Z÷WÖÕV­mVõoÿný[wÚÖÞÕ¶ÕVººú«Õ­][zõ­þ«Úíjï¿­ª¿Zöª¿[^Ö»ÕÖÕÝ÷z½Ýv®ú®ê«U·]ß[n«uZõk¶µkßÛ«wk]vÕ¿×VÝ}^ªõvÛ½m}¾õW[÷u¯v×m¯UªÚ×Öêëݵo«v»ú·uÖûz­W­kûíÛ«¯U«V¶ïëkW]uVíµv«zþÖÛmuë}v¾µ[m·W¯½uêõUnµ^»m[ªõu¾ûªªª×uõn­×vÝ]]{Wmת½jëWV­ßº½mZ­m]{ºÕ[ö¯uVÛíÚºµ[WkÕÛ][ºö®«zª­»Úúµ­ûuúõwuÚöµwÕV­^íkVª¯·Ûn·ÝªîªÚªÕu«­oëë½jª««zº«íj¯Um[U×kúõëmu_[½¯Un¶ÕnÕm÷vªî×ÖÚªûÛµßmjºÚÚö«VÕ­ujöÕ®ë¾÷U_ZºûWwí]µÚÚ½jývµZ­«ÚµkvµÛ[wêÖöê÷]uz¶ÞúÚ®êÕÖ¯Öë­vþïuZ·ïuÚ¿[k·Ú¶½z«Zªý^®û_­UÕÖ­WÕÕ­õv·úÕo«_[Zíõ¾½[mî­n­Õ«µµúÚÕk¯Uk]nÕ¯ýíWµZ«ozê­{Ú®¯½ÝvÖª»Z­VÞß»uuk××Uw_½µß]U®ª«ÝÕU­~º»µ{UÛÕª­[wý­jû­×_U]]ïWU[jµÕ}wëVÕkµª®ÕV¶ê·Ûnªú­k_»î÷·ÚöÛÚ¯¯VÚ«íûª«kº­µïêý_­]úªõkw®»ýUµkV÷ÛjÚ®¾ßjºßµµnª¾½uW®ê«úµº­êµý­­·Þ®ý«oÕÕµu½ÕwÕû½Ö«Zêý]®ÖÖí~¾Û»V÷Õ{Vªª«¶ÿW[Zí{ÝmZªªÝªê­»wzÛmvõÕmj×]z»ý]­«{ZºµWêÚ­ÚíoÕk_mÕ[öõ}½Õ{u®­Z®ëõ]^¯U­ë¯ÿÝU_ûjÞîÿWWUuUuúÚ»ïí]¯}ªÚªþ«ëW¶ûÖëÝjµ»mµ[«ÿýu][v·zï×^ë[ookzµ®í^í½Z·ÕµÕÚ¯}®ºêÕoê»uUªÞ×­WûjßÚµVµ×ݪ֭ªµu]ý¯Û»Wõ·mkWzÕVö­ÕUê·×¿][­j®ªÚ¾Úªï«ÖÛWµz½muÚªÿöÚõkV¿û»¾öªõµëÛ^îÛÿµÖ½mº»ª¯·j×vúÛµÕ¿÷·ÛU^íÞ½ûUÕÕµ¯÷UûuÖÛ­ÚÕÝí×W­ªõv«W[ºªÚ×ë]Zë{­wWÝv«ßmW®ÛVÚ¶º×ºÝêõ[Ûo»{wª¿×íûê×~êÛuUwjî­Ö·êÛUZµ«×m«ÝnªÕVëjÚ­þ×UUî«V¿Þþ®ªýWÛVþíº»míví뵺½wUj·}Ú׺¯õ]WºíZûW»ö«Vº÷[«UªµvíU]º·WkojÛ¶¶ÚÕV½uº½Û½µµUºº«z«½ªº½ªÕzºû]Úª»j®×¾ê½½ëÕmj½k­ª«Õ~×}ë«[WÝv¶¿[U·õz­Ýïºý«Uµ×ª·ê¶õUnÕª½ÛWµíݽZú»ÛkÖ®ªÕ_{µU]{kvÝ­Z½o_k«þë­¶Ú«·Úõí߮յ®Û­ZõmkUýV·]·­Ûµn¶«kíZµv¯¯U}ëÛµ®Öµ¯­­ªúÚÚ¶¶õz×k¶µ¶­ýÞªÖ¯º­¯ÕomU[½Ý[^«ÖÛ»»]×þµjýÛVÕý~ëµëj¶Þú¯_}«Õêÿ[nªëê뮪õºÞ÷õö«ÞíÖ¯]·öÖíú߯U}îß½[¯·µ[vëmU}öÖÖ­ûu^µZß^Ûu{^ª÷®ÖõÿUõµmV­W]Û]UÕmkº½íZÕnªÚµv¯÷VµU¿«nµÚÚ­¯­V·¿µ«î«ZÚÝën­kZ«Wö­ºªÛÿU«}ÝVª¯ªíªªÿ}W«½j½Ýûu½ÝõõZÝmj«µwû¿ßöÕëVëjí}ªÚªî®úµknªÝUVªöþµ][n­½n·ê»Wu]W÷_®êößUZ¿õëµÛ_¾ÞõVª®½Ö«u]_V®ÿ¶¯®õWªûÛmõ}uÖ¶µ×_Zõ½j÷ê«nïj·Ö­kvÕo­ª®Ý­Z¯jÞÚê»u^êÚëU^ÛU·[z¾Õî÷w®¿]kÚ×V­»ï~®»Û~·[uÕkª­mºÖµßþßíöÛúÕ­½n××W¯W«Wwõ»Z¶Ûmz­{׫zÝ­Ûßzµ«]íwjê«Û·kî÷WWuÖ®íUZ¯ÝmUê¯{mU~ÚÝZßnÿnÕªº®¯×ïÚº­_j÷­UVë»uµÚÖ½µ]ö¯_®ïVÕjÛu·Uí»kÕm¶Õ]Ú¯U­{ÕÝ~ª®ûªõõ»®»ê«{}×½UvÛUµvÞÖþ¶ú®­kªê¿í궯﮾·UoêÞµÖ«­ÛUn­WÖûú«Uzýk{Þµª®­îúº¯ªÿ_µ«Z×z­Þ×Wõ­Z¶¶öµûímu«×¶µ{¶¾Ö½mÚÚý{V®ú·ÖëUÝîµ_WµUj¾¯ªíkkú¾ê×ëëoní꺯­UW]·{m{V«n«û«_Z·Ö¾·í»ÕU_mªë·»]ÛzÚëªõUUÕ»½U]j­¶¯µÖúÛ«mWV·nê×Zë«ukî½Uj®ëuÝÕÛj«ªÚ¶ÿ¯ÕµýZµÕj׫oUëZ¯·jª½«WZúýo¯UÖ¯µm]uUµûn»Ö÷wnº×­{kjû_ªÖÚíµW]vªÿZ¶ýêõ^íë½êêë^µõýÖµjêýV÷ýUúí~»ïß^ÚöÛzýZÕï]ëUZ»ZÚÝU}WÛýÛºÝÝ{ûëÝmV®Õ®ª¾¶«VµßV÷]Zö¶Õz¶Û·m^ê¿«Õí[UkVëkUÝî­WÖ¶¶õVÕkUªÕU]^ëzý­Z½mjÛÞªõkïU¿nû]V¯uÖµ­j¯UzµkUöÛíVµw«íÞÝjýëªíZÛu»­z·nýÚïÕ^Õv­Ý¶®íjß_ë[úªµ¯º÷~µ}Ý_{½ZµnëU¾ºÕVÕ_Þûuê­õ[mµZ®¶öª·õm¿ª×nµ×uz­ÖÕÕª¿Õj®ÞµkV­íÚ«]_]ª­µ}zÚµUûªíÚ­V«¾ª¶½ªª«z¯m{ëÚïmm»{½}U¿}ªÕjíª¯Û÷·«ªµëêúënºµÞõU]]ëUo·_®ÚÿÝíõW¾ïk¶Ú»ªûïÕÖõk^ª¯m½Ú¿uúÛÕ{õU½ªÖ«­·¶ÕUkm]ÖµuW»uëuïÚÚïmÖÕ«Z¾¯ÚÚ¯^û_õUîÛýöÕ«}kþ¶ª×kV¿]¿U­k«n»íªÛ¾ë¯mVÕk[UVÛúÝWkUª®»[·V®»ë[^¯UÕUÛz­jꪫ_Umzë]ßê«­V®Úëv»Wëj·ëvµí½ºÞ¯ë¯¿Þª¿uÛV«÷[zÖÖ­vÕ[­j¶¯úõª«®ÕµªÕoV»ëWv¯Wk½kíV­î»{úÕ{µ¶Õ½º«VÕV­«¶ª··oj·Õo®¶»w«ÝmVÛÝ^Ûëu×®ýwU¯]ûí_««ª­nê×o»­µm]Õ«ºªÖªîµ^Úº­Z·_w[^µõU½ën®ÝjÕ­ûjºê«ÕjµzÛÕu^×õ½»µýj¶Ú«V­u»ÕWúµ[Ýõº¯ÕjÖÕmÖ¶ÕzÕµµ~µ»{mUÕZµV®ª½jÿZªÖª×îõzÕZîý×U뵶Õkm«µzº«Õ¯nö¿µ«{uªõn®ªÕݵÿûZ««Ýª­w«~¾ê×ú¶íj­­¯­Ý­¾¯ÖµÛmk«V­»Úµ¾Úþ«[êí·ízõ[[µZ¶µ½Vª÷Þµ÷ö«ê×vÛouµÞ¶ªõUµ¿w}ª®ªÞªîµõZõ{mÝ®­uªî׫V¶ºµuZªÞ¯Uë·kj«µUý­Z×ÛZÕµjÕï·{ÚßÛÖõnªõõÚúö¾·}V«®ïZ¶Ý¾îêÞïë[U[kVתꫮÛ÷nÛu»jþ¯Z«ÕUíj­UUUjÛººö½«Û·vÕZ­ýZÛ¾Õ^ý¶×_Uµ·^ÕVßmÛ[ö­ÖÕÞªõWVÖíVö­V×]Uë}zíW­{ëm·V½z«µ¯[V×Þ­[¶ÚÛ¶«{^Õï]»êïß»jõ»ÚµW¯uz«ZªÕ·[ïꮵÖëU­]«V½ÞµZ«Z»{mþÝ{[Õw«^Úý»V«ÛmkÕ«Wo»Ûúý[·×««VêíõU®íºû»î«ûÚ«ê«­kºÝu}[õ[ªµ[u½úÖ»·]kµÚ½kß}UÚ¯uúÝUÕ·Z_j×ß·kªµª½wþﵫVÖÕunµ«Wj»}{­Õµ^¯U¿m{kuW[«UunªÕW­»z¯]»WÛjÿê«Wª·ZÖ«[ûoú·Þí«[k^º÷[ï¯}«ªêí{×Uº×u®»Õڮ몵Zµ}Õnúµ_¯}mUúÛu½Õ½µVÛíZªºëVÕ«Wíö½º«Zªªú«¯[««UuV®·^ªî¯zÛuÖºíwzõÿ½j­ªµªÚ®ú×vÝU®îªªºßµú«ºÞ«^»¯j»Um[~ÚÝU½~Ú®îí^µ¶Ýv½µê­}u×Ý»V»{¿ÖÕ­®Ý^Ýí]m¯½ªÝ¶ë×UWmë«Z­vÝjþ­«uízª·V½Ö¶õZÖ­u×kjª×××U­[mUk«kíºëuªßÖß­jÕW]Zýª»µÕ{U®Ýë«^º×Zµ­Ýׯöª·V®Þ­­Zß[VõÝZßõª¿[moÛZý_úªºªÕ}Õ«Z­Zµ·µZµõ^ªê®ëª­«Õ·½ÛV¯·Z¯]{]Ú­ïkûÞ·úëݵVÕ­umVëmj·ZÖ¶µÛU¶½_ªµm{öµU¶ëÕ·Vµªëû­»Uuw¯o»º«z¯ýî­×«zÛ[[W×Ú®ën×U«®­Z«¯~ÝmÖöëÚµ¿oªÚÚûµÝUUzÝß[Z­U[ýÖªîÿ}^º»nÝZ­W÷êë]m^¾Ýíþê­¶­vÕWîªÕ÷}®Þ½^ëz®ÛõªßÕ]«zÝêï­Uª·Uê«ZëÛUªÖ»­½[ÕZÛÕª¿kú«m­µ¯}uv½[jµjõßZÚ»{[j»Ú¶»U«¯m½î­wÞ»­UV­ª÷»[VÕûwÛ{[u¯¶ým}~節ZÞÿ­ªÛ«ª»mU_ª×vµÝu_¾ÝïU½®ûúú®«õuV¶¯µí¯}uU÷[úöþõ·uk_ßß»¯ºÚµU[UUmëU_«½n¯mkíªÚªµ®î½mªÝ¶¾½ZºÕ«^÷uÛ[^ª÷«¶Ö¶ÝÚöõµUªÕ»õ^ëö®Õ_ª¿uwÞ«®þꮫ­nÛÕ]UÖëݵ«Õu}WUÕÚïÝk­k®Õz«»õíöîýªÚ÷ÖõW®«j¯õUwkjíwj÷ÚªÕªýníÛºÖ«nÛu¯VúÚ«ÿ_Wíkz¶ÖÝÝ×vªöÚíï[}VÕmk®ÝÕµZ®«ª­z¿Þ¶õUn·ö®ÞÛÝÛmÕÕß«µí]ªÚ·m}Z»õko{Û½»]·^«êÞ¯ªªÝwZ«kÝÝÖ×Zªí^®­nÛªµmÖº®»Uõjûz½ÿUënî·[zÕU·µþþ¶·õWU^Þ«Vê궫«½nÝþ¯ÛÝUk½µ·UU«U·ëßk]UZÖ­]êê­ª·kÖÖ­{Vë¿uz½öêÛõ¾õ­Ý×WºêÕv¶ª«ßo¿^µ^µ¶Õ[jÖÕ½mjÚë«^¿¶ÝUºêµV뿺»ªÕV­vÚµ½__®«½¶½õ{~ªªºÖ×ÿêµmn¯»mªßzýoWê¯o®»·mõ_V¾­¯U®«[Ú÷]·Uêõm­õVÖºÖÕÚëU]j¶µ½®ÕZª·Ö½UýÛUjÿÝzõÕúúºªÝuk¿zßvÖ×o_]ª»»¯úßuz¯{úú«Z«ûïí­ÛWVµõ×µU÷um®»»¿îíûuÝ{oW«oÛk{kj¯W׺íUªÚ­]]ÕÕu­UÕoêÚíkV붺­ºÛ_UvµÚý¾ªõª®»­]«×j«U·VµÖÚ½¯ö­Vío¯VÕvÛ­jï[­koVÕêµu»µ¶ÞÕû]WÛoj»[µïW½}ku]V·¶ß·ª¾·}vÖÕõwZ½«®¶µjëºÚÕÕkkkªªöªÕÝÞ«Õöת֪«m«¾®·Õ¶ß]»·Õµ»{kÕ­v­UUUÞµ«WWw½n×­º×ZíýêÛ®îÛWUê­µZ®«WïmëUÕÛÖÚ«[w¾µUzÖªµÞ®­j»Ö÷WWWÚíZÕÝ«¾·Uuª­ëÕ­µZ¾½½W½^Ö«ºµ®íÛU¶¿ªê÷û¯VïõU¯íU뵫mïn«ë½m­WVÞõk¾ªÚ¿­o}®Õ{ïÝum÷wÕÕºª¶ªÚûUUV½^­ÛÕûÖ«¾ë{[uUªë}Uë×mW¶Þõë^ïz­«j«Uv«»ê½wUZê÷u¯VªýomU×U­mk÷µ^êÿmU[W­ïn­«Û_U­ÝÕZ­«÷½n÷Ujªïm]UÚÛ«{kz¶ûµµ~îꮵUÛzÝ«½÷¯umÖª»jú»«U[¶º«^Úº¿Uw­}~ÕuþÞ·mº¶ûmwUoUÞ¶µµÚÝÕ[¯®®ï«U]ÿjÚíýoon×j×oÝ·z¯½ÝëÕjªÛ«júõuªÖ««µ»ö¶µ_ªÕ®ÝUkªÕ½«««·«nÛõu·^ªÚ¶«UVª«zõV½u{ÕkUê«Zºõkk]mµµvþ×[ú·]ZúýnýÚ½Õw¯êݵ­ï®Û­ªÖ×ê«_zë½UvÛ]«mÖ×·­u¶»ªíU}~öúÕ{µWÕ×_í}ßvº½Õ®ëov߯]VªêÖÕ[Zú­«j¶Úº­[jªµ«kuWUªª»Zêï½ÚµjÝíUÚÕíuk[}[}ׯÖë»^º×k½ê«j®öû»Ûouªßm[Wúµ×u[o[«ªÕÞí­v«ª®Õn¶½ÝÕ«úÚÚÕ]ö¿Uu~êÖöß®ª×íVïÕ½[ouÖ«mÚ·k¯­ï_Zë^½«U]Uê«U«¾ë_jª¾ÖÕª­Õú¶µ[{µW{kÝ«µ}õZõ×^®¯Zµkn¶­w­»öÿzÝî®»unîëÕ_U_]Ýîõ]Û­®»kUu·Ý·µÞ¶ªµumÕ¶ÕöꪷµÛkz®»¯]k®­wV×¾«Öª«­¯ZÕÛýk¾úºë]»{¶·»m×o¾ºÕ®íÝþ«kíõõ]÷ªëm[zÛêª×Umý]Û»kú×Z×Ö¶êÚíµ¯]ªÕ~«Ûu[ZëÛ»kujêꪭ­Ö­VµV¶Ûú»uªöë­{nÿ·jöêÚ·Zëzºßu_U]õmÝUk[^þªÖþÚ¯×UþÛuÖ­û¶½mU»­¯­onµ­õu¶êµ«]z«¯ª«j¾Þ¯ú¾µÕ¿u·]kÕõõv½UßVÖ®ª­k®®­¯µÛÚÛ^»z®¿×}«wjÝkõo·«ÕîÖêÝmVëjýõêêõVÝZ¯]w«vëumW­]î­×Õín×½ûU~«­êêý[w®÷zÚª­¾ÝU×nªíukÚ÷mUëo­÷V׫]ZíkUW·÷í×·Û»Ö÷ÖÚÖõUkUÚÚï½ßþ¾õ«êÚ¶×íµ]µÕõWê­¾í×[V·WÖÛZ«Õ[UW~®µªÕ]þýZµV×jµWuZë]n­Ö«Ö×V«oo»mêßµª­WÛZµVÖ®¶®õjÝÝvíí[­VëµWk_ö­UUkíºõݶս­¶«oZ·µ÷[kÝn«UUz®êÕ]®ßºªêª½z­n­Z·»woöª÷zµ^­ZÕ÷wjûÞë««®Úµ¯íUïª¶í¶«Úª«WWU¾­]~¯Ýû­[ýï]«Úºën×îꮫëVê»î®µkWWµ×Û÷×oõV¶ÕëªßV¶÷ßWû«km~î­^ë­­ýßëV·zªõ½u[ÚÕ«]íëí·«UíZÕjõV»z×]÷nº½­«Z·®×¶×úµºªß­µÞÖê¿«u­®­ÛVêµwZ¯í­ê½mõuÚÖÛ­W]U^ÖímÚ׵׶ÝV«ÖºÕ«jíwUõ×Ú«»vÕmÕV«¿Z¶î­õÖµ®ÕÖÛUþÝ«ovêݶÞÚÛ½ï®ÖÕ«}[ª«uµn¯õ]®¯Wuw·ÕVÝÕ½¾¶îÚªëí½¶Ý½]Õ­úºª»Z÷UµUjªÚ­jµö½Zêׯk«wªïªÛ÷u»·WV¶ûêÕîõþ»«Õ«uÚ½m­ºëk÷VÖ×õZ­¯¶·WUÛ­«võ×U·UÛWuݵ{¾Õu»{Û¯¿ºµwÖõz­VÛÚõ÷uUj¶ºêµ[w½×¯ÚÕÕ¯U}®Õ¾ê¶ªîÛºÚíUWU«öëZÛZ«×ZêÖ÷j½W¿W_u¶úêúûê½zÕ[®õ[^öºÕ½Uê¶õõºÖÕ{]w}z¯ûU]ª«u¶ÚªµZ«»ÕuënÛµõ»WõUÛ¾­VºýWmv­êݵmÛÝïU«VµúÕZëûmwÕ]«­ÕWjµWªõZÛÞµ½ZÖºîïnµ]­_Õ­õjÛ^­o«ºïZ¶Õ[ÿý׶µÛµkµm½Uuõ]ºÕµ¶×[õk»Z×ÛßÕ»¶¶Þ­«j½ÕõUjík×][«Z­ý®¿UíU^Û[{µ]UmZÛj½ªµ{µUZ»^«jíj¶÷o~·UÛ×õû[ÕµwUïýz«ªªêÛíVÞµZß}íÝ®¯jµÞ½m·ÿZßUVýûÝWÖ×­U^õ][ÚªîÛWÛªÕ¿êµ·ª»¾Ý]UV¾¾ß­^«ov®½W[U­n«uZÛj®÷«Zý÷ý»[Ö®¶íVïkþþÛªµ­Uu«jÝöªë¶êµwUw¶ë¶µv÷ZõÛ_½­ÖÖ½·µUßïm{UjÛu}÷}·÷Uªí^ºÛVµê÷V×úí÷ÚÕ½ý¶­Z«õÕzµ×mU}[jµ­­WUv¶«UU_½~ß^ݵÖßZ»îýê¯m½·mUn½¾ûoõº­Uu_º«»zÕ붻î«ÕoºÝßjÝÖ½Û[÷¯½·öÛU­¶¯¯ûu_o¾ë÷ÕÚ«ï¶ÛUë{_õwZª¾ëõU¯U÷w]uoÕ[z¶ÕÛÖ¾Õ¯{ÛÕÚ껫ÞÕ÷W]^«ºÞ»Úµ_Wukªß¶ûmmª·_UUëVª½õ}nï}m[~¾¶÷U[ªº®ªÕ­]W_ý­]]uª÷ÛµµuZßõWUjÛÖõªµßVÛuëUUÕú®Þ¶«õ¯uýW®»õZöê¯U¯­µÕÝÛU}ê¯]ªºëmVÕºëW_U÷jívöú½zªµko·Õ¶ÛU×õªÚõÕUõ­UWë]úímmU_­Uzë~¾ÛÕÕîúýýíª¯µuZ®Õµöµ¯úÕ[zöÖªµU^êªÕ{Û[ÝÛÕUÚï[mz¯µ®ÞÕÛîíú¾ª½·«ª¯^ÿuëª¾í·½_­]jªÚ®¶­Z½_õwZ­k[[Ûknݪýº­¶ÝVÕû¯ªªÿõûkn½]Un»ïzö­núê·»×ujêÕ_î½Uº­«_kmÛmªªÝõÖÚ·~ÚÚÛímënÿj¿Wm[Úõµu½­w¶½·úµk½«®ýV«»µUí½ývªªÛÝ[]ZûoW½wVÕun¯«[ªµþ»júµºß¯wõº»zÚÚ½V»_¾Ö­ª«_¾ßê×UÛÚÞ¯Þ­]vªª«UÖÕ×ÕkmUjí{m½«ªý_[×Z¾ÚºÞµWn»®ÝUZ¶×vÛ«ÚöûköÝUUUw¶öÕuv«_ûíÕö»WÝUÕ¯¶Úµ«{]®®®½VÝ«·Öê»U]µWÛ»UU¯{ÖõUW«VÚ¯^¶ý_×wÛ­]}}Úÿ_ª»unõmÛUÕkv®¯¶õö­UÕzªµnÕµW»[mÕ¶Úµï·uUZ¯Ö«·_zÝjú«­{UU»­Õ½×uõª­«Wµn½}ïÝ­íÝ]Û]mÖ«wUÝ®­Ví®µWvµwVú·ZÕZºª×­«W}º®«ûµuoïµZ­U_k¾õ_V·jÚ½Ûu»·ÿÖÞúýoêÖÖß½Wun·U·w½mV®Ým¶µÕµ·µ[uúú×UºîÛÛ»w^í·W^«½Ûºû]×uûªÕ­nÛm׫j»ª­ª­oÛ[k·zÕo]VÕo»~Û¯vªÝm{[UZ«W}Wîªÿ}Õª«­«U_µíý×WU[]]÷µokÕ«[kõ«û«®­ûUë»ëê·z¶ºíëv¶¯^®Õê÷]®Ú«v«jõw_·ªúÛkUwmwwUoïwVÕªê·oUU½º×UUjµëZÛ[í®öÕýWÕöºê¯õ»v«]­½~ª»ú×ÕªýõÚÛ]í­jßo«U»õum]{u[ö½WÝÕ×íw{U·µïvëwuµêÚëêÖª»µW^÷W¾µm¯ë_êíýjû}^×÷Z­­ª«u_ªª«ÕÛUo~·]kkuêïµíÕûºÖë×[mûv«U»Õ¯[u}[UÛ¯÷zÛ[«vݪÝ^ö¾«ªêöݺ¿íj­UÞÚõº÷õ{UÕ«Ú®õW{j×Uoíj«­­]kZëjÛ[«{{«uZºõ[­koUÖµjµ^ÕWj½Uï­«íªú¾¶Öý·êú«×zÕ÷_uwíûÚî¿}j»ºÕµm÷j«ýV»wÿUºµÛ[jµ·÷^Õ»Õu÷µku{UzÕ~×wÕ[Wê¶öíkµkUmWµÛkßÕunÖûö¶ßzÛ¾­Õú­}»×úïµ{vÚª®ëÕºÕ¯UvÕojÕnº¿í«êªµ×[Zÿ^­·vÿUZí][nµuU½Uµ÷[Uµªí®ªÚÛ­»Z«}÷­UzëU^Õµ«­«ÚÕÞöúúõoﺪ­í꽶֯¿zö«^ïUV«o^Ý_ûÖ׺½·W­^Ö×_¾ª»VõëkÖß^¯µÕU궯­Ö­wUkïß׫ªµ}Z«mûZÕÕ}íªªë½ß¶õm­k]V÷W«ÕU¿uêõj¾ýV¶­í«_ÕÕUUV¿¯µ{®«V­¶öíW·~Öÿ×µUízÕUwn«U«î«º¾Ö­ª®öÚûÿÕz­­«m®ÕZ¯êª·{^Õõ¶»U®µªÝßWÛ«^µíµUëýUïî¶ÕZýímo{ýÕµµöÖ­ªýîªõªº«Õõkª·m­õ×µWkªêÝþ«×}[mUªµÛëV»W{Õ[[k¯»j«Uov®ÝZëêת»~Ö­µ«­«õÞÞ»o]mw[«U×÷×ëߺ÷Õÿ­Zµ[Z½ªÖö½·ýUjÕµ{wUwÖ««¯Þ×VÕ꺯w×®öÛk½·u·ZÝm{®Þþ®Û^ÚÕzµ×õ][µUµêê®ëuê×¾ÚÚöï{ªÝUU»«~Ûn®ÛUÖ½¯®Õ]UZ­ê­ª¾¯m~®«júûµw_U½UuÕoZµuuk]×}µ¶ëÝkÝkmÚÖõuwÞ¶Ýëo«½½Ú·j¿¾ªÖÛ­U­ojõ]ÝV¯ª»]o{UýW¶ÚÕëU­µn«_{Zõ{ýW«¯Z·[jµ[ö¾½ë»jÕUÕûÞ¯ªªêºÚÚ¶ªúªê«ºÕûUWmZÝÕýUuU®ÚïßkkV×ÕõÚ­ºúï«uv×jÖíu{WUö®Þº×µªïVµêÖ»j¾ª­_]zõWÖ»µW¿UZÕ^ë«[z×Þ­®ïÚ¾í«»Vµ«µ_UµíÖª­®úÖë«~»µÝj«êý[­vª½kzöú·«[·UU׿nëwvÖµmUvýUVïuí«k«o[꽯Õ[ú·×ëö÷íUjõv½îîõ^¾µ~ëuýuµÚöµ]nîÕ{ZÖõVªûUµj­¶¾««­½ï·»íõZ·×ºëÚ¾õýºµ[ªÿU_~Úµw_}ÚþÛWwUªªúªë_­®«jê­võn«õk{Zú«UUuÕ^ê·«®®ÿí^ë¿{µ­Uj»Öµ~»uûV¯þ«ª÷þº¿v»uíwÖ¯UÛ]êýW«½]Ú]¶ÕûVëoúõU[kkUníõmw^­í¯º­·uj­µ¶®ªÕ·ÛU÷{kÿjª»ëVÖû׶ծë]ª·w»­oßµW[kõwmÝÛuíWµo{{­êõ·mkªÞººÞîÿÖºí­¯vÿjýUýÚÝUUúÚïVº­]×Öªª·êíÞºïUï×uUoÝZµZº®êÖí·µ]«oê÷··ÕÖ¶õUûuÛ»Õ¯ZÕkÕV¾«Úí­ÚªÚÕnëµV¶ëUUUþ¯­^÷uö×k½¾÷Õ{·Ö¾ºª­«Zë÷WꪷoºûWWzêÛÕÖëõj¿[jÖõmuUûmZ½Û½µv¶­WWÿj«íU»zÕZûU·j­ª·mUWÛZݵmUÛÚÚÛµö»wjÖª«Z««ª»­Ûk]V궫VÛvõU«UûmvꮪÕÕ¿Uݵ¾û[_uZÖªê×Vªí«µ_¯ïÝkûÛõÿÕí{Uuª®µÚú¯vÕÝZ½k­^õU¯×]mWûµ^ê«êºÕZûuÚ×»U¯ëUkW«kmU[jý®Öíj¾ê»Uu]ÝWj÷m~»«kn»«Wz¶öõú¾¶µµª«VªïnÖµ]µum®ªêëw­jÚíoõmµkÖÕn«îê½ZÚÿÛWí[»mîë­u¯nëöµuÕj¶«mªÕoÚÕÞ»µª­nÕõZÚ¶ýUzªÕÛVíëV¾ïmºê®º»×Úúë^Õ[[ë½Woëm¶Õ¶»kªþëmµª÷W{[w~ºöýUwªÕÕZ½Uîíí_Ú­Öîªß½VºÞ뮵®¿µ[¶­Ûj«v­m^­íjÞ·]]U­ZÖúÖµ~÷z·Õm]^«U[êû¯_ÝWÖÚ«WmWUµ½jªÕj­Wº¿m~Ú®÷[U­UÝ]U«UßVÛ×jݵwû[n·õjÚªÝz×UW¶­um«ÝWÕõºëUýªûªý«ënß[¿«ª­v­·»[ïW­þ¯}VõÞÖýkZ®Ú­wZ×}o¿ë{v¿®ªª½Vºêýµu­Õ¯ÖõVÕu[Õn«[ת·jÖ×]ÕZÚÖöêúýÛuZ÷oõÕê÷­ÕÖ¯]Û_j¶¾õZëjûU[mªµïº­¶«m÷Wëªú«×ýwkkª×®ßß}ý{ïkö«k½WêµwÛzÚýöêÕu«VºöþÖÕ·«ªº×mµuúÖݵ®î«{jÕU÷Wk¯íz÷wu÷®íÚÝê×ZÝUUm{Õ·Ö¯nÕmÕWý®÷Õݶ¶ëUonûkÖßþ×Uj¯÷U]­ÖíÕ®«ÿWíµ}ví«ýnýWµWï]»wWU×þªÝwkí¯þª­ÛÞ¯oµW«Ö«[jëîÞÖ¶¶µZ¿ª¯WV­êÕz¯µ]m¶«Ýö·º«Unïµµ·_ýÛ¯jëV­[moºê÷ºímmß÷]ª¾µ[^Ú½jº××îºßw«ªßµ{¯«®õí×j꾶«Þ½nö·½íªÞ×Õnß~íukkú×ýºµ×öûÖ»}Z«võV»uZ®¯]moª½­ê­«z¯u]mÚ¿ª«ªýkÿUÕÝÕêÛÛÝÕµ­¾ÕjÖµµÕõÚíª­Z­jë«Öª·®¶×V¾®«^ý¶õêûwoþýV­Vµªý{]êªÕU×îºÖÚª·ªªõUm¿]Z­k×ÚªªµµZ«nýý­·«z¾¯÷nµöºÚº«owuí]W¶·ïêöµº·VÝ[[{¯ºÝußï[m[µuoõWöª·u­^®·VªÕ[½k÷jîÕ¾¶ßjÕ÷ªÛ[ïkZõµëVÚÕ«VªúõonûÛ÷n¯¿×__í­kU®ÛÞ»ÝêõkkjÛ}w~ߪµýµ[]U¿~úê½U«­Ý}Ú­Võ}«ªê»¶·]­×­ºþí®÷×ëUµ­kÕU}ªïm[__¾­­õuj«ívÚ»ª¶«uµý·íª½ÕúíV¶ý­VÕwVú磌¿ßU[ªÖµ{zëÚöíZë«v®­^¯Õ]zµë[º¶¯ëZÖ­wUÝöûU·_[Umv®õUZ¿µjõÚÖÚÖÞîê«Z««¿mUZµªû[Uªºû«ÛU^×{ÖÚß­]}Z½·VëvÕµªí]u­ßÝnÛZ­»öíkÕ¶ÝÞ«UëoëU«ííö·Õö®­ºªª­ÕµVµ®ªÖî½w^«µ«uµZ«m[uj®Õµþ·ÝÚÝ×}»¾×j«ßo}öêµw¾öí¶­ÛjîýªýëkÕoú¿U_ëuZµÚê«U_[«nª®¶»m}ª¯ïWíUþ뺭ÚõïëµÚ×m¿{Wí¶«WÕÕní¶ºí×ÚÕk®¶öµ®Û×mꫵkZÕ¾ª¾ÛZµk»wÿõm®÷kWþªÕ­¶®ÚªÞ®×ªÚ·ªª­õê·]Z¿Õ«mj«Uþÿ{ûU×µ­Õׯúê«{õ[ujÖ»[½U¿·«[Õw]w«­Úºµm¶Õ[¿[ío]«îµ½U½µU]júªíUjº»½µ[¯Vµ}¶ëª½êµ[kÖ¯^ï·×n×UkoZ«¯½UÖ¯vû®×mÖ«·­ë][Ýkµjêõߺ­[ÛzÖ«íUonÞ­÷v¿Uu¿]«Wu_WêíÕnêµU»«ªßmÚ÷[o»oÚµjÝjÛ·mUµWUïwuÕUö磌jªÕë{oW[ºµ]oz¶«öëõ·]ªÛWíµ«[VÖúëûw«Umu[½ß{zïj«uo¾·­V®ªª®¿köÕµv×÷jµ[¿]Ýuµ½ªöºªÕ}ª÷knª¯W]®­õµ^¶ÝVú­}ëíZµkkoýîµÕ_ZÝªíªªª»»ÕÕ­«ºÕÕÛv½­½ÖÕ­½ë÷{µªêµkmZë]ÕWn»×º½õµjí׫®ï®­¯»­vÖë»Öݽªî¯]ï¾¾ë­_WÚ×ï­Þ­}kwÖ½½¶Þ¶û[[V÷ÖÕkW¯­ÕUîµµmÝu[öîßëzûÖûníº×®ÕZêêíÖ­ïwUUêÞÖÞµZ­ºÛºÖ½z¾ê¶­ºµ®»ê·}UÝÝûÕ­kVª¯û»®µ]ýmíºªÚêÕ×­_mí­Z¶ïu«WUÝîëÖÕuªÚ·«®µ¾¾úíêµÚ¶¿íëuZ¶¶þªõºí}un·Õm«¶«[¯½÷j¶ÚÖõz«[ÚÝk¶û¶¶º·z®««ªêß]µÕ¿~׺ÞÝWÚ·UµkUVõ[uU¿­wW¯^µ]vÝ[nÕ[ZõvÖÚ­¶Ö­×Vëµjª»ëkõzªöÕm}jëWU]V몷ký÷k×kmoU«{µÕêÞïÚÕõm½µßv¾÷U½íÕmm¶íûº¶¶Öµ«U·½k«î¾Ú½õª½»÷~ªÿm]VÕ¶º«Zõj«­¿V¶ª·U»wwêÛ­úݵ۾÷ûÚÞÖ®ïU«k_m{k«ª­ºÝ¾½zÚêÖúõÕÕZ®ºÝmÕúº«]nµmÿuí{jªûÕ½ßn«[­^×V­_Wj»V­m[ªêÛmjºßª»WíýÛm½ëm÷·ëWWÖêªöÕV»nªÝûªÛ·j«_zÞÚÿ«ïÕ­VÖ«[z¾íjµ~·û­Õ}ïjÝW^¾Õ¯~ë¿õVúïjýÕ»m«Wuv¶»®««Õ½jªí×[uõß[WºêõýïÛU}þÝ·kmÝ{«Zª»Õî«o«ëíªªûÝj¾÷Õ«ÕU¯~ý½¶®Þÿ­U¯UzÕ­UuUnªÕëëëÕê÷«û¾×UmUêµÛ»þêÕµwmª¯}W^ß×·­ÞÖúënúÕZ¯»õu{»ÚÚêºýmë·{k¿­þ½­ÿª¯­wUmÛ¾µë¶Þ·VíÖêÚ¯U[U¯kªë~¾­ï[«k¿ö«k­Uë{~¯¯÷õ«UUÛ{WWªëªõÛU_öêµßÕöª¯«ÖÛjõZûoºµ]µÝkÖ½Vê­]W¶ª­íoÕZµªíþû®ª½­·]Û­^­k]®­wëjÕmÚúÛk궯¿W«õ»UU¶ëµm·n¾×õ]Wm[Û[¿«½ªÖõí[÷µµÕõu»ý·«¾û×»®«íﶾî÷Z÷¯jê¶ÕÚÚ×­]k~ZýkÛ׶«u×um¯«kVß½[{®ª¶¯«ûÝõj¯ªÛëUµVÕ[jýÖíõj¯ê¶»Õö×µWëíÖ¾º×VêݪުÞÝëuÚ¯Wn¯Ú÷jÖ«UWºëk¶®»Õ¾«¶úûV¯Ujß«Ö×z«[ýw»õumª«]ººë]×[_½íUêÛ®½®ê­®öíÿ^×UknÞÛ׺­Û¾ºÿÕõÛ]®ßkú»µ×ªÛö­{»]µU¶ÿZ¶ß®«µµÚ­kUªÖÕW÷ÚÿU~­¯µ«·õUÕ[}{]Z¾ÕV«÷}îµZöïmV«]V»o­jµ[¿­ÛZ×Wë]mï[mk{­Wª¶ím^µZß]ÛVî¯[«W×ê»ÛÕµ®¿ëÛkºÛ¯¶¯Z½¯®µUªëWUÿ[«ý«ªºÞÛ]mjû{ZÛ­îµÕµÖîª×¶½m×½·m¯«Vªõm[]m[w«^ª×ZêÖ«jíUkU[ÝoUk¯»»zªÚ­^÷ö×u­ÕW[nÛVÖÚ×ZªýW]ߪÝÕª¶ß·{­UwÚ»Ûvë­Ýµ¶ÚÕÕÖí[U}]u½oZª«}oU­j®ûÚí[¾Ö¶×U]jí×­Zý»m®µÚþ½]Wª¶­V¯_õ®¿{wëZ«Û»uë]UV¯÷ªû~ÛíÝUêµ½ªõµÕv½ZªÚ«®ê¿Zû¶µºëõ¾½U»»õßwUºÖª¾­Õêöµ­[»[»^Öë^í®«n¿Þµ·õ^ªÛzµ×}ýz¯wÚ¯nµ½ºõ­w×µkmZê×}µwí_­ouj¯ïíþîÝo½WÝÕUënõ^êþÞ«}zþª»nÚî½ZíwÕZÞ¶ÝíjÝÚ·k«[{ê«­_zïUº·kkµmÕ{~Ûëï­×U_÷Z½Õ«Û]õ[kõªª·Õ~Õ·¯j÷w[ÕuÚÕWëVµ[«½]~Õ»ªµ®ª¶ê»ª·µzõî«{¯¾ëwíU­U×U]m®¯ªÝUj¯~»wU­n¯ºÝ[»j®µû_W«ÛuÖ¶íª¯wõjêÛúµµZ««ÕWkkU}n­«z®µÕµº½ú»kW]ÞíVµ½«wkzú«UvºÚÚ»õUwêÖ««®Õí«¶×jÛ]¶¯½vúºïWvõk¶·ûZê½wm×z¾ÛºÕW[jµÝUß­ZÕ«{º¾Õº½­«^¯oïúª¿U®ª®ª½Ý¯¶¿«uz·U¿Û]V«vªöõzÛW¶ºû¶µ]~«Úß_[U®Õµªÿ~õÚ­VþÛÝo­n×íkk]Ú­ª·Zªª·­W­Wvº­uwvµv·j·ÝÕVÖ­z«êï_Z««kîí¶µ«Û~íuV«oUkõýw·×V«Uo«ö÷u[[µú½®Ûë¶ëêÖ»kÛUµj¶µ[ëÛWuVí}kÚµjݾª··«n®µZ«ëê®­V÷kתîÚ«W÷¶öþê¾­kWmWú¯UÿkUªª­õ_n¿m­­U¶·ÖÛ{^»j¯}níÛ»«Ö«jÕöª®Ú­Õ½¶¾Þõÿ]úµº®­·U·µ­­o×ûzÕ®×m[Þ­]UkëZº·{mªÛ¿ZÕ¶ÕuVêµn»kU«ªªªêÛ}ª®·¶½m{UzÖõ}^Ú»®ê®½½V¾µUVíªÕÕÕýuUw÷n®­[UëwWÿZßuUí®Ú»Õ]{¾íºª«w×µ«®«öÖµöÞ·vµµUêµë[Ûw_µÕ¯ªûµÝj¯Wm¯»­mU·WõuVÕ»·¯­jíÝW{Z­ýûv«ZßÞÞµ~ÕUmÞ½_êµkëZ¯»Ú¾ÛWkÖîµÝíÛU]j®î¶¶ª»[ÖßÛUµZõ^ö·®êµú«ÖºÝîÿ_ëní­uúÝ®ª®ÝmU몾÷õ·¯{}^ÿo«ªþ¯¶¶ëÚ×·ëíjÚª­j®½ºª×_Õk®ß­úºµµV¶þÝjêº÷û«¯­µÚí[UUk_êÚÕêµ{­µkí¶¿×ûunõuÚÛê꾯«~ÿmµmïÖ«}º­]ª½ïUWw¯zþÛ_[îµ­v«Öê­ªÕ^ë[ÖÞÚííVª®®ª­}»nêëݽ]jîÖº½WVª­­ukjÚî×u«ö«ö½j«ºª­W]mU¯j»¶«ÕÛ]Ûmmëî«[ÕÚívµÚ¿~÷][Öª¯UUzÛÝí¾¾«ÿ½^»[ö»îÚ­ºÕU_j«ªµV«¶½®Ö­«Þî­µn¶¿mkݯ«·ß]kj¶ºÚ­W}­UWªö«×w_V¾®µª×Uz¾×_«[}]vÚµ·[j÷«V«ªª¯»ªõ¶ªÕª¯ýÕí¿»UºûW¯µ»Ý¯uUûêݯUëZ­VÕ­m}knÛo×w»{v¯^ïm­ª«z½×u÷j­Uvª»^êëkV«~¯ýUïzî¾÷¾«Umjï_µÞõ®«¾ÖëuÛíª×öµ]j·mw~¾ÛZÛ×uW»Ú¿^ª¯U¯íÕ¾í^­ë÷Vú¯_oj×^Õ]uí]k­o·íµ®Ú¾»v·UªÖ¯]¿{®¶ý­×ªÞ­VªúêºëUõ{okÖ½Ûûík­Ûw]U]Wm}Um­Ö·µê¯®ÿÕ·^«VÕ«VÕuÕwµ]÷{µ«Õµ]_½WÝUnµ]kÕëZ÷«VûUõ{ûÝn«Û[µö­W×·¯úë^­½ïu¶Ö¶»}ÕÖµ[ë÷uõ«]W¶þ¿ª½}j·Ý_Úëjîê÷U}k«¶¶½×ë»íê»]öÕ[ÖÖºÕ{jÚÛ®Õ½^»]}º®÷»^í½]¿UZ«Ýª¶ªú»êÝuj¶Ö­VÛßj«ÕýÕ}­U¾×÷­^Þݽöß½Z­UvÖ÷wj­µ×Wº¿}mzßö««öÕ^¯VÚªßÿUmZýµ¾ýê®×¿mmm¾×ÞýZû½UUïUUunª«}ÖµwnÛ^ûWZ÷ºû×UVîÞÛuí»¯ïëëkj®®º¶Ýê·{í¾«k{­ÕWvÝWnº×®­Õ­µëªÕ«×­zµÕ¯µ­~í«Zë¯jߺÕö­u[]_Vºßm}­×»®êïªõêµu×UU]®íuZ­[]U«m·z«ÖïwUõUW[kë¾÷zµÝ¾û]Zþ­u_ÖªõÕ·®×Vî­®õ½¶÷¶µ½ÕW]þ¶ÝíµªÚ­U]kÚí[Vþ«UVÛ¯_W®õ~­ý{}VöÝn½km·mU­jÛk·oª÷µ_[oZ¿ÝÞ«zíjë­zþ­½Um«¾½­jÿµkwª¶ýÛÖ­_mWk¯ÖÖÛozÕu~»×U«íÛú·Õþÿ_zºÕnÛ×Uý]wµªººÕU­íu}½~ëkUÕëUÛUWU[jµ×µÞöïí«Uýõz¿vö×ÕëßZ«ëm«ºî·w«ººÕoªûÕkU[zÝ]õõkïêûZÖêúºê¶®ÛêªÖÞ¶Õ]}[v¯kº»Vªïm[¿ö«­ÖëVõý«Ú¯ÚÕÕÕµkZÝm]U~ê­ÖÕ¯ªµª«ÕuÖ«oj¾ªí_î·¶ª¶«Ý«WuuU×UÛjÿUVﺭ×o_õ»Ûwvڵº«ß¾»õjÛmêíZ½]}u«j¯¾«»ÝÖժݪ»÷o¯[ª·µëUÛÝÛÛºë~ºê®ªÖÕUkµý»nßÚÛUu­UU]­ÿ«¶ï¶«í¯v½ë]¾­¿Wouv«UíjÚöÖÖª¶ÝmªÖí«ª­½{UUVµ}Û]o{ëí­Úݶ·z»Õ®«»¿®­U{ª­û¿wUö¯_Uß­Õk«Z»j¶¿ÖÛÕ«U½ºªõª«u[Ujµú®­ºº½ëëª÷W·{_ªµ[Vª­ö¾ªÝÕUm¯÷]ÿzÝjÿ[«®ª®ïµ[U­ûúµ­Um]WëÕ®ªÚ×z­½Õ­õu[Û®®µkZ«mWuµª®×~ªÖ«¶ë¶Ýßk®µZªÝnºµUW[¶ÝmU^µk½U¯«kWþ¶ª¾¯m¶·Z­WUêÚímÖº¯Uë[n¿Õk]]»k»¿w«Öµ}µ}Ú­ë·jöÚ¾­¿«¯u®Öêõ}«W}W]·kÕUµû]Õ÷jµvªÚµ®õÚ»^µ×¯uÝZÕk_«[·u[k_k·ºú¯ïo®»Ý¯Zý«½Þÿz­¾®ºêµ[wµÿmZÚÕ­mj­¶®íwµ{®Ýºªµµ^·oÛjª®õõê«VÖ÷¶ÕîªÖ«½}k¯V·[î×_ª«nª¾®öº«µÛßµý¿oÖ­¾­nÛVª­mÕu­v«_{®õ×]uö«vÖ­mú÷½­n«®ï¾þÖï}{ÿ­u^¿kÛ}­jûº¿µ®½÷Õ÷«ª×öýº»¾ßªëïªÖ«n¶×]^««UvÕ¾¶Öº®­]»[kµ]Ú»ýµVµ­[ZíݵWÚºÚëUo½ujúë­¿}kÿ]]zÛu꺽kZêµßõª«­wÚ­mÚê×jÚÕ×UvÛ}]«mk®î«Ö­u}íU^ïwí[W}m_{«kjÕumVªêííí­Õõ¿}Öö­[®«WµmoWª­}ê«íµkõí­Vï_nÞÕW·®êµÛ¶»½ª×öµ}º¯Z÷^«×Þß­­Õµ{ÕõÚë¯}õ¯Uïovµ«_ú«ª½ZêÞÚß»ZÕ[«u×jµª¯­×¯Uw«»{¾ï®öÚ«Ý÷U×Ýu[jþ»v«nÛUvµmjí¯ª¶»¿^­ºª«UV¶ºÕÚ¿¶ª¶ûê¿Ö·í]wõUWWÛWZ®ªÝZÚº¯µ[µu]®ºíVÝ­½­µëµ«ÛUVý½®ª¾µ¯]Û}]V­½{öÕuµ[kêµVº­¯WÝöÚ»{Uk·ê«]Ujõ»­_U½kº«®¿_ï­¶Û«íj¾­[W­jÕjªª¶½[ÚÝ_ªºªµ«{½»]º­­]»­^º«mî÷kµ[êֺꭺíZ¾¶¯¿Õm{µ~¿oûkm{[mV«Vþõk]×Ýu®¿unïþýo[몪êÕU{ªÖÚ»û¾×_¶ÕmU_½ÛZµZûkÕÛwêÝ^ÛÖÕí[uµ[¯^µ½Õ}«VªöÕ·«ª¶ûvºª«ª­kÚµZ×oZ½mÕ×·«ëݻۭµÝÝvÚïUª«Z»Õ»·µ®Ûk]ÕþÖ×jÞ¶«[}Õ®­VÝïVµ«[½ßîÝUVº­ê»wWVº®µ×ºû½UZ­[j¿ZÕûûjÝÕvíµÕ¯µ¶¿Û×o÷íWµÛ«Uj®íwVïê®Û[ý]UW_磌{ºº½ßÚ»í~Ö¶­÷_×õmWí«[kUjµm×W½]¯¿z«Uuë]ݯu×íjÖÛ[]zöªõ_k¯Õ{µ­W¶ÖÛZº«w[]uï«UµÝV«[Z­ªµnêµu«VÕoû­µ]jµµUwÝm^·W]õ{÷]{öµZª¾¶ÖëUÕV­Ví»½®ööëë»UjÞûVªª­¶ªªª¿ÖÕÖµkûëUWjÖî®ýÕmú«nÕýwjÞûU~­ö׫mo®ß­Ú«UUïV÷µ_V·ûnתý­]v«»kº¶ÝUê­zµu­~ûÚת¿×ÚÕjÕU»÷V­úªÝuzêî®Þ®®­­_U½mÕï«V÷}}{v¶ÕkÕuíj­n·j¶Õ^ëUÖí­U]ª·}Ví·ÕmÛ­­û]Z·_uµµµmUUz×n«êöÕmõ»vª·Z»Úï{ªým[¿ºªÝûkÚöÝW~¾«}{¶­Û­ë¯[n­ë]~ÝwzõºµUk¾µÕêënµûVÕW××owW·uz¿V­U{]kw[î­UWk­m]íþú­Õê«V¿[Zö»^öÛ·õ¾¶ïmë}µZÕV¯]UÛ[«Z«··W[^ÕÛûÖ¿ºî»­}]m^ê¯UuµíÝmkºûUvµªÖ­ÕUW×^Õ­]W^»Ýv¯v®¶ß{¶®ªªú«m¾»^Û몫ÝîêÖë×mUZªýjÕVºÿuµzÛ]kU}µ×ZõuV¯j­«^÷ê×uUÛ«×ÞÝßkk}[ÝÚ««ÛnÕoº­ºíuÛ«[ëïZÛõúßUoßk[µ½÷ªµU[[í[]ýÛW«Ûûë}ßÛº¯o¯z×m·ºíëê½ÝÚ½nêë]¿¶½U^í]}wUëjÞªëUÕÛzÖëÚªºÕ]]½wÖÞúª®¶­ïUíëê­ÚÕ­½ÕW½_Uj­Û¯­jªÖýuêÕ­ª¶Õ[VÖß[µjõ¾ûjÖ»ëÛ¶¶«µ[­}z«jï_j·w~¾ÝjÖ¯[ÕZ÷ï½o][ªÕ]uíUnª¯vÝWíýWV¯o½UU­¶êµîÝ««mV¿U[Õ×ë}Uz×kUjïU~½Um]×®Õ«­WZ«¾­^¶«û·ëª®Ý¯ö½ýUµ¾¾Úµõu]k_mjÿºÚõõwª­_]­~ÕêëÝ[ªÖ®¯Ûj¿wn¯Uzï¯õZí[¿ÕµwZ®Õ­Uku×öª«j«[ªÚ«k×µº·µWWU^½_ª»Úßu]ªÞöµº¶®®½ÿ}÷­{{»u^­úÕjï^îêÚõ­­½ýW}w]µ{n«í×u¯Vïþë{]mmjêúê×_U«UÕÖûº»¯ýU¿U[Zí®«jªÖÚÝ·µU}º­wµWºê»ÕZ·^µzÝ·ªý^Ú¯ª×µ×u}Uï{u×zÕ^­WÿzªÕ»o^÷m¶ÚÕUU®¾®ö¾¶ú®¾ºªµ_}kWÛÞÚÝUUuWv®ª×UÚ»Õë¾ëê«·­¿®·]^öºëkuw­·vªí·vÞÛj·ëUkºµêöÝZ¶×VÛ}»mï[uõv«]½UµVõkï½Wjë­¯Ö¾íkªª¿kouö½í]mUë{m]믫¯ß»»ý½Ý}Þíöµ·{Þõzª®µjÚ·V÷«UÞµµªµÛ¯k¯jÞµ]W~µuÛWîÕ·ÞýÕ¶®¯µ½UöºÕm®­]Z¾»uêµn¯kêÖµuuk{Z¾ÚÕ]¾ª®¯Z¶»êµíúª½ûÖ®®««{ꪽêµo¯»êõVõ««}þ½ª¯]VÚ­¯Ú¯V®Û®·ªÕmöºÕýnµUUuV«ê­mß]Õ­ª¯»¾Þ¶õ{¾«úú·½Û¶«n«»j­V®Ûê­W½Ýºµ÷Õw¾êÕ[ow^·÷vÕÚ¿»Öú÷ÿÕvÞúío½wUí­WU^ªÕí¶·»[}_ºÕ]µWojÚÛ¶õuínÚ­V«UW¶µ¯ÛoU¯o^­jõ­õoÛª÷ª«¯µÚ®¯]Õꪭ««úݪª¾Õíj×uíÛ¯U]öÕ«Vêµö­Úï[ߪµªêªÝ{j­jª¯ªúÝnõþëÚ«ª­ÛmÞ»íkmë×®ï÷V­«ÕWõ½­«½Õ^ï¯uõë]]µ·Wk­«oª«ïu®­î×U½®ÞêïÕ^Õê¶ÛUÛÝ~¿®½W­}µuív«×ûnµ¶¶Õmú«Uu½Uµí[ê½_m·ªº¯V®·kÖÛkݮڮ׷۵¶õU¶ÕÖ×kýZý]»¶ÝÕm½ýzÕWo{nûZëUm{Öª»ªÖªÛ~¯n»mnÛ·Ú·u_½_¾µ·]õ½^ûÕUnëíUwujÕj½ê®öªûuþúÕ¾ßZÕíïö»÷ýÕk]oÛZªª¯Ýo]v½mu×¾öíU}[m_mïuÞµ·µÞꪪêû[[V«ÛõnÕ×{«þêûjÚº«U^õ¶½½¶µ}W¶öÝ««U¶Ýתêu^¿Wkn¶ê®ª·jµ¾ª½UkwWöÕî·u¯jÕ¿¾µºÝ_ª÷õVªõW]ÚÝúµõjÝZ»Wj­uU­Õ^Öíjªª·ÛjµjÕ]ÛÕÞÝ®ºëovªêúª«zªû~ת׵ö·ªÕUî«U®«{«¯_]UVÚõ½ukZúÝW}­Ý]««_Zï×[k]ní®ú¯ÕZõ_õUÝVíë·om^«Un·¿ÖÕÕÖªïZþí­_UþªÖú­«ÕݺÚëÕÕ[_jë¶ÞõU­¿]ªê«v«V··Wv«ëë®ßÖªú·¿u÷µz×koúºÿnõÚÛ×[}®­]µZ¯÷¾¶«_k»í[kºÕ«Wÿ½uUWU­­¯k^µ_V·ÕêÞ½mÕ«­»_÷ÕW«êÚÝmÕ[ÕºÕ]uêëw¾ª­Öýo~öªº­u­ëª­{­¾µV«·½ßÕjµúõõ½««ëÕûëZµêëUûwÛµUªª½Û­kÝíÖú¶×¶ªªÿ¾ªµZ­]uuªýuwÖ«úÚÝUjݾõVÞµvõ¶ªªµu[^«Umë[íZ¶«V­n»ÝïZ·«¯Vºý[kïuµÞï_ºÝn×}¶¯­ÖþÕ¿ýmwªµ]n¿UvÕmm»ÞµõÖÖÖ®Õ[¶­½ªµ¶Õ­ÖíUëjî­WU¾«õ¶­UV«ªëm×ÛÕ]¾õköÝïU¯Ú­µW«jõûv®ÛÚ߶¶ßÚ»«mZ«]®ªë÷ªÖªÕ]®î¯o«ÕÕµëU[ºµv­]kÛoîë®ÿjµuuok­oÛÝV«[uj­]Zí»U·õv½uUº÷îÖÕWþëUZõºÚýÞÕ^¶í]Õ­µ[n­k«®½ÕÝÕºª®«·ªëUnúíÕuÕmU«U®ÿj¶úîíUõ}jÖë­W^×z»}m]·ÝÚ«Õ­­^µúõuïÕ~ú÷W}¶»ª¯Zû­UýujÖî«WU[[Ujêß¿UߪÕz«ª«}V×kë¯]V­UýzÖªÕÿv­koZín»[¿»n]uկ׷¶Öªíu{­jê¾­}êÚ׫jöíUVµ½]Vß×mõ¿µúëúêõ÷mzõm{îß«Z­¿zªµUµÕUvªöÚ«[ªê»«{n®ÞªÕ®«U[]Uîë]­Þ«µ_·v®îÚµzÖÕk­½[kuöÝ®«WûÕêïÖÕ½uÚ·{­Vëêíj·VûV½W·Ý«ºÚ¯Ö»ö÷íuµ«]¶¿Þë·¶íu[WõjµjÕîïo]}­­Ú«µUZ÷µÕíUÚûUª®¾êª¯í·êÖ«®õí_[UmUvý궭ªÞêÚ¯UÿUÕVê­[uëUZ÷~׿WÕUU«z÷}Ö­U_êµZ¯k[kuoªöÕW®ºïoתÛ÷U·kþªªªÚ­k·]¶¿Wj»vªÖ­»[ªªëëv®½µm^Õ·»]UÕ«·V¶¶×VêßVê¿zû{V¯ukíê¯×uVڪ뭪ÕÕUíº­ºÕ}nµÖª»{ëµÚößµ}u¾«UºÛ~­zê»ß[_ÞÕö­·ZÚÚ¶êê«nªÕïVë[û~õ»U~«~­½k­Û­jê®Õm·õÛ[uµÿ×UVª»Uv«zÕjßW}]Ý·WõªÖª«{U¾ªµµ¶µµ×º×¾­UúªÕmk^­Õº¿µ«_Z­^½ý»oëÚ¯_ÕWn¶Ýzöõö¾×u]_­{V«õíz­ÚÚª×ÞÚÖ·×w[v¾¶»ZíV«_«þÕU­uõ¿_m¯ö»ÖÛVë­[½oUWÛWw[oZ«wÛjÕ½Þ·}Z»µëUþ½omíUWkÕµVÚß{Wª«V­ª»[Úöî·¶¯ª®úíÚ¯ö¯ûþªÝ]}]{UU]ª¶¾×Ý~¶÷ÖÕý]µ~½]]öÚ»Uöö»wm­uUmmµí»ß»zªÕ×^õî»Õު׺úÖ½»V®ßÖÝ[ë»®¯k}ë}¯Z­jÕÕV»Õ®ÿׯ]­­­µ½jë»êªýê­«Uuþª­õ[«n«Õµªª®öÚµUVߪÕï][ïU{{ÛÖªßu^ÕjªÝ뽪꾯j­ýß¿nïuëuªª×ª¾¯uºÖµ]Õ{n½ÕU]ÕvªÚ»µÕ×ö¶ëÛ½Zµ×j«{·êÖ¾ªÞ¾íWZûµ×W¯ª¯[vëk«UÚ»«¶Õº¯[Vêõû×Ú«ëû«mmêÕwZ»k·õkÖþÕ_µ}{V­U]ï½Ûª«~í[^½¯j«Õëë««ZÕ×mZþíÖת­u»ªö»z¯ÖûwU^úõºê­µUk[U«¿µµkzõºê÷ZõÛ]µvßVª½µU®·j­UUêÖê­[uïjÝk¿~××Úõ®ª­^ªÛÖ·víVÖª¶ªîµê¯ÚÕk·z¶µÕVßv¯¿Û»UºêëuWuVí«U¶Õݪ®­Ûnêöª®×®½µÕ[­_{ÕuÕ¶ú×ÛUkª¶­®õí_ª­»mÚ·U{»UvÞÚªª»»V­ï·UWÕëûµÚµ{ÕºÖÝ]ëj÷jû»Uví·[[kZëêýuî¾íÕZµZÝ­­«ÿ^¯«Uoµêµ½UV÷Ý­Õºª«½u»þ®îê®»­U®½Õ[ýUªÕÚª«Z·õk{ÕUÞ«Vþ×Wkªêíº÷õuZ­Zúêëímw^Ýk^¶»µ¿_íö¾êÖµn¯[¶¾µ~µ]vê¯Zý{Õj¾Ö«ÖÚíWww¾µ½zÕu[U­Õ­­m«jÖÿ­Vª¯]}Û­Õu®ÕÖÿ[V½_ëÝnö­×WZëvýkv½ÝÛëÛ­Z­zµ}íÞµVÕUUUw[ûk­~ûoUZ꯭Uºµê«­{WU[vµÚ­mn®«jÛ[wkúµZµ¾ªúª·k½ª­·[êµÝo­ÿÕ}{W{UUªõkwmëµZÖ¿^»¯¿«]UWZúµºÛ]{Ý­Wjûë]Wkºîª¶×êûZþ­ê­»~¯_V«[ª×Uku«î¿Ö¿ßj­m{½j«®ë}µªªÛWÝWÿ¶úÛÝ×ÕU{Zµ­ÛWmZÛ¶µzÚ®µÚªÕÛZúÖ·®ª½vÝª·víkkýmZ­k몭zúÝêë{¶ÿ­v«ëUnªºöÖ×­µ«m{ö«»ÕîÛ{ªµnõÕ¾­®­zû»ûUÚÝÖ­WÖú¯UkÝÝ»­º«¶µUª»ªµÖºªíþïÛÖª¯ëZÝ»[VÕU{í[Ö¿}}­«U¿WoµÚ·µßWÖ­mu®êî·nþêÚß­j¯Uj÷ªªÚÝþ«vöª®µ«VÚ×k«ÕZÚªî½jªõµ­ßõÕ~íµýmUïnýUmUwÕíuúê·Õö¾¶«ýº½VßWjûµö¶úº¾÷íÕníWÚ»m¶ªím¶Ú½UV½}uªª¾ºÕm­jºïZÕßV½½µ»uê­ÕîÚ¾ªõµuµÞÝ­W^ÕîÚ×u®ëZ½Ö­wnµÕëWÖº®ýuz«Úê·¯]_j­µkÚÖþ÷VíW®ý]ª¶ÕwõUªµv®«¯VÞº»ÝU®ïWíUVµU[Ö­ojÚõ׺«mê­ÛV­«ªµ·kUÕWjºê®õ½UU{wUë{{·Vë^µWÝýÕ]ëµµïµÛ}Wê«WêõuU}jÚÕoVªÕê߭ᆱµWW_ú¶µ×[ëU]VÚÝnõ«ªÝ¶®ëU]Õ×k[{ªª¿×]zªªµ¾×mUUUZú·õ}VëVíÕïk{}U]Vï]ûºÕíî׶º«uuµê«uëo×ÕZëkjýµýmU]}Z®«¶«­U­W»[Õuíÿ«nµ]û®Õ^«ZïW»í«õuj­µº¶µw«ª®¿u¶·jªÖµ¶Õ­õõµîµ½m·UZ׫­¾ýöÕïz­vÖݪ«ZÿZÚ¾«nµU÷Ý[VÝ­µ½__µ×mZ×ê»õuíum][{ý}®Þ×þê·ÕîíûßÕv«ÖªõÚ·ú¯«­jÚµ}jÖõu«víwV÷^Ö߯]u­Vßnúí­kvªõ{Uuukª¿ÖÛû¶êÞª­Þõµú¾ªºêªÝ]õvº÷j¾«ÞÚ¶ÛªÕ­]UÚúÕ_kÝ{U¶¯íûWnÛ«ZÝj¶¶µë[m_kõmÕujö×­zºÞõ}Vî¯woÕV«­×jµ{z¶¯u_{¾ë¾ýV»mªíÕwUkkj½[ú«ZªîÕ~ߪ¿}íÛV«^Öêõ¾×oÚ¿«m]oUW[nÖªªßU~úݺÖö¶þõ­U~µwÝmíz­vÚ÷öíw[Õ[Z«Wjö×½WUZ÷«õí_¯ºõ»Uí¶ª×úÞ·kkõßÛjÞêÝ«{·«­]߯_ª«¿ÞúÚª»mUêõv®¿kUU«¶µ¿^Þ¯UýuûUïjÚýê½×V×Õê­Zµ­j«·m]ßÚ¿w_½ê«[]µþªµþßj¶ÚímÿÞªõz­j×u{wk{Õ«ÖÛUë[]¾îþÖ¯µ½®­m«þêêÛ½]oÝVÛvêÕõëºÝÚ»vµvÕvºÕª«½ÚªíÿZµ{Õ_UkWªºïnõWª­«Ýª«~Õ¯[Úÿ­UvöêÖÚ­«ýz«­U[k¯jõ¯½íÛm_íÚ­µ^¿ëïUWU¶«}·«kk«­ª»¿ÕmºµûÞïkÝm¾ªë»Õ]ímµjõÿj¯­_÷UÚ­Öý[W[U«m»«¯]ú¶ÖÝj»µU}wv­êë¶ßõªµ®·Ö÷_«]×ZªõujÝj¾½}ª«jê½öªÚû¶½Õÿ¯uÛ½U»Vª¾îë{»½µ^ÕUëö·ÖÕí[Ö«[Ö¶ÚªµúÛ_ªº­~Ý{kþ«^«¾ÖëÞÖºúݫ׷ýºÕÕ{W­UÖ«{®µ[ÿV¿®·­íµµm[ªõõ¾ªí{Vº¯ÚÞ÷Zõºöªïêï½Uwõ­í}õjªû«ujÚª­¶ÛÝUª»{Z×UÛïkwnÛ¶ºßZÖ¯~öᄎÞßUõ}zÚß«ÛU¿­Ý»»k]uZ¯}ZµVÕZ×»öíZÞê»íjõ^¶·¶Õï«wµZõ¾ªÚ÷_ºýzÚÖßV«ZÚ­U~õÛ»[nûj«U]ë{êþÖ¾¶úªÕõ¶Û½»ëµÝÕWZêú«µm]n«ZïÛn­kuªÕ÷öê½^µ»k­ZõU­êÖý·Wímk®ú÷ëÕUjºú®Ûzû¯[Ö½Vµê®×Þꪻmßnþß­®ÚëZúÞÕ½ww«¯ß~ÿÖ¯Z®ëoZ®·ª·ê½×­Ú­oUú½¶í¶×Ýß»[v·jÛjµë½W¯µ·¿êªÿ¾ª»]]}[]~«WêÖõZ½î«oºµ}]UukoZÚÿµnþ½Z¯ú­v¾ûªµ®Öí¾ßuWëw[^«Ú߮֫wn¶»×µV½WýÕo½UUZ­m®í»[Um®ív«­{^½]}WnïU]ÛUÿý½U^ëõUmª¶»{µöß[]«î¯][v·_Õ­¶½zõm꯽ªÿ­¯[uÖëÛÝÕª¿U«vºµ¶»}ÛÞ½}®­îëÕ¯mÕk{Õª«nÚ­j­ª®íÚª×kª¾Úßõ}zêµZµßªÿUwÛwú׫V«wU×·¾î½Ýwõÿ½[÷ÝZºß€ \ No newline at end of file diff --git a/Lab3/random_text_uniform_two_point_05_distribution.tar.gz b/Lab3/random_text_uniform_two_point_05_distribution.tar.gz new file mode 100644 index 0000000..0a02987 Binary files /dev/null and b/Lab3/random_text_uniform_two_point_05_distribution.tar.gz differ diff --git a/Lab3/random_text_uniform_two_point_05_distribution.txt b/Lab3/random_text_uniform_two_point_05_distribution.txt new file mode 100644 index 0000000..b1bb034 --- /dev/null +++ b/Lab3/random_text_uniform_two_point_05_distribution.txt @@ -0,0 +1 @@ +0001011101100000110000101001110101110001101101001010101000010100111001000110100001111111110111011101111101100011001111001000101101110000101101110110110110111001000100110111010000010011111111010100101101110011000100011111101101000101011111010111101000000001100000011100000000001101101010110000111011110011110001011110110101110111010110101011111100110001111011001001001100011110100001111010101100100101001100110010110011111100111101000000101111001110101011100010101111001000110010011110101000010111100101001101110100010100100100110101101011101101011001110100100100111101001100010010100100100000100011001011100110111101100111101111010010100000111100000111110111100010100011101010011101000011100000011100100011100011000001001010111111111001101001110110111011010110111110011011100101010001000001001010110100001001011011011100110011011101111000001111000011011001110011101000011010001010000001100101110110111110010111101100010000000010101000101100011011110101111101011011000111100100111001001101011010001101101101001101011101000010111011110110011101110010010001011110001111011001000101000000001000000001011100101101111011101101000001110010001100100101110111011110010100111100111000100100111000000101100100101011100111001011011111110110011111110111001001110000101100000000000011010010111110111011100111100110101101011001110101100101110101100010000001110101100111100100100111101110101101000011111100111111111011100010110110100010100101101111111010010010100000010011011101101100001101100101100101100010000011110110000111010111101100000111111101010101100110010000111111011101010100111101011011110001001100110001001010100000011011001110111011001010111111010001000100100101011011101000101101000101001110011000010111001001000101000010100101000001101100001000000010100000010101010010110000111001101001100110101110100000111110111011001101100010011111000101011101010000000011101001111101100110000110001001010011011011011011001110101110100110001001101110010111100000011000111011010100000010111101101010100110110010100011011011010100110010101001011111000101101111100110000001010010010110111100110011001000110001000011100100000010011111110010111110100000101100010010010100010100100101100111001000000001001110001110110101010101001011000011000101110011011101001100010100110100110001100101000001110010101011011010110100011010100011000100010101001011110001110001001111110111000111001110100101101111100000111110011001100110111010000001100101010010000000101010111011100100100010100110110000111010011010110101101001110111001001111110110011111111101010110000100100100100110011000101100110011000000000100001111001000000110110010001000100000010101110110010101101001010011111000110001001111010001000001001110010001001010101000010011010001111100001000100010111010101111101010010010111010000100101110111000100000001001110111111101001011000011110100001111111011000111001101010111011111100000101000100111011010011100111011001010111001001100010001100111011010100010011100100110101111000000110001101110111010011101101001100011100010111111111111000101111000011100000110110101011101010011111001110101000001101100001010100101011001111010010100000101010000011001111001111001110001111110001100110010110100000001101101111100100110001110111000110110111001011011111000111001101010011100101001011011001101001010100010111001110111111000100000010011010111111111001000010011010000010011100111110000110000011111011111010010101111110110001110111010111111011011010110110010000001101010100111100010011000100000111111101011101110000101011110010101101111111101000110100110110111111111000011111110001101110101101000100001001001000100110101001101101100001010011111011000001101011010100100100000011000001001000010000000101111101100101110110011100110010111100010101010001011010101110111011001001110011111100001010000001101000010001000000110010101101101001110110100101000101011000111110101011000010100000000100000001000001000101011001100010100001101100100001000011110101000110000100100101000001110010011111011011100000101011100110101001110011111001000110011000111000001010011011111001110110001001001111110110001100001011010100111101001011100001101101101101101010001011111110101011001110100010000000101110000110101000111110101000111000111011011111110011101110010011000010100011100100110101110101000001110111010010100010010101101101010110000010000110101001001001000011111001010101010111111011100000101011000110110100100110000101100100000111100111010101111101001011111111001111001010000110011110111001101111001011110001011101010011010010011010011100010010000001101100111111100101101010011111110111011011111010000000110111011011100000011011011000010111100101011100101100111001000000000101101101101110110100001111111101010000001001100001111000101011011101010011100000101010111000001101010111101001110101111011101001100100111000010010000011001000011010000000110101101001111100011111010101100101000000110010110110011000001111001001011010010101011001101011001101110111010111101100001000111011011011010111010000111111111010110101010100011111000001000101010010010110111010010011101010000010001011000100110010001100110000000001001111101111100001001001011101001001100001000010100001010010010011111101011100101110000000011011110000010011110010100110000011000011010101100010011100011001010110000101000001011100010010101011110010010000011101001000111100001010111111010100010111010101110101000011010010110001101010110111011111111001110101010011110011000010101001010110111111000000111000010100000000110010011011110111110111000010100010101000011000000011011010101101000010001111100110111110110101010001011001000000000000000110101011011110010001101001011001001111011000101101000010100010011011101010101110011011111010010011000000001001010100001010111110011110110010111101100111010011010100001000011001010100110101000000011100010011110110100100011010011110101100011110101110000000111101101000111000101111000101111010011001000101100111101001101111110100111101100110010010110010001111100011100100101010100011001111110101001011011100000100011100001110011111110110010100010110001010111011001000111000100111101010001000100001011111001100000111000010010000111110100100000111011000110010000001100000110100110011100110110011010010011101111010100011110010011001110011011011000011010110000111101010011100011011100101010011100101100010110010101101011011101111010111010010111111111111011110000001011001001011010101101110100011101100000101001001111100111001101100110101100001010100111010000110110110001111010110101011111111111111011110011110001011010011110101100000000111111100001110100001000110000110100111100000111001011000101101000100111101000100100011011011101011011010111010111010100000011110111110011100011101010101011001001110110100011111001001001101010001100111111101100001001110011100010011101011110101101111000100011011101100111011100101111010110000111101011000111101111100111010101001011000001110000110001100000101110111010110101001111000001000001111111001111100001111110111000111111110010001010110000101101000011111011100011001001101100010010010110000100100100010101101110000100000000011000001111011000000101110001100011001011010101111010010100000010011110000111001101001010011000000011101010000111100011100110100100111010001100100011011100010001111011011101011111011101010001111011001110111001100100011001110111111101101111000100101101001010110110010101001110011110011101110010110111011110101101000011000001011000010000011110101111110011110101100010010000100000110110011110111001010010101101011111011010100100111110000000101100001101101001000101101000101001001011000100011011100000010100010100111110111000010010000111101111011110101100110000110100010011001011010011110111010010010110110100001110010001011001011110111000101100011010001010110011100100111001110000001000100000111000001010010011101100010010001101001010001110110101010100100111001110100110111110010111000011111110000100110111000011110111011111101011101010011101100011100100100111101101101000010010110111101100000110001101101010001011001111011100111001101101001011110001001011110011101010100000000011101111011011101111001000011110000110001001100010110010001011101101010010101010000111001100111111010100111001101101110001010101001001100100000110101110010100110110010100000111111110000101111010000101111111111011100000000010011011001010111111001101111111000100011110100100100101101001001110011111101110111000000001110110111011000011101001000011010110111110110111101001110101100010011010111110010001001011100000100111101100101010011011101111001001000110000101100000110000101110101111000001001110001010000011011110111100010001100100111010100100110111100000011111001101101100001001111111111111110011011110111001101111011001001010010100101110011111010001100000100101110100001111011001001100101111110101011000000100001111110111111110001010110001000011101110001111100010000110101101000101000001001010010011100101001001111110010101100100000000000100110001111110011111110100001111000010100001000110110010001110010011110101101010001100110110111111111011101110111110111101110111001000000100011010110100101100101100010101001010011011010110110100011111001111100011001010110010111110010100011101001110110001011001011001010100000001001100000001001111011010010010010000111000010100011000000000100001011101101100011111111001000101000100010101111100010100010011010100110110010000011100101011011010010101000001010001101100111100101010101000001100001011101101010100010010000101110000101111101101001011000100010000011100111011110000110010010011000010010100001011111000101010010001101111000111110110101001001111011001110000101000010000011010110111110001010010110111100011000000100110010010111111101111100111100100111011100011001000110111100111101101111001001000111110111010100111000100110101110101111100010010010010101100011111010000101101101010111010011011011100100111000111101111001110011010110001100011000000110001101110100111010100001001000000000110000010101001010100001101001011110010110100010101001000001010010111001100100000110111110100000110100010000111010011000011110001101111010111100100001101010000001100000001101001100000100111100010110110101010010010100010010110100110110010111000100011110011101111010101110110001111100001010100010010001110110000011101111010010011100101100101000000000000011100101101011101100101000000110000111101011100101111110000111100100101011110111010001100111110001111111011101010111100000101111011010101000100110001111000010000000000010001111011001110010001111011110101100100011101000000010101100110000011000111010101101111101011000001100010001011001010101100101111110100000101011001000000111011010111111100011011100111000010001111101111011111110101000111100000011010011101010111001000100010000011110000110000001101011100001001111110110001001111011001110011100011010110100010100010000110111000001111100111111001011001111111000101100000110001000011001111100101001011100010101011011010100001011101001000001011001100001001110111000101110010010000010110001100101111101110010001100010001111110111000110001110011100100101001111110100111101101100100101111001000111000101001101000100111010010100010101010001100010010000011010001100010010011010010101010101111000001001000100001001011011000110100000101011101101010001011010100100010010001111001010001110100110000110100000011001001111111101100100100010000000001011110010100100111001001100110000010110100101011111011110110011100110001110010110000110000011110011101011010000110101010000110110110111010111001100100111010011101110101000110010111101010110101001110111011111000001101011001011111000011010110011010111001010110110100010111000100011101011010001100011000000110101011001100110010010010011010111011111000100010000001100000010100010100000111011100100011001111100111111111010001110001110100001010101110101000110010111111010001100011110101011110100100101100100000000111100001110101010110000111001000110011100011000010111011111110010010101111100011001011100010010010001111101001000111000101111001011111011111000010011111001100001110110111100100011110011011010100001100100011000110100100000101100011010010100101111100101001001000111110001101101000100111110001101000100100000000100110101011111100101101001101011100011011101111101110000111001100101000001011110011001100110011101111010011101100101101100101010000010110001001100011100101000001110010110010101011110110000000001000000100100101111110011111100011000000100101001011010001011100101111011111010000001011000101000110110100010101101011000110111110011111010000011001011111000001101011111001100001001000110100010010011000100111011101011010001111010000000101010000100101101100010010001000001111011010011000001011010111101110111000100011100101100101011000110011100101001100011011001111111000001100111101000010110110101010001001000000110111101010111010110000000011100010011000111110111011011011111011110100001111001111000111011111101000010001010011000001110011111101000000101001101110010100001110010111100100011000111011000000110110100111110001010010100000100101000111000010101011101011011011100111001101010101101101001100010010101000101000110010001111111001100111010100100011000000000111101000010111011101001101110000101000010101111110111001001101011010010001010100000001011000101100001100110110111011011001101001000100101000111000111101110101011000001101100111100011101111010110110001101111100010111101111001100111011110011110000000010011100000001000011010101010010001101000111110110001111111111000000101010011000100000111000101001010000110100001010001101011010100111001000110100101010111000000000011110010100011111110000101100001001101110011101111001110001010000011001101011111010011010001100100101011011110000010000100100001111001111100011000000000101011011011111000001001000001001000010100111100010001101000101000011101011111010011001101101111001111101111001001100011011111001111010010110100111001010110100010001010011100101001011000100000100111111001001110110010011111001011000011000000001110111011111010001000011001101000010000000100100110001111000011101100001101010001011110110011001101101000011111011111001110100000001111001111010011010101101000010000001010110111001101000110111010000110010101101001101000001000000110111100001010110001111101010110101101110000101101010011101001110101011000000101110111101000000100011101010110101001111000100011100100011001111001001110110011011101010001000110011100101100011000011101100011000101001101100100110001110101011100110100011111100110000101011101110010111011111110010000111111101000101001111001011001010111110110100011010100110011000011011001011100101110100010101111000110101110111001001010101010011000110101110100111111110111011110001100000110000011101110110011110101001001010101111001111100011000111011001001100101100000101010001000010011100110010000001010011001100111010010001111111100010110000000010101101100101011011001010100000111100111101010001011001001100001101011000000101010001011011100001001101110110010111010101001011111101001110001011100000111000101101111100100011000100001010010110010000001100100010100000110000111101011111000011101010101011110111101100100010000010101100000100101000110001000001010000100010001000101101110011001001100000100101001100001111100001101101011001011100100111011111110110110010011101010011000110001010001000000100000010001000101010101110000111111011001011101111111111111111010010001100101111111011110001010110011110011001110100000010101001011000110110000000101010000100110110110100010111100010101010111001010111010001111011100000010010010000101011010010001000000001011101000011011111100000000111000111000010100000100101101000000100011110010011011101101110011101111011111101010111001110101000001001001100010001010111000100110111001100110101011110010010101000000110100011001010011111000001100010100000110111101001100110111110011001110010000111001010100011101110000100111000111111011010110001110001011011101100110100011001100111011000110001000000010101000000011100101011101101110000010001010011110100000011100100001110101001001001000010111000000001101011001101101100101110111011110010100100110110010100110010111001011110100101100010000100100110110101001010100110111001110001010110100000010100000010111111011100100110000010110111101000100110011000010110000110101000101011111101100100110100001010000011001001111101010001000001000001111011000101101000001111101110001011011010011001010111100110011010001000110000110110110100110011110010000011001111110011011100011000000100000100001100010011001000101100001001100111110101111101000000011100110000010011100001000111000010011010110100100101011000000000010001111000001100011000111110000100110100011101000000000111101011111111011100001100011010111100101101100111111110101100111000011010011011100001010010111100101111111101000100001010101110001111000010001111111001000110101101110000110111001010000110011011110010010110100010010100001010100011010111011100111101101101111010100011010111101000100100010000001001010101101001010001100111010111110000001011000101001100010000011011000011010011001011100000101010010111100011111000010001111110001101111111000001101110011111110000011001000101001111010000010010010111100111001000100111000111001001011001101111100111010100010110000110110111010111110100110000110010010000100010111100011110011011110000000000001011011110010110111101111111000011000111010101101110100000000101101001000001100101111100001011110001010101000010001111111011111000100110011101000110101010011101010011001001001001011000000111101110011111111011111001001101101100000100001010110110110000110001000110110101111011110101011110101101111101111001011110010100000010010111101100100101110010000000000011111010111110110000100100111001111100001001011011001011111101001100011000010100100100010111111010000000111000000111111000011100010111111101100111111000011111001101111101111100010110111001010100010000001000010111111000110101110111001110110110110010101111010010100000011011000101010110100000001110101100010111010010110001111001001011100011000111110100000100110101001010011110011101010000001101011110110110110001001000000000011001100110010011001110001101111010011100110110011001110101010010101111011011001111001010011011000010101110011010110100001000010011100101101111000101000001110100100111101101011110011101000010011100011111110100011100101001111011000101010001101110100010001011110111101001001110100010110000000110101010000010001111110011001010100101111111110111000001110000000001011000001001100110110100000100111101110000001110110011111100000011111011100011001011111110001001011101101100010110111010001111100101001011111000110110111011100001001001110010111101101000011001000101010011000101110011010011000001100110111101010001011000000010000110100011001000000011111100000000110111100011010101100000110011100000000110000001100000100111000111100001001101100110101101001010010100010001100110011000101100001111001110011011110101110111011011000010010110011001001111110001101011100001101001001100100110111001110100101110100101010010000111111111011001010010101110101111101100101000111001011000001111001001100001001100001111001001101001011110101001111101011001010010011100011010011100001111001001111001110100001110010100111011111010111101100011101101001110111101101101001101011111000111101100000100111000001001100011110101100101100001111101110100010011100100110000111100110010000110011111000010000000111000111100111001010111100111101011000110011010111011110111101110100001011101000000001110001011101101110010111111111101000001011111111110000000000100101100111101010011110011010100010101101011010001101101001001011011110110010100000001101101001101010000010101100010110100011111110000011011010101111001010011110110111000001110101100011100000111000100010011011101100000111001110001110001011000111110100100111001010001000000101111011000011110110110101100001100000110001110101010011110001110011110101000001110100001011100000011001010011011111000110111101011011001010010111011111110000100011011101010010110000111011010101111100000111110000101001110100100111000001011010010101100100001000110111000000001010111001111111111010011011011110111001100111101100000100110010001110000000011111011111011011000001001001101000111101101001110000011101011100000011110010010101110001101011001000011111000111011111101100110001100101111000101001100011000010101111011011100101011001100110111001000000111010111101000010101010110101001011101000001111001101010100001010010000000000100001100001000001010001010110001111011011111000100010011000011000010011000110111000101011000010000110100111101010110110111110111111001000101100100111011100111110111000111101001101001101100000000110101111011001111100100101001110001010101010000011010010100011000111101010110111011010110001001000101001110000010010000100101010110110111001100001011110110000011010100001011001011000000010000101110010101001111100100111111001000000000001111100101000101111111011010001000111101101111101011001110100100011000011101000010010100110100001100101111001000111110010000001001001111001011111100101010111100010101111010011011111011010001001100011010000001101101010100011000000101000010100000011101100101101110111011111100111011100101010010110001101110110000101011100110000100000110110011110100111010110101100010101010001000010000110000000101111100110110100011111000010000010101100001100001010111000110101100010101101100110000010000100001000011011010110011000100011011110010001101110001101100100000011001110010001100101001100110100111001110100000101101110111010001110111100011100011011011011101010101000000010001101110110011011001100000001011011111000101001100100101011001011000000100101111100010001010010100101000011000001010000011000111010110100100011000001010000110000110011111100010000111011001110111110000001001011001011010010010010000110011010011011011110101100100110010001111100101111110110010010101011001100110001110111111110101100000010001101011100011010111100111110001010001110010001101101010011101111111011111111101100011100000001100010001110001111010111111100000101011110000000011001111011110001100110000101101110100010101000001111111001001111001111100010000001111110011101100101010010001001001000010110110001000100000110101111110010011000110011110101111011011001101101001011101101110000110011110101011010100000011000101101010111110000001111111110001011110011011100011101110101011010011011010000000111100000101110110000111010010101111101111111011000111000110110100000001011110111000100001111110011001100111000101111101010011001111010000010001001100110111110011011011001010000000100010101001000010000001010111000011001101010110110010110110111101110010000110101001100101000111111000010111010101011111000001100101111011101111111111011111001010000111000000111011111001011101010100000111010100000111111001001110100011100010101110010000100010101001110101011111110101010011110110011001110001101001101110110110110001001111011001001111001111110100111110011111110010111100110100001101101111100101000111111000011001101011110100101110011001000001110000011110111011110110010011111100000111111011011111010101001101010110101101100000011110001110101110000110011001110100010111010111110110100001010010011010011111010001110010111011010010011111010111010010011000000100110010000001000110010001110101010001100100101001110111011100000101101011110111110010110011010110000101011010110111011000011110011010000101001011110000011111111101110110001010011110100001011001011100101110011000101001101010001011111011110010101000100101000000111111111110000111111100001111101111010100111110000100011000100000111010001000101000010010001000000011001000001111111001100011100010110010011010101000110111110111010011101100111000111001110110001000100110110011010101101010111000010010010000101100000110010000001010110011111111010011011110110111111111000010001001100000110111011110101101110110110000100001011000011000111101011110111010111010110001111001011111111111101110100011010011001010111000100110010101100000101111011001011100100001111100000100011100011110010101011111101101101011111100111001001101011111011011000000010111010000010011111100001010011001010001111101000110000010000000111100001010100001100100111110000111000010010000110111011111001000100011100010001011111110101011111100100100110110000001001000011000000010100101101000000001010011000100111111001000010000101110000001000001010000110011010010101111001110101000100011000001001100110111010011111000111111001100110110010001100101001111110001011111011000110010100000000110100100100110001010000111001101111010101000000111100011101011110010000000101110000010111101111000000000100001100010011111101001101100011001111100011100010110011111001100101011110110111001100011011001001010101101110110111111111111011111010000111001100000000001101010010000110011001111000110000100011011101001011111100011011101111000100010010010111110110111101001100010001110101101000101100111011111111000101011100000110000100011001000111010010001101011000111101110110010010110111011100011001000011011011000010010011001001011101110101110001101000101100100000001101101100100110000000000111000000000011111010110001001001101110110000110111000110000110111011011110000000001011101101100000010000100110011110101011101100011001000100101001001000010010111011000011111010110110100001100001111100011101001011000100110100111111101100111100010000100011010100001110100001101001010000110101011001010000101011101010100110001100100010110010101001010001101100101011110011100000001011101000100000010011110111100011011000001111000101110001001111111000010001110100111011000111100101110001100000111100101101011011101011101001100000011001110010011100101111101100111001100101001111000100010000101011101001000010100111110000011011101010001101100100101110110011001100011111001100001011010001001100110101011011111010001101001000100110011111101100000110010011100011001011101111111101111011010101111100010110011100011011110011001011100001110001001000110110000010000111101010100010000100110011101101110000110101110100101010110101001010100000001101011100011000111010011101111111100010011000000101101110101100111001010010100101001001000101101000100101000110111001111001011001100100101010000001101011011110111110111101101010001100010110101111110111000111000100100111110010111111100011101111000011000010110110110101000001011010101101110000110000000010100011001010000001011100111111111000000011001001111110011101011011100110010110010111111111000001110100011010010010001111010000010010100011011111111100110011110101011011111001011100011111111110110011010000101100110100111010001000110011011001111000011010100100001100111101010001000111110101100000111011101010011001111111001000001000100101111010100101010110111111111000011101011010101010110011010011011011110101001000101011111010000100111101110000111011110001111010000111110111110110100001011110111001110111010000111010001111100000000110100111100000111100010110100011011001101100010111110001100011110110001000101110010000100100101010111010011011111110100001111100101010111011101110001000010111001111110110111111101100011010000100110100111010111111010001110010000011010001011101010101001011110011100001110011010100110100011001101110101001111011001010110101110001101011111001101011010000000001001110001100101101001011110001101010101111010001101001111100001011000100000000011111100100001000111010110100000110111011001111101111110011101011100000000110101101110110000001101110011011000111011000001101011111110011010011001010011010100010001111001011000100000110111001101000101110010010101110011000011001000111010100000111000100010101111001010100001101001011011000011110100101010000000101110011010001101001000110111010011000011100100101111110000010111000001010011011011101000011111100001001000110110010110111101000011010011101010010010011101000110101110111001101011100001111001101000000001100110101111000100101001001111111001000100101000101101111010110010010010001110011101111110101100101000000000111000000001111110000111000001010000000110110101100011000011010000100111001001001100111010000111110010110100000111111000111010101011110101011111111101110011010000100000010000011011111011011011010100011110101000000110011110010100001101001011011111100101101000011100111101110100010110011100100111000001100110010011001001111010001001101110101100011000010011001001011100001011101101100001001010011100101100111111000111101111100000100100001110111000110110101000101010011100101001010001000001010101011111000010000100110011111101110101000110100001110001001110001110101010001010110111000111000000010100111111110000101010011011111000011110100010011010101001111110100001000110110011001100010000100011011111010011111111101010011000111111110001101111010010100101010011011101111001110101100101011001111001110100110111000011010010100111110010110111010100000011100100100110110010000011000110001111000101100000000000011000100001110001100001100011001000001010011100101110010110100111001101001000010001111010100101110011101100110000111111101111011001110011110110000100101000110110101001101111101111010110110011011001101101100111101000000111111010110101101110010111001010101010111111110110111011110111100000110011001011011100001111100010110010000110000101011100110001100001010001001110100100111101001100110010100000001000101010101100111101001011100110011101111101000111101000110100000101010000001101010110011011011101001001110110101010101100000111011100111011101100100011001001101101111110100111001111011011000111111011000011100001100001011010111101111010110111000110010110111100111010000000100110101010101100010000110111111001111010010101101100111010010101100010000100100000100010100100011101011111001010111000111010101011110111101111101011111101000110011101100111001010001111100001000010111010100011010111010111011100010110111000110110001101001010111100010001111011000011001101001001010010011011111010011110111010100000010010100010000000011000101001001001010010000100001110010001100001011110101111011011111011011100011001101001011111001101101111010100001100001011010010001110001100111011000111010100000100000110111000001111001001101110010110000011010100101011111001010110111011011001010001110000010111110110011010100101010010000100011111011101101001000001011010111101000110000000110001100100010101001011101000110110110000110111011011001100100000101101101101101000001001111010010001010101001010000101110111001100000010111100100001110010111001110100111110101100000101101001100000110011000011101111000010011011111111011101001000111111010111101101000001010001110001010010101010000000010001001110001001010000101110010100010001011001000101001100101111000011100101001111011101000110001011111001010111101000100100101010011011000010010101100011001000100010101110011000010100000000110000010000000101011001100110101011111101111101011010101110010010110001101010001011011010101010001001111110001010110010100000010011000100000101010000001000010010100100000001100000100110000110010100011100001001110000001011011100011011011000111100100100110110111101001010011110001111110111101111010101110101001100000000010111001011110101110011110010110100100011110100010111010111100011010100011110100010010100110111011001101011000111010011111110010011011111011101000011100001001001101100010011101110001011011011001010010100010110001111111011000110011010011010100100101111000000101001110010000100001000011010110001100011010100010010110011100110001110000111001001011101101010010111001011001111000101111111001111101000111010010100001000010000110100000000000110001101000111010100000011110100110011101100101100100110010101101010001010001110110110010010001011010011110010011100101011111101000111011001000111111001100100101001011000000000111011111111011110110000000001001011001000000010001010001100010111111110010110000101000000100010110110001101000011011011010001101011011001111100100001100100000100011111011001011000000011100111111111100101000001111100011111110100101100110110011100001000001111101111100101110000101110101110011000010010010011010011011010010011010101001110011100101101011010100101100110100000111101001011000011101000011100001100011110001110001001100100100101001000111011111000110101100011010111100111110001111100111010111110000001011100110110001110010000110101100011111010000101101110000010101001101011111001100000111011110111100001010000101101000110001111110100111001011010010100000011000111001000000111110100001011001110110110000110010100011001101111101100101010101001110100101011010001011010111001000001101001000000000001010010011001110010111000000010101101011110010100110110100111101100010010100011001100100000010000000101011010010110110101111100010110111010010101001101001010101011000011100100000000100010011111101100101000001101110111110001001100111111001001100100101111010101010101000101001101100110110110100101010110100000110111101110010010011000000011001100001000111011011111101010101110000010100101010001001100010010000101001101101110010111101000100001111111010101011110011010000111000101010010111101101000010111000100010000110111001000100001011011000000101110110101100010101111101111001011110011000011111110001111000111001011001100110001100111001110100011100111111000111000110000110010010100000111110110001000001010000100001001100010000100000010001000101010001010101101101111001010010110011010100100111100010001101000100001001001101011011010000110110000111011011111101100100000011111100001100110011100000010010011111101001010010110111001010101011001110111101000011010011101100001111100000001010110001000111111101011101111011011110000011000000100011011010011111000101101110111000000111111100011110111111101000111100010011000000010101111011001010010100110111111010111111010011001000001001001101111101101001001101110011111001111001001110110000001000001000110111111010010010000111111100111101110110010001101000110000110001110101011100010111101011001101100110110100101100111010111110011000001011010001010100010010011000001001110011111010000110001101110101110011100011011000000010000110010100001110001010000010011010100110111110110110010010011000101001001100100101001101010100010100101001000001101011101001101100110110011100000110010110100100101111111011111000111000100000000001000100111100001001110010101000110101110011100001100101000001100110000010010100110100010100110000111001110010100001100100100010000111010101000111111110000010111011110000110001000000010010110011110010110111011111011011111101101101110001001001111111110110001001010011001111000011110000000000000101010111111100001100100010100101000010101000111101100001111010111111110110000111100010111001110011010110001011001000101100010110001100011100111001111101001001010111101110101011000110101111011110011110000111110101011000100000100000100011100010001010110000110111000110100011110100000010000110011111001010110110000001010001000010000111001000010101100110010110111101110111110101011011011000100000101000011001011010101011111001100000001100011001101011110111010100111110110000110111110001111100101010011010111110101011011010000100101000111100101111001110101110100111001011111011100011101010100100100010000110101111010011110010001101011011010110010000001000010111110000101000010001110010001000010001110010000101101110001100010101110101011111100101100011110110110100000011111000000111100010100001101111000010111001011110011101100011011111101111011000000100111111010010000110101111001110110010111111010010110010010111100111110110010000100101011000110111010010001111101111000111110110011010101110110001011110010001010100111110110111000110010100110000110100001110110010110111111100000011100111111111111110001011110111001100100001000011111001011110000111101011001000010110001110111100011001010001010001001100010101001110011100100100111111011011100010010010011001110010100011011111010000110010011001110111010001011010010101110000101101100010101100111101110011000000110000011110110110001101101111100100011100101010100111010001111111100000111010101101110101011100011000000100011011101000111010001010000001111111010101101011101110101110110111111110101010011101110000010000111011011111001100011101111001001010001111100110011001001100101101110010111100011111000001101111001011001100001001001100111011100110101000000010000110000110000101000011111100101101011011001011101100100100001101110011111100111010110000100011011101110000001011011011111111100100011111011100001011011100001100101100110011111111000001101110101110110110100100100101001001100001100100110101011110111010010111101100100111111100110100101010111111011011101101011100001001101001011111011110000110010000000000000010010100110001000011101010011100000001011001000100101110100111010100001100110100100111111011001100010101111100001100001000110101101000110101101011111101001011000110110001010010001111010111110011001110100001100001010000000101100111011010010110010100101111100101110101111110000000011001011110010111111100010110000000001010101010101101110011101111100110111011111100001101011001101011100110010110001011110100100011011001110000001111101100111010001101011110010010011110010111011010111011110110110011110011101011001000110010011001100001110010010001110111101100111010101111000010101100100010101001001100001110101100000111111100010100111000000111100011010011110001010111111001010110010100100110001010001110111111001101001111000001000111001011000100100001000101011010000110111100011110111111100011110111100101111001010101100010000111011010000100010111100100000111100101011101010000111001000011010011001111111100101101010101000100111010011100111101011001010101011100111001010101000111000100100100110010100010011001100101110000001100000101011010011010101001000001001100010011011110101010011011100101011000100111100101100011001011010001101100011110111011010010000111000100000010011011000100110111101111010001110000111011010010101111010000010001000111110100000010110101010011010110011001101111101001110010101001010111111010110111010011101011110011011101100100101001111011010101011010110111110101001010010001101010001001101101011000101100111101101011000010101001111110000110111010110000010011100101111001000011000111110001011001101011011000001111100100000000001110001001010010000011101110110101111101000110010001100000110001110010001110001101001010011101101001111001101010110010101001011111111010001110110011001011100000010110101000101011001000111110100001001101110000101110011001111000001101100010100010101000011110110010100111100001110001110010101011101011001110010110011010111101000011011100001001001100010110101111000000011010000011011101000001010101001011001011100111110000101100011100100001100111101011110000011011111111110011100001100010101100111100010110110110000010110011101001000000001111100110001011001010111101111001101011011111010011111010101011111101111011001101111000100111010110011011001100001010101011110111000001011101100110101100110001111001111001011000110001111010111001000110100000100011110100000010110010011011010001110100010000111011100001011100110101101111000100110000010001100011111100101010101110010001010000111010011000010100111001110111100000110001111000000100001111110011111011100100010000010001001100010100100001000100110011011011110110010000001001100111100101011010110101111011011110010101001011011000110111100010010101001111101110110010000011011010101001110011011100100011101100101110000001100110001011111111111000000010000101111001001100100001010011110011110000101100011101011010100100001000101101010101110110101101010111100101010001100001101111000100011110001011111101100100111011011010111111000011100111011110001011101000101100110100111110000101001010011000110000101100110011101110100011100101011000011010111101110010000110010101001111100110001111001000010110100110010100100001000011110100101001001110000011001010111111000101000000010000101001011111001000101110001111010101110010110101100111110101110110111101101100101000010011111010100001000000011110100111010000010001101100000010011111111001111001100101101101010011111101000000111111000010101010100100001011010101000100010110111110110001001100101000111100110001100001101011000000011001001100111110100010101100100100100110011110100110101101010101100101011100100001101010101101111111110000010101011001001100011000011001001110011001100101100001111011011101000010110110110010011111001011011111010001111001000101111001011010010001001011101111100110110001001100101111100000101110110100111110010110111011000101110100101001000100010001110100101111010101010001010111110111010001011000010111000011110010000111010101100010011001010110011001010100101110110000011001101000110011010100110110100100110101001111111000111011011001010111111000010110000011100001100111101001100000000001110101011111000000111110100111101100100010010001000001011111001111010001001111110000111011101110000101101001100000100111011011111101010101000110011100111100111111011010110110111100000111101101110000111111110110011001111010000110010111011001110101111101111110000110111100000101101101010000110010010110011111011101111111001001111110101110101001100001000110011111110100101001111000110110110000010101101101101101110010011110101100011001011100010000110110100100001010110011010111010010000100100010011000100000110110100011010001110111001110110100000111101110001000101001100011001000100110111101000011110001100011011000011100100110101000010101011000101001001010100101010110101101011110111110010011100011101101011111010111101001000010010010110111100011000111001000000110001101101001111101111001001100011001001101100000101000110010001010000111011110101100100110001001101011001001100101010110111000000100010100111000110011001111001000111101100100011010011100010011000101011110101111101110100001110101011011010101000010001110011000011010101001111110100101010111101001100001001110000010010011010100001101011001011111111010000011100111000111101101111000111110001100000110000111100011001011100010101110110011011001011010111000100011111100011100111000111111001011010000101110100110011100100111101010001101111110001001001101001100010110111011110010111111011000111010111111001000010110100000101110101011111110110010111100111001110100010000101101111100001110101100101100110110000110000100101101011011100010001011010010010111010100110000000000001111010011000100100000001110011010111100101100011101001010011001001111110011111100001000011110101101110001010010001100000110001101100100000011000010011000111001001000011001001100001110001011110011100110011111101101001110111110000001001000001101000000000010101011100011110000011011110001100011101101011110010111100101110010011111111000110100110110011110001001010100011100111011110111001111111101101000001011010000001010101011010111101111000010111011001111110101010000110101011000001001101000011011110100101000001110110000101000010000010100001001001001101011110100001100101001000100000111111011101110110000100101000001010010101111111110100000000110000111110011001111000001011100011101111111011010100001110101111001000101000101000010101011100110111011111000101000000001110010101111110100110110100000010100100011101100101001001000100101000010110010111001001001100110000011111000100101101110000111100001111010101000110111001111101000101000101011001110001110011010011100100101001000100110001000010110001001001111001101010011000000101100111111110100110010101010111010001000101011001101011111000100010100101000010000110110110001011110011011101011000010111010110101011100011111100110011110000110110000111101100000111001110111000111110001110001111010101100001111111000011010101100100110001010101110111011000101011101001000000011000101110101000111010110000110000110101011110010101001011001100111101001001101100001111110000100100010101101111110100010000111001000100100010111110101111011110010010000001101110101010010010111101111101001101010101111111111101110011101011110001010110111010001010100000011010010110101100011110111110001110010110000001100111110000100000011100001110010111101111111001111110011011001001101001101101110001010001001001101101101110010110010011110011010001100101111010110000011001011111011001100000001111110011111010101011010100000101101001111100111001001011001001000010010110010010111100110001101001111011000000111111001000110100000011100110010101101000000001100100111111010100100011110010010111010111100100011101001101011000100100101111010101010100111110001110001111100100011111101000100100000010011001010111100001010001010011111100001101001100000101101111100110101011111000111011001111011101011101000101111010110011110011001110101111011000111101100101001000110010101111001100011000010001001010101011010100101010010111011111000001011011101011111010000100011000101000110000111001000111100110000111000011100100001100011111110010110001100111011101001000111101111100000110100111001000111100100101010100100111100001100011000011110100111100100000110001110011101111011101100011010101010110011101111111000110101011000011010010110101011000110000010011111111100011111111000000111001001000000110011010111001101011000001011010011110111001100111010101111101100011001011010111000110001101001110110111100100100111101101011011000100001110011001101101010100011000101010111110010000111011001011111010001101111111101101110101100100001001010100010011010000010110000010010011001111000010100010010000111011000110010100011001100100101101001110001111011100011111011101011001001010111001001101011100100000011001101101110011100101011110111101010010000110001011110010101110010100001100000010100001111110000010000111101110000001000000001001101100011011110010010001011100001100010001110100001011011111110100010000111100011010011100111100000001101010001000100110111000110011000110001110110000011101011101110110011001011011100000100100111100001011100110011001101111111001011110011010011100110010111110111000100001000111000001101100111011000111100110001000110001111001001000000011001100111111000101000111111010001110000100110111011110010101100110000100101000000110101011011010111111010011110011110001100101001010011001011000111011010110011100111001100110000000011110010000101111111110001000100111011110000001010011010110111110110111001110110000001010111001101110011111110011101001111001011111010011100011001000101001101111001011011010101110101001010110111111011100110111000010011110111111010010010110010101000111100011100010001011000001110101010110001000011111101111001010100001100010000001001100011001101010100001101110011011101010100100011011101111010000101101111000000101011110111011000011111110001011010011100011111011110101011111000010011100000100101111101111001000011001100000010010101010100100010010011011000011001011100101010111000001011011110001111110001000100010000111011011011111101111111110110001010101110010111000000000101000110010010000000110001110000110101011111101110011000011000100101100000101001101010010001111001001110111101001010100100011001110001011011100011100110000010001110100011001011101101110110101101101001111011110100000110100001101100101111010001001110001001111100110100010010111101111110100111010111101111101101011110100000011111000100101101011111101111001111010001111101110100110010011011000111001110011110011010101010110000000000101000110111001111011110100100101111010000101111100101111010011010000100111010100001000010100100000101111110000011111000011110110010110110010011110011000000110000111001100110100000011110100011101100001011000101010100000001000100011001010001011111001010101100000111001100100001001101100011110000110111010001111010010000111100101001011100010101001000111100100110101010101100101010000100001101000010010101111000001101000101011100110111000011011001111100010011101001111010011110000001011010110101100010001110110001111111000010110100001101010111101001011100111011011000101010011010100110110010101001101000110100101100000111110100101000100000110010100110011011110100001001100011100100101001001000111101000111101001010110010110101110100111101001110111000100010000111100011001101101010101101010110110001011011011000011011110010001010110001000111101001101100100110000000111011000101011100100011101101000111010011000011111010010001001110000110000000111000011110001101101100111010010010110111001101101101001111000111101001111111100001101100100100010100100010000010111010100101100011101010100001001011010000101111100001010111110011100111100110111110110101100000110111100011001101010010101111000111101111010001001010000110001101010000011111110000111110010001011101011111000111000110100011111010101101000100100111101101010110111101010101111001110110010011011001001101001101100111101001100011010110100010101011100001000001110101100011000111010001001101110100001100111101101101010101001001010101010100000010111011101111101110110011111010110111011011001010111101001111000011110110000001011001000111001110010111000001101001000110111100011111000100010011101000010111000111001110011011100010000110001011110010111111110100000100001011101110100101001101010111100000011111111101000111100101101010010000000101110011110010101100001000001111010100010100010011100010111100000011000110110100000101100001110110000111011000010000010111011100010110000101010011010100110100010111010100001010001000010101101110000110101111110110011110101010111110001100101110100000110000000101100100001011111111110010001101010111111011111001001110001010000100010000010001100010101111110100010000111101111001011111111000111010011010011010101011010101110000000011100110111111110100100100000110110000010000101011100001011000011110110111101111111011100110100111010011110001011011101100110010110110010110000011010110010101010010001001101000111111100101110010101011111011010000001111010011001111101001110110110111111000100100100011011001001101111111010110000011111110000101111011101100001011001101011000110111000000100100010110011100100101001100011111101110101110101001000100001111100100111101100110000110001101100011101001001101100010100101100110011000101101011111110001111110111100001010110001010100101101111011101110010110110111000101011101010101001010110110001001001110001000010100111010001000000001001010000101111000101110001110111110000111011001000010111010110111111011111111010110011000000100111111100001110001011110110001110100010001101011010011110100001110100010001101001000110110000001001001100000010010111000001101011111110111111111001011110101111001110110101100100000010010011001101010001101110001001111011000010101101110101101001001000011101110100111111001011000100000110111100111000111101001110101100111000001100100110111010001001011110001101101101111110000100000110011000110010110000011011010001111110100101010001001100110000111011100111100101000110111011000101101111110101001100010001001111000110010011011101101101101010010000010100011111110111111000000110110000110111111011001100010000001011000001111001111101101010000000011110100111010101000110111100001100011001100100100110000000010001101101100100000100110010110100001011101101011101101100111000010011111010000011001000100011010000000010111111000011011010100101001010110100000100001000110111010100100101100000010000010000011001100100000011011111110001101111101000011110010110111011000010010101110011101010110000001010110111101110000100101101101110001010001000011110000110000010010001101111101011001011101000001010011101011010011000001011010110001110011001111010011100001110110110000001101100000000110110001000110111001111001110110100100001110110110110010101011111011101010011010101001111100000110011110001110100110111110010111010111101110101110001101010101000001110110111010010110111010010001010101111001010101001010100010010001111111011011111110000100000111101110010101101001010111010011101110100111101101110100010101101100000001100001110001111000001011111101100000111101011110100110110100001001111001010101000100111100010010001110010010011011001000011110011111010001101110010100010100100111011010110011110011100010010100000111010100110010010111100101011001010100001001110101011001011100010110101111111100111001100010100001100010011110000100111101101100111111011100010110001010011111100000010111010010110101101000010101111100010000001000110010110100001001110000100100111001110011110011110001000100011111000110111100010101111010000100001110000000111011101000011110001011001011110000011110011110111010101010010010001001011001100101110111010101101101101011101110110000100100101110110111010110110110101111001111111000001010111100110001010100011010110101010000110101110110100110010101011010000000111101101010100111010110010010001100101011110101000011011100111000100111100111110110000010001000001101001011101101111001001111101110010111110001111110000111101101111110010100000000100010100101110011000110111001000101000010110111010101001111111110111110011001000010011101101100110100010000100001011111110101000001010100100111010110100101100000111001101111010111111110110100110110000101011101110111111001001101000110001111111110110100110101100000100111100100010111010110011010101001111010010001011101001000010000100101101101100110001011110001011110001100111110111100110010000110001001101010100111100100110000100101111010010100010101101011111000100111001010011111001101100100010001010100111100011111100010011011010100001111110111100010011001110110011101000000011011010101111110111110010000000000001111011010100011110001010010111111110111100100101011000111001100101010011101011101101010010011001011000101101011110111100001001001010010110101010011010101101011010111011101100010001000100000101111000100011111101001001000001000101010100011010000011110010111011010100011110010110010000011101011100011101001001010000011011010111111011110011101010100000001111000110111111000110011111100000111010001010110100000011100100000101000010100111101010111101000110011001010100001111100100000110010001110110010011101100110000101101111000011001000010011110100010101100100101110000100101001110110001111110011101100111101110110100010000001010111011101000101101011101011101101010011011000010010011011111110110110100101100110001011001111010110101111000010000011010001001011000011001110111101110100101000001111000011000010010010011001011001100110000101000110111110100010010110001010001101101001100000010110010011110010010100110001010111010111000000100011010000101010101010111000011100101111000000001100011110110100101010010011000011000100110110001001100001101011101000100111011100010010010100001101001010111000111101101101000010100110011101111100000110010100100001000111111011000010011000010010000000000011110110000110100110001011000000010010001101001110000111101101011110000010100001001110110000111001010101010110110111011100101010110011111000001101001001010000000011001111110010001010100011001000010101001101001000001111011110010100000001111110111000110010001111001110111000100001111100110110011001011001111010001010010001101101010111011001011011100100101001010101001010010000110111001111011001100101011001100010011110100011101000001010110101111110010010101011101100010011010110101101111110100001011011100001110111110111000001101101010011100011001011010001011001100111010100111011100111010010110000000100001011111100100011101001001001000101010110010010110111100001101110100000001110010100011001011101111001000111000100010000100001011011010110010111110010111100011011011011010000010111100001010011011111010111010111100011011100111101101010110110011101000100111111010110000100010001111100111000100010000011101100011101100111110110010111101011111011000101110100001111001111011000100110010100100110111011101011010101011101111010110010011110101010001011001100011001010101000101100010111111100010100011101110011001101010001000101110100111101011001111101111110011010010001100011111100111111110111001000110010111010100100011100010110001101110001100101111001110110110001000100011101110010001111000001110101100001111001111001111011111001110110100100100001110010111100111001101110111101110100110010111010000111010100110100101010000100000001111100110001110101011101011011001000110001010101000110110000010010010001010100001001100110100011111010000000100111001100110001100111000101011011010101111010100010111001010101111010010010100110101000011010110001000001010001111001001111101011110111001110110011110101101000111100011110000001110010111110010001000111100011101000000000011100100111110000101111000100101011000100010001110100000111111101011111101001001001011000101010101001110101001110111110101010111011101000110101101000001110111111000111101111010010110110111000111110100010110111010011000001011010000010010111101000001001010001001000111101101111001010110101110010110100110100010011010111011001000011010111100010011010101111100000110110101110001100010000111100000011111011101000000110111011001000001000101110111010101100011101000101101001101100001001111011001011011001111001110101001111010001100111101000111100011100101100101000000011111011111101001110100100001010110101101111111111011101100011011110001001001000000100110100000111010111010001010000101100110011010011000000011011000000110000001100001101011111011111100001100111011000010010101101011100111111000111011111010011110101110101011111001111000111010000110101110011001110001001000010101000101101101001010110100000001000110100111010011011111010011100101011111110011001011011100011110110010110000101110010101111101011011011111111011110110011110101001111101000011111000110010101000111100101101100011110101000110111110100110001110110001100101101101011101100011111101111010101111101101010101011000000011000000110101111010111011000111111000011101110001100011010010110100001010010111100110110111100101001000101000100110010100100101111001010011001111110000011011011011000000001111001010110110100010001010111110100010100101000001010111010100111011100011010110100110010101110101000100010101010111001101011111111110000110101110101101100000001010111000001001100010101001011100101111000000100011010101111000001101110001011001110111101000011010011110111100110100011010001000111101101101101011100001010110000011110100000100001000101100011101001111011111011110110011011111111110100000000111101001011011001100011100110111101100110100101111010111110100100000010001000101011011010110111100100000101101000011100110000100111011001111010011010010101111111001110000110110011101000101000011001111010100100010111100011111110011100110000111010100001111011100100000100000001010110010111100010011000111100010110000010010100101111011011011101110101111011101000011111001001110100001110100010110001000010010100101101000011001110100000010000110010100101011111101101111011001010110011100011000100111111010101111001001011111100011101011011100111101101000011011110110001100110001110000011100101111010110000011010100110101101110100011000100010110111101000001101101101001000111100100101100011000100100111010111100110000000001111001010010100110000001001000000010101110110011011011010100101100110100101110110000001001000000010001110111000100110010010001010011100111000100100001101011111101000011101101111011110101100010010111100011111010010001110001111100100111000110101001011100000110101011000011111000111011010110011011001000011110001101001111110000000000101001011111111011010000101100111101001101100011010011011010010101001110111101100100101011000011101111101010011110101110101101101111100000100110111101101010100001010100001011101001100101100000000100110100100000101111011011011111000110110001110010111101001001000101110100000000110111110011000100000101010001110100010010011100001010110001001100101000110010011110111110010100101011010111100001100011111011100011110101000001001011010101011011110001011000001010000100000010101111011101101011000101011100010110110101001110100010010110011000001101001111111011000010011001111001110110111101111011000111001101000100101000101111011100010100100000010000011001001010001101000101101110011110100101101100010110001100101010010000110001011110111000011000110011000011110101001101010011101011010001011000101101101001110101111000001000000110101110111100001010010001111010111011100010110011110001101001011100101000110111001000001000000001100001011110000111001100100010000110101101101010101110011101001011001000010011011100011111110100110010001110111001001000111111001000000011010001111011000100101101001101011101101011110011111010001010100110101000100110100110100110101001101110101001101001110010011100110111110000000001001011100100111010110100000001111111010011001110011111010101100000011110111010010100110001110011111000110100000000011011110001111001000110000011001101010010100101011010111111100010010111111100110111000101100111011001011011000010111111100000011010000000110001010011101101110101010010000110001111000101101011110100001101011100011010011110011000111010110000000000011111001101011101100111100100010111010010011101011110101101110001001011010100111001100110000010101101011011101101011011010000011111101000011100011100010011011000001101011101011010001001000101101110010011001011100011000010110110000011011011100101000110001101010100100100000111010011001011101001011100101101101110000111011010100011011111010010011001110110001110101101000000001111110101011111010010000001000100111001001001110010100101001000010100110101011001101000000001111101110111011100011101111011000010001001001010100011110101110101101000110001010111100010011011100000111100111000110000101110111110100111111101100010010010000010110101111011110001011011001101101010010101000000011110110100110101111111011010001010001001110010000111011101001111101010001001110110111011000111110111111110011111111100001101100011001100101001100100111100101110100010010001001001000111001111000000101000011100011001101010000001010100101011011110101010110001010010100011101010111111010000100111100100000100100111101011000011000001000111110001011111011011001000111011110011101010101000010100010110010011110101001011001101010010011001010000100101000011111010011111010001010111000000001000110011110001010111000110000000001001010010110101110011101011100001011111010101100001111110010000101010011111101100011110000000011000100101001011001110101010111101100000000110111011001011101010011110001011010111100101010000101000001010011100110011100110101101111111000110101010000101110010100000111000000110111011111110110111001011101011011010001110101110010110100011101100100010100110111011110000011000100000011001111100011010001111101010111000101000010010110000000000011101101100001101001000000010100110001000011111011100100110010010011111010011000000101001011100100101010000111001100111001011110100111001011100100110011111101110011010101111100010010011101100101100110111000000111100100010100010101001111000010111001110010101000110011000111010101111010101010000011111010011000100100010100101000000010001001110001010011011100010000111111100110001010101001001111100111100001010011000001010100111001011100001110101011111111011101110110100100111010011000101100001000101010000100011111010010001100010011011111011110011100001001010101110101000000100010111111011011011011101110110010010101100101111101010100001001110001011000110001011110111001010010100010100111101100111000000111110001100000011000101001111010011100100101000011000011100110010111001001000010011000100001000011110011110011001111111000100000110001111111001000111010100000111010011010000001000001100110110100010110110001111010000100111100000101101001000000101100110001101000000110011101010001111001110100100001010110001010100111100010100010100000010010110001100010111001011010111100001011100110010110111010001111001101011011101111100001110100011010010100101011010101010100010110100111011101101001011011010001000011000110110100001000101101000101010101100101100011010011010011010001000011011100100101011001010111110100101010010000011011000111111011111001100101110101111010100110001011011101010000010101111001100011010111100011000001001011100100100101011001101101000001101111001110010101111100011111001001111110110100010010100000011111001111111101110100011100101011100010110011100010011010101001011001000100000011000111011010001101100101101101110111011011101111001111001101100000110000011101111111100010101000001100100100110010111000001001010000011011101001000100011111010000110100001101111100100001011101110011111001110000101000011010100111000100000000000011001011001111000110011001011100011011011111010100101100101010100000110110000110010000101000100111111100110111010110010011100010000011000011001101010011101101101011011011101101000101010010111001101010110011010100000100101101100011000001011010010101010110010000110000011010111111111100111101101011001010110000000110100000000100100100111011101101011001101101111101100101010000010110010110001100001110011110001101101100001111101100011010011010010100101010010110100100100000001101111110010101011111101110100011011100011011001101101011110101000000110000110001111000100101110000101000101101011010111100110001101111000111111001010110001001010111011100101101011111011000010101011000111100101011100110110011010110000110101000110101100011010010100101101100111111011111100000100110101110111100000110110001010010010011101011111101111101001011111101110101110001111000101010001010101010110101001101010100101110000010110101001110101011111000011010011011111111111001001011110011000110010101100101110010010000000110100000111000111101101101100010100101111010010000111010111000101100000100100111011000101100110110000001010111001100000011100100110111000100011110101111011010100100000110110000101010111101001110010100101110000011101001000001011010011000011001001101111001110011001111110101011111111000110110101110010101101111101110000010101100110110010010001011100000111000001011100111111100110111011111100110001010100101010010110011000010110101100110111111010101000001110110110000010000000100010110001111110001111111100110001111100010111111010000010101110100011110100110001001001000001110000011011000001110111110111100111101110100111111101111110100000101001000100000001101100001011111101100000000010001110001010111001000110010111000010110110010001011100110011000100010011011111010110010011110101101110001100100100001000111011011011100011111111001010001101100000001000010111000001100100000000101100101110001100100000100110110000011000000111000000111111000110111011100110111111100011011101011011101000011100100110110011110001100011011110100001100100010111100101111101111011110111000111010101001101111011110000111101011110111110100001111100101110110101001010010111001101111001100001001100100110100000101110000000100011100011111111000001101001110011001110100101011110010001111011011100110100111100100000101100100000111001010101110001011101101100101000011000000110111101001011111111101010100011011101101001000100110001111100111101000000100000010000111111010101001100111111001110010010001111100101010111001001010011000110001011010000101110000100010011001011000100100011111100011001011000101011011001010110010100001111010011000110011111010010011110111101000001001010101110010000000001110000100011100010010101100000101110010101110110111100111011101101011111011010001100110110010011111101101101011000110111000100111101011111010001000101000100101101000101100101000101001001100110010101101110111110111101111010010110100010000111010000000111010101110000011110110100101111111111001111110111110101000111011001110010001000010100000100000100101000010011000100110101001000110110110001011001110110110100000001000010101100100100100101101001111001010101001101010100101111001100001000101100100001101011110101010011010100011010111000001110100101001010110101100101100101100101011101110011011110111010110001010110011010100011011001100100100001101011011000110011011101101010010110000110111011010010011101001100001000010000110100001001000001111000010111110101010010111100000001000111100001000000110001011110001010100001000011000000101000100100000010001101111011110101011000100000001110010010100011111010001000110000101011110011101100101010011010001110011001110110110010011000010101111110000011001011011110001010001110111110111101100100011010101010001010101111110010011011010101100001000001101100111001011010000110000111111000111001011111111101111111111000011110111111000110010100001000000101101100100011001010001101110111011101111001001100101100110111101100010011100111011110101111010110110011100111110010010001011110010111000110100001001111011111101100100100001010001101000100011100011011100101100111011111111001001110101111110011010101011110101011001110111100011101101101111001000110110100001101110000110010111100011011111001101100100111010011010110100010010010000010100100000110100100101101011110010111101011101110111011010111101010110100000100000111010111111001101000010001010001001100001011011100110111101010111111000000010111001001110011100101100010110011001111001010101100101010101001101001111010110111110011110110011111010010111010000110001110110001010100010101011111010001010000100010101000101001001101100110110001111000001110011100001100000011000010110111100001001100010011100001111100011000000001010101100111000000001110010100001101110010011010101110011111011111110001111110011000110011010101101000110011001001000101100011010011110011011111100100001111111101111111101111000100000010011010111000110000101110111110101100011010111100100010001101001101011000100001101111110110011101000010011000001101001000010011001110000001001100001111000101101110111111001001000010101111101111000100001111111110010011001111001110001001111010101101111101110110001101110111111101000101000111000101100011101001100101110100111101011100110110111111001100111110000011111001111000110011101000101001001011011111101101011011100101010001001111000110010110111110100111100001001010011101110000011100000011011010011000011100001111100110010010100011110110111100000001000101101101110000001001101101000000010011111101101011001011110010000110101010000111001111000100011101011111001110101001011001101010101010000100100011010100010101011110000010000011010001100011111101010101100010111011110000000111001100000110010101111111011100001100010110001101110100110011010011011011111000001110011111111011110100000100110001000010101010100001000101000001111011000111101000101110000010100000010000101110001000111010110011010011000110110101010000111101010110100011011101000100011000011010101100000000101110111000011010010001100001001111101001000001110101010110001001010111001101011110011000101101111011001000100001010101010101110000001101001001110001000100001000100011111011000101010000100110010000101110111101101001011011010111000110000001000110110000010011111100011010110010000100001010011111100100000100110111000101010000111111010110001010110101101110101101011001100101011110111111111011110111011110010100011100010100011100101110011010010110010011101100110001110000011010010011100001010011111100110000101011110101011011011101100100100101101111011100001010010010100100000110101010100100111001000101101100011100111001001110001010000110100111111010001000011010110000100011000001001100011100011111100010110111111001100001011000101100011111110000101110111110101011110110011001111101111001011000001011000001011000110110000111000001010000000101000101110110100001010001001010101110001100010111111011010111101101101011011001001010001101000111010101100011100001111000001111100101001011111110000110101001110011100100000001100110001000100101011001000110000110101010000110011110010100111010010100000111111110101010110110101011110010111001110111000010011000010111110111010100100010000001111010011111111100100000111110010110010101000011010010100001110001011010011010101000000011101101101010100010110101011110111001110101100011000010010110100010001101101110001110110011011001100010100011000000111011011001101011100101011111001000010111011001000110111111001001110000011011101111010010000001010111100111101111101010100100111111100110011001010000100001011010110001001111000100000101101100101001011001100010011101001010011010110000000110000011011101111010111101101110001011111011111001101001001010110101110111001010111111111010100010011001011110110010101111100001011101100110000111101100111011111101101010100100111111010101010111010010111001001011101110100111011110011000110110111110111000010100101000010001101010011101001110101101101111000001011001010000101110000011111010001111011011111010110100110001000111101011000110010011001010111111111110101110101010010111110010001010110111011010100010001010101111110010000111101011100111101011100101111111100100010001110110110001101011001100100111101100001101001000110010011110011101111111111010001010010000010010000110101111000111110111000110001101001001110011100111010100101101111011110011100001101011111001111010000010111000011010111101101110110010101001000000000100101011111011010000110110101010110000011111010011011011101110000000000101001110110110010011111001101001101001110101110000101101100011011111100100011000110011110001011110110011111011011110101101000111001101111111001111111101111111101001010000010111110000101100111111111110111111101101001101111010001111111000011001111100011001100111100011100111101000010100010111101101001111011010010101100001110111101111101100101001100000001110111000010011001000000001010110001111001001001010011101100110111100100001010001111100110000001010100101011010111010110111101100100110111101110100111010011010111101110011011011100011111100010110001101110110011011111011101101001011000000011011000101101100101111111110111001001000101001101100000101010001101110011010101100001111111001110111100010011111101100001011100100001100011001001011110111001010101001000000011011101110110011100011000111101001000000101011111100101110010100001111010110011011101111011100010111011010110001110100101010001100101010111001110101001010100011010111101110010001100110010000111100010100001111010100001001101110111111111011100000101100101111010111100011100100000000000110011100100001010110010111111100010010010110100010111111010101111011101100011110110011000001000010011100101011100010111110100001100011110110100110011111100010110010111011101001111110000111011101111111100100000101001000110000101010000000101010000011110101101100011011100100110111111000011100101010100000111110100001101111011111011001011011110110110011101101110101011111111010101000000010100010100111000100100100000010111011100000111110001110010110111110100111001111000001110001111100110001010001011101010000111011000100000011000011101111110101101010100101000100101001101100110000000100110010010100011010010110011100111110000011101001110101011011110110011101100100000110100111001101111001011000001010111111101100101010001100011101010111110000101100110111101110101111110001100000000000101101100110111000100001110011110010000011101101011100101000010001100110001110000111011001111101010010001010110011011111001101001101110010100101011111100110100001101000001011111011100101111110010101111000100101100100100010000111110000110001110100000111001010000000010101011010010010101100011010100111101001011001101010101000111010101001010111110000001001101111101100010000100110101010111101101011101111011000111111001011100101011101010100101000001000000111010001101101100111100000100111001011010111000100110110011101100111101001011100011011001100111100000010110110001010110010001110111001001101010011101000110011111000100101100100000000100101100110101011111001001101010100000101110011011010000110110110101000100010010010101101111001110010011011000000011010011111011110010011010101001011111011100010011101000011101100100001000000100101110111100100001000000101010011001110000011000100100100110101001111000010000110100011100111111101010110001010000110011011011001110000011100011101001000101101111110011111011000100111101011001110101011001000100000000010110100000100000110001101110011101001000010000011011111011011110001100001100011011011000011110011010001001000011011111010011001010001111101001110110100001111000111101001100101100111100100101100110110000010101011101110011100110000001001010010101111011001111100100110010100100110010111100110111110011001100100111100111110110101011011011100101100010110100010000010111010110111001010110100111111011111001000101111111010100101100111110000001001001000100001111000010011010010000101010110011001001110011010111010010110101000000101101100001101000001011010101010110110101001011011110110110111011101000011001101100010110100110101100001101011010001010111110011101111101000000010000000000000011110010000000000110011110011100000000111100010111000001111110011001011011000101000000001001000111000011010100011011110101101110011000110111011110010100001000110111011011111111011110010010110010101100101100101001111100010100010001100000110111100000011010110101001001011110011011110001111101101111100000100110110000000000111001110001011001101111101001001111011000001100000010010010100001101101011110101001011000001001011010100010111000101101100110100111001111111011000001010101101011101100000111101101011111000111101111001110001100110111000101010011110101000111001110011110010001100100100100101001010100001000110100011100001110101000010111101001001110101011011000001011010110000110001100111011101011111111110011110010011001010111111100100100000100001001110011110001010001011001110100011110101011010011011011110001011011000110100000100101000110001010010100011101110111001010011110001110010100100110000001101010010000111110110000111110110111100100111010011110010010110000001011000010011110011000111001101001100000001001101100010011111111101001111011100000111111010101100110011011110101100000001011010100100010100111001010111010010000001111011110111110111011111011001110101100011100100010000100100100100101001101010110001001000101111100111010101111110101011011001000001100011000011010100010000111110111000111110100000111100100011001100111110110110100000010110000010110000000010001011011011111110011100001100111110010111011101110101111110101001111100001001111101011111101011010101010010100011000000110011101011011011111111101001000001110101110111111010110111000000010110110001111000010010110010010101010000100100001110001110110011100001100011001011101111111110000110011010101101111100010001101111100000111100010100001011010001110000011100011001110101000011111100011001111100111011101100010011110100010101010111100101011011001100111011011010010000111011011001001111010101011000010001000001000011001000000001100011111001110011001101110011000000000010111110111111110111100111101110101011100111111010111110110111100000111110111011010010111100111001011010011100010000000110111110100100000001111001100100011110110101001100001000011111011001111100101010010111010100110101000111100011101111000110001111011000101001111100110000101001111010000111111000001100001011011110101101010101010110100011011000000011101100001101101111110101010001110010100000011110100001111100111000101100110100101011011100000010010100000111011110011010111001110101111010111000110001000011001000100001000011101101100010010010100110010101111011001000100111101001111111100110000110110000001010010001010110110101011110011010110101011001100001111110110100010001000111011100011100111110111001000100000000110000010101111010000101011100110010010110111100110000110011001111001111111001010111000110110001010000110100000000010010001100100110100000010110100001101011010011001000010001100101100100000010100100010110101000011101110110110101000101010001011100000101011111001110101110011010111100001010010001001100101101000011001111110100001100011111001100111100111011100100110111110110111111100010101110111011101101000001001000010001111100101101100011010010011000101101001001111010011111111110010010110101111011110010100000010010000100100111011100010111011111110010101001000011111100111111111110101000001001100100010111101111011011000011001101010010101101101010001010110110100100001011010100110100101000111000110010011101100001000000101111110110001100001000011111101111000010011111011110001001000001000111010001010010011101101100011111000100010111001000001000101000000101101011010010010111110100010011100100100111110000110010000111101010010011011001100010011011111100010000001101101010001110100101101011000011010100111100100101001011110010010101000011010100111111000100100001001101101001000101010101110011010101010000000011001000001100001111000000011000110100010100110001011100000100100101001000000110010110100110011111110100110000000101100011100001011100110101000000011010000110101111100111110110011011001110010111001110111010010011010010000100111001010111010010110010101110010111100011001001101101110001100101101100000100010101000011000111110011111010110011100010100010010101110000010010110110101001000111011010101101100000001111101101001000011110011001110111000110101110010000100011111000101010001111100110000000100100010001000011011010010110100011100001011000111000010011111100111000000000001101111101100110101010010000110010001000101001010010111100110110011100011100110100110000010000001101111011010110111101000011100000100101001010010100100010000001100011011010000101000001110000011100110101001101011001110111111011000110110010000111011001011101111101010100010110000000010011000101100101011111100011001000110100011001111001101001001110010110011110111000000100010110010001111000101000001111101011110101011110000111110110111110110111111000111101111010100001010010000100010010111101100101101000110100100110100100101100100010000010011001000111100100110101010110111011011000010111001100110110001011111010011110100000100110100011100110110111100011001011111111100010100111100110100000110000110111010011110010010011100001111001100000111000111111111110111011010110101111011010101001101111110111011100010001101100000101100111111110110011010111010001000110111010010011010100011101110011101010100110010111011001010101000111011000010000001101000100111110010010000111111100101001111011111100111001110010110111101010110001110111010001100101101101001011001101010111001010000010000100010011100101101111001000101110001100010100100101110110000000101000111011000011010101010001100010001110110111101010011100100110001010000111110110001101011110111000000011000100111111111100010101011010001010100100011101100001010001001001001011111100101110110111010000110110001100001010011100001001001001011000110001101011110100011011100100110010111100111010111110101110101010100001111001101110101111110001000101101010001100100110101011000011100101101101010111000011100000001100111110110100110011110110011011100101011111110010010000001010001010110101111010001000110110101110011001111111010010010000001110111001100000001111110011110001100000100001101010111001000011100011011011001101000010011110010000110000001000101100111001001101010100001001011010001011001000010101110101110010011110100011101010100110000010101000011001011001110100111001110000001100100101001010100001111001000001100000111101101110111100001101100101100100001000000010110111000101011000100100011100001001001011100100101010011010110101111010000111100010100110001100101011110010111110010110111101101011000111110101111110111111011110101000101000101010101100111100011101011010110011111000110001100101000110100111000100010101011101111100001011001101100001101111001000100010110101011111011110011101010011110010000111110100101010100010010011011101101110100000011110010010011110110101011111110001001000100110110111011000101100110101100000110110101101011011110100011101001101000111110000111111010100111000000011011110010010110000111101010101100000100100111111110111110101000000010011100011111100111000011000101010011010010011010110001000001001010001110000100010100101101011011100010011010101101110001000000110111110111110111100001011100111111010111111010000000001110110110010000001000011010011101010010001010010100011101011101110110010010111110000011001101101000111001111111000011011000100001100111100100100011101100001111000000010011011000001101100010011010011001111011111011110100001111001110110101100100010111000011101010100011000011001011111010111100000001001011110111110111001111011011101000111000101001110101100000011100101101000010110010011000110011101000000110001000110111001101100110111001110000110111111101001111100000010110000101111100011011010111000001011010111001100011000101001111111100011010011110010111000011101111101111000011000010011101000001111000100111110001000111101001000110000010110101011001101001101111001111011101000011011001001100101000000111000110011111100110100011001000110111001001011010100010100100100100100010010011011010001010001101010000111011101010101001110001010101101101111101000101100111101100001101111001010001111001000111000111110110101101000111110110101011101000100010010011000010011010000001101101100001111100100101111100100000110101111111111111101000110110100101100101011001001010100000111100100011000110101011010100000011011101110011001000010010000111010100011110110001000101011100110010000001011101111101011011100010111000100001110000101100001111110110001010110010111110101100111101110001100000010101010100100100010000011111000010000010011111001001111100101101011110110101011010101011000001110001000110011110111010010101111110010011011100000010111010011010111111011000110101101111111001100000000011111110011100010001010100101101111011010110101001010000100100000110000110100000110110111000110010011000101001011000101100111100111100001001011110010001110001011110101111000000010000110000110111100010110111000101001101001100100001001010001001010010111111011111010010011100001001000000001011110101100011101101100010111000011110010110000101111001110010110001000000011101011110100000101000100110100100010100001010010110010001111100000001011010111011000010110111110100001101001001101110010100011111000010011111001101110011110001111011000111000111100010010110100010000001011011100000111010110001001011000010111001110010110001010101010101010010011001111010001110001001111100100101100001011010111011010000010010101100010100001001001101001001110100011000101010010101001111011101000100000100101001001110110010000101110010110000110111110100111101110111100111100100111000000010001011011110001000001011111100010111101010011001100010111111100001000101001001111101111100001111010101001101100000000000010011000001011001000000101101000100110011110100100111011101011101011000101011001111101010110100011000001001001110100110010000111000001000100101101111011000001100011010111101000110011101101101111001110011100110011011010011010101101011110101101010101110001111101000101000101100101111110000110011101010011110000110100101011000000100001000110111011110000000111010100011101111111001111011000100100010011001010101100111110110011111000011111011011110101111101011100111010100110001011000011111010011110011000001100100000001000110111001101100101000100001001010011101000000001010010111011110111001101000000100000111000110110010110101010011001000000101010100110101101111100110101111111000000000000001000101111011110101111010101010001100100000001101101000101011001101101010000011000111111100110101001000001011111000000110011000001001100010001101101101000000110011111100101100101100010110010100100100110110011100110100000110011000010001001000001001001100000101001110110110110100101100000110010011010010100101000100101111001011001100000011010010111001111111100000010101011010011101010001010100000101011101111001100010110101001101100000100000011010111001111001101100000011100011100101111001101011010001111110110101111010011010000011000011100000100111111001000010111010011000100000011111111101010101000101111001000111100110000001010011011000001001011011110000111000000111111101000000010001110011000010110011000100010111000110000111000110111001110011100101000000000100000010110111111111001011101001011100000010110011000111000111100000000100010100001011110000000011110011000000111010111111001101011100111001110110101011000001100111101110101100000110100010110001010100001101101010101111101000011000100010101000111000000000101111111011000001101110101011011011011000101000011111101000011001000001011001110100111100111011111101010001000110111011111101010011110110111101010100010010110111100110001100000101110101110111111010101000001011001010101100101000110100010110000000010001111001011100000001011111011010000110100011000100111101001010111101011010110001000100110100100111010000111000011101001001110000110010101110010101110000010111010010000001110001011111111011110110000110011101111001111100101010101110111101100111111100000011000010111101001110001101010011010110101110100100010011110000101111000110001010100011011010001000101000010110011111000111010001111010011110011101001110001011010011010100101011001001001011100110000111111000011001110011001110000110101011000111000000110011001110000011001110001100101101111011111000100010110010110000111111111101000010110010010110000100101000100101101111111000111101100000101011011000001011010001010110011111101001000110110010001000100111111011010100100100010111100011111001100101011110111011110101010111110110000000001111001100001010100001111110101001010111110001101001101101110011001110100110001010001001000011111100001011110110001101111001101101011110011011100010001001011011100101111010011000100111100101100011110110101010010101111000100000101011000110010111101111100001011010000111001111111110100000001110000010001101010110111101010111001111100111101101001000100100011010000010101011010000000011001101100001011001011110000110101011110000011011001000001001100101011001100100000000000001000100001001100000011110111010011100001010001111111011100001010100110111011101101110111111001101001110111100010111101000010000110111011000000001101000111000010111010010001001011101110101101111110111000111010100010011010100110110001100010000011001000110001110101110000001101100110101110011001001100001001100010101010011011110111000100000001011110100110110000101010111100000100100011001101001110000010110010110111000110001110000110000011010110100001001111110110000001100010101000001110111101011110101101100010011000011010101101101011100110111110111010000101100100101110010011100100110010100011100110010010111100111001001000101001100110011001000010010101110000000110101011011100010100100111010110000001111100110000111100000110100110111010011100001001110001101011111011001001111110011011000101111011100100010110100111101100011011001101010101010110011110001000111001111101110000011001001000001011100011100110110101010000011001000011001011010110011100110111000100111010000000000000000000001011011011101110111111111011010110110101110100010010011011011101000011011100111101011000001001111101110010011110101011101101011000011110001110010110111110110101011011011000001100011010101000000000011100100001101001110001100111101011101010101010100011110111011000110011111111101110010100010100111011100010010010010110001011011100001100000101000001100101011000000000001011010110010011111010100111000010011111000100001000111001101011000010001000000010000111100111001000010000000001010011000101000100101001011100011101110011010100100001110111010010101010010100111010001000111111101001110011101000010010001001010011101100001100010000100011100011111111110111111000001101110010011111100001111001000101110100000111011010111011100011001100110001111001011100010100010110010000001111011010011000110100111001001111001001010010001000100010001110110001010010000110000011000010010010000101010100011001000011111100010010111110101111001001010001110001011110011110110110101101100010001010010010100001001001011001110010101001010000100100101010100010111011100001001111000100000001111111010000110100110100011111010101011101000101010100010101011110011000100010000100101110100000111100000000010100110011101010110001111011001011000010011100110101101111101011101101101000000000011001101011110101100000101111001010010000110011101100000110011000100110100100000111000111101011110110100010010111010100011111101010001100001011110110010001100010101001101001101101011000100110101101010001101110010010010001111010101010000101011011111000001111111101101000001010111111101010000010011101011101000000101010001010011100010101011100011001001101110101011100111110001110100110000001001100011000111011010011011111001100001111100111100001111010100010101001001100001100001101110111110001111110111101101111000011101001110100000111100011011101100110111110011100101100100100101100110000111011111111110100000001100000110110111011111100010101100101110100110100000001010111001000010010110110001001101000110100011111111110010110000011001010111100101110001111011110101000110110010110111010000110011110011000001101011000001010110010110011110110110011010010110110011100101001111101101000100111000111001110010010001001000100001100010011111100010111010000111110110101000000100011110000100001110010011001110110000000101011111011000011100111010001100100010110111101000000101111000001100001110101001010011100011100101111011011110100011010011010001011111100110000000101101000110000100110111011101111101111011110111010001000001101011100011111100001110100101010001110110110110101110011110100101011110110111010111000100110101011001011110001111010011110100001101101110111001101100100000110101100110110100111000100000000110010111101111001110010001110011000000000000101001110000001100000010001110001011010011101001101011010101101110010001000111111111000110001001011101111101100111001011001010100010110110001000010110000001101010101001110111110111011011010110110000100100110001101101010000101110011010100100111101101100000000011110011010111111010101101111101000010110010111001000011100000101001000111111011001111110000100100100100010101011001011011111111110011000100011100111011111100010111001010101101111100000100111000110011001110010100111000000011000100111101011100010111111011110100001101111101110111001011110111001000001100111100011010111111100011010100011101101001011101001110100110111010001110010101111011001101101000101010111010101000101110001010111001111011101111001000001111000100011001000101111101011101110001011101100000011010110011010010110000110010111100001101111010110111000100100100101010100100010111101111101000111010110011101111011001010111000101111010001010100001000100110011110101011101100011100110111101111110100101011000100111110110001000011111011010010010011010011001111011110000111000111010001000010101111000101100111101011011001101111110000010100101101100111010101001110000111011100110010011110010100000100101010110111000010011111010101011000011101101011100100011011100000011101011000011111101000110100101110000011100101101111100101110100110001011001110011011110000011000100010000001001110011110101001101101000010010101110011111010011111111100001101011000001101011101110011101011100001100011101010000101011101001010100100001001111000010100010111100010100000110011000001011000011100100010100101100001011001111101000100101100001000101100110011111011010111111001001011010101100110010101110010111011110010101101010111111100001010110101100010110000000101100010001010101101100001011000010010110011101111101000110000010100010100100011011110011111111100100000101111111110001111111110011111010111110000011000110010011111100100101101010010001011010010100010111101100011011010110000011000011001011001010101010000101011101010001101000111101111010010110110111110100000010011101001010001100100010111101110101010111110101010001101100001011111101101001100000011101010110010101110100010100101111101001101010011010001100010111101110101111010110110101010100101100000100011101010000010000011011100110010001011111100001000101101111100011000101101110111011000100111101001001011100000100100000111001000101010011111001100111001010011111010000000011110000001000001110110010101000110001111011000110001110110000000111011100011011000111110100110010001000000101101111010110110100110111011011101101100100111010101011111001110011110110101000110001000000001100000000111110011000110010110010101111101110001000000100111010101010011011000100111100111110110010101001000100001010001100100111000100101001011001001011100010101111000101001110011011011000100111100101001100010000111011100101101111010101111011101110111011101100110100011110001001101110001100101101100110001011110110011110000101010110100100000111001000010110010101101010110100000101010111110010011101010001001110001000000110111000101001010101001001001000001011010011110111100111001110101000011011011011000100101111100010100110110100111011001110111111111100100000101010000100010000001100000100000010111111010010111011001110111000011011000101001110010011110001010100011001001000010101101110110100100111001111001111100101110100111000011111000001000100111010010111011100000100001101101011010101001001101111111111100010100101000000110100100100101010011100110001000110000010001010110001000101101111010001110111111000100001000101010111001101110101001101100111101111110001110100000100101101010001001100101111100000011101111110011011011100011101101110111010000110100110111101001011010110001100100110101111100010011111000110000010000111011101011001111010111100111100111010101111000101110011001001110110000101110110110110000010100000110000101011000110100000101001010110011010100010011000000110100011001000010111001000000000001100111101100111010101111111011001000011100100100001111100000010101011111101110110111010000111110010011000111111011111110010000110110101000000010011100111010111000001110111101001010010110101010101111011011110101111000110011101001000000101111111111110010010101001001110011101000010000101001001101101001101001110011101001100000101101000000111111011111010111111110100111100100011010010001101011000011001110110110100000010100011100101111100010001101011101000110101010010101001000000010000101110000101101101101000000111001000100010000000111001100100001011010111111111111010101011010010111010000110011100011100000111011111100010001001001001101001001011011100000111001101011111001010000011100001001011001000101110000101100110001011111011000000001000001011000001010111101110110000001001100011110000110111010001101101101011110000000011100111111010100100011100110011101100011101010000101000110101001001111000001000001011110100010010101100011111011001011011010101111001000000010101100011100001101011010000110101101011000110110101000001110001110111111011100011001101101100000001011101011000000001001100111110010100011011010100100110001110010110100000101111011010101100110011100010011010101001101001011011101110101001111111001101011111111101111100011001110101010110011001000110110100111011100100101111110101111000001010111110110000011101100001000010010001111000010010010110010000110111111000100011011101011010001011110110010101111100011100010000010011001110111000110110001111001011000011100100100110111111001101010011110011110111010101101100100110110110101011111111000111100010000000001111000110000110011011110010010111010111001100011101110010101100111001111100100011000110101100011110001000000100011010111111001001111100001101100010110100101101001100000110100101111110001000111100111001011101111010000000010001111011010111101100000011100111001001111110000100001011010101110100001011010011011111110000111101101100101010000010110100101110000001100101011001001110100111001111110011110010001011000000110001100010011000111001011111111110111111011110000101101101110001111000011101010001101001001011100101010001100111101010110010001000000111000111010001010111111111110111110011100111110000001010001010100101111101010101100100001001111101110000100001000110000000010011101101101110010110100000111010111101111100010010110101111010110011101110010100110001111100101000011100011101110011111101101001111100010001110001110110111111011100000111100100111011000011101110000100110111010000010011111000001001000001010100010100100101011101100101011101101001100100110010010010100001111101101101010110101011101011100110000111101001011000001001010001110000001100010000000011101110100111010101101111001001001011000010010110011101000010111010100101111000000011111001010001001011001001101100011101111000110011000110110101011000010101101000011010010100001101011100101100001101011000100101010101110010100101001110001100010010001111100011100111000000101011010111101011001011101100000000011101101101110001111010101100100100011110011000100010001100100101100100011000101000110111011000001010000000110110011000110001011101000110001100001100100000011101010101110101000100001010000001000111001001000000110100000111000100110010000101111100001100010000100001110111011011111010100001011110101001110110001101001101010001001010111110100000000000111111011000101010010100001011010100010011111010100011001101010000011110100001110111001100101101000100001011000110101001101100001000110001100010110010011111011011011111001010001010111110010001001000111000001000011001011110110100011001101000001001011011011110100110110110110000000110000011000001110010110110010000111001011101011011111101101110011011110111010001101111101111001100001010000000011000100111001110100100101100011000110111010110110101011011010101101001101010010111010111011110011010000100111101101011100111111101010001100111101001100111000110111101001000001100001000010111011100110001011101011011110100010001001000100110010111101111111001010001001111110110100100000010000000101100000101101110111111010010101000110000110101000000101110111101111101000011110100001011100111100101000010110010011110011101000000110101011010111100000011000011101110011010000100001001111001110001010101010111111111100010011100010001001000010000000010010110000000010010111100001111110111111110001011001110100010111000111010010110000000001101001100000011110110000000101001011111101000110001100101001011001001101101110111110111100011111111101000111010000101001100000011011000010011000111111111011111101110001010100111001001000011010011111001110000010101101001111010100001100101101101000010011101111100111011011101100010101011111010010111111000011011100000011111111100111111010011111111001011101010011000101011011100101111011000011100111000001111111011001001001001010011110001001111111011000011001000011010011101100110000100110110000001111010000110110010000001111111000001011000000110000101111010011011110100000101001110110001110011111010011011010001000000000001110101001100001010110100010001010010101010111101011110010101111001011101101011111000100110110001111110011111010011011010000101011101000111001001100010011001110000010011111010111101000001111010010110110111110001011010100010101111000100101110100000101011101100010101100010010001100000101010101000010100000111001001111000111011111000001000101110000010010010100100011011111100000000101011011111100010101110000001101101000000010110110100101101001011010011000111100101011010110001001100111001001000100011110111011111101101101000010111000011011011010001100000011001101011010001001100110000101111011111100010001111100100001001100110111010000111101111111001010101011010010100101100001011110011100100100101010001110111011101110001000101110101100110001110000000110001000101110011000000000100111011100111010101100001100100111101100001001101110011111100111101011010100010000101100110001110111000111011010110101001110100011100010111000111001111110111111011100110100001001010011111110011110111111111000111011010100110011111100010101010010111000000010110111011101110011101000010110110100010111110010101101001010110100101000010001110101111100101100000100011000001100010000011001001000101000111101110110001001100011001101000011000100110010101111011100000011100001011100101010011011010100001001111101001001010010100010110100111111101011000000101010010100011101110001110000010101110100111011000010010101111101001011000110110011001010010010100101110110011111001110110010011011000001100001011010100000100010110011001100111100111000100000111000101111010101010101011101111100010011010001100000111011101001110111110001011011100111110000000100010011010110110011001011010000101011011101101110011111001110010100111000111101011100001011101011111110000010000011001100100110100100011110111001100100110001100111000111010010000011110100000111111010010101100110110010001011110111101000100011010111111001000100011000000101111111000100010000101001110011100111101011000010101010110110111010001011111111111011001110010111011110110010111111110011000111111101100001001011000100001101010100101011111010101000001010000011001101101000011110011101100111101111011101100001101100000101010000110111011010000010000010011100110000111101100111011100111111111001011100010010111010001101100110100111110110101001101101001110101101010100000110011110100000011110001111100111111000111110010101001010100010010101010110110101000000001000010000100010111000000110101000000100010000110111101010011100111001110111100011111101010101100111011010001101000101011101111000001110111111101001001011000101111010010010001110101010100001011101010101111100111100110011000011000001101111001111000001110010010111100101011111011001110000001101111000101111111011001101011001011000101000011011100001100110011111101110010100100011011100111110010110111010111001010001101001100100001011001001001001011011100110101010001100100111011100110100011011001001100011100001101011001111111010111111011101001001000010010111110010001110111111111010110001010001011100001001010100110000110101000101000111010001100010110000000001010111110111001101110001011001011001011101110111000100101111011100100000100111101101100010110010011111100101100110110001000110100111100000000110100111111011011110110001110100000011000011110010100010011111101000000001110100001011100010101000110011000100110101111101101010000110011101010001110100010001110110000010011111101010101100100001110011000100111111000100101011111101110111101101110100001111011110100001100010110000010111010100101000101000111001000010001011001111011011110110000010010000001100110001000100100100000001101111010001110001111000001000000110010111010100101001000010110110010011100110111111101101000000000100011100010000011000001011100100110101101110110111001000001011110101001101100000100111010110000111110101001001110000110111110110111101111001110001110001011011110101011011111000011011011011000100010000111110011011001101101101101010111010100001011000011001000001101101011110011011011101000100000011100000110101000011100000100000100001100011101100010100111101011001101000110101111010101001100000000110111010010101110001111111100011001000100010110001000100000100001100111010011110111010001101000110101101100010101100110100000101010001101000011100011000110011100101001110001100010101001000101010100001101001100001011100110100000010100001110010001011100100000011110111111010101100101001010011010100011101110011011101001110010110111100001110100010010010001001011001001111100011100101101000011100110111100010101110111001111000101001110011010000110001111110011011101001010100001110111011110010111001100101110010011010011101000001011001100101110000010101101000111111011001111011011110011110111110111011110100000101010100010001100010001011001101000100001101001000001010111100000010111001010110010101011100011100100100000110101101011010111011010110011011111101000010111100011001010011010000111000111011000110011001010101100010010011100010001101111110001001011010110111111000001000111011010000000001001110010111010010010001111110000101101100100000011000110000101100100111010110011011111010000011011010010010001010011111110100101101110110010000100000011110000110011101100010110000010110101000100111000001110000000111111101011101111111101101000100101011111001001010011111010011111101110001010001010000011000111011110001011011100001001000001001001011011110111101101010000011101011101001001000000101001111111010011010110010010110001110100001111010000010010101101011100111001010100011010101101100010100011011011100011100010100000000000001100111000101111011101101010011110001011111011010110001010011011000100100111111001100110100111000001010100101101001111010000111000010101110111000010010000011010111111111001000011101111001001001001011011100001001010000011000100101111110110011001011111111101001100111101101010001110011100110001010000110100010001101101100100100000101100010000011111101100001110010111101111101101011100010110100111100000000110111001111101011100110011011001110110111010011001010000111000001111001010100001011000100011011100011001010100101000111111110111111001010011111110010010110010011010010110001111111001010011101011100010110000000001001100100110010101110000110000111000111101011111100000101100100001110100101011011100100001110010000010001001000100000001111111101000100000110010010011111000110110110101001110100000010000010010001111111100111011111010101100001000001110110110101110000010111101000010001010101111001000101010000001010110100110111000001101101101111100101010110111011100011100111001110111011110100101111001110111100111100100100000111001011011100110000101000111000000010101001101101011000010010011000110001101001100001000111010110101001010101010110101111001111100011101010111011010111111010111101111100100000101101000001010110011000101011100000001110101100010110010001010100001110101101011011110101011111110101110000101110110101010100000000011010100011000011101000101001011110011000000000101101010001111111100010111111100010110001011001110110000110101001000110011001110010000110101001011101010111001111001110110101000111001110010000101100001111001011111010110110101101011110111100011000001011100111110100001110100110111101100001110000101000010010111101101100111001011010101111100001010000100111000100011101100010100101010001010010011010001001011101100100001101100110110110111010111000111111100111001000101110110011000010111110110101010111001000111010100100110111000010111111100001010100110110011110111110000111011111011000010001010000001110010111110000010011100011111111001111111110011100001010001001111001010000010011001010010010101010001000010011011111000110011010110110000011110111011100010111111010100111010111100000000000011011100110010100000011011011100101010001101110101011100010100111001010100001110111001010111110011100101011011000010100101010010011011000010111001010100111100000101000111010100010000001001010001101010100100110111000100011011010011011111001110010110001010101101010000001010001011110110110010000110000001111111111001110101101001110101101010111101001110001111000100111011100001000001101011111000000111001010101101011100110011100001011111100000011111111111001011111001111101100010000110101111100100001010111000000011010001110010011000000000010101111010110110011001111101100011100111001010111111110000001001011110000111100100111110011010100111000110110100101011110111011101101011000011111111010110111110011001101000101001010011111001101001000011011100111110111100111000111111110010110011111100111101100111010101001010111011100011111001100000011101111110100101010110101001000001101110001111000111100011111100000011010000101001000101011111000111011001010111100001100110010101000000101110110101111000111111011000010011010111001101000110001011100010111011101111100110011101101010010100011011000011010101011101110111001001111110110100011110000001010011100100011011111000000010010001101101001011101111111011011001011110001111011001010010110101010010000111011001000001110011110001110011010110111001100100110011011010001001011001000101100111000101000010101101010110011110100010110101110000000101011011101011110111111001000101010010001001110111010110110011001010110110010111010000011001010000010011010111100100011000001101010001111001011100011100011011001011011111111001101000100111001000011111100011001100111011010000001100111111101011000100111011111011010000110110011111101010110111100110110011010001101010101101100101110011101101111001011110111110001010110100000111001000100010001110000000000010110001000100110100110000001110101100100111000100000000011100000000110111100000000110010101010001010100001001111110110101110101111000011001101101000010100101100011011111111001110101000010011000111000010110011100100111001011011110000100111011010011010101100010011100111011010010101101110110110001001000010101110111110010000011001100011011001100000110100011011111010001111001111001010001111010000110010110001001010101111011011000101101011000000101111101001011000001100110011010001001001110101010111010100111100010100000101101110001110000010011000010010101010011111101100101110010000100000111101001101011100010011110011100111110001111000101010100101011011001010110111100011110100100111110111100101110111101100111001011011110001110101110100010000000000011101010011100001101001110000111101000101000100000101010110100010111010011101110100000010011000101001110100110011001100100011010100011000101000001100001011010011110110010010011101111111001001001011011100101000101000010110111100101101010010111110111011111100110011100001001010111111000111101000011010010010011000011111110100110101001001110101010111111111000101011101110010100100001111110011101000111000011011010000111101100010001000110111101010011001111110011011000000001010010101110001100000101100001100111011000110111001110110000110010101100011000001101101101110010011001001111010100100001001000111101101111011110100000001011110000000001010011011110111001011101001000111000001110111000111100001011100101110000111111000100001111101010100100010100010101001101101010111000110001110010101100010110100111111000000011111110010110000001011001001011000110100010000000010100000111000001001001111001110111111100000011101001000010001111111111001011111000111010110011111000110001000110010000011101111010011111111001100111111111101011100010000000011111111101010111001100000100001001000010011010010101000111011111101100101100101101111111001110111000101011011001100001011110111110001100001011001010010000010000001100110010000100011010111111001101010001111100111010110100111001110111000111111000110100000110001110010011111101011110000101010100100010100101011100111000011101000001011100101011011000010100100001101100011111101100100000000001000011000110011111101101111101010110110010110010010010111101010110000111111100111110110001100101111010011111101010001001100101011001101110000110101100011001110111001110110000100001101110000001101100101010011011011101001110100100100000110001111000011110000011100100101011100111100011101100011100000001100101010110010000111000110010100000100111010001101011110010010001101101010011111100000100101100100000001000000001011011100001111011111011001100010111110000101011010101011111111011000100100111001111000001001000011001100000001100010000111100010101010011010001001110110000101010010110100111110111100100001110000000100101011101001110110111010011111010111100011101011110010010000000100100011111100011010010111010001001001110000100011010100110110111101010110110101100010011100110110010101000101101010011011101000010111110001011010000111011100001111111011100110100100100101001001100001111111011101001000100101010010010100001101110110111111011000011001011101000110010010010110010011001100111000111101001000010010001110001111100011010110011011110110011110000010001010110111100001001100010011000000101001011010100110100001011000101000110101101001001000101011011010000011000000010000111001000101100100101001110111101110011100100000100001110011110010100110110001001111101011111100111100111000000100100111011101110111101111011100000001100100101000001100011110101000101000101100001010010100011001001101101001011010001100111011001111000001000100111001101001110011100000111101101010001101000001001101100001000000011101001100000011000111001110010010101101110000011000101001010010010101101000000010111001111001111101110001101010001010110110011011000001000010000000001110011100011100110110000001010100000011001101101000011100110111111101011011011100110011111011101111100111001011011111100100101000110011111100011110011001101111110100000101000001010101011000011110010011000000100011001001001111101111001111101111111110100111101011100100010110000101011110111100110100010000001000101110010001101101100101001010011000110111100001001110111000001111111100001000000001100011000100100000001011000001111001111100101011101000111100111101001111110000110010100010101011000000110000011110000101111101001110000001111101011111111010011011101011000100100011110111111011100000001001111111110110101010001000110100111011001101100001011100111100101101001110000000000011010111101010001101100100101011110111111001011101111111110100011011011011001000000111011110101000110001000011000000001000110101100110100101100011100110111011010100101000110000100011110011100001010101000000010011110101101101101101101111101011100110111111001110001110010110001110010111101010110001001001011111110011010000101011011000010110111010101000110110111110011110100101000100010010011001100101100000100001011000010101001110110000100010011111000111100010010010111010010010101010001000110101000001100101100100111100111111000110011101111010011110011000101010001010110001000100101010010001111100000011100111011110011111000000000010010010101001001011110101001000011000000110101001101101010000011001011000101001111111000010000100100001000001111111110101000100010111110111010111010000101011010010100111000100010111011000001100011110101010100100110101010000100000111011011101110011000001100011001101001000011111001100011010000111010000000110110010101011111001000100100110000001101100101100100110100110011010011101011011001111010001000101000110010001101111010100101110011110011111110011101001010011010010111111110101011101000000011011101100011101110001110100101110100010011110011100101001110000011101101101101101100100000101110100011010110010011011100010010100110001011010000101111001101100001001110001011010001111101111010110111000101100110111101100100100000011010101101111010110000101001011011100111011000001101010110110101000101000111111101001011000111110110010000010111101011011100111011001110000110001110110000100101110001011010000111000101101111110110111001001011101110001011000110110000101100000001110001110010110011111111011111010001101101010001000101100001111000101111001010010100001011110000111011000111011010001010000001001000000001010010111011011001101011000001001010111101010101000110110010110001101101101100011000011010000010100001011001110110100110000000011100111101111000110010001110010000010111110001001001010001001111111111101101001011101011010011110010000011111110001001011100110100110000111110110101100101011101110111010011101100101010010101100001101010101011001100000110010110011010111100001000100110111000010110100100000001000111010010000000010000100010110011011010000011111011000001001000101110111101101010110010101100011011001011010111111010010010011111001001000100101110001110011010011110101000100100100100111011101001101100011101110011111011001101101101111001010010001101101000101111111000111011011011000000001011011101111111100011011101111000010101101100111100100101111010101001000001100100001011101100110010111010101111001110111111010001001111010101111101001000100111001001001101000110011011110001100100000110001011010010011100000010000100111001011011111100110010000101110100000110111101101010110110110000000001000011011100011100110100000011011001100001011111011011101111100000100010010010001001001010001011100101111010110111111000100111011100011101011110010010101011101101000010000101111000011000110100111110100100100110110100001101010100010011010101101111101001011100011010001100000100111010100111010001101100101110110000101101000011100110001110101111000111110011101110101111010011001000110101101011010110101100011110000110101110111111111101011100011110111011010001110100100000111011110101101001111001000111110111101111110101111010011010011110010101101101011101010011010111101011000010100001101110111011110110011010110001010011000000100010011000000000100001111110000000001111000100110010000110111011111111101111100110111000101100001010010000010110101001000100000000110001110010101111110010100110011011001010101000010000100000000011100101010100010010101010111111111010100011100010001010110111110100110011101110100101010100000110111011010010010101110110001000010011110111001101101011101111001111101010101111111000101110110010011001111011010101110001000101000110000100001101011100001110011110001011110010010111001100111110101000010001011001001100011111101011011000100100001010000110100101110011000011011101010010010011000100101010011000100100010100010101101110101001000100010100000110000101101000101100010011101011100010110011010110001010000001110111010011110000001101111000100010100100110111001010010100101101101000110101111110001101101011010011001111010101111000001101100101011010010101101001000010000010001110010110111010011111101100101111110011001100001000010010110000011111111011011001101000000001101101111010010101101001001101001000100101110011101111001111100111011000110110011011101100111001001011100110110111000110000110010110000111011001101101101111000110111011111010100110011011001010011100001100111101001011100010111111001100001111110111001000010100111111111000100001110110001101111001011011010001001101001011001011110000010011111100101010101000111101110100100110101101111001110100101100010101100010000000001100100101111010011110111001100011010011010001011001100100111010011010111001100101001111100110000010000101101101011000100110000011011001011110010001101011100001110010000100011100110001011011000000110101010000001100111100001100010111111001111010100100111100110000110010000000000100010010010001101010100010100011111001000010110101100101110101001011010110111100001000010101010011111100101100110101111011000101111111001100100010000110011101001111100101000110110000010110010110001111001011110010110010100010111001110010011001010011111011111001011101100001111111111001101010111011101011000010100011000100101111111101000111100010101111010000110110110101101111110110110000110100011111001100000101001110000011000000011011000111101111110110011010100011011110011100100101010110001110001101100010010111000010111110101000110010110100110110100111110101100011101100001101111111101100001001110001011110110110100011111001010000010000101100110101010100010100011010100101000000010000010110111101100001001000001110000101011001001111100111010100111100100001110100010101110001111000110111001000100001111011010011010100010111010110010101001110010110000111100111011111100111000011010011011100101000101010101110001010110010010010000010111110011100110000110011010110011110111100101011110010010100111010101111101011011010011110111100110001011001011100011001101110101111100000110011100111010100100110000011000011011100000100001111100011111101111110100011111011100101101011110011111100111101011100111001000010001010011100010100010101110110110000101000101000101001110010000101000100011100110011110111011100111001011110010111011100011101011100000001010100000011010100101011011000011000111110010001110001001010101001000101101001011000010000101001011111100111000011111010001000110100011110110100111110010000100010010111010010101000000000100101100001010011110100111110101000011101111110110101110010111001110011001110101100110110111001011000000110001011001100001101110000111100000111001000100001010110010110000001111010101011000101010111010000010101111000010011110111111101111100101011101110111011011001000000101011111100101010111001011000101110110110011001010000010111000101111000101110100100001111110001101111010100010001111000011010101011101110101111011111111011010111011110101001101110101010010001001111110000010000111011100110101010011101011100011000110101001111011101110110111000111100110101110001111111010000010110101011111110110001101011110011100101011101100110101100100001011010011010010111111000101100011011000100111011001011011100001111101000001010000110111111000011001110110111100001101111000101111111011100001001100111010110001100001010000001000110011010001111001011011110111000010011000110011001111001111000010111000000010001110101110011100100000110010000000110000100110101111011100100011110000010111000010001100010111110110000000001000011100001000100011110101001100000111011110000110101100000010010110100110101011000010100101011011000100100011100010000101111100110101111101111111101101010110110011111001100011100010000111111001001100011001110000110101101100110000110001111100011110001111011011011110001001000011100011100110010010011001011111100110110110011011011000101110100100100001001101010011100001110011000100000100011101000001100111000100100101001110010110011010110110010100010111011100100011101011000010111111001100110011000010100011001011100010110010011101110110011001000101101010101000101110001010100110100011100101110010100101111100111110011001010011000110111011000111100010000010111110100110101101100000010001001000100010011011000110000011001110100011011111011110111001011110101001011110001001110001110001000111000100001001000110010001011011110001110001011101100011101101101010110000001100010111110110011011011110100101010011001010101101011001000100110000101111111101110001011100001001101011001010000010000000001110111011000100011100100011010101101101111000101010110111111001101100111100000101001110010001100111111101001001101110011100010110111111000000000011010000000100011001011100100111000101111101011100000100000111000011110000100011000101010010101000000100001101100100110111010010110111010100000110000100101111111011010100011111010011110011010000010000001111110100110000101100010010000100111101100010010000101001000011011101010010000000101101011001111000011100100001010110010001110100111011001000110110001011011000010001100101001111111111110110000011100100110001011000100110010010110100011011000000110010010000001010100000001000011010100000011010000110000110100010111111000111101001111100010010000010000100000001111100010010110100000011111001111111011000011110100010000001101001101011011010000011101010001111100011011111111110000110110100101111001000010110001010000101001111101011000101110110101101011111011011010011100111000101011111101001000111011110101101000101110111100010001110011101110011110010000111011000000101111011011000010000001110101111110001010101011011001001101111100011110010101000100101110001100110110111100000100100011010001111110011111000001011110110010000101010110011011010000110011001000110101011001111100000010010000001010110111111011110100001011000100011111110000001111110111110011011001111011110010110111011011001100001001011001100010100110111010111111000000001100110011111111011001101010110001001010010000010101001100000100011111111000011100111100001010110011010110000011010100000011010100001101100110001001111100111010111001111010000110110011001001110011110110111001110011001010110100010110001110100101011110011111100010010010110111011101110010011010011111010010101011001111101010011100011010000011001110110111111101111110111000010100000111001010111111000001101011111110101111110010001100100001000010011111010010000011011011100001111000110001100000100101111111101011001101010001101100010101010000001010100010101011101111111100011000010100001111000100010000010100110110111101010011111010000101010100000110101000001111111111011010110011011000000100011110001000111110011001000100100110100001011011010000010101010101101010111000010010011001001000010000100101110000101011101100000111111101101010100100111010101011000011010110101100110010101000111001101000001010111001110011100001100010011010101011100000100010100011111111110010011000011010100101000001110111101111011111111000100101001000011000100100011010100011000110110100100011110010100000010110111000111001010011101110101111111001011011000110111000101110001001111111011001001000000001000011011000001110000001001101111011000000000000111100011111011011101000000000110110101110110001010000011011010101111000011010110111111001010111101010011001111010111011100101010000100011110001001010110100001101101011000000111011111000000110000001101001101001101111100110111001000011011011101111100110000011101111101001001000101001000011110101010101010101001110100011001101100000110011111000001010011000001000011011000011101010101101101101001111010111101100100101101100111011000000011010011111101100000110010111010011100011111101110010100001111111010001111010100011101110000111010111100000011110000011101010101100110001000101010100000111011011000001101110010011011000010000111010001100011110000000000001111101111011001010011100110000110101101111100000001111110011000001111001101111011111001100101001100000111010011101111111111011111110111011111110000010011101100100011011000001011100110111000110010100000100110011101110010100100101111010101001011010111001110010110011001000100001111110000110011001000111000101110101110110011110100001001001110000010101000110000010011000010011010110010001100001110010101101011010011100100111011011011000101010000100111110001110001001111110101001110011000001101110101001111111110100010110000110000000110101011010011111110001001101010001011100110101111100011111110010100111111110010100111101110111101101100100001011100111010010111101010100100100100010110001010101011011100010101110110010100011001001010101111010011000110000011011000001111011110100101000001100010100100110100001111101001100101000111111111001101011001001000010010001100111011010110001000000001011111111101010100000010101000110100011100001001010100001101010111111011101101110010100111101100001111110011001101110011010011001001011101001000100111101101111101011010111110110101101001001001010111101000010001110110000111011100000100101011111011010000101100000101111101101001011001001101111100000010110111010100010010100111100100010010100000110110001000000110100110100001001001000011110001011011001010011010010101000001010111101000111010010010010010010101100011101100110101010001011010110000101011111100010100011011111101001100101001101010101100111011011111111001010010110000110100110101110010111011010010010110000011111001001111111100110000100001110001000101111011000100100100110100000111111110001101101100010100001001101110101001110101101011000001001001110001110110011001000001101010100111110011110110111101011000111100110001011100101111001010001000110101000101100110011110101111110111010000111010110011100000111101000101111001010111110001111000010001101010011010110100001101001110001011100111101001111111110111110101111001110000000100010111101001101100110011101011111000000110001000011111101001001110111010001011011000000000111101010101000011010111000100001111000100110100010011110011011000110011111101000000111101011101010101011110101011001011010110001011101010110101000110110111011100010000000111010110110101101100000111010000101100001001100111001010110110010010010011101001001001111111100100010000011001011100100101110000000010110101010001010000011011101110011110001010111011100011101001100000111110010111000110101111000111000100011000001110110010001111100110111100100110000100010011100110101000101111110001100010000101011110110101011000101110000011010110110011100010101001011100111100000101101111110001100011100011001000110011011100001000110100000000001100010110100100010010101010101010100010110111001110000100101010011010101011111101111010101000110100011110110010111001101001001000110101101101101011000111001100110000010010010111001111011111010111011000110110110011111000101000011100111000110011010101001001110010000110111111100100001111100100100010101011001111010110010000001111000000001000110111000101010000011000001100010010110001011010100001101101000000111010111101111101010110001111111011101101111111110110111011100010100000001000011100001101011110110110010101111001101011101111100000000010001000111010001011010001101010000001110010010100001100001001000110010001101110000010110010111100000101100011101000100110011000100110101101101101000101101010111101000100101110100100011111010011111011010000000100111111011100110010010100011011011110000000000110110010101000101011110110011011010010010111100110101000010111000011000000110101110010010110111001011110100110110010110001100001011110011010001000010011001010001001001010101000010001001011111110000001000000100111000000000001110001100101110000100001111100110010010111111000000110001000100000110110001111101000011101011101101000011000101011101110110101101011100111101000011001110100000100010010000011100000101101000110010110100000100111110111100100010001010100010001000110101111010111010110000101110101000100010000111110100110010101010100010111001101000100010000010111011101000100100011001110001111100011101110101010101010111100111011001001010001011101101110011001110110010111111011000111110011111011111110111101111001000101001100111001010010111100010101101000001111010100100110000000100001101011010000101011111100000100011111100101011101111010111000111010011100010111110011011100001101111000010000001101001010100011001001010100001111100001111100100001001000010100100011111000001011100101001100100111100100011111000100101101011111111100001101001001011100001111001001010111111100000101110010011001010011110001110101101110111001011011000011000010010001010010010001100110000000001001111101010011000000100110110001110011011101001001011001001111000110000101010100100000000000010000000110101011111101000001010100101010001001010001110101111100110001011101111100111010101100010010010110111001001001001101100100010111010001011101001110111110001000010001100011101100101011000111101011111001110110110010110110111101100101010111101010110111111000100011010101011010010100010010000000001011110101000001001101110110101010111000010010000101111110101011111100010110101000100111001000000100100000000111001010001100011110111011110100111100001010101011011011000011011010011101001000101101101101100111100100001000110101011010010010010011000110010010010010101100001100110110001000110111011111101110110110100010001011000111101011011100110110100110011011100000010010010100001111110011101110010000111010001111101101100101101000110100010000100010011110001010001000100000110001111000111011000100111100111111100111101000000101000001010100100111111101111011010101110110101100010010101001000010001010001001100100000000000011100111110101011001111011001101001111101001100100100000011011000100001110010011000001110111111101011110111110001100001101011110110011111100010000100011111001011111100110010010111001000011101111011001111111001000100010010000011011110000101111110010000101101110101001010111110011110001100011100011001110010011111010001101100100000000111101100110101110010100100100110011100010110010110000110110010011101001011100011011000011110101000000110110111110100001101001110010011110000101010011000101101111111101001101000010101010001101001000010110110010001011000110100010111001011101110011101010110100001100000110011110000011000100110101000110010100000100001001110101010000101010001101001011110111010101010001101101001001001010111101001000111010000110000111110000001111011100010100110101010010110001011011010010000010111010011110100100011011110110000101101000000110010000011010011101100101100100100100001011010010100110101011110010110000111010110101011010110111100010000110010101100110010000101100110101100110110111000001011010101111111101010001001111100111101000011011001010100001011100101011101100111101000001001000100111010110111111010001101010011101111001100010100001100001001111101101000001101111110100101100011011111100100011000101001000111110110101101111111000011101010000010000000001111100011111110010011111100111111110010110011111001010100010100010101010101011001111011111001101111110111001111010010010011000110011101001010010110010110010011100110011110010111001100001101001010000001001110001001000000001000100111010100100110110010011011110001001101011100001111111011001111000111000000010000011111111110000110100011111111111011010110011110010100010100111110000111111111011000100000000000101111111100000101101110010011011010110000111101000000101110100101001001101111010011110110010010011111111000101111000111111001101111111101010110101011010011101101110110001101011100000111011110111111111000100100001101101100110011100000000100101110100100110001000110011001010110001100000011011110000011100111000110000010110101000011011110100000001010101100110000111000000001010011111101111110011010100010000010101100110101101100100000111110111101100011100001111001110010111111101110101011000001010011100011110100101100110110010101010101011100110001001000010001101001011000001000100000000010100111011101001001010111010110000100010100100110001001001110101011100111111010001111110110011100001101110011001111111100010010011001110100100001010100011010111110101100110000001010000101000110000111111001010010010000100110010111110101111111001111001100100100011111110100001011110011001001111010001001010001001011110110110101100011110100101001000101100111011100011000101100001001100100001001010110111110100011110001010100100010101000101111101000011011001100010110101010000101011010000101011111000011101001000110010110001100111111010110000111001100001011110100001011000011110011110011111100010110110100001001001101111100101110111100111100001011110001101010111010110010110101010001010000111110000100100010110011010000000100011110111101111010110011110010100010110000100001100010101101001101000001011011101000100110001001010000000111000101111110101000111100110000110001010010100010100101011101101110001100001111000010110110111100001111011111010100100111011010111001010010010100010110100010000000111101001011010101001011011110001110111110101010011111100101110010001000111001001100011000101001110011010101101100001101111010000110010000001000100001000111010010011011101100100001011110000101011001111101110000111000001100100111111000010001010011101011100101101111000000000100000010000000010011001011000110100011000010101110110001011100011000001011100100011100000010000010101100110101101100100100011000110100111011001010100101001011001011000011001001011111110101010100101011011100001111000100011110011110011010101111011011100001001100000011001010110011001110001010011101101110001011101101101100101100010110001001101000001000011110101000001001101001001101111001100010011111010011100111000101001100111001111001000010011000101101111101111000011011110000111111111110111000001000011001111100011000010101110110010000000010000010011011111111001011011011000101110010111010000110110010001001100001011100100110100001000101111111001010100100001011010111011000010111101110001000001001110101011100111010010110001000101100111110101110001101011100100000001101010101111110011011000001001001010100000110000101101000111101100100011000110111011100000100011001110101101001101011011111110111110110010001111001011100101111001101001011111100001000110110101110000001101001010110111101011100101100011111000010110111101001101010100101100111110101111000101100110000100110011100010101111010000111001001000000100011101101011011011010100100010101000000011101000111101101001010111110001101010010110010100010101000101011101010010011100101010100000000000010000000001010100101001110001010111000011111101100110001001000000100001101100010001111101011111110110000000000100100110100011100110000011001010101010001001010011010100001011110101101010101110000001110100011111001011101011000100011001101110001000001001010001111001100111101110110100001110101110111010010100010001000101101100000000011101111000011010001000000010100101100110111001011011110110011011001011010000100111110000010001010100110000111010101010100001111101101111101011110111110111001100111100101111100001001010111011011010001001100010010001000010010110101101010110001100000000010000110000111110011101010010011110011011010000101111010111100111101100101001110111010100000110111101101111110111011111010010010100011100000011000101110000001000000000011101011000010000011110110100100100111111101110100100101110000010011011011110011110101111111011111100001100011011111110101010000110100100100110101111100101001001011101011000111111101100001001000101100111100100010000111111110010010011001101011010010010110101010101001001101110000111001110011101110010010011000101100100011101001110111111100010011101100011000010110110010000001010101000101110001100100101001100110111011111001000011110010110110010111001110011011010001100100011100011001101010010011000010011010001110110010011001000100100101111000011000100101101001010101001011100001000010100100111000110101001011010000100101110100111001101111011110000110100010111010010000100111010111101000010100111111100100100011101010000001010011001011011011000111001001001100101000000101111001000000110011011000000011011001101000011000100111111010100011010110001001010110011001010100110111110000100011000000111011011010000010101110000100111010011111101010101101000001010000010011001001001100010001100110100101001110011101111100000110001101110111111101010011010001110100110101011100001101011111101100110010100110111110000100010010000011101010110110010101011001000010101110010110001110110100111111000110101111011100001010001110000001010101100001001100010100111010000101000011010100010000010111010100100000111011100101100101101000001000110111100111111001001110111111101110111111001110011011001001011100100110011100000100101011001010010101101000001101110101111111000111010110011111111100000011010111110010110101001111011001001100111111001001010101001001111011101010110100000011000001001011011000000010111000111001011100000100110110101000011010111010101000110101010100111100111001000100001100001000100111000000001010100110111001111101001000101100100100111010010001110000001100101010001000010010100010110000101000101100110001110000001110100001111100001111110000010011110010101011100000100100010100011010001101111100101111101111010011011001100101000100011101010100010000111111100001110110100011010011100010001101101010111101100000000110100111010101101000010000000010110111001100001001011100011000101110110000101010100101010010101110011111001011101000011010011101001000111000011110101101101011100100110110101011011010001110111100000111101001111000100110101001011111111011111001110010010011001100100101101000000100001100011101001001100101011111011101101000101100100001001111010011101011000010100000001101000110111101010000001101100110111111100111101001000110010101100101001000110010001101010011100110101101110110101111001011110000111000011111101110110000000111101010101100001100000000101010001111101100000110100001111011000000101100011001110111011000100100000010000010000110101000000111111011111110010001101100010010101001100000111000011100000100000010000111010101111010010001100010110011101011100000010100010110001111011010011110101111101010001111011010100100111010000011110001010011111010011111001101010011001111111110110000100001010011100010100110000011100110001010010000011001010011101010101000000100000001001101000011001110011000000111111011000110001000001110000011001001011110100100000011110001100001011010011010010101010111111110001011100001000100000001010111001011001001111101100001001111100110001111111010000011010100110110111000101101010101101111011111100001110100001001000110101101111100010100000001001110011111011010010011010010101011110111011111100110111000101100011010100111010010000000110110100000110101101110001100111110110011000111111100100000000111101000000110100101100000001101110000101100010000110111000110000100001111100010100001000111100101100100101100010110110001011101101011110001011101101100010010110110101001110111100111100111001101110101100000001000111000011000101100011010101000101110001100001110100100001001001100001111000011101010110110001101010110111001011111000101101100100001010001110100000000101110101111101111000100111101110111100010011010001001110111101100000100110001001100101010101000011111110110100111100010110011111000011011101001000001100011010000011101000011010100001011011011010110001000111101000010010001111111011110111011100111010011110101100001110001000001001011000100110110001100001001011110101001110110111110001110100111100111101010001000001000111011101001100001100000000010010110001000001011110110010000011000000111010011101110000000101010110110111110011111101111101010010111010010000111100001010010000110111010000100111011100111000110111001111110001111110100000001110001110101100100011010000101111001011100011101111101010111000100110110101111001000000110010001000011110110010100101010011111101011011110001011100111110100111001110010011100110100010001111111000111010100111001011001100001100100000010001111001010100000100100010011011111101011001000101100000111101111111000101011000011001101100000100001110010001101110111101011001111100101001110111011001110010000000011101000101111000011101011111101010100110001011011111001111000111100100010101010101100000001000000010100010001100010100011010100000001011001000101110011001110010101110011111001000010110110101100110000010100001001010101101100101011100101101011010101010000001011110111101110100011001100010010110011101111000011000001001100011111001100100100000101110100011111000001110111101110000001001110000110010110111101100001011110110000110111101001000101011100011110001100010001010101110000000010001000001011010110000101110011110001001010111001010011111101100110011110001101010001101101100111001100010101010110010000110101001001111111111000111010101000001100100101010010111111101001100101101111100011100010111010010100111111010000101110011101101101001010110011010110100011001000011000010100101110110000010100010110000010111101000001011011000100001011011000111010010001111001101100101000111110110100011100001011000100011101101110101000101010001010010010111101000100100010011110010100011010100010111101100100100111001000001001001001011001110001011101111111011101100001010100110100101111110101111101111101001101000101000000010011101001010111000100101010101010000000110110110100110010111001000000001001001000101110011010011011101000001000000100101110000000010111111011101101110001011100000011001001010010111010111011000000100111101000100010101000110001101001010000111001100010011001111101010111011010000100001001101101010101101111110111101111010100111001101101010101101001101000100100001100100010111001011000111001111011000001101010001010100000000000100100010001100000010111100111111110011100010001100101011001010110100110110001111000100100111000100100001010000000110011011001101001001010011001101100000010010101110110001110100011000011000000100010011100001001001111010111001010101100111101000111001011111001111101100111001001011001110001111001111110111000111111101101011100110101110000010001100010010101111100000010101101100101011001011000000001000110011011010100110100010001011101110101101010111110111000010110110010001111011100001111100001000000010010001100111110010011011000011110111011001101111110010010001111100110101011101001010111111101000010000100100100011000000011101101100001101110110001111001100011110011111011101000001110000010110111110011111010100110111001001110111110001001100011010110010001110000100000010011010101011101101001100100101101100001000011110111000001011101111010000001111100100100110100000111010101110010110000011111000100100001001011010111000100111111000101001001001110110101000000011100011011100111110110110010100101100001011000010000100010010101110001001011100101111011000101110101010000001010000000101010101110100001101111000001000100110011011101100010100101011111110110001010100001101110100011101111101100100111000001010010001100000001110010011000111001000010001010001011001101101010000100111011111000010000010110001100001010110011001101100100000001110000100011000111101110011011101010111000001011100011110011011000011100111001110101110101100110100110101010010000000011001011011110011101001110011100110100110110000010110111010110100010101101111000111001000110100101111001011000101110100111011100010100101100110010101001101101100101011010000000100100101111000010011011000010010111010110110100010111010010000101101110000001010001010100110101111101111111011111100000011011100110010000011100100101011110110110111111001101100000000011110010010111000011011110111001100000011110011010101110101011001101011001010000111101100000101010111011101100100001011010111011011110011111000001100101011111110110100100011111111001001111000011010010100011100100111010101101000011100010110101010000010000100100011011101001011100011101011010111110100100001010111001111101110100000000110110001100100101010000001000111111000001001011010110111011011111000100011101011100001011011111111011010111010000100001001111000111001101100011100110111000110100011001111101100111001001001101011010001110111000001111010001101100001111101010001100110011010001100000111000010010100011101101000111101100100000110011011011110000101100001110000001110101000110101100101000100111011100010110110001110101111101110100010011100001100100101111110101110101000111010011111110110111111101011000100101000101110110000100100010010100010011010101011100100010100011001001100111110010011100010110111001001000011110001100011101001011010000111111010010011100100000001100000001010001111100001010011110011110100110101010100101000101110100011001010100110000000000010010111000110010000111110000101010010000101010100001101111010010001011111111001101001111111111111101111101001111100001101010010001101001010110011110010100011111010110001101100100111111010001011111010010010010111110110011101010000011011000011100110110111111100011000111100110101111010001111110110111111100100110001110100101001000010100010100011001011011010010100001110011000110010011101111111101000111010000100111010001100110111100100010010101010100101000001100111001111010010110000011011011111101010101111100100011011111010110010011010101111000101011010100100100100101001010110000100010100101111000110111110111000010010011110110011011111110000111011010011110001001101000001101011000001111100100110010111000101101110111011001100000011010000100000101111001100010010111010011010010100110011000010011010001111000110011011000111001010000100011001001111111000000001110000100101100110001011101010100010100001100010010101100000000010000110010000101110001101101010111001000011100101110110000111010101100001010001011001010010010000100111111110010111010101100101111011100001011100101010010010100110000000011100000111001100101100101110011100110001101111001000010010101100110000001101110111110000000001001110100100010110011101001111010001100011101111000011101101101010101011011010101000011010111111111010001100001100101101111000001011011011100110001010101000101000010111101110011000000101110111110011000101001101111110001010100001011110110101110111111111011111100110101101011101111011101010010100011011111010010010111110111100001100001010011000110101000000001101010000110110111101000011011011110010101001101000110111100000000010010111011010010101100111100001111101110100110100101010100010001011011011010011011001101001001011010011000000100010010011100001011010010011111101110001100111111111000100100111110111001001010011001001010110111011000110010000100110000110001111100111110101011001011011110000001110100101011000001101110011111001011010011111100111000001100010111101000101111000100001100100110111101101110011100101000111101111100011000000010011001011101000101011110100111010101101001101100000110001101110010110110100000111100000111111100110101111001101110010010110010110111101010001111010111100000100010001011111010101100110100111011001100001100000100011100000010100110000011010110110011001101111010011101001111110001111100001110011010011111111011100011001100100100101000110010001110110111111010001110000011110111010010010100001100101010001110000111011110100010000011111110111000001111111001100001101000100111010100001001010110100111101100010110010000010001010111110110111101101111000111111101110001011100011011100001011111000101000011111110100100001101111000001111110011010101111110001111011100100110101100000011011011110010101011110100001011000001100011101100001110110000110001110001110001000000101100100111101000011010111000010000101110111001111011000100011111011001101001010101011010110000101111011100001111001000111111100100011011101001101110011101001001100010011101001011000011100010111100110011011000110111001110100010001001000101110101010100100110101110001010111111010110001110100111100110011110011111011001110111111100101001010001001000110010101001010111100010100101111000010000010001001010111010000111110010110010111011001101010010111111111110010011011010001011010011101100101000100100110101111001101001100001000111101000010100010010000011111000110101110000101001100000110010000110010110000100110100000001100100010011010011101000110010000101011011010011111100110000010010010111010101001110010100000100101100100101110001101010100101110100111101101010000111101110000010011111110010001010001101111101110000000000001101001100111011111101000011010100101110010101111101000010101011100111111100010111110101010010001101010100001011010000000101000101100001000101100011001111000001100111000100110000010000110110000101001010110110100111001110110100100001001111101101111100011011010110010100001011110101110111110100011111101000100001000100000000010011101011010111001101001000111101000000011010010011110001101011001101000111101111111010000110111111010111010101101101110000001110000010101011000110111011101100101001011001011111001100011000101110001111010100110100011110101001110111010001101100101010001101111011000000110111011101101101010100101001101010011010001011110010101000000000010011011001011000111110111100111001011010000011110101010111000010011001000011110001101010100111001001111000011100111011100111001100011001110010110110001011100011001010110001110010000000100101000100100000101011001010110001010010100001111000001101000011001111100100101110001010000001101001000101000110110101001011001011000110111010101010011010100110001111110111101011111001100100000100111011100101111011010000011101000000011010101101000001011100000100000110110110011100011111100110011010110001111001000001010011111011001111001110000011001010101011000011010000110110000110100100001000101001110010000110000010010101010111001000101110001111000101010000101111110100111011100110010100011000011101101011110000101110000011001000000001110111111111101000110010001100000001110011100101101001110101010101010001110110100001000010111110010001100100111001000101101101000111101111001100000100100010010010010111110101001001010011101100110111010100011001000000100111100001011010111100100111000001110111011001110001010101100010111100001000000001011100111010110001111011111111011111000100111001001111011001000010010100000110010011100010101110001111000111110000100111101010111010110010111111101101000001000011001110011010101111010100000111011101010110101110010100001001101101001010010011111111110101001000001000010101110110001100101011101110100000101011010011110010010010011010010010100111111010000101100010100010100100001001101000010111110000000011000110101010010010011110100100010100001111000100010100001001011010110010011100000010101101110001001011010001000011000000001101101100110101100001110100110010101101100101011111101011001100001010100110001110100111100011100001110011100000000101011111110000101110000110000011011010101110000011001110001011100101111110101110111111111101000000001101001110001000100101110010001000011101011101000011011001100101111110111111010010101001000001011011011010001000100010000011010011011011101101110011110110000110010110011111000100000001100100111110010000010011110110111001011001001111001111010111011111010011101010100111010101101001011111101110101100011101111101111011111110001010111100010111000011111110010000111111010010001110101001000110101001111000100001010110001110111010001101100011010111000000010010011110000011000011100011111001101000010110100100011101001101001010010001001000110110000101110101001001111011010001000100111011111000011101100011001000100100110100011000110001101100000101110110001000100001101011110100000011011011110100101100101100111011111100110101000000111110000100111100100111000111011010010110111001100011000111101111111100000010001000100110100001101000000001001100111001011001011111011011110110101110110111010001011100000110011101000100100000011011011000111110111001110010001111111010011000111110011011000001101100101111111001001010101011010000110111001000111011101110111100010010000001011111110101110010011010001001110100011100101011001000010100100010000111100001110001110001000111011010010010101010000100101001011111000010000100111000111110000110110110100001110001010010000101111111110110011001011101011011110101001100011111101110001000100011010101110110010001101101010110110010000101001100111101011100010101011010111111100110110100010110100001001000101111110110101111101011100101111110010010011011001100100111100110011100001011101101000010111100011010111100111110110011100110000001011011011001110001001011001001001111100101001000100010111110001010100001110100100111100110010000001101001001101110011000010001100001010011011011111000111000111010001010010000001010101110011001101011001100000011100110111001111011011011011101101110110000011001100110010000110110011101110101000010111111000110010000000011001100100110000101101011101100011101110011110011010100111011111100111000000110110011001000110010001111001001111101001100100010011011110010010001110001010101001111111111001001111011000001100100110111111001001100110100010011000110011001101111011101110100000011000001111110110010010111100010000010101011111100101011110111010111011100101010001011011101111101000100001110011001101110111110000110011001101110010000010000010010011010011001100001000000110000010000111100011111001000001101001110011001110010001100101100110110011110010011111011010001101011111000100010011001111101011001101001101101010000100100111000111110100110001101111000100000000000000110010000011100110001010000110110100111101100101100110001011100010011011010000100001011101010011000011111001001000110001101000101110010100010010010100001101100000011001111011101010011011000101101110011000110111101011010101000001110010001111101010001011101100010011001010111000111001000100000001101100101111111101010011001110101111000110101001101011010111110001001110111100001001100011001000111100111001100111000101100101110000101010101100011000100001011000101101111010011111101011010010111111111000101000010000110010110000011011010000100111100001111011011010001011011001100110111111110111010001101010001000011011011111101000111000000010110101100010100011000000110111011101111100111010000100000001101110010100111011100001000001000111010011100011110001000011001110101111011011100000001011111001100100000001111111010011001110001010110011111010011010000110110100100111010100011000010001111001011100100100011001101100111000001100101011101000000101101010001100101011111010011000110100110101001100101100010101011010001101010100101000010001000101110011001010011101101001101100101010011000111101100010010001000010100100110000110100100001011110111110100110100100011000101110111000101101011010110001000011000101000101110100111100100100010101001101111010000001011011100111111001001111100010101000010101100001110000100110001001101011011001011110111111110000001001010000101101101011011100100110101001101101010110001001001001000011110101100010011101110110110100000101110111000010101000000000100010101000010111111001000010010100000010011011010110100000100111000111110011110110110101011111100001011000000001110001101000111000001100110101010101100110101111111010001000111111000011110110101001000100011010111110001011010111011111011100011100110111011000001110011000001011110000110000100101110011111111110010111110001011110011011100000101101001110101000011110001111101011100001111110111010111101111100000001010001100100100010001100110000010001100010100101000110111110011010001101110100111010010011101001010010100111010001001100001011110010001110100011101100010101000111001010110100111100001101111101000001010111100110111100100100110001010001100011001011101011011001100111101100111111111010000001101101000010111101011100011001111101111001000011011000011101001011011001110111010101000110001100110111100010100010101001110010001100100101001100101011011111101110111010001000001000100111110101101101001110000110101101010010101100111110001000011011110011100101001000010110100110111110100001110100101000110010101000110111110011011100101010111011111011000001111110110011011001110101011100001101001001000000000011111101110101110011000110000110010010110110001111010110100001010110010111100010000011010001100010001101011101110011110111011010111000100000001011101010001101010011011101101001111000100000100111010111010011111010001001100011011001010111111101111101000010100111011100000101010111000011111110000110001010011101110111101011000001111011100110011111101100101100110011110111010011100101000111001110001110111011110000110000100100000011100110100010010000100001111101100110011000111001111100000110010010011001011011101000100111111010110111101111100011010010001011011110110111001000000000110100011111111101100010111011111100011001001100111111110110110111010111100100101111000110000001101110100010010110100001000010101000011110110000010111111011010100011010011110110101111011001011110011110101111100001100011111010010100011001010000010111110101110011101011010101111101000100011010101100101111110001110110010101101111110011011000100000001110110111001111000111000110100111011100010001101100100100101000100110001101101110000000010001011101001110100010110110111010111000101110000100000011111000000010110111010011110000101101001010000001000101011001010011100101110110001101111101000011010011110000111001000001110101110101100001101001011110110100010001000000010100011111001001011101101010100101111101110101010011111111100010010000001011100001001111110101100001001010001101000111000110010000101001101110011001111010101111000110000001111010110101001000111000110011011011110011101000110001111101110011011111100010110100100100101110100011111101000100100111101000100101010110110001011011010100001000010010010001110001001001010101101010101001111010100110110101011100000011010111011100101010010100101010001100101101010111000011100000110111110110110010001001111110001011000101111100000010101000100100100001011110101101001111111110001001110111101100101111010101000100000001001011101001000110100000011110100110100101011100111001010101010111010001010110100100100110001011001100000010010110000111101100110111110010101011011100110111010001010000110101110100000110111101000010001011101000101101001110010110101100111000000010111000001100011100010000110001001110110101111000010100010100101100110010011010000000111011000010011011011001000001100011100110000000001011110001011111111111011110110000011111010000001101100101001101000010110001001111001010011010000010001101111010011001011010111110011011100000110110001110100000110010100110000001100100010111100111001111001010111101110001110011110101011101100010100110010111100110101100110101101010011011111011100000001001111111001111010110001111011001010100011001110100101110100111011000010010101100100010101000110111010100000001110001010011101011100101110000101001101000110101001001001001111010010111100101100101111011001011101000000101110110100101010010110111000110001111011111110001111101110111101101110000100011001001001001001011011111011100111011011011011100011011101010101011101001001001111110101111000011110111100100101100101010101011111111001010011010101101110000100010001010000001110010101100001101100001100001100110010100101001101001010111110010100100000011110101111011101000110000001110110100101010100101100011010101010110100110000010100111101001100000111100110100101001011011101111100000011011110001110111010000000101110000011001110111101100000110110101111100111101001011110100101110110100000111101000101111000011011100110111000011100001111111011111100010101010100011100001010110101110010110001001110000000111001101110011101000011010011111100011010001010100001000011101111101110111001100110010110101011011110011010011101111100000000110011001001011100101101000010001101010101111100011011101110101110101111010010110010110000011100111100010110010100101101100111101110010001100111110011000011010001100110011000101001000101111101000111110011110010111100100001011100000110101001111111110011011011001111110010000000110010010000010100111100101101101001000111111111100010111110010111111001010001011011100010010110011010011111110001101111010100111110100111110110000101001110011111011100001100000001110000010101000011110001111011111011011100001111101001010110011101011000100111100111000111000000101010110100011110100111101100100001110110000101110110110001110010000100110011101111101001111110101000010110110100110001111010101101000001100100100011010001100100110101001000111101011110001000001100101001111100001001110011011010011100110010100100100001100101001111011000101000100111001011101001110100001111110110011101001111111100100000010110110111011011110010100011101111001101000101011110010000110100110110101010011100000111111111100011001101011100000111110110000110100101101110101100000001010000010100100111000101000100000000110001010110110101100001000001011000000100101101101110001101110111001111111111010100001011000010110011100011001010011001010110101010010111110011001101111011100001011101011100000110010001000101010111000010010110101010001001010111101000101011011011100001000110111111100001000011001111001100001101110101111001110110001101011001010010001111100001010111111001111000000100010111110010100011101101111000111000111100110011000110011000010010101001000000011001100011111101000000011001011001011110010101011011110011100111010010010010111110001011000111000010001110111100010011111000011101011001010001011011100000110010101011000011100110011110011101011010101111110110001001110101101010101110110000010000000000011110001100001000111100101011111101010000101111111010001010001100111011011101111011011001000010001111010110110010110000000101010101110110000100100101111011110010010010010101010100111001011001000010100000110010001010100010101000111011001001011001101001110110100100100110000101100011101000011100101110101101101011001101100000011111000101111100010010111011000001111101101111001110011010110001111111000100111010100010011111010001011000111011000110010100011101011110010001010110111011100100111000010111111111011100110001010000100001000010111011100000101110000101000011100011010100010101111100000010011100111000111001011000001001110100011010101101010000011001000010010000000101001101000111010001100000101001100110110001010011110111111100110110010011110100100011001100011000111011101100110011110000001000010100010100100100100000110101010111001010111111101110000101001101101101100110001001101001011101110101111111001100111011100101111000111101010011110010010110101001101001011100011110000111011110101000101100001001111001000101101101010100110111110111100011010011101000010010110100110101101101111110111011001110010000000111110111110101000110000010111011011010110000101100010101111010100100101011100010001110110110000010010110100001000111000011000100011100010100000110010101101010011100110110000011000010101111001001110011001010100001110110001111111010011101000100001000111011111000000000101111110100110100001101101100110110101010000000111011011111101010110111101111011110100010010111011111010111001000000110111010011101101111111100000110001010111001110111100011011001100000110000111110010011110100001101111000000010111100110010010011010010010011101100011001100000100101110011110111011111100000110010111100010000001011110000101001100011111000100110011010010110111111111000100000011101100111001111111110010110100010111110011000000101111110100011010110011111001010110010101000010111111111111111110011101101100100100110100001011101111010010000011000101101001011111100011110000100100100101110000001101100011110111111000111010100000110111100010001000000100100011111001011100010000011001011010001001100011111011010010100100011101110100011011010011100101010111100011101001000110010000010010100110011110000001111000000110001110011101010111111101010101111001001110010011111000011010000000101011011001001000001100100100010000010000001101110011011010000010001001101110000100010110110011001101101100000100101100111101101100101100001011001111001111100011001001011101010101011100101110100100000111110110101110111001111111010001000010000110111110010101101110111010100110100011010010001010100101011111000010000010101100001010100101011011100100101101111000100011100010010010011010001011100100000110100111110010001111011011100000000000010110001011001110001011010000100001111111001010111100111010011000110000000000111000011011001001011100101011000111111111111011000100100100111111000010101011001010000000110101110101100001101110001101001000001101011101110001000110010010000111000001001110110010010111011010100100111111111011100011111111010011101011001001110111111010111001110010010111101001010000000001010001000100101010101101011010111100010100110011001110011001010111010000000010001111001011100001101101001001011100111001100000000001011000001000011011010010110110110011010010101011111101111010111110001010100111101100001011110100001010011100110110101111001011001011010010001011101010110001110011100010111101000011100000000100111110100001000001100000100111101100000000111011010001010000001111000010111010011010110011100001100110000011000000111011000110011101101111011010001001010001001001111000001110001100101111101011111100100110110100101110110111010111000010001101010000101110010111100100000001010001010000111001111101100010011110010011010111001001001011110101110111100101111100011000001011111100010011111101000110110001010110011110101000000110001101101011101101110011001101110000010101100111100100101010000100110100111010111101011001110101110100000011001000110110001011101111111011001001001101000100011110011000001010000111011010101110101011001101000100011111110011000010100101110000110010001001000100010111010001101111111111110011101101111101010101111000101011011101101011101000100011110011010000101011111000001111110110110000101001010000011000010011001001010001101000101001001101000011001010011110101000100111110010101100100010111101000010101101111010000110000100011001100011100010101000100011101110100100001000000111100101010111011000111010000110111110011011001110011010110100111011000000111011111110000011100100011111000101100011000001011011111101101110111011111010101011101111001110010010001011010000110100010011111110011110000111001110110010111111111001000101101010011111111100101110010110011110000001011000011000000101010010000101011000101000011110001010010000100000111011010010011001010000110001011111111110110010111000100100101011111010110111110000101100010110111101001001010100111111000000001010100010110000011100100101000011100011010100010001001100001101111011001000000011110001010111100101111111010010100111101100101010110011000001111011011110000000001100111010011110000100111001010001100000100001101110010100111100110000011111101001000000011001100010111110101001100100101110101101110110010111110100101110010110111010101110101101101000110100100010011010011100001110000101001010100010100111101000001101100111000111011011000000011010110010010100011011100000000100000001000100101010010001000011000101001110101110000101111001011010100000000010110111111010000001101010000011010101011110111111110101010000010000000111111110100010100110010010100101101010011000000101001100011010011000100011111010101011101110010010110000100011110111001000101111100101110110000101100110000000100101011000011111100000101011000011100010010101110010000111001001001000011011000100100110111100111111011011100101011111111001100111000010010101001010010101100100010101011100000111000000000010110111010001011001100001011101111110101010001000110111110011001101100011011111101011011010110100011100111010111010010101000011101111010001000111011001100111100000010011011100110011011000111110001001101000101001010000100001001111100000101110001010000000011100000000011010000101100110101000000100110110100100111000001110110111001000110000011011010001000011110100001010011010010111001100111111001001101011000010001001011110101000111011010010000001001111010100000101100000111111001011101000010001000111110101100111001110011111010101100110001011111011011110001011100000100101000010111111000101101100010000011010110010010011111100000001111100111101101111010000110010101011100101010110111010101110110001101011001110001110111011100110111110100100110100101001111001000001010011001111011001100111111001101100101111100101010000101101111110100101000011011010011001011000010011100001011111000010111001001111111001101110001111111110011111010001110011100111111110010001011100000110001001111010000101101101100111111010000011111100110010001101000100101101010100101110101010000001101001111000100010100011011011001110101011010001011101010100110111111110000100010111010010001010101101010011111101111110000010010110011110111001110110101111001101010100101011101010111000111000001110000010110101011100011110100101110010001010100010100101100010001110000110000010011111000101011010100100000100000101101101111001011100101100000011101110101001010001001010011101010000101100110101110101110110110101000111101010100011101101111100111011100100010111100110110000001000110100010110001100110010101110100000111010100101111011001101110001011010111010000001011110110011110111000100001011101110010111101110010011000110110011100101100100001110111101011000100010110000100110011111001000011110001001000100011001100111101100100111110000001011111100100100000010001010110111010000100000111101000110011111010010111110111010111101111011111111010010000110111001111100001010000001100000011101011101111111110000100100110101001011001100100111100011110010110000110111001001101000010001100011101011100010001000111101000110110001001010011110101000100110111010100100000101100001001000101111001110011111100111001000000100011011001110100100001011111100001010000110010000011110101000111101110101010100000001101100101101110111011101111100101100110000011111001111010110101111110011000100100100101110001000111011000011001100000101000000110101001000111100010000111100010010101011011001010100010101000011001001001010110101111110110111010101001001101101000011110100011001111000101011011110001111001010000101000100101101110100010101010111011010010001000111001001011011011011011010010000000100110110001111110001111010001000011011110011100011001000011101110111100011010110001110001100000000110010100110000011001010101000010100111101101001110101110110111111000101001010011101100000001010101110000011011100010001011110010111001000110001011000100010111011100001000111111101111101010110101101100011011101010001110010000111010011100000101011010101000101010100110011110010111110110000110101001010110011101101000000100110100010000010100100110010011010010111111011000011101001010100111101011101001101000100100001010110111100010010100101011000010100001100011111001111111001010001011110110100011010010111100111000101100101010111101011101111010000101110011100000101000100111011000101010011100001100011100101011100011100010101111001111001000001001010101000010110001101001000110100010111010110000010111101000111001001010110010000100101010001110111001111000001111011000000100011001111011001001001010000000100100001100101001010110001011010111101000010001010001000000000111100011001010110000101110011111111111101010001011111110110100110001000100111010011010001101101101110000001010110000100100101010110110010000111101101101000100011111101100101110001011100101000010111010001111111000100001111010011101110011101111010111010100011100111000010100000100100011011010111011110100001010110110100110000001111000001110110101010100001100100110001000101011111110000111000011111101000001001101101110100010101000000000000110011010010101111100011000100111100101111100101001011011001000010010011001001110011000000100100000110010110110100001000011110010100101101010101001000100010001100010000000010011011110011001110110101010111111010000011110000101001001101111000011010111001010011000100000011010001001010011011010111001000110110000000010101011111001100000100110011100101010001001001001100110001110111011101111111010110101011011100010010001000110110100011101010000101110000001101100001111001011111001100001000101110010011010010011101001010010110010100101011100010101110010100010111011100011000101000000101111100101001100111000110111011110001111001010111010110010011101100101000110010110000000010111010100000111110100110011001011010110100000110101001110010111001100110100011011010010011111111100101011000010010010010100110010111111110010000000100111001010011110111100010000111100111011000011001010100100101010101000110011011011100011110110111100111001010110001000101011010011011000110101011001101100111100010111110001000011101001110010001111010001111101001111001010001110100011001111000101001100010000001110011100110100000101000011111001010001111110101101110101011011101001101010010010101110011001001110010110011111011001101111100110011111100101010101110011101100110000100100010110110011101101010111100001011001010001001101010000010110001011110011011011100000101111100111100011000100000100011101101000101100100010100110010011100010001000111101100001010000111111000001111011100000000110010100010101111001010011110000110110000000111110100011101001111001111101010001110010110011000101000011100110010010001100101011001010011111000001001101110001000111110000101000011001000101001111010000011100011101111111110011000111000100111110111011011100110001111000100100010001100100110001100011111101011010101000111100011110111100001111101110100100010111101110111011010010101011110000111010101110011111100000101010110001001011100011111000011000111011001100001010000000110100100100011101101000111110000111100000111001111110110001111000101101010001001100011011110001001001000111101010000000110110100010100101101100100011011111100010111111101010100110101111000001110110100101000011011100111001000110011100000101000011010100000101001100100111001000000111111111111110010010000010100010001010111100100011111100011101101000110000010100100100101111101011000111111111110101000100000001111101110101000101100011111100000000111011101010010100111011110011101111100001111010000001110101001001110101010011110110000000100100001010000110010001000000111000001000100111001000110011001101110000000101101111101111111101111001001101100100000110001111111011110111011101111110101100110010010001101001111110111100001010001011101110110000000011011110011001000110000100000001010111101010101010111000000101100010000011011101110010111111000000100010011111100100110010001001110001011100001101011110010100010101111111110101101001111101001101010011111101100000100001001101010110001100111010110110010000101111010110110010000111100010001100010000110101010000100001100111010000101010111000101001101100000001011000111001100110111100101110010111100110111010111000111000001011010110001111000111101010011001000001010110101001111101000011100110100010011110000111111111011011011110101111010001001100111100011100000010010100000000101000100101010011011100001100101010110111001010011111100000000001101101111111111001001011100000000010000010001111000000101101111011101101001001101010101111000000000110011001000111000001100111111101011101001011100100001100100111111011000111001101001111001100010010010000000000100000101111011100110010100100010101000110100011101101001001111010101100100001000100101000100000001001001110110000001011100011000100011001000010111011101010101000100001101011100110100001101010110000100010111010001010100101100100000001001101000111100000110001011001000111010011000011101011111001010101101011110111011011010000110101010011100111001101101001100100111010000010100111101111010010110100111010000100010110100110111111101010010101111101110111001001111011101110001000010001101000001000010000110101111010110011010101000001011001101010101100111110001011111101110011110100110011111111101001111010001000101011100001101010011011000101010001111111100001110001011011110100010110110010011001011100100100000011011001011100001100001111010010011010010001111111100001000100111111000100001111100010100100111001101000001011110110111001110111110100111100011001011101011000010110010110001010000001011001000100011010001101101110110100101111011101110000011011110000001100111001010011010010011111000110111101010110100000010011001011101100111101100100001011110110101111011010010111000110010111111011111000110011011101011110100110000000110110100011101011110111010000111001001110110110111001000110101011010010000111101010100110101000011001100001111010111001111100010101101111000111111010011001110001001100110000111001111110001000000011100001100101110101101101101011000010101110100000001100100111011010101101101101001011100101011001001011100111110111111111100100110010000100100110101101101001010000001100011011011011110111011100110110010000111101010101001110111101111010011111010111111101011100011101111000111010111100010001000110001100100011000111101100100000100100010111011001001010110110011101101101110100010100111001010100000001001100110111010011000001100011101101101101100111100100111101110100110010101011110011100001010000111110000101011110111011010110001010001111101001101010100110101110101010100001001000011110010001101000001010001110011001110011011111011111000010000010000001100000110001110010010011101000111011100101001010111000111111111100110111111001010000101110010011111100001010110010111010000000001110000011110100001111001100010001100110011100100101101110101100100001111010100001100101100111000010101100010011000110100011101001010010100000100101001000100101010001011110111001111110110011100010111110011011001100010110010100110010000110000111001110100111000110010011001011010100110011010111110111110110100010101110011100001010001010110110001101110010111011000110111100110000011100111100110001010100001100100100101001101111101110010010010110100010101011011110110010110001001100101011101011000011000111101111100011010101011101011011101011000100000100001000100100010010111101001000000000111010001000010100101101111111110000000011111010101111110010101100100010110000001101001110111110101011000101111110100101111000011010111010000100100001100101010001001101101101001110000101010111100011111100100101111011111011110000101011001011101001100110101100001001010011100010110001100010010010101110000011110100010001000011110000010100101011111001001101001001101001001100101001110010011001110011001001000100111011001011110011111001010011110100111010110011000010100010000100000111001001111110001111110010011101001001101101000000101000111001000001001101101000110010101001010011001111110010111100001010101101100101001010100111000101010000100010100010001011111101011000110011000001110111010000011010100000001100000011001011100011000111000100101100100001101110001000101111110111001011010001001010100100101110101110101100110110110110100100100001111000000000101001101101001111010111010100110011011010010100001111110010101000001111100001111111101100000101101000111100110110001011101001000001111111101111111000111111001101100100001101100111100101000110101101000011001111001101111001001010011110111100101010011011000000111000110010000010001001100100100100110100011000011011011011101111010011110100111111011100111000010011001000100110101010110110000101010010011010001100100110101101111101110111100101111110101101110011001011001101100101111001101101111011010011100010000010110011001111010001000011111111111101010000101000100110010101110011100101110101101101010000001101010111110101110100101010001110111100010100000010001010001100011000010111101111101101110010011011011110001000001010110001001100111000111011110100100000110101111010011010101111110110101010101001010000100010010110011001001000111110100011010111010100110100100101001110110111001110011101110100001010110010011101111010000111011010110111101101010010010000010100000010101010000000100110011000011111001111000100010100001000011010100010101001100001001111111101111000101010100100100011110001100100000110000000011111111001000111011101101101000011011101010110101100101010111101111111110011001011110110100101000011101111110010101111110000010100111111100001011011100101111111111010101111001010010001011001101011110010111110011001100000110000011101110011000100001010101001110111111101010100110010100001011000011010111000101011000100100010110110010101101000000011010011111111110010010101000010001011010000001111100110010010100100110110100000001101001110001001110001010101000111011100000001011010010111110111110100001001101011100011010110000000100011101010110000011110001010011100000101110101010010001000110011100101100000010001100111111001001101011110100110001110000100000111100011011001111111100000000111011111110000100110001001111110111001111000100110010110011110111011000110110001000111110100101100100100110011101000111110101011100110111010000000101001001001011001001000110011111000011001110010101001100001000001000001001010101111001010100100100110000101001111001100000101111110011000111101111000010001111010010101011000101001001100100101010111110100010100000011101111010100000110001110001100000100111001011011110101000110101011000010000110101001000010110101001100110000010010011110001100111000010011000100010101101111110011010101101011000010000010100100011000100101001011101101010110101010100101100101010111111100001011101010010000111100110011101010101101101100111110010011100101001101001011101011001110000000100010101011001011000001111010111111000000001111111000110101111101011101011110001111011100010110100011011110111011011001010110000110110001111101110011110010101110010111111001110111111111000110101010010010111000001001111101111100010101100001100111011110111100011111101000010100011110000101101101101111010010100001110001101111111101000011110111101010000001010001100110111010010000000111011001000001001000100010100100111010100011110010100100010001101000110000000100101000000100011010100101100000010101100110001110101000100111111000000111111101110011100011111110111111100101100100100111110001110101100110011000011001011011001010011000000100010101101100111111001010111100110000111111010110001001101011001110010101110111010010110001100010010010000111101100010001100111111110100111010110111010101000111100000100101101111011011000101100011100110001001100111010111100101000010111010111001100100110000011100011001000010110001001001100111100101001100110111001110101100011001010010111011110100010001000001011101100011011010001010011010100100010111001100100010110001111111011011110001100000101111011011011010000011100111010001100101100111111000011010110111011011101100101000110010100011111111100011011101000110110110101111111100111001110010000110011111000101100110000001100000110101101011100111010111101111001111011001110011110100101011010110100010111001100111001111011100100000100010011100011111010001011010000010010110100001011110111011000000100000101110111100101011101000100111000111111000000000000001111101100001000101100110100010111011011001000100101010001010101100011011011001000010011100001100110010100110011110001001100010111101000000001110001000101001110011100111010000000011010100110110100011110001110011010100101110011110010101100001010111111011000010110001001101101100010110001111000100001001010111101001110111110001011000100111101110000100011111101011010100001101111010100001000101111111011000010010000111000101011110111001000101101100010101001011010010010010111111101100000110001111110111001100001110011000110001011110011111100111011101111110100111010110011111001011100011011000101110101010111101011010100111111011000110101111001000000010011101100010111100110110001001111011111000100011111000001110101000100100101000010010001011101101010000000000100010001000111110001000000000001110100000001101011111110111000010000010010101101101111010001111101111001100011101001000111011011100011111100001010001101111010111100011100101001100001011000101100100110010101010111001011100101001010000011101001101010000100011101100111010001110111101010011000000010000101111101101101110111111101001110111100101010011010000100000111011110100000101000000001100111101110001011000011110001001110100101000100110101110011000011110101111100010011011011101100010111101010010101011011010011111011001000010001111001110000011100111010101100111001001111010000101000000110000000010100011001110011101110100010010110000100000100101101100001001110011011011100110010111010111111000101111001010000001101100010010100100100101100001110000011110101011011110000010000101011000101100000010110011000101110001101010011101001001000101010011101100000100101101100110010101100101110110101000001001000100100101101111101011111011010001100000111000000011101101010101101000010111010001010111100011001101000001101100101010111001110110011001011011110111100000100101101000100000100001100011101100110001100010101100111110011000101001000101101110110001010001010100011101100010110000011111111001110000011011100011100001001111000111101110111101000110000000010000111110100000101100010110100111011010011010011110011110101110001001100110010011111000110011001110111101011000100000011011010110001110010111111011010001110010001011010010001010110110000100100100000010001000011000111011111100111101101011111010001000000101101111111100111011011011100010111100111111011111101110001111000101010011110010101110111010011000110110101100100110011101100101001011101110011110111001010011000101100100111111111100000011110001001011010010100101110111001010111011000001001000100000011000011010001100101011000000011000110000001101100011000011110100101001011010110010110001001101100101011101001001100101000011110110000110111101101110100001101111001110000010010011101010101110100100100000110001101010011000111101000100110101101100010000111110001111101010000011011111100101111100010101100100100111011010110011110100101011011010101110001111001001010110100010011000110001110000010110101110110101011100110111111000010100010000010011011101100010100110000101011000001000000100100011011010010001010001101010110001110100011001111000000111101110100010100011010111011001011000111100100100101010000001011110000110101111000000010111100110111010101110110001101100001011111000110111011101111101010100010001011101100010000011000011111010110110100010001011110010010110001111100001100010101101010000100101011011110100010011110101111000010010110110000111111111100110101000011010000000010011110101101010110101000101100000001011011011001011101010010010001110101010100010011011010111011101101010100111101100111111100010001110010000011101010000000111000010000111110110110101010110000101100101011110100010100001000010101111101011101111000001000101111110100010000101001111111001100000000111001110101110110000110001001001111101100101111010010101111101001001010001011001011101010000010010010111110001101001101001001100001010101111110100011010010101001001101011001100100101111001111001100001110011110101000010101011000111111010110111110011111111101101000100100010000001110111001011000101101000011100001100100011111001110100010111011111111000010001101000100010010110011111001101110000101011110101111111001110100000010111011100001100101011110101110011001011101001001110100101100000000000000110001000011111000011000101101111110001100010101101100100101111001010011011010001010000111001100001111000000101010001111000100110100010001111011100011111011010110000010101101011110000100010111001011100111101011111111100110111100001101110001010000100111111100000010011010010101100011111111111111100001010011100101010101100000100111011011010011011110010000101010110001000111010000100110100110010000001001101111000111011100101000111010000110100111101000100011100010111010001110000110101011111000010000111110011110101110110100011101100000011100010100110110110110010000000010001001110111001110010100101101011101000110010101000000011110011000100000000000011010111001100100110100000100010111011001111000000100000011111011011010011111111111111110000101010110010011110100100101100000000000101111100010010000110000111101000001100100000110000111010011001110111001100010000011101001001011101001101100101001100111110111011011010000110110011011000100101101000111110010001111110010111001101100000001100110101100011001001100001111110010011000110110001011011010100111011101111101011001001010000011101100111000000100000100010101011111000110101100101101000001011100101011000101110011110010000100111011111011000010100010110001100101111111111111100010010000001101010000111011100111110110111101110110000100011010111001111110111001010010001110110011000010001110010001110001001111110100010000010110000100010111110100101101011011111001110000111110000010110101110011000110010001000011001100010011011011010010100110000111100100001100101100100110101110011001001101111111010000111110101010011111111111101010100010110111000000100111000011101000001011000001111111000011110110000000010110011110011111110111010100000010001001010001111011010110000101010010011010110111101010001001001000011001011111101101110111000001100001100000001100111110011110001000001111000101101010001110001001101011001010101000011101001011010110000111010100111111111001010011001110001000110010011010000110011001010000100011010101000010111110101001011011000010101011011001011111110101110011001110101110011101000000111010010110111011001110010110110001011110010001000101000011010101110111001010101001100011000000000110011010110111001111110101000100111010101000001111001011011001010011100001000110000101110010101001111101100101100110111000101001000001000100010101011100011100110110101111010110010000100000011111000100111011110110001010010110011101111101000000010111010100100110000011011111000100010101010001100011100011111101111100111010111001010001001011011010110100111011101010000110111000110101111011001011000111010111110111111010101000110101000101101111110000010001001010000000101101111101010000100110101110001111001100010001011010001111110001110001111000111010100110100000001000011111101111110010011110100101010000110110110110100100101100001000111100010010100001000101110000111100101111111001100011100011011011101101100011101001110100010101001011110001111010111100011011010000101011001010010000110100110001100001101100000110010000000010111010100001111100110111011010100001110010111111110001011111001011001101001101110001101111111001000110011101101000011100011001101101000100000101010111000100111011111001111100100000111100110011100001010001000000001001000101111001000011111110101000100010101011001101011110101011101111100000111100000000101110001001111110110011100111000011111011111010011000010001101010100110001111000111111101001010010100001101011011001101001110101101001101111001001110011101110101100101101100101110111000011000111101111110100000000001011111101000001011111110011101000001000010011111011111100000111110011000101000100010001111111110001101101010011000001111101111111010100100011010010101010001101111000110110001011100010000011000101001101001110100101100011000100011000000001100111000110000001110111100011101000110100100011110111101010011011000101000001100110000010110110100100110111011110001101011010011111001011101000010111000000001101100000011111010101100011111111101111110010000001010001110101000001101001100111101111011110011010001111001100010100000101110100111011100000101011011100101101101101011110110000000010100000000101110001101010001010011001111001010011000100110110100100001101111111100010111000011110001000111110001010100001101011010111010000001110000010110110001111011110000001011110110100100101010000010011001001010110101001110011111000011011000110100001001001100011000000101100001100000100011010110101011000101111000011011010110011110111100111011001100001011011110001011110110100001101001101101011001001010110100000111110011110000000111110010101111101000010011111101011001110101011111011010010110010111011011111011101011000000101001110011101011110000111010101000100001011000100110110000011010111110011101001010001001011100000010000111011000100101111000100010001001011010001100111101100101000101111011110010111000010110000011010100111010010010001100000010110000100001000010001101000011101010000100000110001100010001111100001001110011111011110011000000001000000011001000101110000001100110101000010000111000000011101101101101011010001110101010000110000111110000011110111111101010011100101000110101001101010010000110010011011110011000100010111110011101001111101000001001111011100011100010001101110001011100001000111000010010111110000000000101101011110101001011001001011100011111111011001111001111110001111110101110010110110010010010100110110011011001110010011011001011000111010101001011100101000101001110101011011000110010111001010010110110101110000100110100111111110000100011011000011011000011100110111101101011110111000101111110010000010110001001000100101100001110111000111001110001110000000010111101001000100010001011110010110010010000010001010011101101100100101101010011101101000001111101011110011100010111100100010000110000000011101101011110110001011001111000111111111100100101101111011111001000011111110011001111101101101101111101100001111110110000110110110111111010011100100000100001000000000110101111001101011011101001100110101111010100110101010000011001010010010101110010010000010110101010010001010001001110110001110101100100010011001100011100011011110010100011011001010001000110001011111000100011001001011000100101111111101111000110110111010000100001000011010000000010100110011011101001001000011101011101010101001100111011001000010101110101101110010110010100101000000100000111101011111001001111110101001010011100010110111000111001111011010111000111011111011110001101100100001000101001000111100100010111100101011101100010001101100010010100101011111110101010000011010000010010001110100011100011111001111011111011101111000001100000010010011100011011101110100010001000100101000100101101100101001111000001010111001011101000110100001011010111010011110101010110000010011001000110011111111011111111100001000110000000110000000000000001100000010101110001000101100100010100101001110100111010111000111011100110001110100001101100100101100011110011111111010101100001010001011110110000010111101111010110000000111111011001010000010000111000011000100110000011001001001000001011000010101010100011101100111010110100000100110000000110000000000011111100000010011110010000101100010011000010001000001101001100011000001111011011001010011111101110111111101110001100000001001100011111110111101110110010111010110000001100110101110010011110111101011010001111101001110101001100110001100100000000101101001110001010001010010100100001001011001000111101111000001110111011110011001111010000000111010101011111110010011111001011110111010110000101100010011010011101010011101101001101011010001011111011110011011000100100110010110100100100011100111001101010010110000010010011011011111001011110110111111001111000100100111100011010101110011110011011001101010010110100111101001101101110101001110110010101000000011110001111011010111111000010100000000000000111011100100011001110010100110101000100100001000001100010011010010000011101100101000110000110011110001100111000001110100111011011010000000001000101011111011101101101010101100110111110000110011100110011011110111010001010101100010100000111000111111011101000111011011111010111101001110001000001011110110101111010111000000101110000011110011011101111100111000001000110000100101101101010100111001110110011111000011000111110001111100001101001010000011000110000100001011101111010100110100000010000001111010000011010010010011101111100000111101010010001001110000100111110001111100110101110111111001101001100111001101001000111110101101101001011000111111010010100111011010111011101011001011000110000100110110010101001011101000100000100000110011110110000001101011101000010011010101011111101010010100111000001001001101001110011111100011000011101101101101101011101011011110011010011000100101111111010101001001000001000001101111001001010100001101000001100101000110000011010010011011001010101111001010100001111010001001011111000000101010001101110100011000101001111000011010011010001011110101100110110010111101010110011010100010011000101110111111010101111110100111011111101100010000111000110011010000101101111101110111011000110111101000101111011110110110110110001111000001101010010001011101110011000001101111110101000110001011111000111001100011011001111010001100011011010111101001100111111111100011110011111100000101100010111001111010110111001011011000111101100000111100010001000011001001111000010000111000000111010000010000100010011001100011101111010110001000001011101011110100110111100111110101111000100100001100001000000000100110110010010011100010111111111000110000100100101000111110110100110001011100001111101101000111101101101010011111110011011100001011100011000110101100100111010100110000010110111000011101110010001000001100001110111111011001111011100000111010101000110011110110001010011011101100001111000000001111110110000100011010110010111011011110101110011011110001100110010001010111111111000101011101011011111110100011111100000011100110100100111111101101110010110100010101100010010100001100101110100001000001100000010100010100110011111011110011010111010011000101110100000100110011011110010001111011001000010000011110110111110101100100110100001101100110101111100100110101101101110011111110111011010100001110100111101110001101011000100110101010110101111110001000010000110011110011000011010111111111111110011000001001110000001001101001010001100010010001100010011101111110101010011011110001111100010001000011101110101110011001011111110111011010110011110111011000101110110111101000001001100100101110010110001001001110101100111010000000000001010101100000101010001101000000010011000010101001101000000110110011011011101010101110010000101000010101011001110110010111100101000001000010101011000001100111010110101101010011111110101001010001101111111101000010000111110000100100000101110001101101111100011101111100101011010000100101100011011000001110011100011101100100000011101110001000011011000011100011010011101101110001001111000111111111101100011110010011100000111010101100111110100001111000101011110100001111000011110111100110001111000010011010100000011101011111001110001100111011100100110111001001101111101011101010001100011110000100111101100100001101011011010010001100000000101100011001011000010111000100110100011101010001000011110010000011101000011110101000011000001001010100100100000110101001011010100101111011011110100101010110001110001101000101111000011001111010000000001000110001110010001110100110010000101011011100001110111100011111100001001110001010110100101101010100000101110000011001000001101001100111101001100110101111100111000111000000001000110100011100010000110100100100101000010111100010010110010111011001111110100101111001001110000010111111100101011001010111100111100111100101101111001101101001101101011011100110000001100011000110011101001100101110100000011111011100101000010101101110111000111001100101011100111011101110111010101111110100100100000101111111100111011000110000110001111110110000011110101100000001000111100111100010001001000110101111000110101001111000001100001010001011101011011011110001110101110001011001011110111011100000001001111110110110000010110010000001100110101001100101110011111100011100111111101100001111001100101110000001011001100011000111110010001110100110100001010011000101001000000100010100000011101001110101110010001101011110010101000101011100101000011010010100010011101010011100011100011010010110011011011110100111001111010110110000001110000101110010010010010100111001011100111010001110101011111010011101001000101001111010000011101101000111110001010010100000100001000011010111000000010001010001100000111101111101011100010111101011001010101001100110100000110101000111101110000110101111111110110100100010000011001111100110000000000000000101001000010000011011001100010110110110101111100101101001101100001100110101010000010100011011000101010010010100001110001010110000101101111010111100010110101101110100111010010001110111111110000001111110011101001000010110111000110111001001110011000000111100110100010000010001100001110000011101101101010010110010011001110001100011111101011111001100101111111000001001111110010001110001011010101001111100111101100111001000001101000111000000110111011010001000100001000111101001001111111100111000100111111010001111111001110101010011100100111100100101001110010000000111100110000010011110110110001101100000100111111001001100101001110010010001000111011001100110110000101010100111011010011111011001001100111000000000110001110100111101101100010100000011000111000001111111010001110100011010000011100101100010000010110111011110011001111100000001001011001111011011110100111011110110111010101010011000001010101000101101001101011110000110010100110110101001011011010011111011011010000010010111010111100101110011011001100000101110010100001001101001010101001000101111101100010010001011011001010000111010111100010001110101011011101100101001111010010010000010100110011111001110011101011011000110001101101111110001110110101010110011001100011011000011001110100001010101011110110010101010011000110011111010010001000000011000100011111111000000000001101111000111011001010111010110111011000011111111010001010110100000001111011111111101110010101001100010101110100011000100110100000111110100011000011111101001110111100101001100111100011110111000011001010010001011011111000000101010101101000100010000111011100101100101010101111110010110111011111100010011010100001100001000100111101010000111011101110100101100010001110111010010001001101100110011011101100110111001001000100011100110111100100100111111110010100001001000110010000100100101101001101111111100101101100110101101101101010001010001010111100001000101011111110111011000010111010111001001110101101111101101111011101110110001011111000101110110011111010111011100111011000110111101010000101001001000101001001000000010011111110010100111111001110111001010110101100110101110111001000111101100010111011101000011000001011100110011100001111001011101010101111100000000100111001101100100110011000100100111100001000110100000111001000100111100001110100111111011001110111011100011100111110010110110000111101011101001100010101101100010100000000100010101000101001101001011000001011001010011011110111110110011111001110110100000101010011101111000100000100101101001010010001101001100010000000100010111110000101101001100110111010100110111101101101100101010111111110111001001011101000010011100010110100011100011011010010011011101110001100111000100011001101110101110011000100111011111110000011111110110110000000011110110110001111100010000100111101111011100100101110111000111110011100111011000101101001110010011001100110101011010010101100101000010000111010111011110011001100011110001010011110000011010101100011101001111001010111001000011001101110010000011010001010100101001001101001011011011100000111011000000011110101110011100001101000011101110000000111110000110110110101000100110100110111101101111111101010010001110010001011111000101111010011010011011011101101011100001011010000101001111000011111000100110100101010111101110000011111111000110111001100110111010110000100000101101110110111100000100111010011110101110111000001101101100110001000101100100000101000111010001101001100110000000100000010010001111010010010000001010010011110011101010011011110001101101100000111010101001010100110001110100001010110011110001100001001000000101011001000010110100011100101101000100100110001010011100000010100100010111100100101011101001110001111110110100101110000000001101101110110111000001000100000001101000101010101111001011111111011111010010111110110110010000011011110111011010110001011101111100010100110000010100110110011010001110011111101101011100011100111111010000000011001101110001001010101010001000000011111010001110011110101101000100110101000011101111011110101011110001100010111010110100000011110011100110111000000000111111101001010111110110000011111110101011000101100111001110110111011010011001111111000110111101100011001001010110000000000110011010101111111001100011010111111101001110111010111100100111011110100001010001101010111110100111010110000100000011100111111110001111000110101010011001110110111001101011100000111001001101001001011111100111011101111111101000001100011000100110000100010011000110011101111010000111011001000010101110100001100010010100010010011101101011111101111100010111001100001011011001111000100111010111001111010011110100011101010010010101010010111101001100100111010110110101110001011111010010110101010000110001101010000100000110001000000000010101100101111011010101010000001110001111011111111111101001100000111110110101000011010101011010011101110001011111101011101110000110000001110100100010000110111001100101000100111111001111000001111110100010110001010001111110011101000110001000011011011001011100011110000110110011000001100011110101011001011010011000001101101111110111110110110101001011001101010000100010011101110001010101100100110000110010101110011011000000010100010011001100001011001111010111010011010110110101100100101001110011001010101001101010100100100001000000001101101110111000001110101010000100111111001001001111110000000000011111011001110011010110001010011010001110100110111010111100101010111111101001010110111101110000111100101100101100101111000110011000111110000010111010011110110011111011010010111000100010111110010011001001100000111100000110010111011000101111010110010101100110010101001110101010001100100101001100000011111010000101000000110011000110101000100010110111100100011100101000101000100010001000000101010011010001100111010001000010000110111101111111110010001111000111101111100100010110101001001010110110100100001101111101011001100101111101110101001100001111101111001101011011100101100110000101011100100011111110011100000111101111100100011110110101101011101110111000100010110000111000010100100110100000110111001011011101101100111010110000011001101101001010001010100011111110000101100011001001110101110110000000010011000111000100011010011101110011111011111110010110010110000000001001101100110010101101101000001000000010001000010101100111011111011110001011101000011110111100110011110010100011101000011100100000110110111100110111100100100000101011011100111000011000110110011000001111111100000101001000101001011010100110111000011000000011100100111101011001001001001100111010110001111011011000100010000001100010101000111100000011111011011101110011011110010000100111011011000101000110111010110100101100000111001111011001010100110111011110110111001011101010000101000111001100100110000100101111110100001101110111000010111011100001001100100011000000010010000001101101000100110001100111110111110100101001010011001101110010000011111011011011000101110001111010010001001010110011100010110111010000111111010010010110011111011110111001111011110011011000101011001111011010110010000111011110110100100110000100110011110011110000001011011000101110111101110001010101001110001000010110000110011101110101101000101100110001111100101111000110111101000010111110011110101010100001101011111110111000101010001100000000100011010010111000011011011001110001001001001110001000111001010101100101100011000101101001011000011001001100010111100110111011100101000010110001101100101111110001010000110010111110100100110100011011111011101101001011111111011111100000001101111000100000001010110111001110000011100110110000110001110000010101000000011000101000100110111011011100001010011110101010110111011110011010011110110011110111100001011101110111101010100001001111011010001111001101110001100110000000111001110000000101011110010000110100101110001111100111011001101110000001001010000100010000000011101000100001110100100110010010101111011110100111111110111110000110100100001111101011001101000100110010100000000011010001100001001011110001101110001100001010000001101011000000110001010101000101010110101000000100010111001001011111110001111010001100001000000101111100010110111011011010110000001001000100011011111100111000100001100011011001000100100110110000100100111010100000001001001010111110111001101000011010100110000001101001010001011111101101010011100010101101000100101101111001100100111110011101011000011110100111010100101011100100101111101111101111111011010001101101001000110001001011010000000100010001111101101110110011100010010100000001011100000110010110000010011001010011001111101000111101011001011100111110001101000111100110011101010101110100010010010010101111011001111110100111000010110011011111100100111011001100110111111110001010010100010110010010111110101000111010110011010001100111100010100111101011010110000011010011011001110100010100001111101010000010110010011101000011011000011110111111010001011110101111000010000000110100011101000010001011101011001000101000111110110110101000000001001110000111101010000000100110111101111111011100111010011100100000001110001100010001101110010111110110011010000111100111010000000100100000001110011110100110111010100011111110010100111111100100000110100110000100111101111001011001000010010110000001101001101011110100000011011011100000100110110101001100100100100011100101011001111010110111001000010100001000001101011111100111011010001001100011001110101001101100100100111001010010111010110001011000011100110000111010111101100100001001000011001101101010100001101010000010000011101011011011011010100000011111101101110010100000010111111110001000101011011110100100000111000110010011111000110001010101101000111111011110110011001101010011101111101101101111000010011111100111100100100010111001100101100001010010011011101111101010110011101101001110001101001100111111110110100101000100011000110111111111111111110101100101001110001010010000011001100101011100111011110111000111100011011000100101011100101110001110001110100101011001001110000001111011010101100001000010010101101010101110001001111110110111011010000100110111011101001111111100110010011111001100000000100010001110011011011100011001110110101111110110110100000011101001111110100010000100000110100111110001110001110001110011100010111100100011000111010101111001001011010010010011000101010111101000101101101011000111011011001110011110110110011101001010001111110101100010111111000110100111100001010111100100011101100010001100011000001000011010100011000110000100100011110100010011111011111110111111100001010000011011011011111011010011011110001010101011101011111100010110101000100110111100011011011000111110001011000010001101010100000101111000000000101000111110111011110110000010111010111110011101110001010111110110001010010011110011110101001010010001100000110110011101010100101010110000111010101111000010100111001011011100101001100111111001000101010000111000101000101001100111111100111011011111000101011110101110101010001111101011001000101000111111111111100010011011101100100010110100100000010100010110101111101000111100101101111001011001001111000111101101000101100101101010001010101011100111011000011010000010011111011001110100110111100010100101001011011100001111001100011100001000000100101100001111101011101011111110111010111010011100101000110000111010110001111110101110011110100110000100110111110101101001000110110001101110100011001110011100110001011111111100110110111111111110010110010000101010010011000100001111010010010000111010011000010110001010000111110101010100100100101101111001100101110101010000110100100110010101000011010011011100100111011010110001010010110111011000111110101100010001100011110100000111110101110011110000110110100100110000001110110011111111110111110100100101111011010001000110110001000111001100000101101110011000011000110111001011110011100001111100011101001111111001011111111011100100000101010010101010010111100000101001111010000000101110111101110000100001001011010011101011000110111011111001101101000001110111001010011111001010010010111001011111010101101111011101110010101100101001001111101000011100101000001111101101011110010001100001010010001001100000010100101100110011010101100000111111010010010011010010001110110001000001010100001011010100011101010111010010010000011001011101110011110001011000001011001111100011100101010100111110000001000000010010000000011110011010101100111000011101001001000010011011111011110001100110000110110101100100000100000100111111100110111100110111110001101111010011011010101111111010001010100000011001100100010001010101111101100011110010111010001110110100111001001000100001011111110101101100011001111010001111001001011001100000001001001010111010111100111101001110100101101001010001001100010101001111101110000100000001111000110110001101101000111011111011111011011001100110010101101100101010011111000111101001000010100100010110111010000000110111100000100101110111000010101100101100001010100110000111000110100111010110110110100010101101110100000001011000100100101000110001000110101000000101101010011001111001111101100110001011101000100010000100100000101000001110010010100101001001010100111001110011100001100100111010011111001001010001110000100101101010111101100110101010000010100110110010000001010000001101110110110010101100011011011001110110111110110001100110101110001000100010100110101001111001110111001101000010111100111001011000011110110110110110111001110010000010111100110101110001001001100010101101011100101110100011001011001100100110000011011001010100010011000100101010101011001101000100100001100100000000010110011111001110000101111011111110110010101001100110101011101111111001001000000010010100110111011001011000001011110101010011100000000010010100110111110110110010110001101101000100101111100000111100010011001110010011010010001010011000001110000110110001100101010001000010010101010110111100111101001100011100000110111001100000111011100000011110111100001011011110101110110000111100101010001000111001111001000001011000110010101110100100110000101010011100000101001110001001101000011000000011101010100110000001100010001101010110110010101100110011000111011111111101101110111011011000111010001110011101110001011100010111111011000111101000010010010110101001010111100001011001101101011001110100001110010000011110111010111101010100010110110010001001100010111011100101110001010010111101101100110110011000110000100000000001001101101010110000000010111001001011101011010000001110011011011100111111000011110011101110010001110101011110101001001101001100001000010110111011000101000000000001101001000111010001100010001100100000000100000010111000100000101110111100001101111010111111011010001010101110100101101001100011011010101010100110011000000110101101110011010011011001001100111011000101010010101110001011100110101100101111100110010011111001110001001111001010111011001110001010100010010111011110010010100100000000101100011111100011100100101000111000111101100001111100001111011000010011011101110000100110001011000100010001010011011000010110000011100011100111010000101001000000110011101111001111011101010010110000010011000110100101011001010100011011000001001110101111101100000111100010110000001101111111000100010111100010000110011000011100001010111000101111111100101101110010111111010011110110010101000000101010001001011000011010100011111110100000110100111000101101011110000000010011110010111000011010000011010101110000100101010000111100100100101000010001111010111100010111011001011000001010001001111001010110001011001101110101100110011011111000111001010111110001000011100000101100010110010001011101000010110010011111001110001010111001111111000011010101111000100011000001100111101000101101010101111111010100111000000101110110110101100000001001100010110000100100111100001110001000111011010000000001100101101111000111101100101101110010100101111100100001111100010100100110010111110100011110101101101001001100111000001001111001101011001101011010110000000101011110100010101100011101000100000010110100111100010100010000001101001100011100100011101000111000001000001001001011011000011011101100110011010001111110111101010101111001111100110110001111010110011010101001111111001000001010111010001100100010101111011010011000011010111010010011001110111001100100111100101111101111000101010000100110100111110000011111010111000101001000111111110001111000100011000110101100010111111010101111001110101111010101010110000110101000110010101110000100000110101011010000010110001010010001000011001110001101010101001111011010101000010010001100001110001011010010111111000001000110001001000100111110001010110001110011000101011000101111100000110000011001000110101000001001011011111000001011010110110011000110101100111101101001011101101100101001110001111010011110001010100111101000100001101010110110010010001110110100010101100111101101111001011010100100000111001011001010110100100110100010111101100010111101101101100111001000100110110011001000011010001000001000000011100000110001110110001111001111000100111000011001101111101011110011111001000100101010000110111110000111000110011010001100111000100011111111010010000100111000111011011100000110000111000100000100110100101111000110010010011111010110111011000101010101001010111001101010000001111110110111101000111010101000001000011010111011000111001110011100011001110001010001100011000110111100110011010100111101110100111110101110000101001110000100101010110010010101010010011010001100100110111100001101000011111101000100011010010000000100001100100100101011010110110001001000000111010010000101000000101001101100000100011011101101001111000011011010000100001100010100010001101110111011111010010110001101111111110001110010111010100101011111110111010001110000011111100101011000101011111000001111100001100111001010110001110000111010000001110010111100100011101110111011101110100000000000110010010010101111011111110100110110000000011100011010000111000000001111111000101000111110110011011000110001011011000000010001100011000011111001000110011001101110100000001111000101100011100100101111010100110001010001100101101110011011000110001111101101000100010101111001011100011100011101000001111011001000011011010011010001100011101000011000011110001001111100001101100101100011110100000010111010010010011010000001010011110000110010011101100110010011111110100100110110001010101110111001010100100100011110111011000011000101011010011100101000011000100000011011000110100001111110100011000101011010111101110010101111101010110011010110101100110000001000001001011001100100010111111101111100001101111100001011011101000111100111111011001011001110010011101011110101111110110110000101101001010101010001111010001111001011000110001010000011111101100010001100101100100110110100111110000100100100101110111000111110110000011001001111000101001001001001010100001000011100100110101101100011100110110011100101011001100110100001010010110100010111101111111101011111011110111100110011110000111000110011000010011011100110001101011011001001000101101010010001110000110000010001001111011001001110101111001000110010001011100000011101001110001010110011010011111101010101001011000110011000000011000110010100011010111011011001110010100011001010100000010101110100111001110011111011000101110001010110000001000110100100001101111001001100110000100110101110110101111111010100011111011111010110111101100000111000000100110101011011111100000011010100011110110100101001010001000111110111110111101001010010000011000111110010011100100101000100011000111011010000101101001001100011110100010110011011111110010111010010010110111110100110111011110101111111101001010100010011111110101100000101111101001100001010100011000001011100100100100001101001110001100010010111100111100100001010001010000010010011011001101110001100101101001010011100100011010111110001110011001100100000010111101000111000111101110001000011101111011111010000001011011010111101111011110001010110100011100011111110000110000101111110001011011100101110110001111111101011011001000011011010100001100011111010110011101101110101110111111110011110100111111101011001000011011110111100101110111101110001111101100111000101010101100101001100111100011001001000110101011110001111000110101001000101100000101110111001100011010011001100010000000000011100101111100100100101111001110010001100000101010000111110000001011011100000110100010110110011010101111011110011101001110101001001100101011000101110010101011110000011110111001011101110110011110000000000000001111001011000100100010000010101100011010100101110100111100011010000010110100000110011011100100010111010100011011101111111010000001101011110011110111101100110101011000100100111000011111000101111010010010001011110011111010001011100001011110101101011101011000010010100000111001111101111011010011011101101010111001000111011110001010001110110110010010011100110100000110100010000010110110001110010100011111000100110011010001000100010011000101010100110001011000010100001001000001101000010100001101100001000101100100101100001010111010100110000011011010111101101101101010011001001011101110100110010110010110110000011110111011101001011010010111110111100011110000101011110101100001000011111101010100111101001100110001110110000011101000000001000111111111111110101100101111100101010010101100111111111101110101010011011100101001100101100111110111011100111010110111011101001100110000101111101111001110000010001010001010100000100001011101111111111100001000010010110100001111000110110010000011011010011000011001101101001011001011011001001100111100100110011101110001111001001101011111110000000010110011001000011101110101100100111111100001011011111101010110000110101011101011101001011110111000100101011101000010011011011010100011010110101010001000110111100000111100110111000101111100001001000111101001010100011100010011001101010101010100101111111111001001101101010101110010110101111111010010110100100010101111110001001010110100000001010110010110001101000100000001001100111111110110100101100000110100100000111110011100100010101011011001111001000011011111111101011110100101110100110011110101010101101110010110010000101000010100010001110010111010111100100111011111111111010000110011010010011100110010111001011001001111011101001010111010000000100010110001101010100000000011110010011001100000101100010111110111110100001001001111010110000000111010100000110000101101111111110000110011000110111101010111100011011101111011110111101100000100101110110001110101011001001111100011110001011110110000100011101000011100000100011001000001111011111001001011000011110010001101000111011000101001010000001010101110100010111100011010010011011011101110000110001111101100100000101100111110100111001111001100011011110100001100101100011011100110011111100101100010111011110001110110111011100000100000100110101011110010010111000110110011010010001001011000000110011101111001001100010001101110010100100000100000110011010101111011110000011100011011011100010101011000011111100010010010000100010101101111111100001110000001010011111101000100101100101111111110000001010000111010101101011101010011011101100011011101110000100101101000010100010110111011101001101000100111101110101011101111000000110011001111010010110001101011100100110111010110011111011101001111101010101001111111001100000000001000111001110110010110110010101010111000000101100011011100111010101011000001010101010110100100001000101000101101000001010100100100011110010101100110111100011010010110101001011001101010111101000111010111011111101010000001001000010111101001010011111100100101110000000000101100011010111011100001011100100101111010111000100011010010110011000001000100011000000101110001000001001111100011001100110100100111001011010110000010000000111111101110001011011101011001001010010110110101101110000001011101110010111010100110101001110010111001110001011001111101000100110000011101011001010100000000101111111110000111100100001011011000001111101111001110111101110001110000110101001010100100000000001110011010100111001101110100011111100010000011010010100100000111000011111100111101011101011110001111000000110010100100100100110000001000101101010000010010000101001110101010010101010100000010101011010100110001001001010001100011011001000010011111100111110011111000011011011101100111010100011111111000110100100001111010100001101101000011111111100000001001110110101110110110111111001001110110111001110110000111000000011101111110010010000110001011111111011010011011101011000000110101100000001010001111111001001100001011110101111101110111001110001110011100011011011100100001101000101101000011011100111001101000001010000110011010001111011010000110000011111011000111100001010101101001010000010001111101110101110110111100100011100001110101011001011111000001000010111010110100110000000001010011111100010000110001000111000001100100100001010111111000001110111011101101110101100110100101000010101111000110101001011100000101010110100100111110101111010000111011111000000011011100100000000011100000100000000110101100100100111011100011100010000001100011010001000101000111000001100110110000101010101100011110001110010110011010101101011100111101000111101111110001010011111101111110100011101101111110100100101101110011101111000000001001001101101110111010100000010010011100110001110101000101110101000001010100110011101000010100101110011111110010011010100001110010000100010000101111011111000001110001101100000011010001010100010100001100000000100111111100011111111010010111010100100010010111010001110111111101110100010110001001111100100000010010100011101011011111110100001110010110001101111001000010101000011001111101010011110010000111010000011010111011001011010110100111011100100111111010111000111000100110111011110011000001111111100111010101011000100010011010101110110010001010000101001000100111100010111110001010100011001100100110110101111010111100000110100010011100100110010000111010000011110100010010001011111000111011011001110011100111111011011011111100100001000100111001110001000111000111111001110010100110110111101110000101010100011001110100101001011001001000101000101101001010110001011011010010101001011110100110100000101111110010011001000100010110111111111011010010111000101100001000001001101010001011011010010110000101100000010001101111011001111110111000110000000100100000001110111100001010101010111110010101010001110101101001001110001110101110000111000101110100111100001110111010001101110110100111011111110111101010111010011001110000000000000010010010010000100000010010011011110011101111000101111110000111011110001011001001100110000111100000111000110001101111110011010000011001101010100011001001000010100100100000001101100001110011010110001001000110111100010001011001111110000111001110010001100110011110100011101001011100110100001100111110001101101100100001011011110001001010000110100000001111100100111101011100101100110101010000111010101100000011011101101001000000101110110000101000101000101000110010011111010001110111000000010111011101001011011101010000001101011001100011111111011011011100100111011111101110001111110110001010010000111001111011100001100100011100100100111001001101110100100010011100000011001111111100111011010010001110100110110111010010100100000100001101101001100111111010100101000010100101100010111010110100100111100111101001101010011110001100001010101011100010000111101001010010011001111001111000000100000010011110010111000100000110101100010000110000111111110111001011001010100001011010001110000010100000110110111100101111000111000000111001001100111110111111001101101111000000010111110110101000011111111010001101111001010010001000111010000100100010111001100101010000011110101110101011001101000000100000011100101010100111001001001110010101100010110011010000100101110011110101100110100011101101110101010110010010100111001100011100110001101110010000111011010000011001100111001011110001001001101100011101010001110101001110110101001101110010001000100001001000100010100110111010000110110101101011101000111000110011011000110101110100101110111110000111011000011110110100110101111000100110010011010100110001111001010001010010000100011110001010010110011001011111111010111110101000010111100010100111110101110110110011110111111110000110100100100000010011111001001010110110000011000000011011000011111111111100100000100101010100111101000110101001110010101110101111110000010000101111011001100101101000110101010001110011001110100110001010111010101010110101111001100111101010110001000101100110011001110101000001110110011100110001111100100011111010101010010001011001110011101000000001110100000101111111000000011110101001001000011100100011000100101000001101100000001101010100110001011001100111100000011000011101100011110001010000100010001000100001100000000101010000010010110000111001011111111101011000111110101001111111011010010100101001010010010001110110100001110011001110100011100001010101001001001100101110100101000001001010011000000100001001000001111010101000100110011111010000011010100110100100101000001110100101001011000010000000110101111100111011000000000000110011100000001101111101001111110100000100001111111111011100111001101111100000101101000010000010001010001010111111001010001010001100011101000011110000001001001101011101100011110111001100011111010111100000000101110101110100000110011010011110100001010011001010100000010101001001011110011000100010011110001000010001100100111101110000010010010111110111011100100100111101001110011111100110010110111111100100011111100001100001111010000101101000001110111010001111001100111100110110100101011000001110011000111110011101000101101111110101001110011011011111011001001110000110000110001111101010001100001000011001001110010010010101110100010111100000000000010100100101111001011001100110100111110000111011101100110011000101110000011010010000000100001000110100111000011100000010101000111001011101001110110110010101101010010010101001100111011000101110100011001001011101110110001100000100100111011010000101011111011110101000010101001010100011011010000110100010101001111101010100101111110000101100011101110110001000011010001101101111001101011011010001101111001101110100010100000101111111101010011000001101111101000001010001101001001110100011110101001001011001110100111011011110011110101010001101101101110011111000001001110010101001000111111110101100010101011010110110000011110001101010011101110011010001111111100001000110101100011001110110111010010011110100101111010000001111011101111110010011011100111100100101010101001010000110000100111000101100101111000110011110100011000110010111011110111011001001000111111011000011111111111001100001000011001011110000110101010011110011011100111011000011000101000110101100111011001100110011110001001111100001011111000001101101101001110101101011010110010111100100001111010111000111000111010100111000101111100111001100100011001110010011101110000010101010000110111101010011010010110111011011110000100111010110000101001000111101100011101011111011011111000011011110101100011110011001100011011001111010010010111111101001110100011011000001001101001011111101101011100101010101001110111001111000000100001011101010011010001110001011010001001011111111011101011001011011101000001001011001100110111110010001000101110110011010000000011010111011010000011101010011111110111000110100101101101010101001010001000000101001010010111001100110101110100000101101011101100100000100000110110111101010110001111101111000001100100100011110010001010011000110000110001100010000010111101111001100110000110001000101010001110110011101111011011011100000101011001000101101110111001110101000011110101111000001110011111101001010001101100001111100111101000001101011111010101001010100001010100000111000101000110010110001010000100001101010100110101110000010110001001010101110011001010110000100100000000111010010101001110110110010000001111100010001010100010011101001100010110111110001101101011001101010010110010110010011101100110110010111110101000000000000011110000010011010101000100001000101010101001110101110100111100001000101100001001101111110011110100001100011110101001110001010110100011100111111100111010111001100011010100101000000010011001000111111001011110111011011110111010010010110010101010100100010110011100111101010010010110111011010110101000011111010010011001000110001000100111100001100000110111110100000010001010001111100111101100111011010111001111001001001010111001101010100100011101110111111100101100000001101010111100101000111010000000110110110110100001010111010101001001011011111011110011101101110010010010111111111110000101011100100001111011100100101110110110110000000000001010001100010111011100100101011000010011101101010100011000100010010010110111000101000011111011000101000100111010110000000010101010010000110011110011110011010000111011111100111101000001001000010100001101110001101111000010101010001101011010011101011010110001000111101000100101011110000001000110111010110111011000110000111011100101100010000110111001101000101110010110011011000101110110000010010001110100010000101010000101001111111111100110101110111101100000101100000110011101101001000110010011111000011011111010000101101001100000011101111011001010101010100011111101000100101101101001000001000010110111110001010001100011011110010011000111110110011100100000110110001010111100101011011000001000001100101001111011101101001100110101000101111010111001010011100000100010111111000111000101001111011100100010000000101110101010000101100001010100101101101011010011101101001101101001010000101110010001110011001000011000000100011010000001101011111100111110000000011111110000001110110111011111110011011010000010000110110111011111100100011000111010110011101110010111100011001110100001111100000110011001110101011101111001001011110100010000011101110011010110101011110001000010010010101111001000000100100001111111101111010001111111011100011000001000000010001001000000001000000110001000000111011001111101000010000101011101101000010000111000011001010111000101000111001000000001010110100101001011110111110011010010100111001001100010010010010110111011100000100000001001010010111100011001011001100111110000100000110100001110100000011000011101001101111011001011111010101101101000010110000010101100101110000101100101101111110010110000001010001011001100000010100101000011011010001001000111100000100001111110001111000011011111101111000110110100110010110101011000110110100000010101001000111101000111011100000110110000100010010001101111011110111110110101100000100011000101000101000001111001100101001110110110000111101000100100100111101100010110000100111000110010101010000001111011011000010010101001111000111010100110110011000110011010011000111110011010110100011100110101101101101011000110100010010010100011100111101111100001111100001110101111110000101100011000111100101010100111110001101100111100100110001011010101001000010000011110001011100110110001101010001010001101011001010111010100111100110100110011010001010010111001001001011100100111010111010010000101000000110110000001101111100011101010100000011000011000100010110110111101000001001011101001111010111110101011100110011011010101110011101101000001000101111001111001001100100111001001010110000111010011011101001101011011101001001000101000010001011110101101001100101111000011001111100100101010110010101101011000011001001011011101000101010000000000100000011010000011100001111110110101110101000110100101000000010010000000110111101101101001010101001110011110101000100000101111000101100101010100101110011001101110111010011101111001011111100001111111000110000000111110100100100000101000010010000101000010011011101000000100100111100011000000100101101001011111010011011111100010011111010010001110111001101100011101010101111000011000111001000101100110101010101010001111111110110000001101111001001010101011100001110000000111010100001110111111000000100010111101011101011000011000011100110001100101101010110110111111011110111001010100101011000010111000100100110110100001100111001111001110010010110001010111001000010001010101011101111001111011000000111110000111100010100100101100111111010000100100111100100010000100110000100010110110100101111011101100001001110101110011010111100000001000110000101110011000011100111000000100110111010100111001011110111011101100011011110000010000101011111101010110110000111110100000000000101111000000110010100101001000010100011010000001011011111101000110111001010101001100001101011000111111011001000111100111010111011000001110001110111111001111000111000111101101010010001001000100011011100111101111010000010101101011101101111110011011001110100110000011000011010011110111110101110101011010111110000111000110000100101010110010110100111100010000101101011110100111010101111100010000010101000111111011011000110011010011100101111100001110010011001100111101011011010111100100100010010101010000000101011010111010101111101101001010011110001010101100101010001111110101101111011101101111000101101011110111101101111001001111100010011111000110111011001010011101010100100011011111010010111111011100110110000000010100001110000001100010001010001011011011000011010101110100010011011101000110110011101001000011111110010110001000000111000011000110011001111110000101111101111100010100001101001011011001101110100010110000001000011011011001110101101111001100101111001110111001100000010100100001100111101010110010111011111001101101100011111001000101001010100101111101111010010000110000001101001110011000011101011100000011111101101111011111010000111111000001010101011011110010111100110000100011011100110101011111111110000000010110110101101010111110110100110100111010000010100111011011011011110001011101000001100101101101100000010101011000111001000011110000101000111001100111101000101101101010110010101011110001110110101101010010000010100101111101100010100111010100001000100111110110001011110010011000001111100001001111000001010110100000000010100011010000101000000101110011111010001100100001011000011100110011101100111111011010010001110101000100010001111111111101001111111010001101100010101001010010100101001001110001111110010111000110101010000001100110100101111100101011111111101100001100111101110100001010000101110000110111111000101000010111001011111000111101100101101000001111001111001101111111110100001100000000011010001101101110100111010001110100111011011101101111111011011101010011111101010011111101100001111011111101011111010011110011100100011010001111100100110001001011101101110011001111011100011101101100101001111110011101001010000001100010011101110111110010101101001101110010110000101110110101011100011110011100010000010011101011111100110001100110001001011011011000111100110000010011000110100111110101011011001010101110011011000011101110101010110010111011100011110001101010111010110101101011001111111011100000110000011001110111111011010010010001000010010001100101101001110101011011110000011101101001001110010100010011000010000010000110111000111000111111101110101000100101101100111101110111010000100111110100100000100010001010011011101011000111001100100110000010001010011110110011100011010001000111011100100011100010000011000010100010001000011110001000100000000011000010001111000000101001100110011001000000110000100000001101000101000010000110011110000010100110111100111010110011100101010001101111001110010101001110011110010110100110110000100111000100101111100111010011101000001101011010000101101011101000000001001010110111000100000100010110101110110000001110101001001010100101101101010001110000111000111100000101101010011100101111001011011000000001101101011110111011111100101000110001101111110111001010101101001010000011101111101111001011000001111001000111111000110111101111110001001011101111110010101110100111100111000100101010011110010110000101101100011010110001000110110101111011001100110111111010111001010000011100011110101111101101000111111001100101011011111010001110100001010001110101100001111101100001101011110000000000110101101010111010111000010111001010101011110000111111111001011100101110111111011000011110100111111111111100001000111110011011010010110110010101110001010101010011010110010100011010110110011011100100101010101101000010111011001000011110010100010011011111011000101000001000100110111101101101110100100111010001011011000110110011000100001011001101010010000010011010110000111101111010101000010111111110011100000111000101100001001111010101011110111001101111010000001100110001101100111010111000010111011000011101100100010011110010111001010100110101101011111111000011110101010101010111010111101111101011111101111111111111010111011111001110100111110010100010011101000001101101010110001011110110110010010001001110011001101111011011110100010000111010110001000010010110111001100000110001000110100111001001100111100100000001010101101101101011000011111010011000110110011101001101111111010110010110010100111010101100100000101110100101000100101000001111001000100010111010001101001100101010011101101000110001111011010000100011010011001111001000001011110100010101001101011111011010101010001100011010000000000100011000111001000101000000101001011011010001100101111101111011110000010101110110110010110101100111100010000000010010010101111001010110111111001110010101101101100001100101101010110111011101110001110011100111000010100111011110010001000100110110010101000110010101101010101000001111111101001110110101111110001111001000111000011110011100111011110100101011110010011010011010000111001100010000110111000101000110011100110011010000011000101001110001111111001010110100101110010011110110011010011001010110011101101111111011111110100001111010100111001111101111110100010000011110000110010000010110001111101001010111101110000100100010011101001010110000001100000011000001011001001010011100100010111100110100111100111011101100110111001101110100011000111110011101101111111100010101011100001110111000110101101000110011100010100100000001111111010101001011110100001101111100011100010011111100000011101110110110011100010100000001100101000110010010000100100101000100001000100110101010000001001100111100010110101010011000000111111110000100110101110000100001100100110011101110100110110010001011001010100101100000010100010111111101111110000001111011001100110100111111111100010101100000110101000010111100111100111100000000001000001000101110101001101101001001001110111100101011101110010011100101110000010011111011100001001001110011101000110100001110010010100000000101000001101101001111100001100101000001101110100010110100100000010100110000011010100100011000010110101011001101101111100100111111110101001000001111110010001011110011000011111111101101010111010010010111100000001011111000011001010110101111111101100111000000011011000101011000111010101101111011011011100101110111101011111000111100011001001011011100000010100010111111010001001000110000110111111000010111100000110111100010010000000101100011101010000100000110111001010000011101111011011011010100000110000011101110000101010110101110011011011100101100011110001110110110110111101111110100000110010011011100101101010001111101101000110111011011100000000100110101000001011011011110101011010001110101001011001000111111001001110101011101100000110001011110111111100011100001000010011011001100000100110001111111101111010001011100101110011000010011100100011110011010101111001011100000000110011000000001110010100001001010010101100011010001100000010010101010110110000001000110111111111000100000111110100011101001000011101111000111001000011101100101000011100101001100110001101101100111101101111110111110010111110010100001111001100010111011011110111001110100000000110010001100100101100011100110011100100010000101100001100101110000011001000111000111111000010101101110001000111010001100011101100110110011000100110001000111000111101010111101010010100010011011110010000010111011011010100111001000000101111101111011001010000100110100010110101000001010000011010000000100000100000000010001001010100000000100101001111000100011011001011101010010010000011001011110010100111001110010101101101000100111101011011101110101011000010000001010100110001010110101100100001111101010111100000100010111100000011110100000011001011100000101101001011110110100000100000101110000111111100010010010010100000010101011100001001101101011001001001111000010001100000100010110110001100000100000110110001000000101000011010110110000101000010100000111000101111111111000011010110011100011111101011111010000111011100110110001111001011101010010110111001010100001001101100010010010110111001100011011011111000010111000010100011000101100001101010111000010000110101000101101011011000010110010000111111100011000011010101110001111110000010001010100110001000011111100001010101010001001010100101011010001001101101111101000010100101011001100001100000100001101111001011011100000100111110000110100011011101011110100011001011011011111110100111110011100111101010101100101011101101011110010111110100111111101011010011011010000100000010110001110010001000001101101101101000110010110001110001110100011001101010101100000010000001111111001111100111000001001101011101111001101001000011111111111010001000010011101000000100110101001101011011101101100110011001111101011101110010100110010011111101011001011110010001000001010110110110001011011011101000100111010001110000110011100000101010111110010010100111000100010110001010101110110111100111010010100001001111110110001110001101111101000001100000101011101100000101110100101111111001000100101001010011101010101001010110101110001000100011000100100100000101001010101100011111100101000100111001010100010101011000101010100001111100001110111001011111111000000001101100111101011011100001111111101111111110000000101101010111011110011100001000000010010110110100110001101011011101000001010000011000110010100100101100110101100000100011110110101000111101000101011111100000010011110000101100001101001101110011010001000100001001101001011101010011110011100110001101001101100011011110001001111111001011011101010110001100110101000101000111111110110001001001100101110011001001111000001110101111111110110011101111100111110101001010000011110010010011010010001010001111001001110001010101011010000001010001111101010001110011001101111010010111011010011001110011100100011010101011000101001100001111111110110111010110111110001110001010100000110110000100011100010100101010001110101100100100001110111101010110101000000100100010100101110111010110000100000101010010111100100011111100111001110000000010101111001100110111101011011000011110011100100011010010001100110100101110001101000001100011111101110101111011001111011100000110110100000110110100100101100001000011110001001000000100011000100110110111100001010100011100011110101111010000100001001100000101011100110101100101000001000011110001100100100001010010011110011000100101100011100001111000111110101100100100000101111010010011110100100101001010111000110100000100100110110110101001000001011010000100000110001101101010000011110101010000100000100110101011111111000110000110101011100000001001100011110000110101111010101111100010010010000011001001011011101010000001111111100100000111011101101100101100001000111111010111100101111000111110111001111101111011111111000001010000011001111110110001111101011000100110001101110011110110001001001101011011000111010001111111110110010111111110010011010011001000011111110011000010110111010111001000111011001000000101110101011001111100010010110100111110001010000110100000101100001110000110111010101101100010100001101101010111101100111101001010010100100011010101101111100011100001100000001001100101101011011101110111000011011101000011111100011100111111011110111100101011111110001010011101100111100001111010011101101011101001101000010101100011010010100101011010110010000110011001110111111111010011000100101101110010101111111111010010111111010010101100110110101110011101011000001011010011101100100110001000111001000101001110111001000011001001110101100111001000011010110110011110110001110111110011001110110011001001101111110010011010000001010001110110010010111111001110101011001100110111010110101010001101010110010010010010101111001010000011010010001101100000110010100010010111000011001100001101000110011000100101110001000011001001010010010100010011101011010000011010111000001110100010101110011001100000101010100110010001000011001110110101101111111110000101010010101100000011000111101001111101000110110000010011000001101001100000111100001000110100001010100011110010110110010010100101101100101111101101111101011100101010001011101000000110100101110000110011100110101001100110110101101010100000011100101001100111101101100010110000001101010010011010110000000000101001011001111110101010111001110100011111101011000100111111111100110110001000111100100110001001100111111000011100110010111010011010101000001100011010000000100010111100101001111001001101111011000001000111101010100000000000000110110011000011110101001010110001011001111011101111010011010110101100111010010101000000110110010110101011010011111011000011010100110011101000000001111111100111100111101011001001101111001111110101011000011010110010111111100000000011101000101111011110110000000011101000011011010111000110100010111001110000101111110010010111111101000000100001110101101101101010110001010001001110011001011010101110111000100000110001101010000100100000101100101011111000001001111101101010011010000001101111110011111010100100001000001110100110110110111101010101110001110011111011110100101110000110000111011001010100111011110010111111000010111101010111100001111100110110100100101011111001110001011001001000110001111111010101011000110010001100100111001010111010001011100111000111001001110010110100100110010110000011001111011110000101000001011001010010100011100010001010111101011111100000101100101001001010111100001011111110101100010000000101101110110011001011001001101001000110110010101000110100100011110000010100101000011000000000110110110111111010001011010010101000110100110001110100001100011000001000000100101011111000011000000000111000101100011001100000010011000111010111001001101010111000110110000101110001011111011100000100010101101000000001101010011111010100101100000110011100000001100011111011001001101010010000110110000001000110010100100100101011010001011110101111101010111010001001001010000001110101111110001111010110001101101011010000010111011010111101100110000111100000001000001001011101100100101010010110100111101100010011001010000110010001101110110100110000110001100000010100101111001101011110011000110110011010001011100011101011010010101101011011111010001101101110011111010110111011000110000000100001010101100010111010001001010110011001100000000001000001010001001000011111101011000001001010011000101011111110100110111111001100000010111100000011101001101101100101011111011111110000010101011011011010010010100000000011001111001001111000000111011000000000001101110111000000010111100011111101010011100111011100000010101111111100101100000011001111100000010001111111111001010110000010101100101100000100010001011111111010011101000101000001110101011001001000101101111000110000010100110111011101010111101101111110111101110100010101111010100010111010101000100011101100111010011001100110011100111010001011011100011010011011100011111110010101001011101000100100010101010000100110001001000110110011001110100000001101111101011011001111101011101011010101000110111010011100000111010010100101110110100110111000100001110010100000001000000001111001110001111110111110100010011111100011100010111100111110001101111010011110111110011000100101111010100100110100010110000010110111011101110000100010000011111011101001010100010011110110110100010111101001000000110001011100001000011111000010101010011101110001011101101011011100101110100000111101100000000011100110110001010011110111001110001111100001110101111100100011001101010110000110001101010110000111000110111001111110110111100001101110100101011011111011100011100000000001100110100000000101101011000011101010011001111101001111111111010001000001110000111001001100100110110111110011100100100110111100011111111100111000111011010111011101001111101100110001101010000000011011110010010000011000011110000100101000011110100011001010111100101101000110010110011101010000101111110100100001011101000001110010111001111000101011010100111001101110101010010010110111011000001000110011111001111111011011000010100100001001111011111111101011000011001101000110111011110100000101000011101101101101011110001011011000011100110011100001001000111011001011110101110011000000000100010010010001110000110011000011011001010000110100001100111110000011100101111010110011000000110001000111001100100111111110010010101001011111011110111111100110011111110001001100000110100001100000011100110101001000110110000110101010001010110111010000000011111010010000001110011101000111110011111001010110100110000110000001101100111010100101000001000010101101101000001000010100010001110000011100110100101101010100111011000101000101101000011010011100110010101000100111001110000010010100101100000101101011010010111011001100001010011011111011100111110100010110111010001000101111110111101000110011111011011111010001010100001101110101110010110010101111000010100000110111110000010011111011110010110000100110010110000110101011111010001100101101011111010110000011001101100110110001101110000010000011001110110001110101110000100000010000011000110000000111011110010110010111001100101101001010111011011010011010111011100010000001000011011111111101110011001111001101100101110110010110100100010001101001111111111110101110110110010001111101100011011100000000111010110111000100101011111011100101111101100101100001111101001010011101011010001001000011010011111111010111101111101011110001111011000011100101011110010000111011000010100111110101001011111110111110010011010110001011111101010011011111110010101000110001100010000111011001000000000111110100101111001001110100011110000001100010110011000100000111010110011110010111010010110101100000000000001101101011010110000010001000101110000101000011010110100010101000110100000001111010100100000111010100101100010110001010001011101101101110101111001100011010011100101100101010010000000000111110000011100011001111111100000101110100100010011111000011100011111011010000010001001000110110100000101000000110010100000101000000011110010110000010111001000100101010001010110001011000101010001010011011101100111110110000111111101100001100011001010011101011011010101110001110000110000010001011001011000111001100010101110010111010010000001011111001101111011101110011110001000111110111110001011100100100000000000001001110011101110100111011111010011000011000000010000101100001000001111001111101000111010100001110110001111011101100011110110101001010001100100001100011100001100000110100010001111011110001101000010011100000101001011100111011101111111111100000000010010110100101110101100011101111101100000010101110100001111111111010000101111110010101101010000101010000010011001110011001010000101011111000100110110110001001110001001111001011101010010000100110111011010000001010010100110100010000110101101101001010111001111011011010001100011100000100011000100000001010111001000000010011010111111111000001110111000001101110011001110110101011011010111010001111000100110010010101101000010001111100011001001101101101110010000110101100101111110101010101110101000000000011010011110001011011111110001001010100101111001001011000001111111001011001000000000010001100100010010011110001001110010100100110001011101000101100110001101101010001101001000100000100111001111000010011100000010111001011100000010011101110000101111001110010011100010000000100000111111001001001000011100110100101011001101110110001000010110101111000100101000011101011111000100010100010110111010010111000110010010101001110010100010000111010110110011000110011110010010100110001010100110101000000010110011010110110011001100110111100100100110000010111111010011000101000110010100001100010111110111110000001100000001100101001101000010010100011000110000110111011111101010010110111110101001111010001101011101010000110100100111001010001011011000110110111010100100101101010110001101110110011100101101011100001001111000010011000010000111011000100000011010100000110000011010110101100111110101101011000111100011110100011001001100001111110111100000011110110011001010100001010000111011111010101011001111101000010100111101111010101110000101000100010001010010100001101001000001001110010110111011001011000000010000010000101000110101101100110111011101101101010111110110010100101001010010010110000100111110010100111010100101111100100111100101100000000111101110000101010111110010100000111101001110110001010000100100101010001100101010010111000011111101101000101010110011111101010111111100101111000011111111111010011001110000111001110011100110101111110110101010100110001111111111100010111001000000011111001100101010101001100000101000100001100001111101000010001111101111111011010010001011100100001111101110100010100000010001011011110011101001011111101111001000000111111000101101010011101101111000010011101011111001100110001100011011010010111111000000110001001010011000001000011000110011110001010000001011100001000110011011011011010101001000111010101000010011100011010010001011110010011011001011011001111010001100000000000111110101110010100100010010001000001100101011011110010010001010111000010111100010101111111001111000100110111010110100001011010010110101011010110101001010010001100110111000100110111100110011010011011000111010101011010001100010100110110001100000101011001100101011010101101111101110111001000111110000111010000110101111001101100100011110000111001110101001110111110111100101001100001100101111100101110010110000010011101100011001110011010010010011110011111110001010010101011010000011010000000111000111111011001000100001011111000101111011110110100110111100010000111001001010100011110111100101000001101001001101010101010000011010010011101111001001010001111101111100101100110111010101010010000110011010101100101101111101010111101000111110100010111101011111011101011000011110001000110111001101111101011100110000101000111010000000101111110010100011100000001010001000000000010100000111001001100000011100110011111010101111010010001111011010111011101001111100111001100101011110111101010110111101000000011000010001000101001111100111001011001011111010100010010110000101010010011100001100111110101001001011000010100110110111101111011000000111100111001001110000011100011101110011110101011010110100110000111100001100110111111101110110101000110001001110001100011111100011010100100101110101111001111011101111011011100111101111111010100100110101001111010001011100000100000011100101011111111100111010011000111010100100010010000101101000101111000000000110010010111111010101111101000100001001110011100111001100010111101101100100100100000001000100110110100001101001110101100110111010100100100100000100010101010100101110010001010101100111000101101110000100011100011100001011110011010110111000110101111010000011111001000110100110110011111100011110010011001101010010001001000001011111011010101001101100011111101111101000011011000011001001001101000011101010000111001000001011010100001101101001110101101011011110001111000101010101101111100110010111111111101110000111001000000010100011011010010010100010101110101111000111001001001101010011100101110000010111110001110111010010101011111011001011101110011011001100010101000100001011000110000111011000110110110010100111000110010101101001010110010110011011011111011010011111001010001110001001101101110001010110111011100100100100000111000100101011010010001011001001001001101100110111001110110101010001010111011000001110010111010100100111001010001110101111101101001000101011110101110111100011111001110011000000110000100100101101010111101100100111110001000011101101111100000000001000010111001101011100010001110110110011100011100111111010011010111011000001111010101011100100110000000010101011000101011010001000011010101000101010100101001001111011110011000011001100101100111110101111111101000110111100010101011111000101110111100100111001110010111101101101010101101100100010001101100001100001110111001100101000110101011101011101101011100100111000011000000101001100111011010000110111000010001000110001010000110010100000011111101111000011111000001000010000111110111111001000110101001011000110011011011000011100010000111110111110110010001111001110010111001100111111011001001111010001110110011100111101000110001000110001011011110000010010101100001000001110000110101010111010111010100110010010100000010100000001101011110111011100000000100001011010000110001000101101001000101100110010000100011100111110101101010001100011101101001011000100110011001111000011011001011000010110001110100010110100000100100011100111000001001110010010001000010001110000110111100011110011111101011110111000101000011111101001111110101101100001101111110100000000000000000110110001111001001010001001101000111100100011001110110100110001101011111101100101011011000110101101110010011000011000111110010111100000100011111100001000101011011111010011001111010111001110110111101110101001111101101010000101000101101101100110001010000101001011100010001001000111001011011010000111101100011001001000110101010110100111011101011010000010000010101100111110110110101101101110100010011000111001000000010110101101001001111111001111011111100101110001110011000101110010010011000100101110001101111011000011001100100101000110001001000111110011100100100110110101000010110110110010101100010101111101010100111011100111001100011101100011000010101000110101000000101110101000001110100011011110001100001100110101110000111110110000100010100101010111111100011000101010101010101010111000100110100100011001011100010110001000000010001100011010001110111111101011001101000010010001011000001101011010011000001100110100110000110000100111000001010010100101000111110001111111010100110010000101001001011010110000000101001101101000011011100010101110101110100011010001000001101001001010000111111100010110101101001100011101111011000111010111111011101001111111111001010010011011100010001000001111001111111100011111001011000000100111010001001000111000100100110101010010110011101101110000110000100101000110001100001101100001000010011001110111011111100011010101110110110110110001100111101001100011101001011011110000001010110110011100110001110011000101001100100100100000110101000011000011000010101001110101110011110010000110010000000001001100000101000110111111100100111111101111111101001101010110101111001100110101100101101111011100001000000001111010110000010011111001100011001101111110001000010011001101100000000101001100111100011110101110000011010101001111100010111110111110001111110000100100111000000100010011101101111110100001011110101010111111001000110010111111110110001010011001011111111010011110000001100100110010010100100111100010111001111011110010111010100100001110111001011011111010010101011101100010111111001110000001011011110110001001001110100001111000000101101010100101100111101100111101100001101001001101011011011011000100111101011000101011010000010000101101100100011011011011101100011101000111110010101011110011101111111110000010111111100100000001001100000100100101111110000010001011100100001100101011110010000101010000110100010101010110000000101000001001010000010111000101011111000011001101101110000010101010100011000110101000000100001101111010100100000011100011000111010101111110010010101110001001101101100101101110010010000011101011001011100101000011001011110101111110110110011000000000010100101010011100101001100101100100000011010100010001011110000100001110110111010110001011111101111001010101111000010101110101001001110000001001001010011000001101101111000011110001001100111110101111010000001101100011100010100011011101000001100011000000101100110111010111001110110111110110111111010101101100011101111000110111101010011000111101010100110110100110011001000000010000011100000001110010100010110110010100001101011110111010110101100000000000110010011010010111011011100010101001010100001000001100100101111100011001110111111010001001101000100000011100011011010010100010011100110010101101110001111110111110011011110111100000001010000110110010001100101101110011001001101111001011111011110011101000110110011110100000111110111001110001100100001101010011011100000101100110001111111011010000011111010000011110000001011101001111001100101011000000111011011001101000000000111110101000001100111100110110101000101010011010011010010100100111110001100110111110111000111101000100010111010011011110111000101111011100010110110001101110111101011011110001011111101001001011001110100010011101100000011101010111110111100001111100001111010001100011110110010000000110110100111101001110100010010010100100101101101001000100001111011110001111110101101010000001010111101110011101011110001010010100011001101011010110100111110111111011101101000001000010001011011010111011101110011101001100011001101100100010110001111000000000110001101011100100011110000100001110010100000011101001001101110101000001101101011110010000110010100101110110010111011101001011111000110010000101010000110000011010010000010110010111001010111011001011000100101100010110011011011011000000010110010010111100100101010011110011110110100111001101100000001000011001000000000001000111000000101000011000111010001101010001010110110001011111101111001100101001110001110010000110110011001010001101101001110111110011011110111011000011111000000100100100101011000111101010100100000010001000000010101001001000010001010110011001001011100001000101010000101101000110001011100100111001101100010001111100111010000110001101111100110110011101111111010011101100111001001110110101010110001110000001000000110100010001011100101111011101001001101111010000101111011100111101010110010001011111100101101011001011100011011001000011111011011101000100101010111000111100111101001111011011000001101011101000011101001011101111101000101000100000111101110001001010100101000011010010110100110110001010110001110110100111011000100110110011111010101010110001001101110101010001010000010110111000111010111110000001100111010001011010001011111100000001101101001011001110111101101101010010010011111101001111110101001001111001011010110011100000000001101000110000100101001100100011000010001101110110100010011011100101001001111010001100010100110011000100110100110100011111001111111101010100010010110111011000101100010001110010001110110001100011111010000000110001001011011110110111111110110101000010000010001101101101001011001111010100100100100000111111000010001001000010101100111010010111100000101111100100000011001000101100111111000101010001001010001101011001010101111111011010101110011100101101100001101001011110001000001110000011111011001010011000111011010001101011111101010000010010101101110010001011101011111000100000000100001110101010010010110100110101101000111110000101111110100101111101000111010000010010000101100100001001110111010011010000010111110110101001110001101011010001000000001111100000011001110111011100010011011010101111011001001010100111100111011000110110110011010011001010100111010001001111000100001110000101101001011100101011111111110010100000110111101101001010111001100100010011000100111011101011101110111001010110110001000101100011011100010010101010000100110101010011010100100011000001111100010000100110100010000101000010100010101111100110011010100010001011010010111011101101011101000101000111100001001011010000010010001100100011110110011100100000000010011110011011010001111101111110000000010001100001001100011100000101010101010101010001100000001101101011000011111000000100011000011011111101001000110000111001110100111101100111100111010101101001001100100000010001000101110111110000100000110011110110101101000101100000001100111101110011101000001011010001111101000010101010111001101000011011000101101001101000101111110101100010000001001011011111001011101100100001010000110010001111010111001011111111110001100110100110101010011101110110011111011100001011100110110011100111001101011001110101011001001011001010101010111000011101110001000110100110101101000111101101010000001000101111101111110100111011000111011000001000010100011101111101000011001101010111100000110011100110010100111100101000110000000000111010110110100010111110111111111111100100111111010101011101100010011110010000110110110011111001001100110011011100111000010110100110100000001110001000111111011011110001100001101000111111011000111001011100000101010010100111011001101111101000111101101000010000100101000010111000011111101100110001110110010110110111000111100011010100101101110000100001000011011011111001111001100000101111100111111110010110010100101111111001010001111010000001101110111101010000100100110111111100111010010111101110100100011010000100110000011011010000110111001000011100011101111101001110110100100000101100100000001111010111100010000000010011011101011001110100111110111010100000100101111100101110110011100001101101111101011010000100101001110010000110101110110000010010110011100101101100100000110111110011111000000011010001001110100110000001110111010100100001001111110111011000000011101010110010101010001101111010111100011110100111001011000011001101001111000000100110111110001101001100010010001111011010111011010100101010110110111110000111100100010111101111101111000000000011110101101101010001101011111100100101001011001100001001110100001110101101111001101011101111111000000111101110100101001001110110000111001000101100101111000110001100111011101111010010000111100001000101111011000100111000001100011001111000101011101100110100101010100001001010101111011001111111011010111110001010000111011111001010001000000001000001101100101000010100010010001000010011000110100000010000101000101000010011100011101010001000001010100011101101010001101101011011101001100101101011101111100110001000100010010111101001111000100010101111110111101011101110110101010000001010010011110111011011100011000011011101111101010111111110111110011000000000110111000111100000000011010001010000000001010000100001001101000111100110101010101100110111010110000100100010000010010001111010011001001101101011110110100000011101000110001000000101111001111010101010100000111100001100001111001100111001001010001101110000110100011001011001000100100001110101000110100100111110001101001000101010011100100110101111011111110110010100111001101001010110001010011010000000100010001111001100010101100110010101001010111010100000010101010010010111000011101100111010011101110110010011010101110010010011000101001010110111011001101100110011000100100110001100010111100100111000000100110110010011000110110010100001000000100001011011110100101111011111011100111010101001001110101110101011100100110001111111010110001000000100000100011100010011111011001010011101100111011001000001101100101001100110000010000000010000101110011011110110001001010100110000111110100101101101010111100011111000111111100111100011011010000000001011011110110101101111010000110011000100001110100001111100010101101010101011111101000000011101111010001000000101001101011011101010011011000010001011110010001110110000010011011000010100110001111010000110010000111010101001110010110001001111000011110001000101101001001001011101011100011101101111001000111110101001100101110000000100101100101010111010011010011100100011001100001101011001011010110100011101101111011111101100101010101000100100010111000011110101000100111011111010010111010001111100111011101010101001011100000100000000000110101001011110101011101110011111101010000111001111111000011110001010101000101100110000001110000111100010010100111100000111010100100010001101110100101011101010110010001101111111000001000110000011000001010100001100100110000111001110011110001000101010011100000101000100000100011100100001101110011010100011010010110111001000111110101010001100001001110000101001001110110110001101100111010010011010110110011100000100000010100001110100111010100110010111111110001001100011001111111110000010101110110000010001101110011111011100001110101000011100010110101111100011100011101101100101001001001101110010110100100100000100000001010100000100001001111111101011111000001010001110010110100111101111110100010101001110111011101110111001001010001111001001010111111000111010000110100000111111010110101010001000110000010011101000000110011101010011010110100110110100010100010010111000101111000100101011010110110101000100111011010110101101111110101111110100010100110100110011001001111010011000101100101001101111000110111000010101000011001100001110010110001010100010111111100001100101000100101111110001111010101110111000000111010111010101111101001111000011111100011101011110111110100011010101011001100110100010010110011100011110000011001000010001011111111111000111111111011100001111011110111010000110010010110000010000101111001111011001111100110100110000001110001011110110010111000011110010101111101111000101111011110010010001100001011011001100010110110101110111100101110101100111100000000001001001011010111000111010110000101101000000101110100010000111110011000100110000010110110000101011100010011101110100001010000000111001001010100000011001011001101010111001110110010011111101111110011111001000100010100000101000000011010000010001001001001110111010001010001011000111011110101010001010101001011101111001000011111001011000011101101100101101100111110010001101011100100101011101110100001110001001011010110011010000100000110111001100010010010101011010010100000101110100100011111011010010010011001000101110011010011110001011010111011100110111000001010011101110100000001101001010110001010010101110100100011100000111100011001010010000101111010011010111100101111001100011110000110101110110000010111000101111111111000111001011100011110111001010010110101100111001100111011000101001001100010111111011011010010100110010100100001011011011010000111011001101001110010010010010011110000110110100010000010100111111100001000111010011101100011100101001011011011110000101101010011101010011100001111100000010111011111010100010000010100010000000000100100011010011010111001000000101011011110100110000110011100010100111001011000100111110111111001110100111011110001010110001011010100110100110010101011111001011110111110101001100101111000001100110010011101110011000111001001000100100110111100111110000011110111110100110001010000111111001110010000001100001110011000001110111010111101010001101110111000001100110001001101011111011110010001010001100110011000011011011010101110110001000111000000000101110110111110110001011101001000110001010101010010100101111011001100011010101001011111111011010110110101101010011111110001011101100111100100011001001000011010010000000111111010011000111001000000110100001100010011100100011000000001100011111010101111010011010100111011111000011010000111100010111101010100111110000010011111001101010100000011110110001001011111101000001111000111000001000000101010110011000010011011000111000010011000111110010011110011000011111101101101010011001111001001101011100010110101011101111101000001011010100101110101000010010100100010000100000101100000011111000111111001000111101010101100001101100100010001100000011101110010000111000000111000100101010001000111111111101100100100110110101111101101000110000011001001101010111011001000101000110010111101000001110101000011101111100101010101001100001110001110010110000010110010001101001100100111111011110101100101011010001011001110100000001001000111110011110011001101110010110010001101101010011101100000000110110001101010011001101111010110111110110011000100111010110011100101001011000100111011001011000011101100001000010000011111100100100101110110011010100100001100100000101100000001101001000101000110100111111101000001010101000110110001101110110101100111101001110111110111111110101101000100111011000000011100110100011101101100011010011010001000111011000100001111000010100100100001000100000001100010010001010010100111110111111000110010110001010001011010001111010100011110000111010011110110011010100101111100110000010111000011011001101011010010010000110111001011110100111001001111001111010111000111111010001101001001011100110010100000111011101100010100110001111110010111110111000011101111110001101011001101000111011111110011111010110011010110101100010101111101001100110111010000001100111000111111011001000101100011110001111101100000101100110100001101110101010110111010000001010010110000010110100110010101101010110100100010011111011010001000101000011011101010110000110011111001010011010110011111110011100000100011011000010011010101010010001111011001110000100101000100100101111011001110001010101011011011100100111011000101100011101000110110111100110011101110100111011001100100100111101110101110011110111100011011100010000100101001100110110100001110000101001001011011101000000001001111111111010111100100100101010110000111001001111011111011111111111010001100000011011101000011100001010001110100011100000001001110111000101001001001000000000010000010001001001110111000100001011101010011010001011010000010101101100010001100000011111101101000010101100001110100110101110010010100100101000100110100111110000011110100011101111110110101111101101111100011110100100101100110100001010001011110101110010000001011011000110101111000110001000010100001100010011000001011101101001101111110101101100001000100100100111110101000110101111011000111100110100011011111000011110101001110100111110001111000100111100010100010100101111000110011000100011110001111010110000100101101000111000101000010100110100001111001001001111111100101001001111011010110010001001111110011110111011100000001011000001100000001011011100111110101001100001000011010010000101000000010011010110010101010010011000100111101011101110001000001110010011001110000100010010101000111001000110100011010000110011001001011111001101110101000001001101100111010010001111001010011110110110100000010010110100100111001101100011101011110101000010010110101011111000110011111111101111010000000011000011000011001001011111111011011110100001010001001100011001010011011001011100100000101001111111000100100001001110110011101000001110100011110100101000001101110111011110000101000011000011011010100000010100100001010111001101000111110111110010001011000111111110000010001100100001100000111010100011110101100100000000100110100111001111010011110110011000011111001111111110001101111011110100000001100100000110111111100001101100101110101000001010101100111101010001000010100101000111101100110111010000011101000111111010011110000011010101101100011101000111100001000111010101011101001011100100001000111001001111111101010000001111101001111001001110110110000111000000001011001101111111011010110011110110110111011110001110101011111100101111010110100011000000011100111000100101000111111101001010100011011110110100101110001001001001000001101011011101010110010100110010101011101001010001110010001110010011100101000000110000110011101110001111010111000011110011001111101001100000011101010001100110001110110000110010101100100000010100001011000110110010011000010000111110111100100101110100100111000101100000010110010111111011011000101111001110001111110111111010011010110010111110111110000100100101111100110101101110010000010010110010101101001110000001010011000110111101010001000110010011001110001000101111100100011100010101001000110101000001101100001010100111001110000010110110000100110101101100110011010100110000001000110011111100101001100110011101111101001100010010100011111010010010011100101010001100110010000110111011001011101110000011001100011101100010011101001001111000101011111100101111101010010001010000111011110001011110100101110101110001101000000100000101111010011111010001000110010000011010011011110100001010101110001101011110110001101110101010000000110010000000111000110000000011110000100110101111010011100010000111110001101011101110100000111011100011100110000101101110110110011111110100100010100011011011110001010101110110010100111111100000110000101100111000110101010100110101100111000100101111101010000111000011000001101100011011101010001101000001111101011101111010100101010011010000001010010111011011101101010101001111100111000101100101010101011010001101110010001101010100010011100000101001101111000011101100011010100100101100010011110110010101110001101011001101000010011011110010110101110001100111110110010110110110100111101000011011101011110010111110111011000101011101111111111011000011100000111111011010000001100100010100011101111101111101000111101110010011000101111101000000111010001001111011100111010110001010000000011011111100111101001011010110101001111110000111110000110001010000000111101001101000101011011011000111100010101101111000000110001100011001000110100100110010011001000000011101111001000111100000000101001100011011100101111010100010110000001101001100011110000111001101110001100010010011101101101101001110110111101100101010100010000011111001100001001001011011101110000011010111000010000011100110000111001011010101111100111000101010100010010110001100000100100010111100000011010000010110110111111100110000110111101100010001101010011111110001110100010101000011011100101010000111000100100100110001101111111100011001111110011101110111010111101100001001110100101100000010100000011110101011011000110110110001100011100110101000111101001111101100010110011100010111111011011001101110010111011101101110001011110100111110010011110011000100001011100110101110111000110101001000000110111010111010101110100111000101001100000000111011101101001011011110000110011011000101011101111111100011010101010101101110001011001100001011000111011000111110011101000110001010100000110000000000111010110001000001111110000111110010100011001010000001100000000110011001011110001110110111111110110000000111001111000110010001100110001010100011101110001100001000001100101010001011010010101001010100110101010010100101000011101001110011011000000010111011011011111101110111001101001001111100000011101111000111010110110001010110011001001110100100101100110100111011010011000100011100100010010000111010110001111101011110011111011110111011011101001100011000110001010111011000110100000000000111110101110000101111011110111010000000011101000001100110110110001111000001111110010010101111101101101110000011010010010001101101011000101100010100010110000111100000000110101100011111010011110100110110001101110000010111001111010111110000110100001011000000001011101111001100001101001010001100101101110100111011011001100011001010101010101000010001011111001010010110101110101100011100100011010010011010011110010001011110101101100000000101011111101110110011101101100011100001001110000110000010010010100100010100110001110110001100000010000011111101101111001010011001110011011111011000001000011001010001010100011010010001110001100011001010000010011101000101101010010110001101110111110001111111001011000010001010000111111111000000001101111011010001101110101010011011010011000111011001111110110011011000100000110101011011011111001110111101111111001001101000110011001100011000000100010010011111111010001000011011100001001001100000100011101011001100111100000010111001110111010011101110010010100000011101011010111101011011001101101001011000000101100011110111011001010010000101011101111010001000100001111010001101101111000011000100011110000000100110001101111111001010000100111100000111111011100011000111010100010000101101111101101100001010010011110101110000100001001111001110110011101000101011101011111100010010111111010111111001010001010110000010000010000011100100001010101101111101100011101101111010000101000101100101011000011000010100110111101001111000000100010100000001001000100000100110100101110110001010100110001111110101001100001000011011100100010001110000001111011110011100100101010101010001011111110010011010001110110011100010111011110101010111101101010110011001011011010010001101101011010011011000011001000010001000000101000101100100110110011000010111001101110101010000101001011101001011100010111001011101111011101001110001000110110011100101101101111011010110010100111001100010011001111010000101101101000110100000010110110000001111110101011001110010111000001111111000111010111100011100010100110011001110110000001000010101001010111001010101000110110011100110100001111100111100001110100001010101111010001001101000100101001011100000001111101101101100100111011110111000001101101111100010101111001101010101000101010010101000011011001111001100100111101001101110011110101110110001100100000011101000010000110001100000111110110001110110001111100001101001010101110101000010101010001101000110100110001111011101011001110000110111101110111110111101110000010000001110101000100110000101110111111011101001001010001000000001011101010001111001010001011111001010101011100001000011100001111101101111011111001011111110100101010011000100011001000100100011101010101110110101101111110101100000010101011100111111101110110100100010110110000010001010010011000000110010101111000000000001001010100101011111111001010011110010101101001000101000011110100011111010111101000011001101001000110111100101000101000101111011101000000101000110101001101111001101101100001110100000100100000001111011001110011001010111111001101011011110101011110101110111000000001110001111000111001000101000101011011000001010110111100000000111110010111110110110110101101101110111111010111001110110100011100001000001011000001111010110100100000111101110001000111110110101010010010101101010011110111001100100101100000011101110100010000010100001101110010101111001001000100101000110101110110101011110011000100100001010101001101011111010111000000111010000010111111011101001101110111011010011001100111001010000110000011111111001001110110001100100000011111000010001111111000100011001001100010100010101011011110011101001101001111110110101011001000110111010110011010010001010011001100100110001100110101110001110111010000000000010010110001111010001011101000110101110010101010001100110111000100010100110101000001101000110111100011011110010011100011111110110000010011100000001010011101001100000011110000011100011100110010001111010000000011110110111111001010000100001011111110000001000011010010001110111001011010010010110011110000010010101000110001001110011100001010011100011111010111000100110101001001101100001110001111111010111100000111011000101000111010001001011111110101100001010110001111100101011011000111111101011001001101011101000100001000011100000100000100110100110010011110111100010010100101101000100011010011001101001110110110101010000011011111110010000100001111000011110010000001110001011111001000110111011011011010010011111111001110100010001110010110100111100001000101001100010011010011000110011011000100110110101110100100000110101000110010110011000010010001100010111100100011100110010000110101011101011101111001011011010001011111011011110110000110010111110101000011101010011110000000000111000010100001100110000110010001011001110111011101010010100011011000110011010001001100011101110010011001001100101111110101101101001000001011000011010110111101000011011000100101101110100011110110001010101110010110111111001001000111100111110101100000111101001010000001111001101111110100100111101011010101100100000110111101111110110110000110011011110000011100000100001101010001001010000011011010111111101101111111111011100100010001000010000110111101011100010000101011101011100001111100100001111111111101000000100100000101110100111010011001111000100101011010001001100011101111111010011001101010011010011001111111111000011000001101010010111000011111111011010101010110001111111010010100011010001100011001100101010110101101111100110110010010011110100100101100110011101111011111100000001010101101000100100110100001011010100000111001101110010010000101110101100101110110010010101101110111010011100110100111001110000011110111001101001010101011101011110101101010011010001110101010101000100100000000101011111010111101101111010111000100100010100100011100110101010010001100010001101011101100101010010100111111011010100011101111100010111011011010000000000010000001110011100010110100100100101010111000011111011101011000010111010101101010110100011011111000110011001010010010111110101010010011110101011110110011001100100010111111100111010111011111001001011010100111111111001111000001110101010011010010000010110011110111000110001111001100000010001110100001010010011111010111100001110010000110100001100001111100010011100111111000110000010010010100000111101010011001001110011000011000101101101101001110111100111000110111010101011111110100000011010101000110111000101000010011001000111001110110101000101100001111101111110011110011010011111110101110011010011011010111010110111100011000011000001111100110101010101001100101011111000101011101110111000101101111011101111010010001100111000111101100011010111100010110111110011101110011011001011100001110110101010110110000100000101000011100111011010110001111111010101111010010110111110100001010110011001111001000010111100100110011110011100010010111100110011110110001110010011111110001001010110001111000100000111111001110000011111100001000111101000101110111000010001001111011110000011010110001010001011100101100000101000001110100110111001110100000101001001000111100010010011000001101001101110011010101011000110000011001001100000111100110111101110011011010101010011010000101000111011110101101101100000000010110110110000101001010100101001000001001111111100110010111100000100100101010100111110111001100000001111010101100001111001011010100010000110010000010000000111010010101001101111011011111011010010100100100000010001100100101000011100011101011000111110000100011110111000000010100010011001001100111010000111110000111110000011010101110011011110001101100111010100010101100110011000100101001011101100000100100001000000100111001010010011111111000101110101001100001000010111110110001110101100000110100111001100001010101000010100110011100100010001011001011011110001001001101100111000111101001010001110111011011110100011101011111110000100011111001010110001110000100111000100010110000011011000100001001110111011101110011000101111010001101101111011110010000100110001010101000101011101110110110001101000000011111100011100101110111001010111110011010001000110011100110110111000000111111111111011011011010101100000111110101110001001010101011100111110100111110010110111011111110110100100101011010101100111001001111110111010101000000011101101001111110100011110011010111001000010011100111011010110011010001010000000011000011100010010110101111101011100100000111011010011000000011001001011110100011101000101000100001100000000000101111101001111010011111111111110001110110110001001000001011001001010011000111001110010100011111010011011001101110001101010010001101001100101000100000100010110100011010111001000010100111011001111101000001000110110101101111001100100111100111010110001111101101010000110101110100110110100111010000000010111100110101010000011101000000011001001001000001011101110010010000000111101010101001110001001001101100111010011111110011001001111101101001000111100110001100000111010010111100000111100000111101100001001111001110110111010010110011001000001010011111101110111011101001011000000111001110101111000111110101111101011110000101110101010011010110010011000000000100010000011100110001111000001001000001101000100111001010001000001110100111110010001101100010101101110111010010100101100100011010010001011011010001100011100101010010111111101100111001100011010000111011010001010110101101010011101011101101011001000001100000000001000110011010100011101000000110111101101001100000011010110110100100011000101100101010110111010010001110000010100000010011101011100111001011100101010001101111101101001100100100000001110001000001000001101111000010010001001101001100011000110101011010100110110011010010011000101100101101011000111101010111110011001010001000001011100101010100000000010011111100100101101001010000100011101011111100010111101101001101110101110111111011001000001001101000001100001100110001010010111010101000000101100000000011110000110100011111000101101100001111000100010000100111101001111000111101010110101101110100100000110001110100100111100001100010101111000111111110110011011100010000111010111001011111111000010011110101011111110110001000101111101101100001101111001001001011001001011101001010101111100100001110111100101010001100001011100101010001101111001010011111101001000110100010000110010000001101101101101010101001000011110110000011100111010010011001110001111110100000101010110010101101001100100000100110111101011111010011010011110101011101001111010000001000101101110001100000101100110000101000001100011011110101000000000100001111111100110101001010110101001011110111100011000000001011110001100100000011110111001001000001010110001011000010110110110001101110011101010110101001110100110001010100010101110110101010011100010100000100110011011111110000011111101010010110100011100010011110011010110111000111100101011100011000111100101101000110111001111011110001101101001011010100111110111101110001100101010111000101110000001101000101111001100011000110110010100100010010101100100011000100100011000111111011101101110100000101011011101111111000100011101101000000010101010010000100110010010001101110100011100001101101011001111110011110011010011010101000010100011010010101110010111101110101111101000101011101111010101101001000010110111110011110010111100000011001001111000110110100100011100000010111110000000000110001101101000110100110101000000001011001101110010111110100101001010100010011010100011110100001000000110011100010010111010010000001110100111101111011010111001110000001100000111101010000011100000101100000011000111010101001001011111011101100111010101101111101000110010000011010010010101010001011111011100011000001001101010101110101111011100100010000010110001010011001100111000101111000101100000101010101001010100110110110000010101111111110010000010010000110100010010000010001011001101000111011001111111111110100011010010010010101010111110010001001011110111010010010100101110110011100111111011011001011101001000010110000110001010100001010101010001010011000010011001110100100101000100110111000000000100000110101001100110001010101000010001110111000010011111111100111001000010000011011010000100110111111110000111111110010011110110010000000001111001100001101011001011101001010001000001010000000100000101001011000110111001011000101010110001100010110100010000001010101111111001100011111100011001010101001110011010111000110001010110111010101001001100100110111100101010111000101111010111011011011110011001001111100100110000011111110011110100110110110000111101110001101110110011110101110010111100001010110000110000010111000110110110111101010111111111111000010010011101010011011101100101001101001000001001010101010111000101100110110110111111001010000101000100110011011011100111100010110100111010101110101001000101010011111101100010000100100001100000100110010010011111001101001101100100101010100100111001010010010001010101110001110001000100001001000011111010001001000010110111111110000111111010100001000000011101001111100000010101111111101110010100010010001110111101111110110110011000111011001100000000111010111000000100101001111011011110011101001100010110110101101101110001101111011001100010100011110011110000101001110101000000001111110001001101001010010000101011110000001101011001000001100010000001111000110101100111001101100100101111001000011001100011101010101011000011101101101100110110111011010100111011101001111101010110000000100011101011000110010110111011100100101000111100010011100101001101001100111110101110000110111111111111100110110100011101010101111001110011101000010101011110001110010000001011000001111111101111111001010110111000100101110010110000001001001100001001010010101111110110000010001010100011101011101100001110101111111010011111011101001001101000101001110100000001100111001111100110100001101101000000010011011100101110000101101100010110000110110001011111011101111001000101010011010010100010101111000001010001110000111100110000001111000011000110110101111110110101111111011110010010110110110101110101001010100111101100101011110101110010111101100011100110111111011100011000010001000000010010110000011010000001011111011000000010010011101001101011001000101010110000110001001000100000111100110101000110100100010010111110110111010001010001000000111101011111010111001001001010101111000101010101101000110100010011110001001010110011000001100110110100101001101011011010110101010000011000110011100011001010101101111100110101110111001101111111111011000111100000100011110000100010001011010011111001101111011100001101111110001010101101100010111111011110110100100011000100001000011011010100001000110001011101011010100001110101011001101101001001101101000001001010010100001000010110101001111011111001001010110101000010111001001010110110010101111011111000101000011011110011110000000011000001001110101101011011010001001100001101110000101010001011001111011010000000000000100001101110001100101001100011000010111010100111011011001010011110111110111101010001000100100001000110000100100000110110100110110100111011110000110110001101000011010010110111011011101010111010111011001001110000110101011001000111011100010011100001111010010101010001001100001010010001011000111101111110110101101110100011000110001100011110000111100111010110101101001110001000011101100011101100010101111010100010110101000101010101100010000100011100101001001110010001111110101110110000101100011100101000101010111101000101100010000001011000110011100000101110001111000011111010110010100101111000001100011110010101100000010100000001011000111111110110100010000001001010100000110001000110101011011000001011000000001110111000001010100111101110001101101001101010111100010110101111111010100000011000000010100001000110100001100111110101100100101111110000000001111111010001011111011011010000100110000100110100010111110100011010001000111100110110100101101010101000011101000111011111101011000111011101101000000111000010101011000010101000101110000011111011110101101011011010011011000001111100101001101111100101100110111111000110000101111110110011111001110111010000010000100000011110000010110101011011110010011001101111010001111101111011000011111100111000011101000000100111100010001001001101110101010110000111011111000001111100001101011011101110100000111000100000011010010110101001100110000011001010111000011001111101110110000011100010100011100011101100101110111000101000011001001111110111100100110110110011011111010110001011101101101010001011000000011101000001101000001111010000001101110101001011010110100000110110111000101010011110110011000011010010000110100010110110000111011110010100010111111010110000000001011100111010000000100001010011001010001010000111000001111001100110010110101001010111001000000000011101011010011111011100100100000001000101111101110110101011000111000001101000100110010001100011001100111101000010101100111011000000110110111001001011110110101001101000001011010000011100101010111000000111010001101000011001111010100111101001111111110011001110101111111100101101001000011101010001111011010111000110100100010101000011001001100110110000110111001011011111101101001101000000110100011111110001100111010010011010011000000111011000110001110101101011000100100111100001011110101010111011001000010011101110100111010111101110110101111100011000000101011110001101001101101110001001001001011110011000111011010111000001100111011010010010101010111100001111100100000001001010101010111111111011100010000111001011010011111101001111101101111110010001011101011000011110000011010100011010000100001110011001010010010111010001111011111010010101000101010011111110100000110101100111110110000000010110010110011110110110000110010110111101001101001110100010001101101011101101011000101101101101100110111110001100111101101100101011010111100110011101101110111011111101000000111111111000111110101111011011010001001110100010110111011000101000111110001011011010010100000110010111000000001001001000101100111010010011111100000101101110101000110111100011101100100000011010010000100101011111101010100001001011011001000000001100111111100010001001110101111010000010111000100110001111000011000001111010001010001101001101010000111001000101110011110101111011100011110001100110000111111101111101111010100111001101111101010000110111100000100110101000000100100000011011011000011111010111000010000010111011011110011110001110001000010100010100010000101111000001100101101001010011010111111011111000010011111000010001000001000001100010110011010111000010001100111000010000001000011010110000100111010010100000101001001001000001000011010011001011100011110100101111000101101110001111110000011010001100000010011101000010010001111010011000010101111010101011001100100101110011111001100010110001100111011100101000000110110011110011001110010101010111111011100000010011110011011000011101111111010001100010011010111001011101101110110000100100001111100101100110111111001011111010100101011011011101110111000011001000110101111110111100111110011011011101101001111100001101010100001010111001011010010100101111101100010011100100010010011110101111010100001111011100010100111010110110111100101101101100000111111101100101100011010100111110001111010010000010011101111111000011110001101011001110011101111000110101110010011010101101101101101111011101011101100110000111100010101001011001110100101110011111011101111100001001100001001001011000010100101111110100110001100000110100100011101111000101100011101111110110101101101101111100010101011010101001100001111111010011011111000001001011101000001111100100111111000100001001100100011111001000110000010111100001001100000000100011110010010110001100000000000000000111001111010100011110000010110010001111110111110001010011100010000110010100010111101111001111100000101100100001011001010010101001011100101001100011110100010101010111000011000001100000111001111001111111010011110001001000001011001111110100010111000100001101110111010010111001000110110001011100110001001011001000110111100010110010100111011001011000101110101011110000000011010010000000010010101001100100101010000111101111011111110000010100010100000111001110011011000011101100010010100100010111011010000111110010010111010010010100001101000111010111101000001101010101011110101001000110010101001000011101010000010101110010101000011100100100101101110110011011111011011011001010000000100110110000101101010110001100100111010001110100101001000111110101011011001110101000001111010011001011100011101001011001000011001100100000011001100010011100001111001010000001100011011001010101001000100010011001011011101110111100000101101000001101010011001101111000111101100000100110001001000101100111011111110011100000000010010011110001110100000000111101101011001110100111111001010111001000110001100101101010101110010111110110011010110000010100000111000110000010001101110010001010001100000110110101110111010011010001010010111100100100100000101000010101101110000100110101100110101010001101101110111100110000101101110000010010010111011000010001100101111111100110011011111110010100001001101011001001010011001010010111001100100001111100111001010000111010011100110011001101111011011010000110011110000100111101001101010101000111000110101000101000011100111111000101010000000110101011100100111001010011001100110010101111001000110011100101000001011100101100000010010001111001011011000100010100101000110111000100111000010111000111110111000111101001111111101100001001010111101111000000000001100101100111011010110011110000011111001111011111100101011000010000001101000001010000011011100001000101011000000100010110000011101000011011100001010001010100010010110010000100110101000010000000100010110001100000000000011000111101000001110110000010000010010010010101011010001111010110011111101011000101000101111010100000010011110000100110110111111000001001000100101010101100000011010110000111100100110110101011010010011100101110010111000010011110011111001101001100100010110000101001001010000011011111110000010100110101011001101101111101101110101101100100001001010001100101101010110111111101100010000011011010001100001000101000000001111101001101111101111010111011001101100001001110100100000000101111010011011001111000010110000100000111100010110001101011101101000110111000000000011100110110000011011001100000101000011100010111011011110001011110110011010000101110001101101110100010110111100001111010001110111010011010011101101011100110000111111100011011100110011101100110101111100000111110111101000101101000100110000000010110101101101011100110111001110000001000010111100100101001110101000001001000101000100010011010010000000011011011001011110010110101110010111011110100000100100011101100011000001001110111110111001011000101011000011111100101111111001000010010001011111101110011010110100101001100111100101100011011100000010000100011001101011001010001000101100100100000010011110100001011110101111011100000111100010111001110000100111000101100011111011001101000011101100111111110000100110111111000010110100011000010000101000010001001111111111100001110101110101010010100010011011010010101001111111001100100001011100101010000111000111111110110000100011000110100111110100110101010011001100011001111001011101101111010000101110100001100111101100100101011100011110111010010011010000110101010111111001010110001110000000110100111110110011110101011101111001000000100011111000100100000001110001111011110110111011001101110100100111011011111010110111100100010101011101001101000110010000111111101100101111011001101001101010100001111010101001000011011011110111000101001001101001011001000001011011000011100100101110101100001000000010101101011001010111100000011011110111110111010110111111111010001110101111001100010110010110000101100001111110010101011010011010110010111011111011100011000100011011000111110101110100110010100011101001101100110101000010000010101101110010110011011111000000000110001100011111000110001111110111011010010010011101010100000001011100010111100010110011111100101000100000011100110100011001101111111010101010100001000101111000000110100011101000010101011111110001100110111001110101100000000010111010110001000101011001100101110101000001010011101101101110011111001000100000000011001011011010101010000111110001111100101110000100110100000001010000011010001010011111011110001101001110000011000101000011001000011011111000111110001000110001011010000111010000100111101101010010000000011111001001110010101101010010100100111101011010110110011111011110100100011100000110101001010001011111110100101000100110100001110011111110111110100010000100101111011111010000001001101111000111000000010011111010001110101101101011011101110001110100011010101111001011000110100110101010000100001101011101101111001101000000111001100101001111000101011101011100110100111010110111011101100110101110101110011111011011101000101100111101110101010100000011000111001001101100111010100001001000110010000101111000000010110011101000100101110011101111111111010000111101110011101110010011110010011110100010100000010110100111000000110001011111100001000110100100011101111111110101101001000101011001110000110000000100000100110101101101001110101100100010101001110010101001111111110011110011001100100100111001000101001001101110011010011010010001111110001011001001011011001001111100101010000011100101001000111100100111101001101000010100000101011110111101110011101010000010110000100111111100000101011011100111000010011001001000001011010011011000110110000011110000111011000101000011010100011101001110011001011101100110101010010101100101000101010100100000010010110101111110111000001101100001100001111011011001101001110001001111001100010010000101001110001110110100110010011101010011110110010011010100100101011110101001101000001101000110111010100110101000011011000010011011111110101000000100111100110111011100001000110000000000010000111010110100010011110001001111010010010001011111111101111001100111011011111100011011100101001100011000011111100111010010000100001000010001110001010000110111011101110100000001011111011100111010010010010100100111100110011001001110100101111011001110111011110110110011100101111111100101011000010101110011000111001001100111100100101110101100010110000011010001111111101101000011101100001100011001000010110000000111101010110101101010011011001110101000010101110111010111011010001110101101111001010111000100011011010001101111001001001100011100101010111000010110101110011011100101101101110001110000100001001011100001000110100001011100000000101010011000110100011000110010101111110000000010010011101110001100000100110001111000010100111100010011010100100101001011010011010100001110010101010110010001101011011000000101001001000011011011000011100011011111110110111100000110001011100011001000001010001111001000101101110011000101101000000000011110100101000101100101011111001101101011010110010000001010111110011100011100101000010101101110110111001001110000111010111101001001110110011100101100011011100110011111110101100001100101000111011000101111010001011101110010110110110011001000000010101010001111001010001011101100010110011111111011010101011010110100010000101001001001010100100001100101001100111111010111100101010101101111011010101011001000011111110001100010011011001110101000000011101110000100011010001000101110101011010011110001100110011000111100000101100011111010100001011110100111101111101100101110001101010001100100111010100101011101011000110101100001110100111010111000001011011111100011101011111110011110111000101110010101011010100100111010110001100011101010110110000110100000010010010000000000000100101001001100111001001101100000100011100101101101111001100001100111001001010011110000100010001111001110100100010100110101100001000000101101111010010000101101010111110101110011100100101011010011000110010111010100110000110100101011111111000111011100101000011000000010010000110110111000110011110010111101011001100000100101010101111110001100010001001111001100111010000111011011101100100101010000100000110011010100010101101011000001101110101011011101100101111011101010110100100000010111010100010100100101111111010001001010000111110110100110000110001100011001001001100000100101101011010111110000101111011100101101110011100100001110100111010010010001110111111011011100000100111100110111011011110000111101101000101100110100011001000110010100010010000110001100010001000101100000010001100001001110100001010110101101110000001001011101011011010011011000101001111101010111101001101101110001011100010001000001110010010111101000011100100110000010010000010111001110100111010011011101110110101000011101100110011100110110110100011001000010100101110001111110100111111110010101110010010000110011110111011100101110101100110100001011000110101100100100010110001011010001000110110001111110010111010011110100001001100011000011111011001010010111010011111001100001111011110100100010111100001111110001110011100000100000011000011101011001000001100011010011000011010011001111001000011011111101001000000001000101001100011111101010110111100101101100110001000000100100111001110001110011110001010110010101110111011001010011011001100001100100010100010100000010101111010011000100110101111010111100101110001011010101110111111011001101100011010011011010000011000111001101010110101100001111010011011101100100100001110100011000110001000111100011011011101011111110101110000111001111111011100011001010101100100001101000000111111110001000011100001001011010000011000100001011011111101101010100111010100011111100110101001100000001110010110110000100111000001111010000110100010111010101011101010010100101111111001110011110100010001001010110011011101000011001111111011000100100001111111010001100111010110010100100011000000110011111000101111101011110100100111100010011001001111010100110011100011000100100110101111001011001001001001010001100011001100111100101101101110111000111001110101011110001010100000001111001100011101100000101110101010100110010010101000110011000111110110000001100000001000010001111100001100011010001000110110011011001001110111100010011000111100001110010100001011010000110110100001000100110101111111010001000101110001110001011100001110101010001010100001110010101011111011111101110011110100011001011110100011100011010001100001111101011110110000000010100100100110011101100110101011000101010101100101001000010001010010010000110100001010101000010011110101100000001011011101100010100011000000011100001101100110001111011011010110010000110100000001100110110001010101000110110101010010001110110101011100001000011001011101010110010011111011110100010000100101010000000110111100101100011101101111011111001000001100110000110100011110101111100000001011101101011000110011100010110110110000100100001010101000000001100011111010011111111000110111100000001000111100011101111101100110111011100001001011111000001011001010110010110010101101111111011010000011110011000011001100100000111010011100010010101011001111001000100001111010000110010110000101000100100111011011110000010101110100001001101000011011111011010001011000100011011111111101001111001001110001010100010101111101111010111000101110000010010111101000111010100001100111101011100110000001010011000111001011000000001111101101001000101110010000101100001100110111000100101011111101000101100001110001101010101101111010101000101001100101111011100011100011010100000111100111000001100001110011001001100011110011111101111001111011101011101110100010101011111000011010000101010101110010110100111011100111000010111110100101010111111100001010000100111010000001011010111000011010111001000100111110111000110001100000000110110000110101001010000101011010000101000001000111011111110111111111001011100110011111001110010100110000101101000000000010010110000111010111000101101100010111100110101101001111100110010110001110000101110101000100110101100100001011110000010111111010001110001100100110100110001011010010100010110100101010101110010100001010011100000011001110101100000101100100011001111010001011101101010001101111000010111111011101111100111110101111110110010101011110000001001010100101111001011111011001011100000100111111000101111110111000010011010101111011101100100000100011011101000110111110100111001000001011000110101100001101110011100101111010101010101111001111010000100100000010010011111000000000100100000110000001110100100111100010101100110010011110110101110100010111111011100011111010000111010011100110101110011000011010111010010101010011010110111001101011100101011111101010100000001001001100001011100101100010001011100001011010001010011010000111000100100101011000010001000111101011010110111010111101110111110111101000100000111011111111001100101111101010100010111111000100100001001100000101010001000100000100000110111110011000010000100010001100101110001101100001101011111000100010100111001000001101101110010100101001111110111011011011111110110000010010010110110001010111010110000100011111001100110001101001100110100110010110000110111010100011101001101100011111100100001101101110010111010010001111111010010100011010101001011111010100100101001110010100111101111000100111100001110111101010111000100011001100100010100001111001010000100000001011100110111000001010110101110011011001011000000000110001010101101100111110100001100010010101100000101001101011101010111111001001010111101010101101100101110100110010001011010011100011011110101100111110101010101010101111110111111111011001001111011010000000101101101011001100010101011010010001110011110010010101011010000010100000110100011000010100110000010111001100011100011001111101100001011000000000010001001111001101010011111100000101011100001011101000101110111011101000010100000011111111100010000110000100000100101101011100111111111001111001111101001000110001000110100001101010111011001010110110101001000011101111011111111111101001100111100110011000010001000011010111101011000010111110011100111001100010100101010110110011000111011010110100010011010111110011111001010000000011011101111100101000000000001011011110010100101100010000111110110100000111100100111101011001011100000011011000110101110000000111001011000111011000100101100111101100110110100000001111110100010001001001111100100000010010100100001101001101100010010000010111000011001110101110001001010110110000000111001101111101001101111110000110011001110111100100010010000000100110110001111010101011110100111000110011101000011111001100001100100100101111001000110100100110110110011011101000101000110010011110001101011011001101101110000001110010010100010111010111100001111011101100100000011001000110100000100000111100111100100111100010010011001111101011101111000000110110100001110011000101110000111101111101000100111011010010101010011110011111100101000011100000101100111100111001110001111111100101110101110111110101000001010000011010101111110010110101100101010101101001101010101001000011010010010101111110100100100011100010101010111100101001110001110011100011010110111110111010101011010111000100110000100010110101101011100000100111110110010110110000111110100101110000000011010110000000110101000001111011100000001111000000011100100111010010010101000001000010110011001000010100110100001001000110101010010010010000110111011100010110011110010011110011010111111010110111111100010001000010000111111000110110010110111010111001111111001001000010110010011110000101110010001001011111111100000011001011100010101001000010100101011111001000001101111111010101001110001001101011111111100011100001011101011100000011111010101111001111110110001001000101110111100010111101110000100011010000111010101101011010000001001101101101100010010101001010011010011011111011110111001000011011111110100110111001100010110111100010111100000111100111001000001110101011000100011100101011100011111101010101011111001001011101110010010000001011101101100000110010111101111001101100011011110111111001001001000101101000011000111001101000001100001001110011001101000101001111011110110110101001110100001001110010111100100000010001000100000001110010100000100101010111101001101111111001100110001110101111110001010011001101010011000100000101000010100110111111010101110111110111100011011000011111010101000100010000110100001111110110111001011000000001000001110111101011110011011000010111010011010011011100100010101010101001011000000001011001111100011011111010011011010110000101001001011101011001100111101111011110101011110111110110111110000100100000000001111000011101100010001001111101100110101000110010001000110110001011011000001011010010000001100011011101101100110110100001011100000010110110000101100001000110011010100011000001110000001100010110111001111110011100111100010000110000110011100011011100101100001101001101010010100101011000100011001100100010000111100111100000100110000000100110000100111010101111101111110100111001100110000010011110111001111101101001110000101010000000101110000100111111000111010111101001000101110111011011100110011011011001101000101011100110110100010010001101011001000110011001101110110100100110001100101000011011010011101001111100100111000110000001111001110111110010100011111011100000110000011011110000000000100111000110001000110110001011000100000011110110111110011110011001000110000001000100011100100001001011111010010010111101111100101010100001000111000111111101010101000000100100100110110110100000101010110010001111110001011000010111011100111000110100100101110101011010011111010110001001001101100101000001011100101010011001111000001001000000111001000001011001010001001100010010110111101001101011100001011100011101111110100011101101101110100010010010111011011110100000110101101010001011100111101011000001010001010101111100110010100100111010010110111101110110101111110110001010100101101110011000110011001100111001001010111101101100000001100000101000111000011001001010001001100000001010001000111011111111101101010110000000010111000101101110110100010010001100011110111101101110001000010110001001010011101010101100110111011100011110000101001100111101011110101101110100110000011010011011010011101101010011010101011011000101110000111010011101011100100111110001000010011000001110111000000101101100011010001011101001000011100101001111010111100001100100101011000010110111010011100101111111000001110011001101100001001100000000110101110000101110100001001001001101100010111001000110011111001111000110111101010100111111100011101001111011101001101110010110011000110001011110111011000000111001001110100110011110110001000001011011111110101001000010010010010001110001110100100000111100110010100001000010110110011101001000100110011000110010111001101011110010100000010111000010110110100100110100001010011100010000001101001001110110100111000001100000010101000001101001001110101101101110101011111000000001100101100101011010011100100011001011101010011110010011111000000110011001000001111100101101101010000010001101100010011110111011100000000110011111001011001111000000001000101001010101101100010011101100010001110111100001000111001100000100111011111011001010001001000011110100111000000010110110101100111110010101110010011001000010110111110101000111011001110110101010000100010011011110100101101001101001000101110101011110101010111110000001011001000011000010111101011110010101000100101010000000001100110000100111100101110001111010111001000000101000100110100001111100110100000111110011101110001111100011100100010000111100001110010001011110100000001110011100001100000101001010011100010100001111001001110111101101111101010111101111101011011111111001101011101010001111001010010111110111111110110011000010010011010110111110111101111000011101010111100101111100001101110111110110101101110000001010100010001100110100001011000010000110100101011011010010111000011111001001000111101001010010101011011000010001100101110110111110100010000011000110010010101011100110111001011100000110001011010110001101000100001011001010000000111000011101000111100110111000101110101010101100110100000100110010010010011110010001101110011100111001000100000001010100011101011101000000011011001100110111001100000010101110111111101110010110001111101100000010101010011001101000111100000110010010101001010100001110011111000001110011010010010110001100101010100010110111101000010000100100011101100100000100111011000010111101100010100001011110000111010110000110001111110010111000011000110011100000011111010110011101100001011010010011101111100010110110111111000100010000001001001110010100110110000110000101011000011101101100011000011011011000000001001011111100011111001000111111101111000111111001001101101010010111101010000111010101110111110010000110000011011110100011001100010000010110001010101100000001001101111000000001100010010011011001011011000111110100100011010101101000010110011100111001000110101000110011010001100101101100100111101111100000101101000110100100011010011101100000110010100001001011000110110011100001101011110101001010011011111010101000000011101110001110100101000100101001010101111110001000001010000010001110010100011010111011111100001100111000010100111000100110011001111010011000000101100011101111011001010010100000001011000001101001010100100001111011011011111101001111000001000110000100011110011110010010100001110000100010100110010101110011111100001111000100111101001101100000101010011111011001011100100110100011101000100011110001001101110001010010010110011010110011110000100110011011001111011011001011110111000100000111100101000111111011001010001101100011101011011010111100100101010001110111001010110110100001001100101000100000110001011001001011110001110000110000100111110101000110010001001010001110111000110001100110010001011111011010011110010011000100100110101001111101010111000100001101000011011110110000010100011000000010011100111011101000100101110101101111100011110010111010111000110100001011101001110100000101011100000011110100101110111101001001011010100110011111101101010000101100110101110111001011101100001011010100101101110101111111001011001001110000011111010101010011110110100000100100110111001000110111011110001011110111000001111110010111111101000010010011101100100111001011100110100111001001001010011000000010000000110101010010110000011100110011111100110010110100111010111110010000101110000110001110010010001011101000000001001001001010101100100110111001111101110000010001110100111000111010110001001110101100000001101101010011100100101100000000011010010101111100110011111100001010100000010011101011000100011010011111010010110110101100011000110010000001111010001001000000101100100011000011110101011101001001101011101000010111101110010101100011100011111101011000100010111001001001100011000010010110100110001110011011010011110000101111100000010111011100001000100111111010010001101010010100100100010010011011110000110110011011011101000111100111110101110101010110010010100101010100101011000000101011000100110011100011001010101111100001110100110100101010000110101011111011100111111001000101110100010010101111000000010100100000100110111100100000100011100110101101011001010101110000110001010101010001110111100101110011000111110111111110100010110001000000111010101100110101101111001010110100111011110010001000010101101000011011100010000000010000011111010110011001011010101101101111100110010110101010001001010101100111100101011110101011010111100101000001011010111010100100111111001010111110100101010000110111110110000010101110100111011000101101110110111111001000101010110110000001000101110100010011000010110101001001001010001011110111110001011111001101110011000110110110111011011010110101111000101000110001111110110110000000001011111100111100111110111111110100110000011100111000101000011001111101111010101110100101100101110110001101110001111010011111011110011110011101001000010001000101101110100101010110001001111001011101000101110010000011100000001110111000011110111100111011100110110011000010001100101010000111100000011101000111100101010100110101010010110010001000111111000001000111110000010010111110110110111101001111101111110101110110000010111101101111101111110101010101101001000010101101101010010111000101001001111001110010110000100001100111100110011100111011010101011101001000010010100110001111111111001110010000101101101001110001111010010001000010100111100100101110010010011110111001001110000011010001001010100110001011000101100100000010010111001101000101000000010011101110101100001110111101011000110010010011100100001001101101100110111011000000111111000010011011010001100001101011010001111111011100001011100101110100111001111110010001101010101110000001101001100010010000000001110010000111110001111001101110100000100110100101110000111001011101011101110100110001111101000100010010000010110101000101000110011010001011010100011100110100010110101010110000000111111100110000111001100010110111000000001110100010110100011101101000101010010101101100001011001110000111111010100001011101011101000010010111010111000110011010100000001001101101101110010101010100101100011111100001101010010001010000111001110111111010111011001110001001100000111010100101011010101011101111110011001011100101010000010101101001000101001100010110001000100101110100000111101001000110010111111001100011101110001001101111101101011010110001101011000110100101101111001111001011011001010111000001100010001111111000010100101001001101000001000000110111001101011001010011101010000111111000101010001000111100110000011000101010101011101011000100000111110101100011101101101100011110011011010011011111001000100100000111100001101001000010111001101110011100000101001001110000110111111001101011111010001110111010110010100110001100111100101111100110011110100001101010111001100101001011001011001010000011110111110100000010000101100011000111101100110100110101011111111011010001000010010010011101001011011011111101101001111011110101101010001110100110101110010111001001101010001101111001111010110111111111111111100000110010010000100100101110110101100110111101001110011001010001101101010000101010010101011110010010100010110111010001000101110001111111111001111000110000000001100100000001101010111101011010000101010101110110110100000011000100111110010111000010111011001001010000001111010110001010000100100001111010000100010101001001100011100001101100000100101101110110010110101001111010010000000101000000010111011100110111110001111000001010011000100000000000000100000011100111100101011001001000011100110101100101111100011100000101000000111011101101110101101011001101100100010100010110100011100111111001010001000110111010011100010010010111101100001101101000111111001011001110100111001100100001110001011111011100001110010100001010000110101110001010110000000000011011100110001111010011111010110001111011001100111101101101011011100011111000100000101101101000011010010111001011010100001001101001011110001000010001010100101010101000011110101001011101101011111111111101101110010000001000110001010110110111011001010001110110011000000000011001100001000001011111100000100001010100101010000100100010000001000110011111010001101010100010111011111000010111010010010010011000111010111100110001111011110110110100001000011111011111101000110011110110011110101100011010000001011100010010000111100101101100001011011001110111111011101100001010001010010101111000011010001001010011001011011011011101000101111011101001001011100010000101101011010001001100100101111101110010001111101001100111110010100001111011101011010110110000101001110100010111100100101010110011011111010110000101101011000110011110000011101011110100011110000110011100001010100111000100100110110001011000011011000011100010010100011000001010000101000111001111010111011011010010111011110011110110100011001100110000010001100100000110011110111110001001010011110010111101011001001111110110111100010100011111111001010011010001110011111100100001010111101110101110110101010000111101000010111000000101101110001110000111100101101001100101000101111011010110101001001101101111011100001010110011111000011101010011001111011001110001001010011100010100000001001010100101011101001011100010101011101100100100000000100101110011011011011010011010000010111100110001001100101111111110100110011010010011010010000010011110011001100001101010101001000011011101000010010101101111111111000101011000011110101000000001100001000111001100110010011011001110000111111001000011011110001000110101100101110001000100100011001010001011000010100100000010000111101111101001110010011001000101011011011100001110100100000110011001111111010000010110110111001000000000111010000011101000101111010010110000000101011011110101001010101111010011010001101110101000000100101011000010010100110001000111110111100000001101101001101100010010010101111111110000111000111111110111000111101001010101000010110001001101001000100011101111000011011100110111011011001110111110110111100001010001110011011100100100100111111001111010111100100011111111101001100100110001011010110101110000101000100000101111011010100000101111010100010011001011000110110011111011101000011110100100101000111000010110111011110000110000110000101111111010011110111000011001100110111000111000001000110110101111001000110101100110011001111011000011100011001110011000101011110010111101000011111111111011111011011111010101111110001001111001000010000011110011001001111001110000011111110010111110011010001010001101110001101101010011110001111110110101101001010011011111001100101101111101010011110110010011100011111100001001000001010111101011101001101000110111110000000001110110100110110111000001010010010000100110000010100111101100101110111010100101001000111000010010010011100000110110000000111100001111011111010000110011011101110110110110111100000000110111010100111111101011011111110111011001110000101110111000101110111101110101101010110111011100001111100110011011100100010100100111010110100000100000111101101111000000101010100101110011100001011100110101101110100010000000010001011000110100111111010011111111000011101100010100110110111100011101111101110010101010110000001101000110010101110110000100010001000011010001000000100101001100000011010101110110010100000100101000011111100011110010100001000111101111100001101110001001110100011110001010010010011000010000100100111010000010010010101101110001111000110000011001111010010001111010111101101111101001111111110100000000100001011111001010010011011001101000110111011000011100001110010010010101011110111011011101011101010010010000000000100100110010000011010101011001111011001010011101111000111111100101001110100101111100101010110111011010000111000000110110010011101101111101100010011000000001011101001000011000110001011111111000111101010000010100011000101000010110010110000100010001110110011001011111101000001010100010010100110011011110101000101111010010000111010101010101101101011011001111110010010011001100000101100111111001011101100010011101001010111010111111011000110101111100101100101010110110101110010000001010111101001010001001111111010010011101001110011100110111110000100000101101110110110101110010110111011000001111100111000011011110001010100000101111001110000100100100111010111000111111010100101100010100111110000110010100100000111111110001010100111110111011000001100000100110011111000101000011010000011101001100111010010000101011001111010101001110101100010000000111101001011111100001100000000100011100010111000100000010001011011111111001111111001101000001011110111010100100111000110000111111010101011010111111111101011101111001101100000101100111101110001011100001110111001000010111000011001100001001110100111101001101011001010000111111100101101011011000100010100000000000111011101100010111011001101010001101101001010110100010100001010111101011000101111011101000101110110000000111000100100101100000110100111001001101100100010010011100010110110101000001101111010000110101011110000001101000101110011101110100000000110101101010011111000110110111100100101101010100101101110000011001011110100100100001000110100010001101011001011100100000110000011011010100101011111111000001001011011011101010101111101011111000111011000110110100111110100100110101100101010011001001100001111100110001110100110100000011111101001101000010001100010111000100011101100011110111100100101001100000100000101000100010001011010001011001000101101010011101101010111010010100011111001100100100001000101101110001010010111111011110110100011001001000011001011111111100011110101101101101010101110111110011000101100001000110010100000111010110011011011011100011110110100010101011110111010110001101101000001101000011001010000011111100111100000011101101010001001010100010100100111000010010010111111111101111110011001111101101101110110101101000010011110110101111100001010011111110010010010100001000001011101010101101101100001100111000011111001001001010001100011101111001100001100100011001011100010010000101100101110001001011101111100010111111110101100000111011010101101001101100111010111001101101010101110110101000100001110111001110100011010011111010100001101111000101000001011010001110000111011001001011101111010100000011000001011011001111111110010100011110111001101110110100111001101001110011101010010101101101010101010000101111011010101101001011010001101111011101101101000101111110110111111010001110011000001111010011011111011101010010010000111011101000100001011011001101101111101100100111010100010000001111000111111011011101001011100001010110010100100101110001011110011110010011101000101001001110000001100101000101111001111100011100110110111101010001111100100110010000110000011001110111000000110011011001110010110000111111001001100101011111100110011011100111011110010001000101000000110101011000001101110010101100110111010000000010000111111010010001010001001010101100010111111101110101000110100101010011010100000110111010111000011011010000011001111100111110110110000111001100010110100011110101100111010010111000001100101111011100001011110000111111000010001111011101100101110101110101100011001101110010111011001101111100101110011010010010011100000111100000011100011110010100100101010010111011111100010101011011101010011100000010110101000100010000101010100101111101111110011011110110101011111010110101010101010010000000001000100101110000100000101101101100100001010010101100101000101011011010000010001111101011010011000010000000001011101110011110010011010000100100111011010011000000111011100011011100001111000010011111100110100100110110110000101010111011111000100101100010111001001010111011110101011101101011100011111100110111110010110100110011010000111001011101100110101010100111010100111010101100100110110010010101101010011010000100011001010011101110001011010101100011010011100011110001000011010110101101110101110110110100001000111100011100000011100101010010100100010111100000001010010111010101000101010010010010100010001101000101010110100011101011011101111110010001100110000110111010100101110011000100001111110101110010100001000000100000010001001010001111000101000111100000010110001000110110000000001001111001011011011000100010101111011101101010001101111001100010101101100000110100010011101001011111001101110000000000100111000111000001001110011100100000101011010000001110001001110110100000101100111100100010110000001011000010001010111110000000000010111000111011100000100001000111001011010011001111111011111111000000001001100101011100100101101100111001110000001100011111011011001010001110000010001000000101101011010000011011101100110010100011110100110000110110100001111010011110010100110110111111100101110101110000101101000000001100100101001100100001011000000111100100110101011010101010111101111011101101100100010001100000111001011010110100001100000000010110101111000101001000100010100011110100110111101110101000111010100111100011010011000110000011110110110011000110011100101001000100010011111011011000000011101101100011111110111110010000001010000101101100100100011000000010110000010101110111010101111110011101010011100001111100111101011101111011110001000010110100110011001111101110000001011111001001110101010101100101101010111111011101111010001010000000110010000100110111001010100110011111010101110000001010000010111001011100100011110101011100100010110010001011000110101000011000010010111011110110001010011010001111011110000001111001001110010010101100110100111000000111100000110100100000000000101000010100111011010001101101110000011001011000001100111101001010000101100011001010000000100001010001000010110000101100110001110101110101001110010101110111101100111011100110111010010111011011110010001001001111100101001111010000010100010111000001110011101101010001100011110011111111010110111110010010100010011001001001101100010101010011111100011010111001000110000010001100000010100111011111101000110001100111100000110000000111001110111110011001111011000000101100001101100111101010000011100101110111101100101100010110111011111100001110100111100101001000011011101100000110111000111101010101000000110111011011111011010000110011111110000110100010000100100100100000000100001000110010110010101111000110010001110101011100000100100111001011111001111001000111110110010011001100110110111000101001000000101111000111101000111001011001001001110100111001011011011000010011001000000110001001111111010000100111010001101111110001101100101111010010101110011010110001100111100100000000011000110010101011100101101001111100101110011111110111111111111000001101000011001000011000100000100001001101100011111100011001101101111011100100100001100111101110101011001100010011001000110000001000110110010001101001000101010000010110111000100001111001101000101100110100101011011110011000001000001011011011000100101101000010011101011001101110101101001110010100000110110110101101011100001111000011000111111100101100011110001010010101110010010100001101110110000011001100101101000001101110100101111111001010001000111010001111010110100101011010101100001101010001111001001111011101111101011001110111001110001111001101101101001110011110110101000001111110000000010011001001101100010111101010011100001101110001011101101000001000011110111010001010110110011011001001101101010001000001000101101101101010111110111110001001011000111011000111010010001100101101100100101101110000000000011001011000110011011101101011111101100001011101000001101000111001101101001011110000110100100000111110100001111001101101000010001110011110111111100000001001001011100101110101111100101111001001010101000001011001111101101000010010111111100011010010101111000111100011110110011011011011010001001001001000111111011110111111001100001111010111110101110111101001010110001000101101011010100101000100110001111100100110001010110001011101110110101010100000011001101110101111100101011110010110001100111100010010010010001101101000110111010001111011100010110101110101000000100100111111111000100110001110110000100101111110110001100011011111100100001110000010101010000000001011011000010010110110001100001010110000100000111111111111000100100000100101111000011000111111101100001110010001010100001111110000000011111000010111001110011111000101100110011010010101101001111110010011101101011010111111110100100110010100000001100010000111100010100000100101111111000110000001111100111000010101011110010010011000101010110010111011111010101011110110111111000010010100100111111100110000000000010001100000111111100001001011000000100110011100010110001010010001011011010111000001100111001010110101101100111001100010000100000010010111010001011101001010000011010011001001100010011010101010100011010110010100100001101101101111010001001000011110111110110010000101000111011111000101000100000000000100111011110101101100011111011101110101101101110001111000001010011010011111111100010100010111111000101000010010011101011001010011011110011001110001111101010011000010010111001110101011100110100000000111101011100001001101011000110111000110100011000011001011001001010000110010010010010101011100011100111011011110101001011101010011010100110000110101101001000111011001101100011101001110000100111111100101110011101101001101100001100111000011010010100001111111001010110110000100000110000111001111101100010100110110111100111111001000111101001011111010101011010101100110001011110011010100110100011110110000010001001101110101111011000111001110101111110010010110101101011000010101001011111110100100111110110011000100011100101010000111110110010001111000010001100110101101111011100011100001111001101011100100000001111101011100110001001000000001010001000001010000011001000011001010101000010011111110011110000100101010011101011100010000010001110111111011011000001010000111111110101011100001011000101101110001110000010100010101111100010010000101000110000001101111010011111001100000100001111101000001000110001100011101100110010001110100011111001110101011100100001010110001010001010111011011000011000101010001010101011000001100001100010101010011000000101101111000101101100101111101001100101011000110011110001111101100101001101101100111001100011010110001011110110110001000110011100010100110001000001001111001011110001010001110100010111010110001101010111100111011011001001010100010011111010101011001001011011000000001000011010011100111111011110010000101000101111110011110011000110101100101011110010100011100010110010111000001001111101111010110010010101101000100100011011000000000001000000100101010100111110011110000100001100010000010011111110111011010000100001101110101101001110111111010100110101101111001101100100111011000000001110100100111010001000101001100000001010010001011000110110100110110010011011010000110001100110000100101111111101110010100101100010010101101100011010010001101111110000111000010000111111000011001000000001100011101001001001110001000111110001001011110001110101110111110001001000100011000101011000111001011000010111010111110101000010000010100001000101101000111000010011011010000110110101000111111110100000110101101101100000001110000010100001010110100011001010101111011100101110101110000110111110100101111110111001010000111010111001000000011101100011011101111100001111110101101111011110011101100100101010101101011101101111110101011110011011001000110010001011101011110000001011100101100010011110111111001110010011110110000010110100010010100110010000101101011000101010100111111010111110111101001001111100101001110000001101111111001101100111011011111100100100001001110101110000010100001100001110101100111101010111001001110000101111010000011011010000100101101011010001100100111100100000000000010010111010000100100000000111010001001101000110100011101111001100011100100101110011011010111110111100100010000110001011100110110111101101010101010101101010111100111110000001100011000101110011101000001001111101100101101011010010010011000101000100011001111110001110011100001001111000101110010110110110100000110110111100110111010111111001001101101100010010100110000101011110111001011110000111110111000110011010000010000010101001011000110001010001111111011011110001011001111110110010100011000000110101111101101100001111110111111101011011000110111110001111111011001000000001001000100111101010101101000101010001001011110110100110000000000101001100101000110000111100110101101000111010101111110110111011000100011110000010011110110100101001000100110100011011001100101001000000101111101011011000001001101101111101110010000010100100001000110001011100010000000010110011011000111011111101110110001011000011101001011010000011001001010000001011001000111101100001111010011101010101001100011001000010010111000011111000011001100110110000001000011110011100100010111011000100111101100011000111111101010000110111011101111101011000100110001100101000111001001000111101101100101110011101100111100111000110101010001000010100010101000001011100111011100010010011110011111111001011010111101001111101101100011110110001100110110010110100101110011011011110111011100100110001001000011001110000001011110100000101011101010111110000110011100111111011101000011101100000001110010010110111110110000110100011110001001101101110000101000010010001011110111110111110111101010100011110010001011110000111100010001110010011101001101011010000100110001100101101011001101001111001100011001011100100100010000101100100110111010111110110011100011101100101011011110111001110100101101101001110110000010010010100000011011011101101010010001110011000100111001100110000010100101110000100011000101011011111011100010011000001000000001001111011100111110100011100011010110010111001110111110100000101110010100010101100010010100001010110100111011001100111111010000111001111101101011001100010101001101001110000000000111101010001000100101000100100101010001100110100011100101110111011010000100110110000011010100010000000101001000101011011111010110111011100100100110111001011001111100010011111001000011100000101001100110000101110101001011101010100000001010100011111100010100111110010110011010001101011100011001100100011001100100010000100000000001111010000101010010010001011101001000011100011100000101110010110111101101110000100010010010100100010111111011101110010100111100000110000011010011011100010110010101000001101100000001110001100101100000001011011000001000100000111101111100011011100111000110111101111010010110011001100001000000100101010111111001011011100101011100000001101011010101100011100110010101100111010001110011010100110001001111001110001001000111111001011000100101100110101000000100000000111011101101100010011100110000101010101110100110100010001000001000000101110101101110111010011101011110101111101010010011001001001111110010010100111010000010100111110111001000110100011111110111000101111011010001101000111101000010101010010111011110110000101011000011000001110010000111101111010010100110111011001111100110110111001110101100110110111001010000111010100011010110100110100110110111000011010010101111010111101011010101100111101111101000000110010001010110100001101010110101000011010111011000001101110011101010010101011001010100010100100011010010001100110010010001000100110111110101000110101011011000101000111001010101011101000110001001101110110001111011000011010000011011110111000100000010001100011011011001011100001101000100101010010000101101000011111111101101101100100100111011010010010010111010011101000110100000001100000001011001010111110011101111110001010111110110011000100001001000000001011100000100101001011001011101111100010110110000100000101000101011001101000001010101010111101110001111011101111101011011100110001101100111001010111111011011100100101000101111011001010000000010001100100101110000010001101100110001100001111010001000100100010100010100011011001101111011001001110111110011111000011011001101010111001010101101101100110101011100011100010001110010011101100111111011100100101010111001001100000101111011010111001000001100010100011100100111011011000000010101110001101101001100111000110101011000110010010111111010110111001100011110010010110111011100011111000101011011010010101001000001111100110111110010100010111001011111110101101001101110110010100001011000001000100000000110010010111110110011111011100111101000000110001101100111001010110110001000101001110100001100001110010011010000011100011001010011110100000011001000000000101111100001011100011101110111010100100000100100111010001010000101011000010110011100110101010000000100000100010111101101010101001110101101010101111100101011011010111011111110101000101011100000010000011101111001011000111101010111100011101010001000101110000110010110001101001100100000011111010010010111011011010001011110111111110001010011100010000100000101110001111100111100011111001110011011000001010001101111001011001101011111110111111101000010010111111111010111101100110000101001010001100000101100110001010100110011010011000101000100110000101111111011000010101001111001100100001110110000110110110100000111110001111011100101011010111110000101101001110010010011101001100011100000101000101101100111001101010000111001011010110110111111001000110000010001110101101111011110000100100111001110110010000110011010000010010010111101010010010110011011100000001000110000000100111011001111101110000001110101111000010000101001100101011110111110111001111000000111010100010001101100000011100010001011111010011001101111110000011010011100001111100100100101011000111101100010101001100101010000001111111110111100100000000011110101000101110111111101100100000001101010001001101111010011010001011011011011110111100110111001001010001110001011010100010110011110111011101001001100001001010101011001101001101011000111010010110011011000011100001100100101001111110111100101111011001100100010001110111100100100001011100010100010111111101000111000010011000111000011011110011111000111001100100111010000100001111001001011100010101011010001001010101101011111000101011000111110000001010111110110100111101011000101111000010111100100010100011100000100011100100010000001101111010100100001000010011011101110010111010010101010100111010000001010011001011101101110101011010011000100111100011010000110001100010100010011100110110001010001101010001101100001010011001001010010100111010011010000001110000100001011110011001010000101100110100000001010010000001000101001110111010011100100111000001101010100010110111000011100010011110000110101100110111000100101000011011110001111000100010010011101111010000001111010010010001010101010011111011110101111001110010110000101011101111000100000101100011110101110110001010011101101011010001111011100100100101110010010110101001110101100000100000101101011000101001110001011011000100110100101001101011000111110101100110101011010111111011110101110011100011010000011001000011011001000110110011100001001111110111111101111001010010111111011000000100011110100101111110111001001100110101010010111110001100111011001011101111000010110110011011011000000000000110011101010010100011111100111111100010001111010000010010001101111110011010100100110100110011001000111000010110111110000001111001100111111000010110101110001000101110111000010010000101100100100111100111111001000111110110101100011111100011010110110010101110110001000100011000000001000101001000001100011001100011100010000101010011010001100111000011000001100110001000110110110011111000100111110101011101000000111010111000010010000100010000100010010000010001100110011101101111101001000110001100111010100101111111001000100110000011011011001110001000011010011110000111010000001101110011111100011101100110110011011010100011110010111011010100010100111101000000110101011111111110111111001010101111000100101101100111100101101011001100101011111001001100101110000001101001101110111111000100110110010001111100011111100000000101011111010111000011001001000101010111101101101010110101011010110010101101001001000000001001001100001101101001101000000010111101101111111100111011000111101011010010011001100111010000011100110111110011011011000110100110001010101011011111001000001101111110001010010000010100100111000001011111001101101010101101010011100100101000110000111001010101100100111110011011100101100000101101001110110100000011000111001000111011010111001011111110001100001011111100011010100001111100111101000100101100111010100001010001011010111010110011101101100010001101011100101000000101110101100000111110100001111001010111101011010001111100110101001011111010101101000110100011011110010101110001011110001111111111110010001011101010001000101010011010010010101001100001010010100100111101000001110110011110100100100110110101110011011111100111110111101101110000100011110001001101111001110100000111110100010100101001011010110111100011010110011011100111001101111101110000000000000101101010011111101110000000101000110011111100110110111010110100000100001000111001101001010111011100100101001111110010001010001111011110110011110110110111011010110110001000111110100000011101101010100110111010001100100000000111100110011100101100010010010010110010001001100110001111111001010101010001111110101111000110110100001111111100011001101010001111100111011010110101000110110111011101111100000000011001010010101110101100111001110000001110011111100110100010001001110010101000000000101010011100001001000010001110010111000101110010010110100011101010111001110001011010000100110111001100110110010000010011111110001010011111100000000010101111110011010001011100010111010000010010110001111000100000011000101100110110111001100011101010000011101111111010100101010001010110001101001010111000011100100101011101101010011101111111011010011011111010100000101100010001011100011000110110101011001110010111100011000110001010010110010110011001001100100110000000000001011001011010010101011001110101100100011010101000000110001000000001011011111001100001100110010000101101000100100100100100100101111110011001100100010011010110111010001111101101010011010011110110010100010011110111010110101000110100001011111000001000011100011000010011110101100011011111011011001010011101101011000011000111011001011101110001000100000111101111110001011110011001100110110111010110110000110011100010011100011001011011111111101011101110000000101000101001110110100010110000011001101100110100100001000011000110000000110100101101001011100001010101101100010011010010100000101100001001101001111110011101110000101011110011110110011111001100001000010000111010111111111100001011010000110000011011111011110101101111110110000110111001111111110001000111100100111000101000101111111100111010001100010110101001100010111001111111101010000101101010100100001001101100001001111110000110111110011011110000011110111100101001001010110100011010110100010010101011100011100110001001000010011110111001111001000010000110010110100100111010001010001011100111011000011100011100000101011101000110100111001001010011011110011111010100000111101110010111110101000001111010101111011111101001011111010101000110011011011000011011011110010101101101100110100011001011010110110101010110101100000100010001011000100101110100000110110010010000101111001000110111110111101111100110110010001001011000110111000101100010010001000011111001110000111100000001110111110001100001101100100111101001101100000001011110100000000111001101011110101100010100111111110010000001000001101101111000000100001110100111100011111010000110111001100010010111010101111000110000101101001101010001100100010001010010100011111100111011110011100110100000010010100101011010001011111110011111011010110001110010100100000110001000100010100001111010010011010101001101010010010001000000011100011110010001011010011110010111101101000101011010000001011000101110011101000111100100101110101011100000010011001011111100001111011100001001111011001001000000100010000110100110000001010010110001111010110100100011110100011010101111011010010101101110010010111001110000011100110101101100111101100100010101000000010011001101110100000110110110001011010110001110001001010000001011001101111001101100101010101000001100101011011000010110011011111000001000000110111111010000111000011011111001010101000001010000100010110101011000011011100100101001100010100111010011110110101000010111010111010011011110010100111000100110110101011100101101001111100111011011110100111101111100011101110010101111001110100000111110110100110111110010010110010010101011001010010011000100011111111010110001010100100011111001100010000101011011001011010111101101001101100001111010000001101000100000110011000110100110110110110000011011000001001100111001000100001100110001010001011001010001000010111111011110110101101101001010111100010011101110111100010110111101111110111000100111010011100101100011101010110011000010100101000011110100010011111011101101110001111101111011010011000001001101111011010110010010110101001000000000010111101000011100111101111011000110011011111111001000110010000110001110110110111011000101110010111100100101101100001101000100111010010000111100101001000010111101101111101011010111011111111101000111001000011101001111000010000011111101000110101000011110100000001110101001100111100000100111011011011100110010101101100101110111111111111010111000111101011101101011011100010101001010001110100111000100000011010001100001011101000110010111001001011110011011000010111110011101000010011000100100111100101000111110100101100010100101110011001101111101000010110001010000010101100100101001100010100101111110111010100000111110110000001110101000000011100110111100011100001101111001010100100100000000100110101011100010001011100110111110101001110001110010111000000101011110010011111110010101010001011111101001011110010010111100000001011011000001110010001010111110000010101110100011010010111010101111011100010100110000111000001110010110010110100111001100111010100001001001000000100101111010101111001101001000000011110000111100000011100100001010011110011000110110101001100101111100111100101101001011001000011100101111001101110001000000011111000110000001011001010100010010001011111100111110111010010000101000011000111101010001000111110010001101011110000011000011011100110001010000100011101101000110101010010000101000000101111110000101100100101011011110010111010011101000010110110101101001110000010101111100001100000100001011000100100001111000010000000100111110011011010101010011101100110110001000011000010110000010001100001010100010011111101010011111011100110011011111001011011011001000001000110101101110010100101110010011101111101100111100100000011110001001001010100010111000000011010001011000010011001100000111100110011010110110111011011101010001101000000011110000000010001100001111110101000000100100000001010101100101100011000011000000010010001111011100101101111000101101110010111010010000011001010111010000111111000110011110111010111010011000110110111000100011011101101110011110110010000111000000100110000000111010011010000000111001100000001001101001010010000110100001101110100000111000101001010101101111000000100001100110011010101001111000110001101001011010101011111010000011110000011011111100101100100110000111100000011111101101111101111110100111010010010110101111001011001010111001100101010000110110111111100111010100010010100011100101101101000101010000110000111011011101111001001100110010100101100011111011101011010001100100011000001000100101000100111111000100000110000101000101010110111111110111011001011001000110111111111001111000010001101110010000100100011101110001010110111001100101111001000010000111100111000001101101111100011111011110110010111000000011011111111011111100100001101101111111100100010010011000101100011110011111001111111110001111001010110110011110101100010110111101101000101001001010100010110010001110101010101101011010110100001000110110011110010000111011000001101011110000011110011111001000101101111110101000100100001111111000110111001001100101000001001000001011011000110111000000110100001101001101100110010111000100111001000000101001111000001011010100000011101000110110011100110100001101100010110110111001000101110101000000011100111001100000100111100100111110001101110011000011111011101001010001100010111100001000100100100100111000100011011000110100100000010111101111111100011100110100111000110000000100011001110101101000111110100011111110101100001110010001011011101110010100110011000011010010010000100001111000111011010100101011000110011111101000011000001000111011011111000110010010100000101001111001101011011111010010100000000101100111101100011000011111000001001011000010011100001110110010010110101111010011010001001001100011101101110011011011101000011111110111101000011011010100001110110100101111010000101000000011101100101000111000000010111010011101000000000000111101110100011001100011111100010110000001011011001000110111000110101010101011000001111011001001000100010100000101111010011110100100000111011001000010001100100111111100000000010101110100110100110111010000000110100011011111001011101100011011101000111111110110001000100101000100100001111101110111101011111111111001111100011010011100100100111110010111010011100001010010000100001010011101001110000111111101100001010101110011000000010001110010001001001001010110010100000101110001010101111110000010000010100010111110011110010110010101010111010010110010101011100001101111111010110110101011000101100011001111011001111010011010100100101010000111101011011000010111011010111001100110001111000111110000000011100001100001101111011110010000101100100100111101100011011011101101010010101001011101100001100101110000101001100101001110010000011110101000110001010010011110100011000100011111110010100110100011101110101010101110111011001000101000111001111010011010011110001000111110101110100000101111101111000011001010110111000001010100111111010110110011100010000000011011100000011000101100010011000111101101110011110110101000110101100000000000110000100101001000010010100111001000100100010101111001010100101000010001000000100010011011100010110010110101011111010000110010110101110110111010110001110100100000101101001100000011001011110111111011000100100100000001101000001011000101000111100111001100100010000100100110001000001111001011110110011100001101101110000100101111101111110101000100010011110011111010001101000110011111000000110100011110001001001111011111011110100000001000101101000010000100100001100001110101000101011100100110110000101011010110100011000001011100001100110000001010100110110100110011011100000000010001100001000101100110110001000001110010100000011111100100001001001110100011100101110111111111001100100010000110011101001110101100001110010000111110101101110110001011011001111011100111011100000000001000100101000111010001101100010110100000011110101000110011011001100101100000110000000100111000111011101110010000010101011001110011001100111111101101111010111111001011111110001010001100001010111111001000001010110100110111110011010100011000100010110011001101010000101111000110110110100001011010101100011111101001001101000000010111001000100000000010100011110011110010101011111010000011011001001101010101100000111111001001110010111011000111010011111111100101110110111101000000100010011010111101110001111110110100111010000110010001000110110100110111000010111110110010000010000010000111100111011100100101100011000100111110110010000000101100000101101010011111111000011101010100110010111111111100001000011110100001110111001100110000100100000100011101010010111011010100010001100100010000101100110101001101111010101011001000101000101101011110000010001111101101010110011110010100010001011101010110010001001010100011001001101011100100101111001011101111101011001101000111100000110010000100110001110010110101010111111010101010111010110101100110101100000100011001101011010010011000010011111100110000010000010001011001000110000101001100110000100110101100111000010111001001000111101100011101001111000011100001100111010100010101111110010010100110100011011100011011010000111111100001110001010010001000101101001000100100100111000100101110101100000000100101011001111001000110101101000101011000110000000000000011011000100110001100010100010010011100100011011001101010100110011001101001111111000100101100011110011111100110000000000101111110000110000010110111001111001010101000100011000100101100001000001000001101100100010111001010111101010110101111100101000010010000010011011111000001000010101001001010100101110010100110011101001011001001000010101101010010111011110010001000110011011000000100111011111001100000100011011001111011011001100001001110100100101010001001001100001011001010101110101001101100001110110001111010001011100110011001010001110100001010011100110001000001011000001100111100101110110001010111101011001010010111101001011010110111001010001101110100100010011110101000101001111101101011110001100100000110100010101010111110111000011101011001101010111011111011001000000101000101111001100101111001010100001000110010001100110001111100000100100111100011100000100010111110100011110001000110100001001000100111001101111111110110111001010011110101101110110110011011010000010111111110100000000010110111011100110001100101000100101100011010110101000111101000000111110101000110011101100110100010101000011000000001100110001111001011010010100010011011000000101011010110100000010011111111100010100000000010111000101010001100110010101110011001111101110001001111010100011011101111111010001101110010101101110011100111101010011001110000100010101001111000100000111000101111001111000000101111111000011001000100011100000101100011110010100110011001011010110110001001101000011101100100101011000111000010110001101100010100110110101000000011000001001110111101111001111110110100110010101100001010111101001001001000110101101100001111111001110111111110100100000111111000100110100000001110101000100100011111100110000101011001001000010001000111101011111101010110100011001101101110111110000011010101010111011000001011100000111010000111100100001011101011010101110001110111000100110101100100111100001010110110100110001000000011010100111001010001000001100100011111000110110011100110110100001110110100001000010001101111111011100000110101101010111100101011111010011010000000100000111101110011010101110011110011011111111010000111001011111110111101100010000110100110011011110010110111001100011110001101111111110010100001001101111010010100100101001000001000010010101011100101001011101100101101010001100000000010110010011111111010111100111001010001101000111010001111011010101010010010110100101110111010100000001001000001010000001011101101111001000101100100010000101100101011001100011001100001101110011011101000000011111110001010000100011010111011111100010110111000001011110110000001111111001010010001111010000110010110000110100100011011101000011101101000000101101111011100010110110100110100100101011111111010010000011000001000101110100011000011101101111110110011010100011111111011100010011000110010010010110011010011010000010011000000001101111001010011100011111110001101101010111111101001001001101010000111011011110000011111110111011000101110100110101110000001001111010010011001111100011001001100101110111011010110000111100110100110111011000011010111001010010110100000010110110011000110010100100110010010011101100010000111110100011001101100101110111001011011010110000000101011101000110001001010111011011110101100101000011100010101110111100000010000101001001111001101000001100101000100101010101100111111001111111110000110100100110001110100001000100011111000010100111011100101010111001011110000000010110001100001001001110000111111011010001100011100000010010000110110011001111110100101000010010100100000001110010110011111011000001111011100110001111101101000000010000000000000110001111110101100100010100111100000011100010111110100110111111101001111100101101001000011101000010011000100100111000001010110101011011000011000011111110001110000001000100001100010100010001001000011111100000010111100110110110001010111100001011110001000100010111010100111001110101001000110000100011101000011010000111111111010000000100100110010101001001100010000101011110000000001110011011101010110111111100011101000000000011111110111111011001010100111000001101011011001100011010010011011111010101111010011010011011011111001001000101000010000000001000100010100110100101010000001011101011011110010110111010010111000000110011000111011110100001110111001111101000011111110110001010100010011100001010011011111000011010000000100011100000011101111100100011101110101010100110110101010101001101110111100111010110000100010010101000110001001100010100101011111100011000101110101101110101110101011101111010001100010100100001110110100000101111000111000011101110011011101001001111001101110010111100011010001111110101000010000001011010111000000110000111010011101001010110000011110100011111011111001110100000001101010011000010011100100011101111000110100011000110111101010000111110111101111100011101011101110110111110111101110110100100110101000010110001111001000001000101000010010001100111010110101100101111110000010100101101011111111111010111001000111110110110100011001011100110001000110001011100000011110111101110111001100110001100110101100001100101100100111011111111100100111010100101101010110111101101000101010001111101001101101001110110010100100000001010010110001001011010110100010111010000101101111001111100001011000111100000010010011111111111111111001011010111100011011111101000011101101010101110111111110010000010001100010100010000001010001011101101100000001010001000001011101010110100100111001100111001000011000001110011111011111111000111011010111101001111111001000011010101111010010101110010111010000100111010011001001001000101100000010001001111101001100000000101010101100111010110010101011001111010010000101001001001000111110101010111000110000001000000111010000010010111001000111100011011111110001110101101110010011001011010100001000011010000000111100101101101001100110111000001011111000011010111100110001100111110111101011010100011100011000110111010011110010010011010100111010000111001110101000010010011001110100001001010100101011001111010101111100110011000011000010111000000001000110101010011000100001011101001101011000110011000101010010100110100100111000001000110110101001001001000001100000100001011101110110110011010111100010111010100000100111100010111111011010010010001101011111001001101110100111111000011001000100010000000101101010000001111100000010111111001111111101100011001011010100000001010000100000001010110111110010001011010001010001111000100011100100000001001001110100001101011010110010110100000001100100100001101001010100110110011110100001000011101011100100011100001111000001001111100110011001100101010101100100110111100000001001010111100110110010101100000001110101100001101000000111011100000100110100000010110000010000111101010010111011101010100100110100010010010100110011011111100111011110111011010111101110110110011111101111010011010110011011010010011110010001010011011010100001110111111001110011000111111100000101111011000000010010111100010001100001100011111000101001111111010101010010000010010001001100011101010100011111001111111010011101110001010110000100011111110011011100111111110001110011110011011101110110001010100001010010111000010010101110100100001111110110110011010000111111011011111110000001011101101000001001011100100001111101000011001111100111101110010001010101110101001101101110110000000010101111001010111011000100000010110101101010010111001011010100101000100000111000110010100111101100101100011001011010101001010000011011001101001000101010010010110000011011011111100000001111001110011010101001010111101111010110100000101110011100001100000101011010110011110010011100001101101011101001101111001000000001110010001110101011010100101100001110011111011100011100111011111101000001010001111010111000010101000100101011100000010011110111100111111010001111100010110000111110111011010101000010010000110111101000000111111110111101111011000111000000001010001100101010111101110110000000101100011100110001100100011100000110110101110111111000000101000101001101100111101010011010100010000000100001000010010111111100011000011000001101101100001101100010111011111100010000100011001000001111111110000011000010010111110011110110001011001000110101101110100010111101111011101000111110010010110001111011011011101000110011100100001100110101111010001111110010001110000110010010010110111000101001110011111110111100100001110011111111100011111011100100101101010101001111000001010100000100111001000100011010011100001001011001010101100000110111000110011010110001010000100011101111111111000010011101110000001001011100101100010000011011100111011011001001001011010000111101001110000111000001010011000011011011000000001000110100011000000101001111111000111000010110001111100001001000010110010000110000010001010100111011000100101110011101110110101010110001101111000111000111010111110001000000001001110000101001011110100010110001101001110111001101110101000110110011100001011101010000001000111101111000001000100100001000111001011010101000101111100001010111101001111101110111110001011011110100110111100100001011111001100001000000101011111000111001110101000001110011110110011111111001011001011000111101001001001010010111111101001110011001100101110000111010001111111011011000000100010110001101110010111110000110011110010100111101001001010111111111001100011010101000001010101010111000010110101010101101111001010111011110111111110011011010001001100101000011101110101000110011111101010001011010101000011100101101101100101101101011111000011111111001001011101010000101100010010100001100110000100001000101110011100110111000111100101100111001001010010001101100111100111101011111110010110111001101010001011011100101000100110011001111010010000101110101111001001010010111100100111001110101101100110001111101110100110111010101110001001100111010100000111101000000110010100001001001100001100101001110000001001011110001110100101111001001010001011010000000001001100010011101101001000010110010001101111001110010010101011101110101011010011100100000001000110011011010001010001001110110110110001000110001110101101110011000011110010101011011101110001111000011111010010100100010111111010101010001010100110111010001101101001001101001010110011101111111101000000010000001001110101101101011000101000001000011000001011010011101011011110101011101001001110010011000101011001000111000001011111011100111000010010011111101010111000111011110000111000010111110100111101001011000000010011010001100011001011111000101011110111111100001111111100100100000101010101000001101011001000111111100101010011100010110101011101101101011001011001110000111111010001111101111001010110100111001101000011011110011010101100001001110011100100000101110001001000100101100101001101100101001010111010010101111100011111000011000111001111110111011001001100000100000010110100111110010100010110100010000110001110110110100110101011111001111010010110011111101101001101100110100110000010001011000011000110000011011111011111001111000001000110111111101010001111101101111001111101101011101011001101000001110001101011101010111101110010010100011010010010010010100111110100110100011111101011110110110100011001101101110110000001110111110100110110110000110100000100000111111111110111111000111111111001100000110010101110110000000101110011101110111100111111001001011101110000111110010011110111111000010111101000100001101111000110110111111100100111001011011101011011001001011110111110110101111011011001110101111001111110101000110100010010110011110110100011011101100111101110101000011011010101011001001011100011011011011111001101010101000101101111011101000011111100010010101001011011110111101101010111110100010100001000111011011100110000101000100101000111011000000110101010001010000011110101110000001111111010110000001110111111110010101101011010001011101111010110001010110011000100100011000111000110011011101011001001111111001111010001010110001010010100101000100110110011100110111000010100100111011000011000101000101011110110100001001000001001011011010100111010101001011011101111000000110010001010010111100001101110111001011111101010011101100111001001111111111010100001000100000001010110110111011110000000110010000101011001110001100111001101011110001110011011110111110101111001111000011100111011011010001110110000001011110110111110101110010001110000000111000011010101100010101111011001011001110100000011100010110111101001101001000101101111110011100111110000000001100011010100110101011101100101010010000100010110101100110111010000110111010000111100011111110101010101010111011111110101000111101010011111111011100011111111000011001100101000000100100110110011110100000001110011110000100001011111011110011111011011111110001110101010001110010000001001000001111001001111000111011100101001111010100000000010100010100011111110000000001110011111000100111111100110001001111101100001010011010111001001011011110101000010011101110101110111101011100001001000110010000101101010001110010001001010110101001111000101000110000000000010111110101011111111010101010001101001011101111010010001111001010111000001110100111101011110101101101110011000010011100110100100101100010100011100011001000001110011000100011111001100100111111111111100111010001010000010101000000101011010100111101000010011010101101010100110110011111110011100101101101011011101100010101110011110101101101000011001100000011110001010010110100100000011110100101000000111100010000011101100010001110011010010100101000001010000011001001011011000000110100000001100001110000001011000100111101001001010000101100010101011000110001101101101011011001110001100000011011111111001010011111110001011110111100011011111001010001000100100010001011001001000001001110100100010000011100001100010101011000010101010011111110001000010001011110010010101010111010101011110011101000011110010100010000011011000000101001000110100100000011101011011001101010101100100100100000111110010101011011000001100000001101100011110010101001111011101001100011001001111100001101100010111101110100000110011011110111100010100101010010100011101111111100111101110010101000000111001101011101011111100110111011111001100100101100110011001100101100101000011001111111100010100110010010011111000111101011001101111110101001111110111110101100001011011111000101110011010010001001011100110001111011010100111010111001110011111000110000000000011011001101001011100000000111101101000111110011101100010000011010110100110110110100101001001101110000010110001101001101100111110000010011110010011110001100010001101111101011101111000100011111001011001101111110111010000011110110101001111100000010100101111001101110100111011000000000101000010111010101010001100111011110001100110100110010010000000100110000011110010111010010001110110001001100000001010011111111001111101010000101110100101001001001100110011000110111001111100001111011001100111000001101110000111010000101011100101110011000010000110011110011010100111101010000100110111110110110000110100100100010111010001001101110111101111001010100010101111110101101111101001101101100001001000000111010010111101101011011001110000110100100001110001110010111110000000111101001010010101001111111100000100000101101001010111010001111010000100011011000010101110110100010011110100011111101100111110011101100000001111111101111100010000110110100110011011000000100111011111100100001110111100111010011100010101111110101100110111001010110010101010111000000010010001001100100011101011000010111000110010110111101010000100001100010110100100110100110101111000000001110110000000101010011100101000101100110111100101101011110101011001111110110001011011001010000100111011011000111011001101011001100111101100111100000011101101111001011101101011101010011001001001110111011011101100101111100111100111110111010110010000001101001000100001010010101001010101100110100001100110010101000001101011000111000111011101100010001001001110001110101011001110000001000000100111111110110100110100001110110000101000010110001001110100100101010111101100010010111101011010101010000000000110001110111000001100111111001001111100110111110000110011110111001110010110100101010101101100000100110111011000010000101001001110010010100101000000100111111000100100011111011101010000111000010001100111101011011101001010001001101101000011010001000001011000100011110111011101011100101101011111000100010111010110101011000000011110101101100101101111010000111111010001000001100101010111100010001100111110101110110110111111111110001101100000111010000101001011011110100110110010010101010101001110111010000111100101111111010101011011100010110000010100001000110011110010101101111100000011100001010100000101000110010110111111110011100111011001100101010101111111100110011110011101101000011000100011010101110010011101111011000100000010001101011111001010001010010010010010000011011110111011000100111110000001000000100000111010000101000010110011001001011101101001011111110100000001010101101100000100100000011000110101110010100111111010010100101101111001001001100001110011101111001000001001001100111000000110100101000101001110000100101011101011001011000000100001001000001010010011101110111111001001000011000110011010111011010001111101000000001011101111111001001110100001010000100011101100101011011100001011001010001110110100001110110111001110110111101100000010100100011101000100100001001000001011110011100011111100101110110010000111111010111101110111110000011011110001101100101100011100000100101110000111101111011001000001010001101010110011111110011001111010000001110011111111001010000010010101101100010010001001001001111100111000001111100110110101101011101101101110011110011101110011000100100100011110100110001001001111011111010011011110001010110100101111011111010001001101100001000001010011100111001100100010111100101010010000101100101011100011101001100101111011100010001101101101111001010100101000100010100100100011111101111101010011100011101101011111011101111001011101010100000111111111100010111000111110100000000111001111001110010101000101000101101111100001111101001010110011111000011011001110011111100110101100100011111110000111110110101001010101100011110000110110100010101011101000000111010011001010010000000000101101100001110001011011001000110001100000111100111000111111001110111011010000100011000101011001111000011110000001110011001001111011111011011010111010011011010110011110011000101100010111000001010010100001001101100011011010100101101011000110010011000100110001011111000000100101011010100011000011010111001010101101111111111100101011111100010000101101010011111011000011111011101101100001000100001100111110001001100101000111111001001101000111110000010111011111100100100100010011101010000100111110110100111111000010000000100100100000111001000001100001010000100111000100001011101111011111100101101110110011011111000011011100001000111000111011111011010111110010010111101000111101111111011011111101010110110100000111100010001111110011111110010000000100111010101100000010000111000111010000000100000110110001000110100000101010100011101001011101111100010010011111010011000101000100101100000111000100001011100111001001110111001000010110010000010010001000101011110010110111110001001111011111110011010000011110100110001101101101011010101011100111010000001001000101011111001101100000000010101011001100000100100010001110101011000111111110110001000101001011011000101101111011011010111001000110111011111111101111101011000001101011011011010001001001111111101101110111000100001011100001001001001000110010111000110010001011010010110110101111000100010111011011011000001000110010110100101100001000011100111110111011000001000010100000001100101110011111011000111000010100011100001101000011011010010101100101111111110011100100101110111000100000001100001100110010100111000000110100101110110010100000001110001111110111010001111100100100000110111110100001111000000100000001011010100000010001100010001011100010000001011000010100010100001001110001101100111011001011011110010011110111101001111011010011110100101000010110111001101000100010100101111100110110010101100110001101010000010110000010101010100101010101000010000010110111111101001110010011100010111010000011011101110111001000010000001101101010110110100001110111111010001100101111101000000000111101001000111100101110010010000011011100010011110001010001010010101000100110011110110000110001010110001001110010011010001010101100100001101010000011001010100000110111110111101100111011110100110101001101110111111111000111011110110111100010001100000000111001101011101000010010100010101000011010010101010110100011000110101011111010110110101000001011101001011011001100001001001100010110000010000110011000011101000111001000001010010110000110010101001011011000000000011100101000010110010000010010101010010100100111101000000010110010011010111110000000000101101000100010100011000001100101010000110110101001011100110001001100011010111001110100110010011100111001010101010101010111010011101011001001001001101111101010000100000000100011010001000101110010110111111001010011111100100001110000000110001100011011001100001110011110110101011111101001100010110010110100101101001111100001101000110111000011010001011110000010001110100011010111000011100111111100100101000001110101010011110111010010001001110111010011101101010111110010101100010000000101000111110110001110101110011111100000000100000111111100111011010010011100000010110101001011111101011000111101010111000011111101010010111011010110101111000100111011101011010010111110101111011110100100101010000001101110001100010111101100011000000110011101100010010000011101010101100110011000111111011011110100100011010001000001111100010100001011100011000101101100011111101010001000111001100011001001111110111110101000110010010001001100100001110010101011001001010000100000100101010011101011000011111111100111111011000101100010110101100010011101111001110010001010010100100011011011001001010011000000000111110100010110011010110010110110000101101101101010011011101100011111001100010000111110100111100101100001100000010000100011100000001111101111101101001011001101111100000010110111001110011011101000011000101110011100001001011101101111011010111000110011000110101111101001100000000111011111010000100011011111110001010001001100010001111001100111000110101111010011111100110101100001111110010000001100010101100100100100010010011011010100110011101100000010100110101101111010111110100000011111111100000010011000110100101011000100010000110000011001101001010101010110001110001110111100111110010101001111010100110000010011000010101100111111001001011100111100001101011001111110101010011111010111100010100101010111011111001010101101001110100011001101000011010001100110111011111000101011010001111010101001111010011011101110100111001001011110010110000011000011111100000001111011011011001101000100010011100100111001100100011010010001100100001111000000101100101010110100100010111001101010111101110110110111110100011101011000100100110111001011110110010011001110111010000000110001001010111110001010001010100100111101011110111000010110000110011111011101000100001000101010111111110101111001010010010110101011000111010010101111011111110010000011111000111101110010111010100011100010101111101100010111111111100111110011000100011110001101101001011001111111010111010010011100011010110001101111100011110001100111011011110111011000001110001110110010100111111010100010001010110110011111100000001110001011010011101010000000001000011101010010011111010010010111000010100000001110110011001011101001000111000101010111010011111011001001111111011010011111001011011011100110110101000101101000101111010110110110111011110111001000100110001100111001001000001000001101111111000110111010011110101000000100101100111011100011100000000001101110010001110101100111011100011101010010111110001000011111001100110001010000000110100001100001110110010100101100000101101111110000110011011100011010001111000000010011100001000000111100010111010100011100000011101011100100100001110001000000110010010011110011011110010000100010001011010111101110100110011110010100110110100011111100111110101101100110111100010100000110010010100010001001101111101110011110011110111111111000110010001110011001010010111011101110101101100001111000111011111111101011111001000101000110111000001010101101010110110101000111000011110100001001110010100100101010101000100000100110010001110010111000011001111110001011000011011000100100011110010110110101101000011001010000101011001000101000001100001101011101011010000111011101100101011001111001000000100011111101000011100001101011010110001011001001010100111000110111110011010010101001110000101000010011100110001111101101111110000101100000011001111010001001001111000110011100111000111100001011101011010100011001011010001110101001001010011001001110010001000001011011011001111001011001011111011010111111000011000001011111010110000010001001001010100001101001100000011100110111101111011100001011101011110111001001011001000011000011110110010011111101001001011100110010010011001001001001010110001000011000100010110001010001111111110010100011000110100010100110110001010110000100000010010110110001011000111011011111010100100011111101100011010110101100110011110111000010110010101100000011100111001101111001010011000011001101000000111000110000010100010011010101010101001101011100011111101100010101100000000001111000000111100101100111011110111100000100011110110000010101111100001111101110101011101101001111110100101101001001111111110010110001111111110010001000110110011000100110100011000001000101001111110010101110111101011000111111010001101000100001101010100001101011000011110011100001010001101101111011111100010011100010010101010000100101001110010011110100101010010010001011001001000111101101000010101001110001000101000100111111101001100110011001001010111101101110100101101100000001101010110010011000000111111100010011010100111111010010011100001100011011101111011010011110000110011001000001110000111001001111101011010000110101010101001100111010011000111100011111100000010111101101000101011010111111110100001000100000111101011010110001101011010110010011001010000111100001011100000010000001000101110101011000011010010111001011101011000111011001010001110011111001001111001100101110010010011101110010101100011111000101100110011110100110110000101110100011100011101000111111001100100100110110111011001110111100111010111110011111000011101101011010011111101111011010111100010100011000111101101011110011101000101001011110001000011011010000000100110010110000010100101010010111111110110001100111011110011110101001001100000101011100101100011101100100000111010010100111111010100001111110001111011010010000110011010011100111010000101100100011110110101011011000010111111011010000010011000101001100101100011001001101100110011010110100011000101000110110011111111110111111111010101111101111001101110100001101111100001100110001000001010110001000110011011111100110101011100011101011110011011100101001001000001000011011101010100100111100111110000100001011111101101100011010011101110100001001100001100011110010011001111100011110011011011110110100011011101100100001101001000111010110111001010110101001011100001000000101011101000101110000111100100011100111000001000010001100101110011110011111010001011111110011111011011110010100000001100110010111100101100111110110011000000111100101011011111010001011011101001001011111011010100010011111101101001100100100110011001000000011100001110110110011101000100110101111011101110100101010000001100001011101001100100001001101010111110101110110010111110010100100011000101011011011110111011000100111111011011001001001010110100111100101111100000011000000011111101111001110110000000101110011010001110011111110111000110110000100101100111110000111001001011001011011110111000101110000011001011000001110101011110010000000010110000011000110101000000111001000100000010010111001001101111101011100011101001000001000000111000111001111001101101011011001111001001001011001000011100100010001000000000110001000010100111111000000100000101101001111001001110001111001110011111000110101001101100001100110011010110111111111010101000010100000111101001100111110101110101010111011110001001010100011101001011111101001011001111010110101111000110000100011010001111011110000000100101010110010111010001010001011101010110111000001000001110011100111001011001011101001001001000000000100011110010011100010110001001111101000110011100101111110101110010000101011100100011100110010001010110000111010101111101001110000110111100001101110000000001111001101001100001010110110001101010100110110010101000011111111000010000101110010001001111000011101001111010111110010110100010000100110100001101110000110101101101011110111011100110110110011011100110010111011000111100100110100101011011010001100100111001110001011011010011010110111010111100111110010101010101001011110011011011101010100110010010000111000001000010110100110000111110111100110100000111111010110111000111000100111111110011111011111110111101011000001111000011111110010101100001111110001110100101001110001101111110001100000101010101000001101100001110111100110110010000101011011011001100000010110000011011100010010011010110011111001110011100101001010100111100010000100011000110000010011001111010001101001111000001110000011111011010000001111111000101010000110001110100110010001000101000011101111011110110001110011010101111100111000101111010110011001001011001010110001010100110111001111111001000100010001011001001110000011111011100010001101000100110101101101010011011101100011110100010111001110010100110001001101000001101000110011100111001110100101101101010100000011001110101010000101100000011010101010100110110011100101101011101001101001110011000100001011001100001000110000010110000000100011110010100111000010100011100110111100011101110011111100010100111101110010100100000011111001101110101011111100110010100101010111001001101000001101110110000011001010010101101111000101000010110010111001100100001101011100001010011011000011111000101011101110010110111110110011101110101111100100100001001011111100100100111110000001011010000010111111001111100010011001111000111111011101110110101100001100010100110100010110001110110010001010111100111110010101100111011011111011110011011111000001000001011011110011010001011101001001001100110110011010010000011010011001001111000011101101100010000110000101101010000000100111001010011011000101000100000001100001011001000101010110011100101110000100100011110011011000110101001000111100110001111101101101110010011011011101011011110011011000010010000111001010001000001110100010101000011010100000011000001010010110110100000110100011001111000110001011110111010110011011111110100011001000101101010100011011010010111001000101100011110101010111010110101011000001001101100100011011010101101011001101101101000000110011000000101001110111100011101101011011011000110011101010001101101110101010111011000001101011110110111010111000100011010000110111011001110010011000010111001011010100011110101100000000001010011000010001010100110100000111011000101000101011111011000000100010000101001110000110001110001111100111100100100001011110101101111001100110111110111111011010101001000101111111100101100010001101010000111010101010111111100001001001001000000010100111011110011010100100001000001101001010010000010111011110111011100111010001001011000010101011010011111001011000111011111000010011011110100101000000101001001110110100000011000101000101111000111110011010000010100111010101110100001100101100100000101110100000011010100110001101111011111101011011100011100000001100101001111010001001010110010001110101101111111000010101001110111010001001001011111110000101110000101100011011001001011010110001100001001010110101001100000000010010100001100111100000010010100011010011100000101100001110001011011111000111101101000010111100000100000101111101010100011101100100010100100011110110010000010010111000111100001111111011101111001010010111100101100100011110001100100110010001111110111000100110100010110111111000111110010111000100110100010100111011010011011111001011000101011001001011111111100001100001011011111101100001001100110110000110000010000001011001001111101100101111101000101001011100101100000001001100000101001010011011000010001010001000110100110011000001110010111001111110110111110000000000100111001101011011000000000000111100111000000100110101010011110101111011001100001111010001011110010000111110111101100011000111011001111010111100100001000000001111101110000011000011110100111110000000011111010110001110010010010001111010110011000100101101100001100110001101111000010111101001101101001110001011110010101010100111011001101110110001101000111111000000100110111101010011000001000111110100000110101011101100111011000010010110001100111100100111001100011100111010000001011000100001001000111100100100000100011000111100011110110110100001010111001000001011001100111110001100110011110101100111101111011110011100111101100001111010101111111010111110011110101110000001100101101010100101011110000001011001011110011111101101110101110001111110011111110110111100110010111001010010011110011000001011110011111100010011000000001101010111111000011010100111101101111001100111001001111010011111101100011100111110011111001011110001100010100110000110011110110100101110100110001001010110110011000100001001001000011001011010010111011110101011101010111111011100001110000000000011101110111010001101100101101100010010110101001110101101111011000001110001010111100011000000100000110011010001001111101110000111010001101001111110010110111000110110110111111011011100110110001110000110010001000110101000110011011100100101000110110101110111011100100111001110010100110101111011101100111111011011111100001010111110011110110011000010000001000110001111001000010001101010110110110001111111001111110111100011011101010010100011001011001110100011010111111111110011101010010000100100010110101111011111111100110000111100010110001111110110101100011001111101010101001000010111100011000000101111001101010111100001001110100111101001000110111001111001001000101011011011101010010010100011110011110011010011110110000101111101000011110010100011000110101111111000101110000100110010100011111011010011110001101010100100011000011100111111101100001000001100001001110011001101000011101111000001011101000000110101101000000011110010101111110010101100010011111011000110011000101101010100110110101110000010011011010110001001010101010011110001101000110110100111100010111110000110011001000100100111111111011000110001101011111111011000010110000001010010100001001011011010110001011111010001000011010001001110111011111100010110111010101000011000010110000101101100100111111000111110001000011111000110010000110001110010111101001110111001101010001100101001101011011010100110001110110100010011100100110111000101010101111001010110011111010000111011111011011001110010000001001101001001010011111110101001010010100110111001100001001101001100111101001001011011100100001111011101101011001111001000101111101101010010011000011011000110110101011101111111001011111100011101010001111101100110000101110010000110110100000111100001001111000111111010001110100111110010001000100000101101000001111001101001111011111000110110000100010011000010111010011010100111011110101001011111111010110011000000001001011111000000101010100011110010011011111001011100001001100011001110111001111010111111111111000000101001000000100100011000011001110000100100001010010011111001001110111100000010110100111101000101010111110110011010001000110111110001011010110110110011100100011100000111110010001101110101001101001001101010110110011010011101100111100010111010010000110110100111110111010111010010011011001110101011001111100101111111011000000110101011111011010101011011010000100001110110000000100010001101110100100011101001101010000011011111100000111011110001101001101101010111101011101011111001100111101100110110000110010001011111011100001010000101101100001110100011001001110000110011110000010010001011011000100100111110111110110001000101010001111011000111011000111101000101000100011110001000111101001101010011111110111011001000111111011101010111010100010111010110001001000100111110000001101111010010101110000010100101000000010010001100011001010100001011000101010011100110111101110000000001100111110010000110011011000100001000010011100111000101010011100111000101101000011011010011111011011101111000100110111100101011110111101111000101001001111011000101101101010000101000101001111101110100101101000011101110000110100011011111111011100010000000100100111010100100100010110101011000111000001111001111111000000010110101111000010011011000010000101001001011111000101100001000111111111100101001010110001000111111111000011001011110101001010110110110010010110000011000000100100101111000111101000011110110001001111000101000011110010101110011001111010000100000100011000000010011011111101100111100010101111010010001001101010000111011100111110110010100010111011111001101000100101001110111001111011110100001101010110010101100111110101110100101101101001100110010111110110100110011111000100111011110111011111101001110110100100100010111011110111100111110001011000000100100011011111101001101111001110100101000101101001001110000110011110001110100000101011110100001011010010110100110001010011101110010001000100110100001011101111110001000100000001100000010111110011000100011100101001111000011001001010110000100110100111001101000001000010011011110111110010000000100100010100011110001010100011110110000111011000001100110111000101010111101111001011010101101001110110111010011001001001100111000100111100100001110100111001010111011000011111110001011010111100100000100110010011101011000111011011001110110010101001001001100111101000011010010110010010110111011011001101101101110010100110110001010010110010101011010110101110001000011000010001110011101101001100010011101110111100110111001101110010001011111001110111000101111111101110101000001100110101101111110001100001000011000011101001011011111110010110101101001101110110110111101000000101001101110110000011101101100001000111100010001001111011011101100110010011111100110110011110101111101100011101110001010000011001101101000001100000111011111101001001000010111111011000000011100100111111100000101100011010100111011110111011001001111000110110111101100111001011100111111100000111110101100100110110100101100110001100011110011001100110011100011001110111110111010111111011011110100100000101100110101011010000100101111110011101000000000011001000111001000000001000101001010100111011011011111111101010000101101011100000110111011101001111001000010010011111000011000011010101111011101010001101101010001011101101000110011001100011111111110001001111101111100111110101010111011010111110001010011011101110011101011010100110011000111000110111110000000101000010101110000101000010000010000110010110111010110101110101001011100001111110011010101010101100001100110100100101011000111110101011000110110000000111001010110110111101111000010010110010001011111111110110010111011011111100001110010100011000011011000011100110001010000010011111010001000110101110011110110001100000011001000001010011011001000101001111111000010011001100110001011000011001111000001101101111011010111011100001011010111010111001001101010010000100011110000100111011100111100011010010010001100101100010001111000110100011101100100010001100011011101001101101100101001100010100010101001001101001110111011011101011001000001001100000001010110111001111100101111100011101000010100010100110010101011010011011101100111011010100110001100010010011001000001101101101000011010010001010110111110100101011101010001110001110010001010101001011101100110011001011100010001111010110101101011000011110110101111100100011111010011011100100010110111100011100000100110111010001010010101110110101100111010110100011011011100011100010111100011110110101010010000001111000101100111111011101011101000000100111000000001110110010100110010110001101001000101000011011101110100011110001011001010001010111000110111011000111101010100000001110110011000010011101110110110100110001010010010010010100101111110001110010001011000110010100111111001100000110001011001100000100000110010010111110000101001101111101111001010000001000111010110110000110001001010101001111101100110010011111010111100010111100011000111110001101101000010110011110111100111010010111000110011000010100010110011000000001010101001010001010111011100101101101010100101010101110000010101110110101011100111101100011000101101111001001010111011100000111010111111101000101011001000100110011101011011110010011110000001010010101011101000100110000011101010010010000100111101001111100111010111101101010011010111011111111010001000011100101111000111011001110010000011111000101000001000001111101111010101111101111011000010001001101010111110010011101111000100011110010011100101000010101101000101010000110110011001010011011001110111100001101111001000010010000110000100011110000111011111011000100100110100100110110101010010000000001000010010100011000010111111001111100100111001110000110111101101010111111110111101100001010000110000011110100101101000110000110101001110101011100010000100000100110000110000100000001011011001010101100110010111110010011000110100010011101011000111010111111101101010100011110000010001111110111011011011111000111110111110011000011000100110101100111011010011010001110101000101000111101011101101101010111110100101110100100010100000001100111101100010111001101011100111010110011101111110111010101010011010001111011010101010011111011000001000001001101001001101000001101011111001101001110111001110111110101001010111001100000001110101101010010011000101000101011011110011010111010100110010011010110101110001101110011110011110011111010111000010101100100000000111010100110100011101101101010001001001000111000110101101001110011101010000000100101101001000011101101001100111011101111000111011100100101110111110001001000100011011111011001101101101011000111001011111010000100011011100000000011101001111100100100101100101001110111111110101011101010010011101111100101000000111100100110111110100001110111001001110111011100010001100001011100111111101011111001011011000111001101110001111010100111001100010111001110100110000000101010011100100011110000100101111101100100010000010100000010101101101111100011111000110101000100010010100000111001100111011100101100110100001101110110110010101011111101100110001010000100000010101000110011100101011110101101000001100100010010101111010101011011111111010010001111011010100010101010111011111000111111001101101110111111010101110100101001111011011111011100010110100000100001101000010011000001011101001111000100001001100001011000011100101011100110101110001010110110000001100011101001001010100100110101101001001011011111001110111010011000100110101010100010000101101011100110110010101101001000101101010110110110111100111100000010110011111100010111000100100011010010000101111011101100101001100000101001001001011001010100111010101111110110000000111001001001100010101100111111011010000010111100111000011111110011001111111001010101101101100100100000011000000110010010110010001101101010010001110100110101110100111000010001111111001111010011011101101111000010100000100101110100110001000000111111000001011010100010111001110001000101101000110100010001000011001101111000110000111100010101010010010011000011010001000101100101001010011001111111101000110100010110010111001000110000101001111001101010101111111001000101001010011000100110001001000001010001111001100001011000010011101010101110110011010111010110010101100011000010111011010111101000111100010110000100011001001110000101110101001101110001101010100101011000111110001001001101010101010000101111001110101100110000101111010001111000001011101101001010001101010000111011000100111000111001101001010001101110111011110100000000100100100101100111010001111100001011110001000010101110101101011011110001110001111111100101010110010010110011110110100110011001110010001111111001010100111110100000110111010100010111110000100011000101001111011110010011101100101111100111110000000111000000101000011100101111010110011101101001110001000100111010010111110100010110001000110100101011111100101110001000011111001111000010001011001101000010111111101100110000101010010010001011001111100010010001101100001001100101011101100101100010000101010110100110001010110000000111011000001010100011101011110111011111001111010010111100111000101101101101010011111101010101111111100110100011010101011011001111110110111011100100000010011100011001010010000011011001110010100110000001001000001000111101100010011111011110010101000011010101101101001111001110110001000001100101000010000111000001110010100011101001100001010111110011000111001010011010010010111011011000100101100010001101000000111100000010111001010010000111110000110011000010110001001011100111010000001101011110001000110000010111111100011110101001010111001011001011010011001001010101111000000110011100010110100100010010000111000000111000100010100000010111010101011101101101001010010110100001110011100101000111100001101110000001000010000001110000111000001010000101110000000110111000111000001111100001111000111011010001110010001110000010100011000000001011111100010101011101100111101101110011000110100110100000110101111111010001000110101100100000110111100011011011100101010110000100010110111111001110011001000110010111010111011101111001110001101100111110011001101100010000000010111000101011110001001110010100101000100011101111110101100110101011100111001110101010101001110110010101010100001011111000000101010010010111110000000011111001101110000000111111111101110111001010110100111100000010011100110110000010111101010110110011101100101001010111011110101110011001110101110110001001000111011101001101010011010110111100110011110111010111110101000101000100001001101011110000010001100100100011110101010100100001010111000110001001101110001001001101001010000011011111010011110000001111001010011001101110100011111001110101111010011110000001011110101011010001010110100110110110000101001111000100100001001000111001011000111011110011001101000011011000101011001111101001111010100101011101111000100000101111001100111011000001111011001110110000100010010101010110010011111100011100011110101100111011110011101110110101111110001000101100110111000011111011110111000000100011011100111111100110100111000110010100000010011110001111010111010011011000011101001010101001001001110011100110011000011011100000110011110011001010011010100010000100100100011011111010101010000101000001000101111101000111001100110100101001010111000000010110000011100100011110000001011111011100101101111100101101010011001111000111001001101110010001011100000011011011010011101100001110100100000111101110010101010101010011100110111000101000111000011111101011100101101001001011100111111111001100011100010110011011110011110010111101010111000010101010110111001010011101001001001001111011100010100001100010110000001100000010000101010100100111110001001100100010000010100011110101000101100101010111001000111100000110010110111101101111111001110111001100001001111110101010111011110111011000110010101101111011011101000111100111011000101110001001100100101010101001110101011111011011111011001111000110101101010000110001010101010111001111100101000101000100101011000100001110011011010100011001011100001010001111100010100000010011001010111111111100011111110101011000101111111111011100100000000100111101011111101000111100001111111010010001000111000001001000111001100100101001101100011000101000001110100100010111011100011100001010111001111010001001001110000100111001111001010101001010000001110101010100001110101101000010010001101111001110111011000011110001101010110011110001011000101110001110100111111001100000100111111000100010010010001011100001111110111000111111111000001000000111010101001111100011001110100000101101101001011010110000001111011100001100001110100110001100101001100101110000000100111101011000110111011110001111101101101100001100000000110110001111011101100100000110011101000100010011101001110101000100101001001000110000011111011011000111010010011010101110000001110111001011100101010001011001111010000101111001010010100000011010010100101001101110101000101100000110000100000010101001000101110111101101000101000100100011111101000011010011010010101100010111001110110001010010101000100010001100000000010101001111010111000111100110011001110001101101110101010000110100111001011100101101011001010000100001110110111111000001101110010010110000101010101111110011001010110011010101100101011110001110100010000001100000001110010111000010011001100000111011111000011000001011000110111000001001111011011100101001010110010011111011001011000101000011000001000100001100110110111101101111111001011101000010011100110001110011110111001001100111101001011101100011111110010101111011101000101100111111001010111101000010011111010001010010100101101101100011101011111000011111101011010111100101110110100001111010101111010000101111011100010101000101000111100001011100100011001100100111001101000001010000011010100111100000110011001100000010011001000001100011011101000111100010011011001001100111100110110000001100010011001110010000111111101101001100010000110001110000101010100011111110101000011100000010011010011101010100001100100000100100011000000111111011000001111010101101011001100111110100001011100010100001010101101111110111110011110010000100011100111011001001000001111001111010100100011000011010010010110000101101010010111000110111110000001011111000011000011011011111111010111010111101010000101011000110010010110001110111110001010011001011101100101101101010001100001000010101101101000100000111110110000000111100001101101011011100111010101110001010101111000100000001001011101000101011000010100100110111101010111111111011011111100010101010100111001010110101011000001111011110010010100111111110011010001111111100110011101001100010011101111110101010010001100110000010001110001100011011101011011101111011011100010110001011001011111100110001001111000001101001011001111010110010001110010101110001010111110100010000110101011011011000010100001001001111011010100101001000100111100101101001010100101010010100010001111001010111101111110001011101010001001110011011011110101001001010001111000101101110011100011100110111100011000100000000000010101100000011110001111100110100110110111000100011010001000101100101100000110001010101101100111011001010111010010100100111100001100000110111011010111000111100010000100010111011110101000001111111000001000101001011010010101111101100100110111011101110101111000001111000000010000011110101100000011000011011111101110001110101110111100000111010011001011001011011000101100100001110101001011001000101110011001111100101100011111010111101010110000000111011101011110001110101110001101011110001001001111000111001010110000111010100001100110100001111110100000001100100100001011010011001010010001011001011000100011000111101001000011001100101101110010000001101011001100001101110110010111101000001010101110010001001101001000111111100110101001101011100011001111011101010000011010100000100101011011100111111000001010010100010000100010000010111100100000101011101111110011111000000010010001100110100101111011110011011110100110100110001010110000101001011001011111101000011101101000110111001111010010101111100100000100100101010100101011001111111100101010010111000010000110010001101001001001011011000010000001101100001010100110011101110010100001110000011011010001000011100101011011000110010010110110110101001000001111010111011000111100011001101100101000110101000010011011100011110001000001111010101101001000101110000110011010111010100111011010001001010011111110110000001100110011011101011011110000001100001000111110010101100010100110000000111100011011010010011111011111110100111111111000001111111010110101100010110101111001000011010101001011111000110110010100111010010001111100011110001011001110000101110011100001101011110101010010011010010001010111110010000100000111100101111001001000011000111000011110010000100011011010101101010010011100011101000001000010001101111100111000011111011011011001111111111100111000100100011110101001000001010111010011001100011110111101110101111010001101000110100001100011011110010000101110110101110011011010011100101100010111100001010100101110111101101010101001010000111010010111101000110100111000100100101100001000001101101001001101101111011110010000100011111011011111111011111110110011110110001101011111010010011010010110101100010110101011110100001100110110111010000010001111000111101010101011010100010010000101101011010100101101100011011111101111011011100111011100011010110100110101101111111000000010011111011101111111100101110111101110110001110101011100011000001000111011011111000011000001110110010100000101111101100000101010001100100111010111001100100111011110100111100100111110011110101000011110100110011001010100010001000000010010100100001001100110011001010100110011000111010000110010111110000010111111001101101111011010101101001111001100111000010111111001010011101000001100110001110110101010001011010010010001001010001110001110011100111110110111000010010100010010101011101111100111111011011010011000010111001111111110100001100111000000001001100101001110000001111000101011010000001110100001000001011111100000011110011011010110000001001100100000101100101010100001000011101100010100110000110011011010101010111011000001100111111100000001100110010000101111111101011111100101101101111000111101101011011000100011000000000010101100011011001101110111101010101010111110011001101101001111110000010010000000111001101010001011001100100000100010011001100111001110001110101010101010011111001101011101101000100111010001000011111111101100101101011111010111001110111100000010110111000111110001000001111110110011010000011111110101101100001011101011011010110110100111010110001010011101100000001100010001011000011010011111100111100100011011100011000010011110011100100011010011011100111010100000111001110110101001010011101110010100000001101011110000000001000001110111001111111000101011110100010110101101000001000010010100000000110011111011101111101001101000000100101001110110010101011101100111101101000110110100011110111011000101000101000101110101110011011000001100111001010101111111011101000111111100000010011011011001011001011100110111111101001011100011000011010111110111000111000000110010111000111101011100100100001001100111011111001101010101110010110110000001100000111011101110100000010011010010001011011010111000101110000010010001110100000101111011111010111111101010111001011111010000100101110111110111111011111111111011011011100101111001110000101001001011100001101001100101000010010101010010010111101001101110001010101010110110000001000100010100101000001010110011111111000000101110000010000110001000100011010010111011111001101011100101110011110001000011001010010001011110100111101011110001100001001111010101000010011011110111010101001111110110011100110110110111000010010100011011000110111011010111101100111101111110101010111000111001000100001010000000000000010110001001001010001011011110110111101011011001111111001100100111011111100011000011101010000100110101010111111011001010000000011011101001000011100000010000010011100100010100011010111110000001011100010000000111011011000011010111011001111100101101101111111001000001000111001001111011000111010100110100010011000001001101010111111001100010100110111100101000110110011011001110011001010111000101001111001001011000111100110110010011011101100110000000110110000000010111111001000000110000011011100001010010101110010101101110010110010001111011000100100111010110000100100000110111101101100010011000101100000100111111101111001011011110000011001010010001000000101101001010110111011001110000010001101011111101110100011000010010011100111101110010111010010110010001100011101010010001100110011011101001100100111011010111100000111100010100011110011001001010011110000011011101010111010000000001101101001011110001101111001111110001111011101110010000010010000111000111110100000111000010001000110011000101010010110000111100101000001010011111001000110100001010001110101010111011001001110110010010000100100011111010010100000100001111111110111000111001111000111111111011011001011110000110100101010110001111000111000111011000010110101101101011001100000111010101000000100001100111001100010010001100101100001100010001010000110000100101000010010101010000110100010010101101000101110011011011100010110011010100010101100000001110011110111111011100000101010110011000101110010101011011101011110100001010111111001110010101000001001101000000010001110011111101011100101001110010001110111010010100011101110100100101001011100110100011110011100011001010100010100110100001000101100010100011011001011011101101110011010010111100000111100001111000101010000111011111100101100101000110110010000011001010110010111100101010101111111110011001111000111010010010011110010110100000111010000010001000100110011110111011100000100001100010001001011011000010110001000111111001011001000000010011111010111010001111100111100111111000011110000110111001000010000010101000111111110111110001100011000010001110011110001010101011001010111100111001101101010100100111111111100100101001010100001110011110000001110010111100010010101100111101100111111111011110111100001010001010111101100101001100110011111111111001100100011001100011001000011101010011100000110011010010110011101000001101001010010000010101010110101110111001111001111001101000100110001001000000100100101001110100110111010110111100000000000010100011111011101110010111011101011010001100011110110101110111011010001000110110101011110101011000110110010010111011001010101010001011101010010011001111010001111101011101001001101110010101000001000000100110100110011101011100100110100000111010000000001000010000110000001111100010110000101001100100011010111111110101000101010100001110111000000111000001111011100100111001011110100000011101100101010001110110101001010100110100100001000110110001010010100001011110001000011001011001010001110101101110000110110011111010100101010001111011101011111101110110111110001111010101001001010000111001110000110110011110110000101000000001001011001101111110111001001010111001010001010010011011101110011011100110011110101010110001110101011010100011001100011100100110000100010000001000100101110110101010001101001101110111111010100010010100010100010000001101100001001111101110011100000011010010110101100000001100101011010101100010010101110101101001001011011100111011100110101101101111101010001001010001100010110011010101010111110111110111001000111010000110011100001000001110100100001101110000001001010010001010101001110101110011000110010110010101011010000001101111101011111101101000101000010100101110011001111100000010000011001010101001110101110100100001101010111001111000000110100110111011111111010100101110001000111000110001011101110001011000001111001101101100111010001010011001010010111101111110101011101101010101010110000010100011110001011100110101111001110011010010000001011011101000011111011101101001111001100000000000010000111000000100101010011000001010111001110111011011011001101110100000010000100010011010001111011001100111010001101010000111000100000010011110011001110100101101101000000110111101010001110100110001101101110101101001011111000000000011011100100010110011101010110000110000001101010001000010110110100101111001101111011101101011110111001100111001111010010000111100010100000011001011000001111000100101000011010001100011011000110001011010111011010110100000011010001110101001000011000001111100000011000010111100010000010110010111000101001100010011011000100010110011000001010100110101000001100010010110011110111000111111111111001000101101001010101101011011010001100010110111010010100000001101101000011000010111001100001011100000101000111010010001111110100001011100011010011000011110000111100100111111001011000100101011101101110011011110111101010111000100010101001010111011001000110010010110011001000000000111001001110101001100110111110000101001100011010111000100001010111110101000010010001111011100010000111100001101010110011100111101010000011101100111100000000101101110010111000001010111101110011011001110011101101000001110010100101010011100110001110110010110001000111110010110110101011011010111101000110111100110011110010011100101001110110110000100110101101001011100000011111011010111001100110110100110101000011010000010100110101101000000011100011001111100010010011110111011110000000111100100010111101101101001110111010001011111011101100110111010100110001101010111101001000000111111011100010111110111001110000011010110000111101011110000100010010100101100011100000011100111001100010111101010100110000101100010101101010001001000111110110011000010111001100101100011111011010011110110100000110111010011101101110000000111100000011110110010101101100000001101110101010010110111001101110001111100100111100101100010110110001111101101010001001100001101001101010110001101000111110010110110001110110010011000100010110011111100000011100011001111101000001000111111110110110110011111101000010101100101110000011101100101001010011101111001010111010001000000000101110110000110100100010011001001101011101101011000010001011101101101111100100001001111011010010000011000010011011011001101011111010101011110000001110100001110010011111010010110001001011100000001101010000100001011010011010111000010110110101010100111010011110000000010011001001110000100001011001011011101101111010000110110001001000101100000011111010100100111111111100011000010100001101000010100000101101110100101011010010000010000100001110011011101111010101000101000010101010010001001101110001000110110010010101100111100110000110000011010101011000110000000010101110110101100110111000010111101111001000110011010001101111011111111110010111111010000000110000111000000111110101001000110100101011010000000011010110001110011011010001000111110101011011111000110111100111010111011000110111111000011110111100101000000101100101011011000000001001111001111000001001101100100101010110001110110001000000101001010111111000110000001000010110101101110011011110001011111000010001101111100110110010011001111111100010001111010111011111000010010001101100100000101100001010001100010101000000101101111110011110110000101111111100111011101100000010110101101111001000011111100011001111011100111011100111101100100001011010001100110000000110000100101100110011111010001100010101011101101110000101010001100110100010111110110000010000100010100000101110110110010010111101010110010111001000000011001111110000101100100000111100111110010010110100111101000001011011010000101011111000100010110011010011011111000001100100011010101000101000001000101011110000000000110001110111110100101110101110011100000101101100101010011101100001011111001111001111101010011110110101000101000100000110010001111001000010000001110100100100110111010111111111111100100000001111110010111111111000000111111001001101101111101110101000010110101011100000011000011010110011101011010010011100110011010110011001010101010100001110110011100110111001110100111001001000001100001001110110110010101110111000010100110110111011100011001011010111110110010011111000100000000000010011010101001011100101110110001010111110111010001110010100110100000110010100000111101111100001001001110111100010001000110100001010001010110000010110101101010101101110010100010101010110101000111100101100011001011100101101010001011100100000010100111011110001111111100111111110001111101001111110000000111010100000110011000110100011100000001000100000000010111011000011101000001111101101101001001011111001000010110011011011000111001001000110100111101001000000001011010010011100011101100100001011110100011010011010001111010110010001110000111000001110101110001011101111000110010011001111100111110101001111100010101001000011101011010101100111110000111111010010011000001111101011000110110101111010101000100000011111001110000000001100011110101111000101001010101110111110101000110110100110111000000011100111011101100011101000100100111001111011101101100001100111000001101001111000101101100000111000110110000000000001001110100111000000010100100110000001000111100001100000101101000010110001010101011110010000110100100000011111001001001110010100010010001100111011001010011101100101101110110000010000001010001000110001101101111000010100111010000111101011011010011011001110100011011100100011100011001000110101010000000001000011011111010000011100011010100011101011000010011110101100001111011101110000111001001000001101011010010000001010010111110001100010010100111111011001111111011101110001110000110001011110100110001101111010110101111101101110010001100111000001111111001110101101010010001100010011000111101011111010100011110100100110001101111111001010001100001111001001101111100011001111101011110011100100011101111100110001001011110110100100010001101111101101000010010111111010100001001010010001001111011101000000110011110110000010111100000110110111001100000111010110101100000101111111100011010001001010011110000001101000000010101010111111000000110111101101011000111001111100010100111001001100011011110011110111100110010010100101011011111001110111000011110001010100011001010101000010100100110100111100000000101110111000001011110000011100010011011110001001010000101100010111001000110110100001001001001000111100110110100010000100000000001011000010111110110000110001100111000111100000011100110101000001101110111101111111001000000000000101011000011110100100000001110000001100001001010001110100010000001110101110001011000100111001000101000100101010011101000000001001100100110000111010000111010100101010011100010100000101110110000110010001100100111011110100111011111111010111101101110000110001010100101001000111011111011110000100001110000001010011110101001100100001111011001011110000100110001100101001010011001000111000111001100111000100000011010011100100010100100110001001101100010010110100111001110011111110101001100100101011001110010001001101000000111001000011000101100001010011111010111100010110011100010100111001000000111101011100101001000000100100010111110010010110000100100110110111001001010000010000101010100100100000100111000000010011011001010000101011000111111100011110011011101010011110000111000101101111010011110100011011010110100100100110011101110110110011000001001001110101111011010110000011000001011100010110111100001111000010111111100010101001000010101110110000100100011001000110011111011010000000001010100101110110000110100101110010101100100111000110101000101001111111011101000101101101100011101011101011001011010101001110010110011011100100111100100010100000101000110101111101101101101011010010101101100110101011010111110101100111101100001101110000110101100110101001010001101111000110111001011011000011111111010001101101101110001111100011000100110011001010111100001000001100100001000010101011011100001011110011100101101001100111011101000110110110001010101000001101010011110010011100011100011011110101100111011111101111000101100000001001111110101100011001011000111001100011111111111100011011110010111011011100111000100100001010100000101100011110001111110100100001011000110101011111011001001101000100110001101100111011101111101101001001100100110000001110001100000100101001110000001010110010001000110011010100011101100011000010111100001001101111000111001110110011011000111001111011110100011100000101011000010111110111001111100001111011001011010011001111001001111100011101110101100110101111000100101000110101100000000101111001010100111111110011101111011000111001000010111011011100001110000111000110001101001001011111110111001101001010100101011111111111000001111000000001111101001101100001000110000111000010000101001110110000011001110011101101110100100111110000010100101100000010011111110000011001110011010101010111110001110011011100100001001011010111101001010010000111110000111011001111101111001001000100100010100101101001100010101010000000111100101110111101100101011010000101100000110000011000001011110111101100110010000101100111011001111001001000111000101000111000100000110100000001110010010111101110111111110001101011111001110101110110000010011110101001000110011100110011100000000101001100011000101110011011110010001011111100010110011101101111101000011000011011100010111101001001101011011100000010111101010001111100011001101111001111101000100110010110101011001110111101001101110100011011000000110000100110111110010010111110010010110010010101010100110111111101111000110111000000110101000100110110000001001011111100000101111010001000001000011101000111011001001111110111101111100101011001011010001000001110001011010010011000110110001011100000010011101110110001001000001010010111011111100000010000101100001010010011110100110010100111111111001000010000000111101101111110011110001110101111010110010001001010110010011001000010000001100111101101100010111101111111010100001100001111101000001101011111111000110100110110000000111111010010000001111101011000011010010010111000100101011011011100110111110001000010101001001011001101000100010001001010010101001001011101101110001111001011101100111100001001000010010010000100100011101111110100011010001110011100011000101111100000011110010111000111101000011111011001010111010011001111110101000000010110011010001100010010000011000000000110100100101000011111111011011010110110011010010001000110100001101110000110011010110101111001000000111100111101111011101110011111100010010111010111001110000010001011110010110010000000010001011011111001000011010101100000001010101110100001110011100110101110101101100011011100100010101000101010110111111011110001110000011001101110000011001000010000000111011100000100001000111001110110000110001010011011011100011101010100011010011111010100111110001010010001010010111101111110000010101011110110000111010001110000001001000001011010010101101010110111100100110100100100100110100101000011111000010101101000000101001000110111000101000011001011100000111010011001001110010110100111110110110000001100111101111001101111010010011010000100110111111011010100101100000100100000101100000101010001110010111100000000010101000011000100000010111110010001010001100111011110100100010100111101111100111010001010111100101100001010000011010111110101001001011101110100100010011111010000111110100010001010000011111011010010110100001010001001100010100110100000001110011100011011001000101011011011101000000011011010001010001001011100111000111110100110101010000101011101000010001100111111011001111111010100111011001011110101110011001010010010101011100001101001001011001110000001000010101101101010101111101001110100011111110111100000111100011100111101010101111011011010010011100111100000000010100001101100110110101100100001000001110000001111111011010011101001111001100110111011000100010100101000100101101111001000100111100010011110111010001110110001100000011100110101111101101111011010101000011000111110100000111001100101001010100101100111111000001111011110101100010101100100001100100110110110111110001000000010011001010000001110001101111100110110111010110110111011110111111000011101110100101000110011011101100000100110110010000101110111000110100111000100001110100100001001110011110111000011111111110101111000010111010000101111010010110000111010000111100101110000111010110110110111000110011110000101101000101000110111011111011100111101111110011011001111101001010010001001110100111110101000111111010000011000110000100110111011110000110011100111101100111000110010100110100100101010111011101001001100010001110011100100111111111100000000101010001100110111101000111011100010111110000000101010000010001111100000001100010100011100110111011010100011111111110011110010111111101100000011001000000011000101111110010010001000001110101010000000101001010001100001101000100011110111101100100110011100000100100101111101110010110100011100101101100101101000011001000110010111001010010111101001000101000011110000011111100110110100000011000111011000000111010101011111000110010010011101100110001010001010101101011101011011110011000000111000101100101110100000101111101100110000010110010100101101001110100111110010010111001110100010100010111011111001101000100101111100011001010100101000010010011010000011010011100010011101000101010110000111111010100011101000000101011011110001111100011001101010100111000000000011010110000011110100100011111011101001010001110111000100110101110110010111111101000010000101100010101010101010001000100001110100100100101110111101001001100110101011111101001010011101010111100110011101111111101100110111101000101100100110111010101010101001110110110100001111011110010010001101010100001111010110110111010000000010110011001110110101000001100111000111001101111000000101001100010001001010100001010100100010110111010101101111101010001100010010010100101011101101010110000001000100010101100101111101010110000011111110011010110110101100001010000110011100101100010001010100111100100101100111000011011111101010011100001101101111100111111101100001000011000000011011110101110111011001000111110110011101010010001111010011101010100100100000110101100101011100110001001000110000000110110011000100011100010110110011101100011000000110000011101100100000000100101011001101010000011101110110000001000001010111000110010101001101011000111100111100011001011010111100110110011111100010101100100110111010000101100000100101100100100000100111110110101011101100001110010011111101101100011001110100101110011100011110010111100100000001000011111110100111010010100111100110101000110100011000100000010101011100110100001101010100111101110010010001100100110010011100011101101011010111001111101000100110000011111010010101111011011010001001110001100011011101111111111001110001101110011010010001001000101111101111101100101011110101100010100110101110010010101010000010101111001110110000100010110011001010101100001101101110111101000101111001100101010011100100110101001111010001000000111000111101001001010111101000010010001001001010110100011000011101000010010001110001110000000101011111001010001100110010011010100011000100100011110110101010011111111110100000110110111100110001001111111100011000010011111000010110101000101010110001111111111000110100111111011001001101101100000100110101011110010111010101111111010010101100000110100000101111101111101110101001101100100101011101011011001110000011111000100111001010110011101011100011000111100000110001110000100011010011100100111000110110001111011101000111010101111101011011100100010001010011100111010010100100011010001001001000100111111110101010000100111011100001111100001001101000011000011101110110100001101101011011010110100101011011001001011111100011100001010010000001011100101111100110100110110010100010000011000111011101001101000000000010001000011010000001111101001011110000010111110010111110110010111101101011101101011111111011010001000001100000101110100001001010000110001010101110100010100110111100001110110111111100100010011001010110001011011011001101111110111011001110111001100001000101101000101101011000101011111000101101010001001111111101001010101001100111110111110111101000000001001100011110101110111101101110001010100011111001011000101000011100011010110000010001100101101010011100111100000101110100011111110011001110011111011001011101010000010000011001011010010000110011001101001111001110000001100001000010111010111110101001100011100011110001010110011001111000111010011000100101111101010011001010010001101001001101101011110010011001000111111101001101000010010100010111111111011000110010101100110110100001010001110101010111010101110000010010101101001011110010100101110010111111010110101000011101011101011111010100010010101010100001110101110011011000101111000001100110100100111110101011100010011101010110100110010001001101100011000001000000010001111111001000110111000110101110011110100010111001011000010010110111010000100111011001110011110110101001011000011000010010010110110111010001011011100010100111100101101010101011111000001110001001010101101100110100011000001110101000101101100011001111010011110010011101011100101000000110010100111110011110000111110111110100101111001100001000100010011000100001001001110010011001111001101110101011100001101000011111110010011011011001001000110110111000000011110010100111011010111001111000000000101000010100110100111011100011100010100110000100011100001111111000010100001010010011101110111011011100100110100101010110101110111111110101110010001001001000111111001111111001000000010100010100000011001100001001001010011111101111010100110001001010111001000001100010100111101000010111000111000001001100111100000001010001011111001111001110000011101010100101110000001110010010111100100001100001100011000010000110001011001011110010100110101110110001100100101011101001101010111101010000000010100000111110000100111111011011110111000001011101111011101101101101111100101001100001001110001011011101010001110010001110000110101110100000111101010110010101110100111110010010110010001110010011010101111011010000010000000010001010110001100000001111001110001111011110001000010100101100011011010110110011100000011101101010000011001001001101110000111001001101001100011110110000001111100111110000101010101011100101010010100100101100000110101111101100001001011000101110110100010011100100110100010111100100010010111010000000100001110000111001101000100010100111000111011111101101000010011001111110110011001000110010011111101011111000111110100000101011111100111111011111100000001110110100101101100100110111010000111000111110000100010110101001001100110111100101111111000101001011010101100101011100110011101010001000110010001010100010011001110011011111100111001011000010111110000110111111001100010001100101100011011101000010011001101010010100111100000110001111001100100111000110110011100010011001010101010110100011100000011000101111101101000011111011010001101001011001100110101000111111111001001000100100001111101001000000010111111000111011101101011101010101000110100101101011100100001011101101010100100111100010100001100011010111010111111010101111010010100110001111010100000111111110110110101111110100101100000101111010010001110100001000111000100010101101110101011100010001101110000011011010001010110111010110011000001011101011101000000011110011110010111110111010101101001011111110111101111100101100011110101111111101000101110011111010100100001100100011110101110011100011110111001101010110000101000101011100101111011001100110111111011000100010011111101100100011011111000000101111011000001000001111111100101111001000011100001110010100010110101101101111010011011111000011111011100101001101111101101110000001001010111000101011001011101111111101100100100001110110100101000001010101000000110000000011001001010100101000011100101010111110110111100100101111111100010100000100001000000101001110011100000101111100011111101110010110100100110001101011111000011011111100111111100100110010100111000010001111000000110001010111101110111011100010101010010100110000100011011101100101110110100000110111001010011011100111101100111111000000111010000100101010100101010001010011100000110110110010010011011101101110110111001100000010011001001010101110001100001101110101110011001111000110001110101110010110011000011101000100011000011011101000011110110000011101001101110011100100001101011101101110010010010000101000011100100010000001010010001011111110011010000010011011011110011011010100111101110001111011101000010000101110001111100010111101010110110010111100010000100010010011001001100001111101101111100000010000110000001001110100010000111010011111010100001110101101011011011011100010111010001101001001101111000011110000010111101110000001010101010001010000111111101100011110111000001100011001000101100101001101100100111111011100001101111011000001111000111000110101011111010010001010010101001100011010010110111111001000110100010101110001101110010000011100101000011101111101110100011110110111110101110000100010100000000000000111000110001111111100000100101010111100010101010001101001110100101111100100011001100101111000011001001010111110000011001000010001101001011001111111100100001101011100100101000011101011101001010000010110110011111001100000111001111101000000100101101010101010111110111100010111001010011000100100000100000001011101010110000000110111111111010101110010001011011101010010111110110010010011100011100110011111100110110100111010010010001111001001010111110110110111011011010000001011100011100100111100110010110101000101110100111000011011110001110100110000101001111010010000000010001001110110100010011110011100110100101011100100101000011010000001001010010110100010010000011110111111101000100110010100111110100101100100100001011101001000010001111100100000011100110111100011101100101000000110111001000101110100111010001110111111010110100101101110100000110101100011100010010101010010101100110001100100110001100101001100001010100111011100001111111000011010011010011001100011111010000100110101100100000100010010011100110100010100101001000100010101100110111101111101111000010001001011101011000001100101010100011000010101010101111110101000101000000110100111001101001010111110000110010111110111010010000100111000111010000111000111110101010000101011110011111110010001100111001010110111000011011001000001101010110010000000011001101101111101011000100111010101011011001100101110011000001010110000001100010111111001101110101011000100100111001100010001110111010011101100011111000110111010000001111100001011101100010001110011001000101100110101100010101010011010010110100110010111001000100111000110101111101111111110000001000110111000010100000010100001011111000101111010011100011000110010100110010000100100000001011100111111110010100101111000001010111011101110100101100110001001100001010010001011001011010111000011011111011001011111010011111011001001110110011010000000110011110101010111110001011100110010101001100001100101011111101011100110011111100000101001110110111101100010111011100011011011011011011010101001110110101101001000101101000100001000100111100000101110010011001110111000100000000000011110101101010000110011101011111000000011111010000101011011111101110100110001000000011111011011001111110001100011110010110000010110011001110110001101110111011110010010011000101111000011001010101011110100011010110011101111000001011010100111001000001011110010110110110010111101011001111110101100000001101010001000101010101011001100100001010111010110111000010110101111101011111010101011110011101000011010000101100101110010100110011100111100100011011110001111111011010100001110000101100011111010010111000000011110001100100111001111001000000010010100101110011001000100010000111100000001010101010100111110110010111100011111000000010001100111000000011111010101001101000000110100111000111101111001111110010110101100111011001001100110010000000101010111011111111101010000011111010000011101011100111101110100010100001000101101100111101111100001001100001111000001101111011000100111010010111100011011011011101010010100110011111000101111101001100010100011000001001010101011111100101001011010001010010101110000000011100011111100011100000001100010000001110001101001110110110110110110000101111110001110110001101000001011100100110011000100100001010111010010000011110100001111111010100001100001101011100001001101111001101101001110101110001001101110001111100010001011100110100101010001100101010111111011011011110111001000010101011111100111110011011001010110011001110001101110000010010000000110110000100010001010111110100010010011001100000010110101111010011000010010111001111100011001000000100110000011011001001110101111111011101000010000101101000101001010101011100110000011010001010000011110010110001110100100100000001000110010111001011111011100000010100000110000001010100010000110010010110110111011100010111100101100001010111011111111111111110000000011100101010100001011001000101011111100101000101000111101001000001001110110110011011110111110101101000101001010110001110111110000000000101111010001100010111100111000000110000011110110001001010010010110100011011101000010001111001111111011101010100001100000101110101010000100010010100001000001000000001111100011011010100100001010001011101010001100100010101001100101111100010110011000110110110111110001010101101010110101101001010101001110011110110110100110010111110000000011100111001100011111001100111100110010010000001011000101011101000000100101100000110101110000011000010000100110010100001000001001010110010001111001111101100100110111001010001101010111100010001111000011001100110110010110111010101100110100111111100111100111001000101110100101011100110010111000001101001001000000001011100110000000111100010101000011001001111110010101100000010101100100011010000011110110111000000010100011101100000001000100010100100010101000001000101010101101100011000101011100111110010000111000111011001010101000101111111100001011000110011011010001011010010010000010111101010110010110101011001011110111011100111000100010111100110000010100010101101011010010000110010111110111110010011011110110000000100111111110101100101011111001100010011111101110000001001011101111000101111011101011011110111001000100101011011000000001100010111100000100010100000111011011000111111101011000000000110001011011011001000101101100010000111110011101100111101111101000100000000010000000011110110000111100101111000001111011010101000101110001101010111000101000111001100101100110011101111101000001111010001111101000010001111100011010101111110000110001111010011111000010011001000011000111000100110111001000110101101010000010101011001000001101010101010101010010010100010001111000000110000010001101011100110010100100110001010110100010001011010110100110011101010001001010111001100000001110010001111001100100100101011001100101111010101101010101110010000000011010101010000010001101100111101101111000110110010001101100010110101000110011110100101100101011111101100100010000011010001100010001111111111011100001011011111101011000110001001010000111111011001001110000111001010111110111111111101101010100100100100111000101001111010010010010111111111101011111011101000110111001111101011111111100001101111011101001110011001110101000111010110111100010111000110001011000100010101110001010111100110011001111000101100011111011110110010110101001011100110000001110000010010001001100011111011111110001010001110010011110110011001000101101101101101000001111111000010101001001100100101110001010101011101110011010001011111100100001010001001100111000100100010100000111100011001101011011101100001001010100000011011110001101011010010111100000011000011010101111111011001010000101001001000001101000000110101110000001000100000011011111111010001111110110000010001101011000100010100011011001010000011100101101111101001111111010001011000001000010110000010100110001100001001111101010000010100010000111001000011010001011110010011011100001110111011101111000101000110001010110101111000011010001001011110111111010111110110011111111010101101100011101011010110101110101010000100000110100001110001000100100011010111010010010111000100100011111101111111110101010111011001010111010011010111010101110111100100101110011010000000011000110000010011100111011110010001110001111111110101010101001100100010010100110111000111110100001010000010110111011100000001110001010110100011101001111111011111011100001011101100001110110101011110001001011001011111101111101101011010110111111111001000111011100101000111010010101001000011011111000001100101010101011001010011111110010110110110001100001011011000100001110100110101011010010000001100010011010010001101100101000100110000111001110110101101110001101011100110000001100110010000000011000000111111111110110100001001100000000010001101010011011001010001011000010011110011001000000101101101011011111111101111001011110111101110001001000110010111000010000101101010111011000110011101010000010001011001101000111111100110101010011001100010100000101000001000000101010011100000001010000000111100010001101010111001100100110000011001010001100100011010101011011101010111001001001011111011010001110111000111001010100110011110001110101010101011111111100000000000110010100010101101111000100001011001000001011110000111100000011101010011011010111000110001010001001001011010110111100011100100111111100100111001001100100010100110000101111100111111000011001001001100100100110001010111001101111001100000101010010101100110110101111111111011101001110100010011100000101110111110100000110110100101010110010011110000001011000101100000011111110000101101110101101111010110011110100101011111010000101110000000011001101100101001110111100010110000010011111011111111110010011101100011101101100001110111010100011110011111001101001101000100111010100000000101001010110001111000101011101001100101110110111010010011000101100001111100010100101100001001100100001111001111111110011010110010111110011101011111100010100011110010010110011001100111000100111110011011111000001001110001000100000100011101011100001000001010000000011110000000000001010101101010101011111010101100011001101111000100001011011101010100010100100101010001011010101001010111111110111001101101101100000010101000101101100010011111000011111000100000111110101111011011011001101101111000100001111000111001100110011011110010110100000110100100100110111110101010000100111111101110100111000010010001101011001110111010010111011110001000001110010100111001100001111110000111010000010001001001111001010010011001111100100110011111110000110101000101111110010101110101111011011110011100010100100101110111110101111000011000111101111111010000000001100010000100110111101100000101101010001110001100010011111101101101111110100111101011010010111110010111101100100100100101010010100100111010101101000011010110101110001000000000101001111110000110010111110001000011100001111011111110111011010100001101000110001010001101101111010000001011110101110101001010110111001011000110110101111100001100100000111101000010001101111101000000000100011110000000101000001111001111101010010001100001000001101111011110100001110011001011001101100111100001100101100001011001111110101101011001111100011101111001001010100010111010100110001000101011001111111001111100110010111011110101111101001000110010111010011001001100000010000110000001000110011110011011000101000110110011111011000001001010111010000111110001010010011011001111111111110111100111100001110100010111011001000110111110110001011101001001110000011110011100000110010110110100000001100111010101010100000101111001111100001010111100001100101100110000110111000100000100111010110001101110010000101010011001111000010100110111111110110100101001010100000110101010111011111000101101101000000011110111001100101111111010101111101111101111010111111011011000011001100010110110001011010100111010010001011001100101010010011000011010000011110110111100111111111000001000110100111000000011100100000000100110111001101011000101010010101000101110111101001110100101110110001001001010000110011100101001001011001110111010100001110010111001011111100011010111001110111001110011110011111100001000101000010111001100011011000101100000010110000110010101101111110111001100001100101100100110011110011101001000000111010110000111010110000110111010100001111100000000101000010111011110000010001010000111011110001101000001010101011111010000001001001110010011110110111111101101001011110101011000001111001100010110110100110110100110111011000100110100011011000101111000011010101010101000001001100111110010111111010101111110110000010100111100101111100100100001000010110000011100101110111111101001100000001100111000011001000010011000111011101100000010001100011000110111011100011010111110000011000111101000011111111111100011100001000111001101111010100011000010110111011111101010011111010100101101010001011011011001110000111011000001100001101110110111111111110011011101010011110111010110101010000010110111010111110001001011111110100001001110001000000000100111011111111011011001101111011111000110011001000110101101100100000001110001101001000101110111110010000100100000101100111000000101011101100011010001100001001001110011100111011111101110100001101100011101110001100110000110110001101100100110101110001011001101110101110100011101110100000110011001011010101110010100110011000011110111100110001011100010101110101000100110011100101011111101011010111100110010011110010101011111001011101100101011110101010010001000101010010001101011111011111010111001010001110011100101101100101000110100111111110101111001111011011111101111100010100010000110001100111011100011000101100111001100011000000110010100100001001001011101011100101000110000010010000000110101100111001110100000000101111011110000011100110010010100000001001000101110100100101011100110011101000011010011001111011100000100000011100101010000110111010010101111001001100000101011101100101010011011000101110001110000000001100110111010110101110101011111011001110111111101100010111000110101101101000110011010111100110110101101110000111010101000011111111000100101010001100110100111000110100001000000101001110010110000011100000111111001110101010100001011001110110011011100100111010010011010000100110000100001100000110001101101011000101110110010001111111101111100000001001100011111111100111000110011111010000010100000100110101011111001000011101000000011111100011100111101001011100001110001110000010100011011000101010110011001110101010110111010100010011011101001100111000101110111111100001010111100000000111101011111100111001100111001001010101010011010111111000001011001110001001100001100011111101011011101010001001111000001111101101001001010011001101100000001110010100010100001010101000000011010011001001010110110010001000010111010101100110000011001010111100101101100001100010010001111000111000110011010100110111011100100101111110010101010011000101111110011110100010110011111000010101111010011011100000111000100111011011110011011111001100111111100101001001010101111011001100001101011110110110000100101001000000100100101110101110111011101101001000101011110101101110000000111100011100101101101010100100101101110110101000110010000010000001111000100000100101100000001111110001001100010010100101011010101000101101111110111111111110001110110001011101101101001001000110000111010001010010111011101111111111001101100000001111010100011101101101001011111010011000111110110100000110000101001011101011100100000100100110000111000000000110001010101001000100111111101011011100110110100000000011111110101001110111000010000000110110001010110101110101100011011000111010111001011101010100101101011010000000101110101011110111001001011101001000101000001111110100000010100010011111100011011000000001010111100111000111100000010010101111101010010100001110111000000100010110011001001001010011000100100111011011101000100100110010111110101011110011110011100000000001110100100110000000110000100010001001011101010010010000111011110000101111110000100011010111010010001110000101110101100101010110100110111111011010000101010000011110100011100010001100100110010110111000011101111111111000111101010011110001000000101000110010111011010111100010001110010101011011001111111010001010001011101110010001101101110111101110010100110100110011010000101101111111000101001010100011111001000100011100000001101100001001010001110001010000001111111101101110000011100110100100100000001011110001100110111001010110111011111011001010111011111111000101011001000100100001110100000101011111111010010011000001010010001100000110011101111011001100011111011000111100111110010100001110001011100111011010110010101000011111110001011001010101000011100001101011000100000111100001110111011100000111101010001100110110001111100001110101101000101010001001111001001000011110011010010000000001110000000000011101110111011100000010010111000111111001111000000011010101101110110000101010100110010101101001001010011111011011001001100000110111010000011010100101111010010010000110011111111111100110010001000101001100011010101101000010110001100011100011000110100100000010000110110001010101111001011011101111100010001011001010100100000111010100110010000111110000111111111101101100110110100000000101010101000011000111000100101001000001100110000100000101111111010101110100011010111011111110000010110000010110010010000010000110101111111110001100011000001001110100001100011111011100101001000111011010010000010001111100100000100011011010101010000101001111010000010011001100011010111010110000110000001000110101011001010010010111011110010011111110000110111110010000100110100111001110010110110011011110000100110011111111100011110001011111010000110101011001111010011111100110110001100100010110110100110110110101111000000011101101001000000110011010010100000110111010111101111100100110111111011010001110100011011010110010010101011011110100111000010010110001111101110111110001010011100101110101101100000011011100010001001011101010000011111100111000111100100101001000011001010001000000010001010101111001010011001100000011010001011011100010010000110010100111011111011110100100100011000000001000000010100000000010010111111001001110100011110011000000101100010000000000000010011101111101011000011001011011111100100110000111010110000100010100011010010001011110110011110100011010111111100110110111101100100001110000001110101100011101010000101001001100011100100000101010010000010101100010000110001100000011010000011111011000010000011010110100101110101110100011000000110110111100100011001010000111011011100001110001100101010011101000100011100110011110110111111001111000001011001000000110111111100010100011101010101111000010100111010010001011001000110001100111110100101011100100100000010011100110100101011111110100001110011100111000111100010101101101001100000100011110000001100101010101000101011000111111000100000101001101011011110100111010010010000110100011010000101111110111011111011001101111101001110001010011001110110100110011111000011011011100000110011111110000001010011101111111101110110100100011101010011110000010100111001101101111000110110011100011111111100110011110100100011111011111111100000011010000000111011011011001110110101111101000011100100000001111010011001000000111000000101111110000110110000001101110100001010101101000100100000011111011011000011110100100100001110010100000111000011111100101100111110000111011010100101110010010010101110110101010111000010001000100010010101101000111001000010001101110010111001100000011110001101000010000100111101111000011110000010001001110110110101011111101001000011111001010010011001001000111100011001000001011011110011110011001010100011000100110010011101101111111100000011100100001111100000100111011110111001101100111001101001111000010110001010001100111110100101110110110001101001010010111000101011110010100101010101111111010111000100100000111101000010011110001100000010011001111010111111100010011010011011101010101110010000110111110101110001010010010111111100100110110001000111111111111001111101011010101101000100010011111111001111100110101101100100101011000001000100001010100011111110110101011010001001001010001000111000010000000101100101100011000010000001100111000011101011001100010010011001100001101110111111000101010100010001100111110001011101111100010001101010001011100111011000010111111110001111010011000101101011101000111000111010101100111011000000010110001101111101111110001111000001111001111001100001110000111001001101111111011111111011011100011001110001100000011110110011001001011100010001111011011010010101101100010000100111010000101100000000100010100001100100011101110110011100001100010011001000001010001001100100111101001110000010111000100010001011011101111011101111101110111001110110010000101010011100000101110011000011011010101000101011101000010000001011001110011100011101101001001011101101101011010001101011101111100111111111101000001010001000100100001010100000101111100111011111110010110001010000000101100100001011100000000001011001101011100001101001100011101110000101010010111100000100111101110100101100001111110100101010000110110111100101101101001000111101001100101010111011011100010010111000100011011011010010101101101100011111011100011011101010000101110011111101100011101011101111000100110000011100011110010111010011011101111110111110011010010000110000101000001111001011100001000011001001110101100010010001111101110100001101110111111110111010101010101100110000111010100100000110111101000111110100100101111001000010110100101111001101001111011110011101011000000101011010110101101000110000011100100001111100110101100111111111010001010110001100010100100001100000111011110010001001000100000110101111101000110110001000111100100000111101100100110000000110100101001110111001010001100100111000000110001110111000011000011111001000001101110001100110010010100111001101111000000110001100011100001010001110011001010101111000110110100100110101100000101101010110000011101010110001111000011100011011000101100111110101101111000111010100100000010001001000001111010000000101001001110010010111111111111000000101111111011111111001001110001110001010101100000110011001100111010011101000111000001010011010100011010000011001110110100000111010001110000100010010000101010011100100100111000000011010110100101111001111000111111010100110010011010100100111100111111101101001001110100000010101001001110110110000001101000000011000001100111100010010000111111001111111111111100011111011011001111101000010011100101010001110000110010110010010101101001011111001001010101101100101000000010011101000011000011101100000011110101101101000110000011100001110011100101000111100110110001101110010100100110101101000011101001001000110101000010011111110000000111101000100101100100001101001010110111001000001011001000010000010100110100010111011001110100100001001101001010100011010100000011100111110000000101111011100000011000010111110011110101010100010010000101000010110111111111001010000100100010100100011010000111101111111010000110110101110000000111111111011010011101101011001101010001010011110100001100001000010101100001111001111101001101001101001011111001101101100000100010000111001001111010100111001000011101111100011111110010101101011001001001100111100001010101100011101001001110011000001101100111010000011110000001100000001100001100100010111000111000000100011101011111000000101110111111100111110010011101001111100111011011010011111111001111101011001011111111100001101000010000001000110011001001000011111111111101110100111000100011011111100110010100010101100011101101110111010000011100100001000110110110110011110110111110101010000001010111100101010011110000011111100101001011110010000000101010111000000000100100111000001111111100100001100100111100111101101110110011100011010011001010011010111110100010001110100000110011110011011101010011001000111000010001010111111001101010110001011010111001110000111111001001011111100100101011001100000111111100010101100010001001100100011000001110110010100000111001001001111000110001111000010100110110011100000101100010110110001011011100000001110110001101101111011011110101011000010110010011001110010010111000100100010110011100010101111000001000101010110000111100011011001111010110110000111101101101010111101010100001010110011011001001000110010010011100100001110100010011111011010100100110000100010101010011101110111101100000001101010001100010101011000111000111111000010101001101101011110010011111001000000101100001011000010101011001100001111000111111100001111011100101001111100000110010100001101011100011101001101100010010100001000111110010011101001100000100111111001001101100101011000010010001011111011101011100010001100010001011010100001011101000101111101001101000011100110001010011111010111011111000111000111001010111000101111101100011011110100011011110101110110110000101101111100101010011000011010010000011001110101101101011011101110110100110100101011110100111100111000100110001011100101011110110110110000110000010011101100101100111111001111110010101011111110100100100011011101001010100010011000000010000110100101010100100111010110101100011001011110010100001100011111101000000101101110010010101101111001110101110000011100110101011001000110100100011111100010101110101111100010010110000110001110000101110111001001011000011111010100010010111000000001011000011100100111111100010111101110111101101010100011100010001100011110101010111110111001001101010010000110110111101110011000010101011100111001001110101001111111100000101011101010001010000110011001001110110011110100100100001010111001110110011111001000001111001001110110011100100100011110000001100010100011011101011101001001000011000011110011100011100101100111111001011111000001000101001101110011001011101101000101101010100010100011101000010110111101001000110110001110011101101110100101010100010000111111000010110001100111110000101011100101111101111100011010101110111101110000101111100000110001010011101100111110100100100010001001011110000100000111001101010011010111111011111010000101001010100001101010001100001000000011011101100101011001100110001101001001000110011111100010111000011100010001001100111100010101111101110111010011110110010110011110011001010101000001001111001011110101100001111000011010001011111010111001101101101110111011010000100100011001100001100000001000111010110011001000111011101001110101010110010111100101111111100100011100001000101010111100101110111110001101010111111000101000001011000100001000000010100000001010100111010111000101011110111011010100010110100001110010111010111101100011011110110111000010000010001111001111000010111100000110110111101111011010001100010011100001101010111001100001010111110010100000110000100110100001101100100010110001110110100001100101000000000110010010110101111111011111001100101000000000011000011001100001110100001001111100011001101001011100010000001101011001110100011100101011001101101011001111010101000110111001000001110010110111101110111000010011101111101001101000100111000111010010100111010110111011100011100000000110011011001010100100111000110100111001010110100100010011011001000000100101111000010110111000010010101011000010011101101101100000010101010111100110011110001011101110100100111101111101100011010010000111000101010101010001011010000111000100111001110011010010101111010100000110101000100011001001111001011001111100011011011111111101001111001100100001110000100000110110000101001111010101101101000000001000101011110001000100101001110000010110101101011011001010110011010111110000110101110010111100110101001011110011111100001000111100000100110000101111111110011011110110111010001010110001100100111101100111011111000000110110101011111001110110010000000011111110010110100100101110010101001011001101101110100011100111000010110110101000000101110001000010100110100110110011011010001100000010110110000001111011010101001000101100100100101111110010011101001110001001001010100111110000010011100001110011001001101000100001000011010111100000000110001011101100100010111110010000111100001001001100001110110001000000010111110011000100110111001000101100101001110010001111010100010001010100101000110100110000100000001100000001010111110111000111000000101001010011111101000101100101100001110000010111110100100000001110110100010101111011101101000000011011010001010111011110100011001110111011011010001101100111111011010111000000100110010100000000000001011110110101101111010010111101101100111001110000011100001001001011000111101010101100111100000001110011111001111100111110101001001000100010111001001100111010100011011000001010101110011011110100101011000110011110011100101101000100101101000111100010011101100111100101000000100110111100001100100101011000011011101100011101111100111111100111111111111001111110111001000000000110010001111011111111110000111111101000110010101100001001001000110100110000010111100101010111000010111111101101100100100010111110011000000011101110011110001000110111111001000111101110111110100001100100100010001100010100011110010001111010000110101010000111010100101100001101110110111110111000010000101110001111000111101101001000101001011000100111101000101110001001011101100000000011000101001111011100111111100100011101010111110100001110000001001110001001101001010110111001101010111000000101111010101111101101000110011111011101011011110110101111010110100110000010101010111100101101111110101110000100101110101001011011001100010110001100000001000000111100011011101101010000111110111001101001011111000111100011101001010010010000011000111000101111010001011101100001100001100101110001000010100111100011000011100011110001011001110101110000001011100101110111000100101000111011000100010110101010001001110110011110111110011110111001100001101001001110110111111011100000101010111001110111011110110000100011001001010010110001100010111010100010010110100000011100001110010100000100100000111111010001111000100111010011011111101100010011101011011111010000101110011001011001000010111010110100011010000000110110000111001111001011011100011101011011111100000010110010100010101100101101001011101111100011000000111011101110111000010111111010110011110100110001001100001011110011010111001100110110101011010001000111001100111001100001000100000001010000110111011101010101000101100001101000011000101100000011000001101001011110110100001001011101111010101010111010010010000111111010111100000010000100110010000011111100000110010001101011110000010011100111110000000101000111001010110011111101011010011101000001000111001000011000001101101000001111000100101101000010110011010101010011110011100001000001110111000100011010110011010010001001101000111110001001011100100010010001001101111011110010110000110010100111001110000011000111111011001010101000111111000000110010011011110110101010011010111010101010111011010110110011011010110100011000101010001000001100000011000000110100101101110011000111110101001100000111111101100011100010010100001101111110111100011010111110011110010110000010100001000101011101100111000100100101010101100111010001010001111100010011100110111001010101001010000010000000100110001111101000000011011101111101110110000101011111100000111100000100101111011110000010101101100111000011010100111100100001101010100100010010001101101000110001010011011001111001111110101001000000101111101001010101010001000100011111000000011011111101011000110001110100101110101110001010001011011000010101110010110010010000001100001100101110010111001001010101010001001111101100001001011000001010011110110000100100110011000001000011001111101100101110001111110010111010110011001111000111101011011101000001110101101010100111100101101111101000101111100100110011100001011010011001001001101101111100011101100101011100010000111101110000110011111111010010110010101000101011001001011010111111110110001110110010001001100000101101110011101000110101101001011000101000010011100110011100101110101010001010111111110000001110100100010000110100101010000001101010101101011110001010000101010110111001101000010010111100011000111111001110111001101101000111101000001000100010011011111000111011110001100101010000101000101010110000001111010000111010110010001100110001010110000110010011010110001000111011100011111011011100101100100100111011101110010011011110011110000011110101000101101011100101010101101110001100111110000011101101110010001001101011000100101100101011010101110001110111001110010010101000111111010011111100000011110100011110001110011010001010000100011101100111001110100010100111011111010001101001110011001100110110110111111111100110011101001110101111100101001111011000110010111111001010010001001101101001100001100101001011011111101100100110111110001000110001101101000000001100001011101111011011001111101010001001011111010101111010111010100110001000010001110111110101111001000111010110100100000000100101011011011101111100011101000101101011101000010110001110010111100001100011110011110011111011100010111111111100001010110000111100011110010000111001101000101101010110010111000101011101011001110100011000101001101001110000100010000101010110101001101000011010000111011011001100011111111100010101100111001000010001100000000000001000100001010111001000101011111111000000111001101111001000000000100000111011111100000100011000010101111111100111010000001110010011100011000011011001110100011000001011110011111000100101010101001001111011000010111100001000000001110111111111101110000110110001010010111001100011010110110000011111111101101011101001011110010110100111110101110111010110010110000100000011100000100000111110110111010101101001100111010000101110101000010110000110100110010010100110111011100001110010100001001001010100111010001001011101001100010110110110001000111010011001000000011000000111110111100110111000111101101100101101101010011000000111001100111011101111110100101111111000111010100110001010111111000111101001000001001011101100010110000101000001101010111001001010010000000000100011111001000001001000011011000000101011110001010110100001010010001010101001101011000000100000101100100100100101000110111000101010011000100101011000000101110011011101000110111111100010010110111001000100111000110111001010000100100011010010000000010010110011111001101010101110101101011001011001001111000100111110111001010110111100010000100001010001101100001011011100111111100111110001110000101001011101100101011010000100001010101000011111101000010100100110010001110101110100101110001111100101000001100010001001100011011010001011110111010111010100101010101001111101001000101001000101100100001110101101100100001001011011001011000100000111100101110111000100000110011011101010010100011101101010110101100100111100001000111010100111100100000010011111010111111000000011011111101011111100101011101111011110010001100110010101001111010111110000100011100111111100110100101110100100000110111001101010101000100000101110101001110010010110011000000100000101011011111100000000101111111011111000001110010111110011011101100011001110101111001010110111110100100100110111010100100110001111000110110111111111000010110001101110101101101011110000111010011100111110110100101011001000111000101100110111100000111100101011010100100001100110001100000100000100101001011000010001010100010000111101000110011000001000100010100100110000110100110100100000011001001010110111010110111011011101111001001111111111011011101100010011110100110011100001011110001010101111000111011111110001010110111000101001111011110111000100110010011011101100110001111111101000111001001111100111101111000101101111011011100011110001111111000001010110010111011001001010111000101110111111000101011000100001000100011111001100101111100011010100101011001011111011010101000101011101101100111010001101000111001011001000010001010110010000110100011100001001101010000001010000001001101011010010010111100101110101001110010001000111010110001101101111011001111110110101100000100001101111101101101010011000000000111110111010001000011110000111000000110101000010111001011101100011000000010100110010000000100100010110011001110111111100001111010011001011011101000010110001001010010001101011011101100110000100001101011100010000000101111101010100010110010001101101111010000001111101010100010001000111100000011101111110000000011110010001001011111000010011010101100011000010101001001111110011011101100001001000101111101010011101010001010000101110011000000001001100011110000000010001110001001100001001111010011111111111010101110100111000000011110001100101101011101010011100110101110000010110010110100011001000100101001110010000110010001110010110001101111010000111011011111110000100101100000010100111101101110101111101110010011110111011011001110110101011010100111110000111100001011000111011100010100101110101111011100111000100000101111011010000010000110011110010001000111001000010101101101000011010000100110001101101000010100000010010100010011000011000100100110010101001001101001100110100001101000011010010101001100001110100101010010100101110001111001100101101011101111100000010110000110100100111100010110111100000110001001110010010011001100111011010001101110111011000100110011011100111001001101000001010011100000000110101100110001111011010111100100001100001110000110100101011101011001011101010110001001011010010111110001110101001100100001101101010111101010001010010111101100101100111101000001011011010011101010101011110000101011110110101111000001110011100010110011001011000111010000001111110010000000001001001100100100010000101101111001010100100001100000000010001100100111101111001010100001000100001011011011010111000001101111111110101101010111001111010110110010011100100110110011101111001011011001101110111110101000000110001000000000110101110110001110111111001000011010011000010010101111110110110110000001011111000010111111010011010111000110101110100100111110011011010110000001111111101010011000011101110000110010011111100011100000001010010100100101011010100101100110111001101010010111110101011001010100011100101111110100011111011011110111111000011000001101001010110010111010101100010011101011101110111010100000001110001111111111010010111011100000100000001010111111111001100001000010001101010000110111100000110000010011001010101110010011110111111011100011010100010110100111100000111100010000010111111111111000110100010100010000011000011011010011111001011100111011001111100110110101100001001010111001110000101111001110111000111010111011000010010101101010100011101011010011011001000100100010101110001100101010110111100101010101010100010000111011010101011111010110110011101000110111101011100111111100010110101000111001111011100001110010111101001100001000101011001111010011100111001010010010010000011100100100100100010011000100001001101011100001100000011000010000000001110101101001000000011111110000010011000101000110111100010001000001101111010110000101011111100001001101011000100111111100110110000001010001001111000111010110110011101111100101110011100110001001101100101000111100011111000111011110100011111011001101010101011001110110000100000010111001011001011101101101100100010110001111011101011100111001110100100001000011011111010011101011001110110001100110001101110101011100100110100010001110100000001001100011101010110001100111010000100011011010111101111010101011011111110101001001100110011010001110001011101010001001011010001100100010110101001101111101011101011110111000010111000100010101001001000000111101011111011100010010011100101001000111101000000110110000000100010010010010011011110100000010100110110001111000001010000001011011000110101001101100001011011001010101010100000001010111000001101010110001000011110111010011111001000000011011101001110100000110011001010011100110010010111001100101010000010010100001101011000100110010010000100110011100011010011000000010000001001100110110100001110010000110001100100101111000010010110101010010101100111101101100000110101001100110101001110100101001000110101110111000010011001001101100000110110001011010011010111101111000010000011000010111010101100111101000111000011100100101111011110100110011101010001001110001010100000010100010100101111100100000001011011010011111100101001100000111100101101000100010010010001101000001111100101001110001010110110001100001010001101000101000001110100000011100111100010011000000111110110011001011010111100000100000001010011001110100011001100101001011101001110100111011100110101101000000011010110011111000011001000011100001010110011000100100010100010111100000100011011001100010011111100110011100000100101010011011101000001101000101011111101111000000110101111111100100001100111111010110011110001010011110010011011101000101000001101011111111101000111100100100100001110100011111000001000010101001000101100011001011000101000000011100000100110001110101000001000000001011010010010011010010010111011010001001101011000110010010010111101111101001111000001111101111010111100111110100110111101010011011010100101100001011000101001010111001001000011000010000011111000000010101011000100110000110011111110001000111001110101110000001001101101001110000110100111000110000101101111000011010100100110010010011010100010000011110000001011101001011111101110100101111101010001110100111010110010011001101101011001000000110000101110011000110101101010010011111000101101101001011101100100100100110100100100110001100111110011010110101110111100111111010010011111110001011111101001100111011100101110111101111001011011011101111011001111110001001110010011010011111010010101011001101001001000010010010011101101011100001010110100110111101101011101001000000100100011101010000111011101101000001000000110110000011100111111101011010101010110110110100111000010001000010101001111011001001100110111010000001101010100101110000110000110110101111100110000110001110101011100000001011010011101001011010101000100100001111101010011111111010011100111110001010110110100101100011000110110011100000001001000010011101001001001111111011011011000000000010101010011000010001000011110001000001010101000001001100100011010110000100101101010100101101000111011111101110011001100000100010111110010101101100000001111001101001000100000101001011011110000001110101001101010101000000001111100001011011000110000010110000000100001110010100101011010110011100100001101101101010111111111000100010010010111111100001001000001111000011100111100011110101111101000011110010111001010110101000111001001111001101000010000111100101001001100001101111101001111010001010110111010010100011111101001000101110111111001110100010011110100110100100110000010101111111101000010000111000010111100000110110000000111111100001110101111110101001000011100010101011000101100011110101011011000111001110101000100001101011011010110010001111010100011001001101010111000111110000010100100000101111101000001001001001000111100101011100110110001111011011101100111001001010101110000001011000110011111001010001100000110011110110101011111010101110110000011110111111001000110101011111111100001101010101011001110010001110110000010001000001100111101001110110001110011110011101101101110011111011100001111101101011110100011011011000010001110111001011001110001011010010100101100010001000001101000111011111111000001111111110111000001010110000100000111100111001001010000110000111111110100110100000011011111101111000100110110001011100001111101000111000110111111000000001101000000110001101110100000010100011101001010110011110110001000110010110110101101000101100001101001111100101000000010100111001000101111101010100011001111101110000010100101110101001011111101010010001111101111100000101010101000000111110000011010011000000110010011111110011000010100111001001011100001111101101000110110100000101000101100000100011010001111000110101100001001111111100000010001101000000010010100100100001101111000001010110000100010010011100111100101010100010000110011111100001101100100111111111101011110100100111100100100001000001101010001101100011011011010110100010101101100100000100010000001000111110010110001101110011101001000001111111000001001000000111000110010110000111011111001110001111101110111000111100011001010111000111000011101000011110010001111100001010110010111011110010001101100100111100101111110100110100010100000101100011000110000000110100110111110111001100001010100010011111111000101110011101010001000010011101011100001011110000101001011100111110011100100100101000011010100100010110000110001000001111111001000001101110101010111110010100010101000001011111101011010011110000011010111010101011010000101110000101110110000001100110110110101010100000111010110011100000010111111000011001100111111100011011001011000010010001111001001111010001011100011001100111111011010100000101111110000100011000011010000010000011111110101110101011001001011111100110010010010100010010000101001101101001111001010101101111110000110000000101111010011001100111111011100011000110010001111101110011100011100101111000111101110010011011100101000010001110011100010001101011110101000100001101100110111011011001000111100001101010000000111000111010010110010110011111010110000011000101001011110010111110110101111001111100001110001101101100011011111001101011011100101010010000110101111000011110100011011011111000011100010010110100010111110101011010111011100010000110000011111101001001010110000101111010011011001111111100000101001010000111001010001100000011011010010111010111010000110101100000001000110001111111010011000100111111001100001010110011001001000100111111001010011100001011110101100110110110101000110111001110111100010100000111011010111001000000100111101100101110010001101010011001111100111101100111001010000011101100000111110000110011011101011010011001000100110010000110101111000110110110101001100000110011011101010111111101001010000001000100001110111010011100101100000010010001111001001011101100010010111010100101100001111100001100100000011010100000001000001110000000001001001011101011010010001110110001001111101010011100011011110000111111110011010110101110110011010110101011000101000010010111010001010111010011000110101011101111101101100110101110000111110010000010010101101010111000011000000110000100001110010110010100001011000111111111101001101101101110100011010010011001101011000101111110010101110000111100110100010111110101000010011001001100010010111001101100011101001101101011101100110100000011011001111110000110010000000010000001100101101001111001010101111111101010011110110000110000100100111110000011011111001100101100110000000000001000100000111100111101001011010011101101101001011100100010101100101111110111000000100010010000100111101101100011011111011110011110001100111101011100010111000110010010110101100111110010010111010101000101111100110001001011100110101011011111010010001011010011101010100001010110010110100101000010000100011000100001000101000111111111010000111100001011010000100101100010111001011000011001110010000010011100110111110001010110100100101000111010010001011011100001011000100101010010110001001010001100011010110001100101011111110111000001101001110110001011100100100110000111000010101111011110010001111110000110010011001011101010110100111010000110001101001010110010111000100100111101110110011110000000011000011110010101010011000010100110101100001110100010100100001000100110000100011000010111100111110010000100000010101101001011000000011011101111101000000010000000011101001001001000111111100010111110011111011110101100000000011010010100010011000111000011110110110010110000111000100001110010010011110100011011110100100010010001110110001101101100111100111110000011101100011010000010110111010110111011010111001000010100001000010111010101100110000001110011100110111010011011010000110101110100000111110011010101001000000010110111011001001001000010101110010011011100100000110010001110011100000010001010011110010110100101000111100111111110011011100101011110010101110111110011110111000100000010011001110001100001101101001100110011100110100111011011000111010000100010011110010000011111110001110111001111111111100110000110010011011110100111001011100110100010001001110100101111100001000100100110001100010101010111001010100011100011000011110011100110011100000101010010010011011111010111000011111101111011110110100000110011010110110111100010001001101010001110100000001001111011001111110011100011010011010111101100110010000000101100010111000011011010110110001001111100101000001110000000111101001011000000100010001101101001110011001111011010010000010001110001000100010010001000001111011101101100000010101100101011010110100111011010110001111010010000100110001101000111101110101000111000000000001011101011110010011111011010001010010111011001110010110011000000111011101101101101100100101011010001101011110000101001010101010001110110000111010111110011001111011101010101010111011001001011000111011111101000001100000011000101010011001011111111001000101001100101001000001000000010111100101101011101101011001001000111011111010111000010001010001001001100111110011001000010001110110100100111111011011001010110110001001010011111000001101010010100000010110000001010111000101100110100010001111000000110100100001000000110110010110000001000001101110101001010011010100011001011111001011110100011000010011000110100111101010101101100010101110101101000011010110010001001110001010101111000000011101100100110110001111011101001101101101100000001011101011100001001111110001101000001010101010110011100110010001000001011001011010011100000011010000001100110011111101100111101100011111001110101101100000000101000111101000101010101101000111001001100100010100011010011011010101010001011010011111100010100100000010010011001000110001100010111010100110100010001111001111110000101110000110001001010000101100110101011000000010110010011101011101111010000110101000110100101001011001011101110001010110010101000100111100111010011111011000011011001110111100110000101110110000011000011001110011010111001111001111101000100111001110011000011000000100010011111111001100001110101111010110011110001100101000011011111110111011011010100110101010101001110101100101001110010110101101000101000001010111000101011101010001111010111110001001110100010011011010000100100010100100111010000111001011100100000101100001000011100011011010010110011011010101000011110111000110000111111111111101111110101011100101010001111110010000110110111001010101010101101001100010000011110010111011001111011101110111001110100111110010100110001110111010110100111101110100010100011001010111100000110001001110011111110101110011101011111010111001001110111101101100101100001010100111011111110011010000110111101010110100100101110001111111100011100010001101011101010011111101010001111111111100010000111100111111101101110001110111101011100000011010111000010101010110110011111011001000001100010010001000010011011110010001111111111100110111001111010000011100110010101011110101011110001000011110000010001011000110000010100000110111000111001010100011101110111011111000111000111001001100110000011000010001000010111100011001011000101011011110110000110011101011001100001001011101001001010001011100100010101111001110001010011101100101101111110111001110010100101010110100011111101010010110111111000110000110001100101001110110110100111010110011010000001101010111000001000001100111100001010000110001110000011100100100101100111101000000001100001101011101011011000010111100100001010110101011100011100110010100010010000011000001001011001000100000111010011000110011000111011111111011110111110101111110001000100111110010110110100010111101111100010110010100111111000100111001100110101111111100010111111001001010011111111010110010001101100110001101000001010100100110010111101010010011000101000010111111001000101001100111111010001000010100100101111011101011111001000100010111111001110110110011001110000110010011010100001011010111101000001101001110100000011100110010010001011000000100010000010011110001000111011001001010000110101010010011010011001010011011011101001001101111110011110011010010101011101110110101101111000110101101110000111000000101111001001010100000010011111010011010001111000100111111010111100001000011010010100110101001010110011010110111000101010010011000100110001110111010101011100110010101110001110010000110100000100011000010010101011101110011100011010011010010101010011110111011110111100011110110101010010000110000101011011010111111101101110001111011001011011011010111111100000101100011010100101111011011101011110110101100010110101010001010001110110011010110110111111110110001001011110011101011110000011111011110100100111111001010001101101001001001011011000101011001010000001001101110101001010101010001111100001000110010111010011000011110111100101111111001000001100011000101010001000110101011000000001100100011010100010011011101100110100011001001110000000000000101100000100101001011010011000111110010000100011111001001001000001010010001011000000001001011111110100000010100000010101100011100110000001101000100001101110100011000001010000001110110011010011110110110011010100111101010101101010111011001111010010111011000100011101000011100011100000010001100100100000010100011100011000101001110101100001010110111101011001010010110101011000110000100000000110010000000001010101011111011111100101111111000010101011011100100101001011101100100010100001000010101111011010111100110001000101101010100010011101111110010101110100100100001000001000010110000110100010101011010000110001110001000010011011001001100110100111001001010100111000001000110110000110111001011111010011010100000011101011100101011010000011110001010110111001000011001001101101110000010001110101011011101110000101110010000101111101111000010011111011100100100111010001111011110100101011011110001101000011011011101100010010011001000011111110110001101000001011010010000111000011110110101111001101001100110110001010100100110110001111000100110011100011011110111010011100000000101001010010010000000010001000111001110111010100101110110000100001111000101100100000011101101010001011000011110111111000101111110000011110010101110101100100010111111001110001100111011101011010010111110111110001100101000101110000000000000000101011111010101011111000010111111111110010011001001100011111101001100110100001000001011101000101001111110011001001110001101101000101110011101010011100110011000000000011001010100100111111000011100011100011000111110000110111001111011110100110001010111111000010110010101100011111001101011011011101111010001000010100111110010010000110100100001001111111011000101001101100010001111000010011010001001011111001001000110001101111111001000110000101010011101100100110100000101000011111000001100100111111101001101011011110111111101010111001001111001011001000010101100001011000010101110110111000100010101010010000111110101011101101111101000000110110000000100001101000110000010000100110001011101011001011101111011101000010001101000010101010010001010110011011111100111000000011011001111001000000000111010101101110001010011010010100111011000001101101000111010111100110000101001110011101011011110111111101111100110000000011101111111110010101000100010011000101010010001001011010110010110110010000100110000011100101011011101001011001011010110110110100100101010011101110101100001111010100010111011111111111001110000111110000000111010110111001000000011111010101010110101110010011100110111010001001011001010010110110101110110000010001001001010100100000000101001100001101111110101110001000111001001001000001000001000100100111110010100001111000100101110100001110100110100110100100111010111110111011001111100110110101010100001000011110001111001001101100011101110000001001101001101101101101010100101101110100011011111110000100101100110110011000001001101011010011000101011100000111110101100000111110101010110001110111010001000000001111111011000101101101110001010000101011000001100000100001001011010010000000111111001100110011001110010111010101100010001000011001001001000001001011100011111010011000000111100110100010001111100001011001110101101011101101111010000000001111010110111111000000110101101000000111100001111101001010110100110001100010110100010011000111110110101101010000101110110010111111000111100010000000100110000001101110110010100011010000010101110011001001111011101000010010000010111100101101011001011000001101100111001111000110000000110110111000101010010000101111100011010111010001111110010111100111001000110101100011011100101011101110101001100001100011110011111000100000101110001110111111110000100110001000101101001000010101010101000000010011001011011110110100011100001011001011100000110110100011111101001111011011110011101111101001101000110101010110000011110111101011010100001010110000000101001111000111110111110101011000100101011010110111011111001100000100101100100011101000010000101001011010100010001110001011010101101101001010001100101101111101101111101111111110010001101001010110001000100011011010010101010000100101000001011111101111111111111001100110100101011011101101110011000001010001101101100001000101000000110101000001000100000101011010011011011100100010010000111000000110111111101101000001010010010000011101011101110010011110001011010000010010101111010001101010111111101010010010011101110000001011011001100100010001011100110110111110111111101101101110111110101111111100100110111111000111111100110010010000111100001101101100100111100100010110010111100011001011111110010000110001101110011000001001011111101011110100010011001101010010111001010010001100111100010100001101000011000101110000111111101011100100100011101110000001101010011010001111110000011111011111000111010101110110110010111111101110101110111110011111001011100101100010001111100101011011100111001111010001001111000000001001110111000111101101101001111110001000111010100001111001001110010011011100011100110001011001001100000110110110100100100000101100010100010000101101101100011101010000111100010100000000001101010110110001110110101010000010110110011100001111000100000011010110000000110010110001011001110100000111101101000000110100110100001010010110011100000110110111000011110000010010000001111101110010100011000000011100011000010101011111010110000011000101000000100110011001111001010100010000100001101101010011011110100111000101110010100100010100010111001011010111000101110001100000000101011000000000111001000111110001001100000001011110111101111000010100111010101010010011011000001000111101110110001100111010100011001111110101011110000111100010011011000101000111011111001110111000101101101100100101110000011000100001110000111010011111101010001011100000110111001011010000001101000100100001110010010011110101000000100001001011101010101101100000001010111111001001000010011100010100101111001100101111001001100001000001011111001111000001011010110110110001100010111000100111010000001101000101110010000101111010101000111010100000100110010111011010100110001010101011001010000110110110010001110001110010110100111100100001100001011110011001011001100011010010110010101001000010010100010011100100001000011101001011010100111101011000000000100110001101101110001010010010011010101111001010101111110110001100011111111101010000100110110100110000010100110101110011101000110110001000001000001010111011100001001000000111010101110010011111011011100011011000011001100101011111101110011101010011000010011000100100010101110001100101011100010000100000101111100010111101100000010011101101011111101010001000000010010000111001111110010000101110101010001111100111111000100110011001110100000010000100011011100011101010100010100101000001111011001110110100001101111100010000001011011110001111011101110110001000101001111110100011101110000111000000010001001011010100111101101111110111011010101101101110101110111101100100011001010101101010110101110010101100110101100010011010000000011110100010000010000010011001101010100100110011000100001100011011100001110011110000110110011101011011111001001110101001101100011011010111101100110111000110101000101101111011000101110000011111100110001010000000011001010100111011110000100111111110001000000101010100010100011010010000100100011011100011011010010110110101100010001010000100110000101010111111011000100010100001101000000101111011100100101101011011100101100010001010011000011100001101010100000001000111001001001110110101101001011110111110000100011100101010001110011100000110101100110010001000010101011000000001110100110010010100010100111101111100001011111001101010010110010110101111010010010110101000001010001111110111010011001010001001011100011011100011110111010110010001001110001101001100110000100010011001110011111000010101001110011000000010000110000100010011110110010001101011101001000000011010111011001111010100101111011100011101111011001100000001001110111000110110000011011110101111100000011110101101101000011111111011010101100100010010111010001001111000011000100000100110010101001111111010110100110110011101101001000100110010011011101101100011111101000111111011000011110100000000010010010000100110010110110101110011111011101000101010001101101000010101010001010011101101110001010110000111111101100111101000000101111100110000110100010000010111000010111010000011110101101011101010111010100100111111001100001001000101111110111010101011011001001001100101001010110101011011110011011100110100010110001101011110010010001000010010011010011001110011000111101010011101001101010100111101010010110101100110111001011011110001100001001011000001101111100111110110100111001101100010001011010111111110010010001000011110110100010011010010111100011100010001110000100100111000111100000010111110000001000000111001000000010011101010111110000110110101110111100001010000110100111101001001010110101010001110101111001111001000010100101101101001111011001101000010011001111011000110010111011001000011101101001100001100100111000110110101001011100000111111100100010110010000111000111000111100001110001011100000110110000001000111000010110001010100101110000100101110101001110000010010110101001001011000101101010101110110011001111100111111001110100001100100100100100011000110001001110000011101110101001101010001001100000110100101001001110100111101010101101110001110101101100000111000010111010010001101110011010101100100110100111000010001100001010011000001000101110110100000111000100001100111010111100001001111001000000000101101101111110010101100010101101110111101100110000011010110011000110011101000110001110010101100001101100011101110001100000110111101110010000100110001101110110100001010110001111011101110110100001000111010000001010101110011000111011110000111110100011000100011110100101011000110111111011000111101101011110110100100000110100110000101110010100010011001110100001001011100101100000100110000100001110100100101101011101011101110010000000111101011100101010000110111101010101001101110110111111001011001111010000101110111011000001110011000111001111101101100111111000011110010000100000100100111000111101001011101000111110010100100101111010000011100100101001010111010110011100001001010111101001101001101110011011010110101001110001010110000001101101011011111101010011011001101010000010110101111111001110100100100011010111000001000010011101100001110011010111111111001110000001000011101000100000011111101000100001000010100101010001000100001101101110100100011001001111011111100011100110101101000111111101110110010101001101011111100101110011001110011111111010111001100111110111101010010011111100010001110000001110100101111110001111100101111010001011001010000101100000100100111001001110011011000001010001011111011100100010001100000010001010101000000111010100110000101110100001101000000101000001010100111100111100100100101000000011000101011110011010010010000011101101010111011001000001000101110101011100001000001010011000110010001111001011000110000111101010100001010001111000110010101110011100000100000011001111110111011010001101001111000100011111011011111100010111101110011110110010000101011001111000101001010000000000000100110110010101101100101010111110001100100000110010101110000100110000110001100111000101100100011110110011001011110001101000100101111111101100001000111111000000100011000111111110100111000111111011001011100110000100010000000111000110100010001111110000010010011001001111111000011011010111100001100010010100100000100110001000101110100010011001000110011110010110110100110111010000000000011101011101000000111111001111000010001101101010011011011101111110111001001010001000011100111110101101000110011101100010101010110101000001101011101011001010010100110011001001110101001110011100000001010000010110001010001100011110000100110000110110000111111100010101111001100111010010110100111011101011111101010110001000101110101001110000011110000000011001001111111101111101011011110001111110001011000010011001111111111110100010110111000101101001001000001101011100011101001101000010000110010100000100110000011111100111101010101011110111110111101110000101100010010000000111000010101010010011111000011110100111111100110000011010101000111001001010110101110001000011100110110111111001110011100101010101010000000011010111100001000100101110011101000111101101000111001011111011111001011011011010110110011010101010000101111110011001100101000100111100110101101000011100000110110110100101110111101011111110110110100010110001100100001111000110011010110001100111111101010001011111000110111101010010111010101100100011000011110000010111100110010001111000001011011001011111011111110001100101110110011110010100010111101101110011110100100101110001111100000011111001101000010010010011110110011010101011111010111100010101001001101001101100001101111100010111100101010110110101111101110111000101000110100010000100010101001111010011100101100100101111000001110010110001101101010001010110000111101101111110011011000000110111111111000101100001101000100111001010011000010000100001110000100101111110111110011100011011011000011101001010000111110010010011100110000001111001010011001111001111110001010111011010010110111111101111111100100001011101001001110100111101010111011100111011011001110111011011011110001101101000100011110011001101101010101101010100010000000101011001000111000001110000001000100010100100110000001111100011101101010001110101111001011111000101011001000111010100111110110101110101111010101101111101100100010000001100011101101000101101010110110110100000001001001010111110000000010100100000000001001010100100100010000010000010011000100111110001100100111011000100001000100010110010000000101000101011100000100101010001111001111000010010001110101110010100011111001010110101100000100101110100001001100100101000001100111000001110011010011010111011011111110001101001100001111101101101000101010011010001001110101110000101011011011001001001000010111001101010111101101010010101000110101011101000011000100101000011011100011010110110101101001101010000010001100100011001000001100111000111100110110101011100100101100101010010010110101000111011011001010000001010111110000011101011001100100011100010000101011111101011110010010001101001111001011101101100011010001001001100111000010111011100000001010001111001001111010001111010100001010000010101101011101111001101111111000000000101100001011001101010101001000110101110000111100010000100011110000000111111010110110001001101010001111010000000110101000101100000011101100100010000000100011100010001000010011000000101111111011111101101111010011001000101001000100001011010010010111101110010100010011000010110001101011100000111111101010100100100010000010100100010000000000000110110011101111001001010110001001001011001001111010000111101110110011110010111001100001110010000000101101010011001100001001111011001010101010101011110010111101011001001110100011010001101101011001000100011100100101100011000100011000100110010110110110010111110000111100101101110010101101000100110111100111011010101000000101001010001011001100010000101000011111110111100101100000100110110101010001011100111101101000101010111011110100011000100100110100011111011110010010101110000101010001110011000010011001110100010000001001010110001001100111111011000101010001001010111000100011111110101101111000011100101100010001100111001100000110111111001000010100011011000110010101010100100101110001110000101100011110110111100001111100111010001000010100110101000101110011101000001110100001111111101001010111100101111011110010100100011101011101111110010111100100100000101011000100111101001010110111001010010000101001100010110000001110000111011111011100100001100110110111100100100111100001010011000011111000101111101010100001011000101110111000101000011110000000011100001010000111101000001100011001100101110111010101110101111011000011101101001100001101110111101101000100101001011110000110011101000000101001011111111011100111000010101110011101111000010001101011111100100001000111101010000110010010011001100001111101110000000100001010010011011010110100101110011110001111010011110111101001100011011100101000100001010011001011010110100110100011111100100000100110111000100001111111111100011110001110000100001011010001000111010010101111010010011110001011001111101100110110100100011010101000011011111100000010100110100101000111001001100001011101011111100111010100101111001110000101000010011111001001100101111111000101100000001101110111111000000100111110100011101101010010111000100001111100010000001011011111000010011101000001000110001001100001100010111101111110111001001101011100011001101000010001100111110110101110101000101111011001000010001101001010011100000100101101011011010101000001100000100101101001111011011000101101111011101000111101100111001011100010100101010110101000010001100111001011110010110000101110101000001111110011101000011111000110101001011101010001110110110101001001110010000111101111101001100100110111100101100000100001100100100100101100100001010100000100011000101000011100111101111010110101000101011110110100101010111101110101000000001011100010000100110101001001011000101010000010110100111011100011000011101000101010101100101101011010100010000101101010101011100010001001001000001101101000100110010100010011111111010000100111010011100010111111010111100101110101000011111011110100010101000101110101111010101111110001111110111000101001100011011110010011101001101001101100010100111101111111001110001101010110100110000110101111111010000111101111100000001011011110010111100000110001011010111011000101001100101101101010000011110010010001110000110000000011110011100010010000111110010000100111011010100011011111100100100111100100111111110001000001001101001100110101011011101110100011000100011100111011011011010001100010101011100000101000100001000011001001101110010000000010110011011010010111001000111110111001101110111000110111001011110000000100111011010100011010111011111110011011111111110000101100010000111100000010110001101100111010111100101011100110001001110000101001000011100110111001111100001010100111001111111100100010010001101101001001111110110000100011011100010110000010011010010011100000011111001010000101001000010011111010100101111111000010010111000100001000111111100110001101110110011111110110101101100010101010101100101010010110100100110111110110011010000001010111110100101101000011001100100100000100011001011000101100001110111011110110111101010000001111110111010011010010010000000000100100001001110111001010101001101010110011011010001010111010001101111110011101001001000111011011100100100111001010000001110000001011111010101100000010101001110110100001111100001100100101001010101010001110110011100011110011011110000100010110010111010000010100010101000010010110101001111011011001100100101110101100001110011111111100000111100100001011001111010010010001101111010010000110001001011000000100100111101001001110011111110000110101111111110101101111010011101100100011001111110110110000101011000000010101110101111001100001011010100010101001011111111101110101001101000111011101110010111001001011010011100011011101010000101110011010100000101111101111100101000100001110101000111000101000101010001101110010011111010000101110110100111101001101010100011000101110111001000001011000010101001110001100100010101011011110010111101001000101011001111111100010110001111110100101111000010110001000001010111010001110010101100011001000001000101000100001110111110111010010100011110001010101000100001001100110001100101001100100110010011010111111111101000101011111101110000111000111110100010010111011001000000000001111111000111101110110110000010001100001001000101111100111011111000011010010001001101101001100010011101110100110110001111100100010010111111000010100000100100010010001010110010100100001100000011010011101010010000110001011011111111001111101010001011111001011110101110100100000111011010100110010100010111000000100011011010111010000110110100101110110111110101001000001000001001101001111100010011001011001010000101101100010001011000101111000000010101001010110000000110001110100010010101110001001010000110110000110101111010101100011010010010011110001000101111001000110111000100011010001100011001000100100001010011010000110100001001011110001110101011011001100000110101100110011101100011001111000000111110001110000110110001010101000110101010011100110000011110011001001011110110010010011011001101110110111111011110001110110000101000000100000110110101011100101000010110111101000010110111000110010011011101100010001101101111111101111100000111100100100111101001110011111110111000010111000000111110001111111010000111010010010011001101000110001111101110100100000101010110001110110110110010001100001011011111000011011001011111110111000100001010101111110101001000011010100010101010000100010000010011001011011100101011110100010110011010010111001101000101000110101000101111100010111111010000011110000010101101111010100101010110100111001111100100001000110011011001011001111010011010010111101111011010001000011110100010100010000000001110100001110011100100111001010101101010001001011111100100100000000111011010000011100111001101110101100011100110100110100100111010111111001111010111100110111110110011000001111101110110011010101111000001111000010011110011000111101010101001100101110101001100001100000101000000100111111100110001110111111010110010010010101100111111101111000111010000001100110001100000110100011111110010101000101000001111110001001111000001011110111110110101001111110111001000100101101110101010100000100000000100000111111111001101010100011110011010010111011001010111110010100011111001101100000001000010000001001111010010101011110111101010110110111101110011010101001101101010000101010010010001000001001101010001110101110101001011100011000011110101000101111101110000110000010101100101011010001101011011110110010101001111100000000010110001010001110001010000000110110110100000110011010110001000010010110000101011011001110111001001110000001011111000101000001100010001100100100111001111001000101111101100111111111011110100110011010010001100010010001000010001000101100100001111000011011110100011010110001100010110000111010110100111000101010110000100011000000101000000101111010011111101110100010100010110101111100110001010001011110000001101101111100000110101110101001000101111111000100010010000111100000111011000011000011100111111011100100111000101111010101110011110110100011011111000000010000011100101010010000111000010110111101000011010110101101010001110000010111100011111101000110111010011000110101110110001001001100000010001100101010011110011101010001110010101010110100011101111011011110111101110011000111000110101111100100110110101010101110101101101110011100011111011100011111101010111101111101000011100011011101110100111101110010101000010011010010011010110010110100011001101011110111010110000001001100101001001011010011010001101010111110100111001110101101001000010101000000011101111000010000001010101101010000100111011111110000100101111011111011010010000001001001000001000110000001101111101011100111111010101000110011110110001010100110100011001100011110110110000000100010011110011101011001000101101011000100011000101110000100000000101001000110010001101000011011010100101111100011100010001101000100101110110101010110110010001011100011010111110001100001000111110001110011011100000011111100010100000110110011101011001011000110011110011000010011110000011010011111100111000101001000110011100100000010011110000001010110011100111111000110101010101111100110011111001110010001001011111010101010001011101110011110101010101100111000100000011101000011110001110111100101111010001111110110010110100110110101100110111100110011001101000111001011111001110110111111110101000101010010110000010010001000001100110010000011000001100101011000011000110001101101011110101011100000110110101100000010011010011111100101010100011100110101000101011011000011110001011001010010101101000011010011001000010101101111101111100010111000100100100001101010111000011110101101011000100111010110101000001011111001111101110110010100001111011111011110000101011110111001111010101111101100111110010010110001101100010111111100011001101010110011100111100110001011001000011010100011001111010010100101110010110110110001111011010101110101000000100101001010000010011111100101010101100100111011110011100111011000101101110001001111111000010100110011111101000100000110101100010011100111110100110000101111011100100000010000100110001010111000000011001100010111110011011111111011011110111101110101000100010110010011011011000001101101100011001011011100010010010101000010100011111001000011001011010011010101011100001010100000011101100011010010101000001110011100100000110011101000111111100111110100000011110110111111110001110101100010111100010100010001001010101010100110011101011100111110011110101101011011010100110010001110000000110111101011000100001001000010010001100101111011011011010111001110001010010011110011101000101010000111001111101111011101111001100011010001110111100010101000011001100001100111100000000101001011101111001010000000101110110110011000011001010100001010001110001111110011010000100101000010011000100001110001010110100100110011100001011000100001100111110100000111110101101100001101110110111110101100001011000111001101010010101101000011111110101000111010011110100000110001111001010010101011100100010011100001000000000111100010011001101000010100000111100101010001101100001010000100110010011011011000111111011010001100010000110011011011110000111010010100000011111101001011010111001101101101110001010010001111111000001001111111110111111100001100010010101010100010010101000001110011101001000110011110101001011000001010110100011111011101111111101110110010000101110011010111000110100011110011001111111010001101110101110110011110001001010110011011111000011100111010101101110100010001000110100111010101110000101111000001111110100010001001110110010100011101101101101010110101001101000000000110111101001000100110000110101011111011111101010111010111010111000111101101111000100110100000101100111110010010101001010111111000001011111101011001111001101010111000111111000100000100001111001110100111011010001010110111100110110000100111111001011010111010111001010111011001000101011000101101001101011000001001110101001100111111000110101101001111111000010011100100110110111101110001100111001000011000011101110010100100110011101010110111001010111101000101110101111010000000001111110001110011101101101001100001000111100011111110110100011100011000101000010111010011100001111001111011001001011000001010101100000010101100001010110000000111011100100010111100010101101101000010000110101100011100111011011111010100111000101011000010110111000110000110100111101011010000010100000010101100000010101101001010101111001101011001011111000100111111110011000100010011000101001110000101011101101010001101110011011111111111000001010011100011000000011110111111011000010110111101001101011001100010011001010011000111100100001100110110101010011110010000100110000000100111111000100001111111110011111100010111010010101011010011001101111100111110010001011100101010111001111011010101000110100010001111001001111000100001101011100111000001000111001100101110101001111001110101010110100110000111101100101111111101110001110111011010101011111000100011100110010000100110011110111010001001100110011111011100100000110100001001001110111100011110001100010010000110011010110110111000101101111100010011101010101010100001000100011011011001101010100011101000010010011011101111101010110011101100101110000001110101101001010000000001010111001100101010001111010110001101111000001000010110001110010101101010010010100110000011010011001000011001100011111100011111100010100110000001011111100110111100001001001111100001001001110111010111000001011111101000011011101011011111101000001001110010110011001110100011011101000111011011011111100000101001001101100111000111001010011111101010010110111000001011011010111111000000111001101010111001001010011001100111100100100110101101101101000101101010100010100011010100001000101101111100110110110101111000111110011111000111011011011111011010010010101110000010100110100011111001000001111010101011000100110010000011100010000011010010101101011101100110001110010010100001011000000011100000001011100100000100001000011101001011111101001001001000101011000011000000100010110010010110101011011101000100011001000010001110110110111010011110000101001101101001001110001011111000011111010010000111100011011101001010001110101111010001010110101011000101001001000100010101110000011011100110001100010101010010100100100001011010111110011010110001100010111001010011110010000101001110001000110100100001010011010000100010001100100111000010111101011010110100010010110001101111011101011000000111001101101110001011100101100011101100000010010111101101111011000001010011000010010111111011010001110101100101011111101110001100110100110000110010111110011101101101001101101000110001101010100100110101111001101010011010000110010110001010011010111001000100000111001001011110101000001010111010000001001110001000010101100010001011111110011110001010110011011110011010010100101101100010010101010011001000100111011101001110110000101011100111010101010101100000110101111010010010111011000000010001000010010001000010011010000110101010010101010011001111000011100010100000110101101100000111010001111010100000001011010110000001111000000110001010110011111110010011000100011010000011010100100010100011000000000011100000101011110111100000000110011000101001110100001010101111001111101111001101110100001011100001100000110110000001000010110101110100101000111000110110011101101011110000100011100011100101001011111001100100010010010111111100000110010010100000011011101100001101100000100110101110010011101011010010011010001010010110001111101101111111100010101010010011011101101001100100010001011101000011010111101010001101101110000010111011101010111000001010011100100111110000001100000001000000110110010111011111000111011110100001010111100111110111010001101000011011010010100010111101010000101100110011100111001000010111010111001011101100110000100101010011100110101100001101111100111001010100001111101000011101000010111000001011011100100001111001111001001111011111100000100011010000010110111111001010001110101011111010111110110011101100001001011010110001000000101001101011100100111100010110101101110001010011101101100001111001001110000011000111011010101111011111101010110100111101110001110111011100011010010010101001101110111001111011100110100011010001011000100010100100101001110010111011101001000100011000001101000010000100101101010100100101110101001110011010001011100110110001010001110000100011011011111100111000100010010110011110100111100101010001111011101011001011000011000101111010011101010100101100111100110000011110111101011101110000101001111010100011100000101101101100010000100111101111011101110101101110111000011000010000011110000100111110111010100011110111010101001000000111110111110110011010111010101100110111011011010111010001001010000010011010001111111010101100010100000000111100000110110101110010001111011001101011011001010101011111011110001000000101111101110101110011101100100110111001110000100011110001111101110001110111100000101000001000010110001110011110100010000010001011000110111110010010011101101011001001001100111000110100011110100111000100010011111010010100010111110000100000100110110100010100111110111110110100111101100111101110011000101110000111101000111100101000111010111001001000000010010111100010010111000101001010111101000001000101011100110001100100001000001001011011111110011000010100101110001111110010011111001101001110101100000110000010011111110001110011101001100010101111101011111101101110111110000100001100010110011100000011000100101000000001111101010000000101010000111110100101111000011111101111101000000010000101011000010100000110000000010100000100011101111010101000100011010101001001000010101010000000000010001101001101110100011111101000111110011001000101010000001100110100100010110111100011101111011001010011011111000111001101100100000011011101110101010000111011001101101110010011000000001110111001001101001111001010110011011111100100011000111101001110110011001100001110111110100110011010110110011100000001011010111101001010000100011010010100000101001011110011110110111001111001110101000111101011101111101111011001001010011111001001110011001111111111000110011110011011010111001000000110001110010111110110111100100001010110011001010000111111001100010100111001000101101100001111010110010010100100101100110010001101001111101101110111011000100101000000011101000010111110000001100101011110101001100001001101100001001110110100110000001100110111000111011101110100111110010000101100110010010010101101111110011011110011110110001101011111101111010110001001110010111101010010001001101101100011111110110111111100110001000001110001000100111001001100100101010011101110110101010100111110001101100001111000100100000000011000011101011010100011001100000101111101110010101011011011000000100111100000001100000100110010011000111010100000001100011010101011000110100101011101011000111011001101001111011011010011101111001110010101000011100000101011001001011111001000111001100100100100001110100001110100101101001100010101011010111011010001111010100100100000111111111010011101000010011110100011111010111000100000111010000010111010000110011000001100000100101000011110111010111110010100001110110000101010101000111011001111101010111000100001110100000110000010001001011001111001101010001101001010100100011111111011110001110111011001000000001010111011101111101110100011001101111011000000000001110011001111010001001011000101111101001010101110100001000110110100011110111010100000101101010000101000100011100010100101110100101111010011101000101100100111001111011101011110001110010011111101111110011011010001001101011101101100101000011110010100110001011100000111010000111100000101001100110010110001000101111010000110000001000100010110111110010000001000001110011101100000011101111101011101100000101000101001010001000001010000010010100100010001111000111100101001101111111111101100111100011010111011111000011000100110011011011010110010110011110100000111001011010111010011000111101101001111100100111101001100100110111100001111111101000000100111011000100010111110000101000001110101001110110110011001010100001101001111100111101110001100001010010010100001110100100101111110001011110001000111101001011101100100010101010101101011001111010111100001110100101000100001011011100000000101001101001010000000110001011101111011000110001010100110111011101001010000111000110100001100100010111100101011011110100100001010010011000110010011000001000101011100100101000111111100100001010010000111011001100010110010100101010000110111011111101100000101010000000100001010000010101101001010011000101100001100101110010110100010011010111111001111000001000100010101110011001000110000011101001010100010100101011000101001010100111110101100000010110111011100110101011100100001011100111111001011101110001010010001001000100010010100000100000100001111100110001110100110110110110111100100100000011101110101011000000111001011011010010111011101110001000011110111101011001000011110000001111001110000100010011111101100110111101010011100101110111000001110011011101000001111100101111010100011101101010101101111000010010111010000001011011011111101100100011011110000001111110100011000010110000001101110000010110111101000110001111111101001111001000100111010000001110011101111101101001010110010010011010101100110110001110100000011100010111000100000010110010000011001110110100100100001010000010000111010011011101111110000010011101001001110110101101111001110110010101111011101111101111101000000010110101010100101001110101101010000011100110111101001110111100111010000010000101010110000010011011010111111010101100100000110010011110011001110010000000111101010001010100000101101100000101111010001011010100100111011111010011100010001010010100100011101100101000100000101100001011100110111110110101000100001100011100111110111010101101101111000111000011011010100110100011111101011001111110011000010101110110100000011110100010101011011111000010100010101100100011101110100110001000011110101101101101011001110110010011001111101101001000011000011011101110011101101011101110101001101011000110011101101101111110100100010010011110100011111000011111111101111111100100011110010011101100110100000111111001100010101110001011001110010001010100000011101000010110111100001001000111101001010010110100101110011110110001010111111110001001111111110101111001101111010110010101010100110100111010000011101001001001001111011010111000100100001110001111001100101001000101111111101111110111110110011000101101101101110100111011110111010000000111010001011111111111001010111101101111110010001010110011100111011000011111100000000100010000111000010110101110111110110111101110101010010000001111001010011000101001100100011010101011001011101000001001010101000010111001000000000000100100100100001010101011111001011111011010011000100001010111000011101110111111001100100111010100111000000010110010101011011011111000011001001001011111011101110001001111100011001000110011011011110111111101111100011100100110101011101101001111111111111001110111001011000000110110111101110010101110011110011101100100101100000001001011010111100011100001110110000011110111011111010010000110111101001100001110100001110100001110000110010011101101011101000010011101111011011011100010000010101000011100001100101100100000100110111011001001110100110001000110101110011011011000001101010111111101101100010001010000101000011111100000001101011111000000000111000100010011011011110111000111101111011111010111101011011010111001101111111110011100000011010010111000010000001101111101111000100010011101011111101011000101010001001101101100000001001000011111011001111010110101000111111010000000010000100001111001010101110110100101111101010110111001111011010001111111000000100010111101011101110111001010100000011011101011001101001111000001110101010111011111001111111100011100101101011001000111011001110001111000111111111001011000001011011001110100011110110000010110100000111110001110001101000100101101000101100000010111000100111010110011101110101011010100011101100000101100000011111001100100000111000011110110011111000001100100011011100001100110010010111011110100010010111010111010111000010001101101011000011001100110001111000111110010000100011011001110100101001001100011110000101011111001100000001100100010110110010000011100100101101010101111011001000011011000110111110111101000100111110100110110000100010011110110110110110001100001011000010101110100011101000100110011101000000001001111001001101101000100011011001010100001101100010100100100101111101000110101000100101100000110100011100010111111101111000101010011011110011001011011000010110011100010100111111001100011000000110010001110001001110011111111010110010100010001001001001001110110100000100010010000110110011100110101100010010000001000110111010100001101111111011100100111000111101011000101111011101111100011010101011011000010010100000001100110010111111001101100001001101101010110010101010100101010111100101011001011111111001110001101101010110100100010101101101001001110011001001101001110001001001001000001100111111001001000000110010011101010110100000001111001011000001011110110100101001110011000010000010100101100110100001011100011010100100011110111100101000101010000011100101010000010011010101111100110001101111101000011110001000110100001111111000010101011111000010000001100110100111011001011011100001011100111010111110010101011100001011110101011001111101011000110110110000111001100001001011011111111111001000011000000111101100111101011000100100110000001011110111010010110101010001110010010101001000001101000010110011010100100011101011001010000111110000000001100100110011000000001000111110011111011110100011011010001101000011000001000100000101010111000100001110011000010111010010110010101000100010111001010111101110100000011010001101100111000110011101101110110110011010101111110100101011010001110001100000010111111110001100111101111100000100110011000010011110110001110011011111110011111101001001100101111110001001010000010101111001010111001001011110111100001100100100100000001010010111100001111011001011110100100101011011111111000000010000100111000010111010011111110001100010100001100101110110111110100111000010100001110001100010110001011101100100110000100110011111101001101110110011011011001000010010001110011011001100111001100101101001011001100001010111101010101000101010001011011101110101010101100110100100111100010000000100000101110101001010001011101010010000000101100001110010110010100001001000011101110011100001111010000100111010011000101100000000110000011111000100011100100010001000011100010011111101011010111100101110100100111101001000001001010010111110100101110010101011101100101010101011011001111000111010111010010000111111101001010011011010110110001101101010000101111000011001101110011101001111100101010110001011101001100110111110100010011000010011100010101000111010101101100010100001011110101101110111100010110110011101011110111100100000001001000000100001001111100111001001011010001011011100001110001011100100101101101100011001101011000111100011101000110000111111111110110000100110100010001110010111001011110001010101000111100000111100101000110100111000001010110001111110110011100100111010111001011100100001011011010010000110111000000000111011001110101011010001100011100011000011010110101100111110100000111110000111001011101000111001111001011010110011101110000011110110100000000101100110100011000100101111001000010100000001100100011100100110010101001100100110100000100000100000000110011010010101101001011110101111111111010010001100001001101011101010101001011010101010110110000000100111001100101011110010011011010110011010111000001010101010001110101011011010110111010100100111011000101000010111011000010110010110010111101100101001000001010011100000111000000010001001111000011011110010111010011110110101011100111011000111011100000010101000001111110001000111100010111100101011010101000010010001011111001010001111011011100111000110000000011101000101000101001101000110101110111101101010011101111100101010010111001011000110100110101100100110001101000101010001010100011111110110001011110101100000110010111100001100011011100111000101101100011011001010001101111100011001010100011000001001100010000100111100000001011100100010001001101010001101100111011111110100100011101010001000011000011000000110111010111010101011000101011000100110001001001001010000101101101010000010101110101000010100010010010001111000101100110000010001001011110001000011000001110100010100011101001010010000100010010101010110010101111100111000000000111010110101001101101000000110010010001010110100010100010010010011111011000000010111111001001100011100011001110001001101100110101001111001100011000010111100000100000111000000011000001111110111100001000000100001001000100001100101101011100000001011011011111100000010100101111100100000001100101000111010000011001101110000010100000010111011011111110001001010010010111101010111011100001100100101011011011110010011111110100011111100001101010111110001110010011111110010011001011001100111001100011010011010100110000110100011001001000100011001111001111111010100001110110000001100101011110001011000101010011110001001010110001100000010110111001100001111001010100010100001001110011110000111110100100010000001000011000100001100101011000101111001110111100011110111101011010101001010100110110000111011000011010101110010111110001000111111000111011110011001001011110101010111101011011111000011011110000110011101010101111100110000001000100111000111101101110000100101010100101011001001000110011011000010010000000101111010101110000101100101011011011110001011000110010010001101011110111111100111111100111100000100101000110011010110010001100110111101001000011101110010001010010101111100000110010000101001110001000101110101011001101011111010110100111110101111000101000110101100111001011000110100110111000010111011001000010000101101101010110101000101000010111111111100110101101001100011110100100110101111011110011111010001000000100100100101000001100001111101101010010101000011000001000111001001011010110010110100111100001111111100000010001000111110001111110110011101101100110001101110010000110101000111100100011111100101010110101010100011101100110110011110001111010101011101111111100000000010001111010011011100010110100100000111110100001111010000101100010110010011000000100001010010000101010010110100100001110111100101101110000100001111001010111011011010101101101001001101101101011011000111100000001110110000101111001100001001011011110110010110110111000011001000111010101101111011010110111111011000001111011101110000010010100101100101111110001010001011010111100000000110100000101100110011101100100101000111110101010110001101111011010010010110100111000101011010000010011001001101110110000011001010101001000001011001001110011110110100110000101111000100011100110010001001111100001011010101100011011111110111001110001111111000001101100111000011011110101001111101010011001011101011011001110001011011000101111010000000010000011011000101110101110000011001011111011000100101010110010110110111010101100111111100001000001001010001011001110110010011100001101111110011101001101110001100110100011101000111010101110101101010110101100111101000100110101100010011010100001111010010010001000011010111001110110110110111011100010000001110000110001010110111000111010011101011101000101000110111110111011001100011100010101010001111001011101110001010100000110011011010011101011101011100110100111111000011010110111100100000101101111100111010011010100100011011001110110110111110000000100011000111001000101011000001111010010110100111110011100101101011110010000011010011100110001101100101111001111111001111000110001000001000010000000101010110111110010011101011110011011111110101010111000010110011001011010010011010000111110011011011110111011000101110100010000000101100110101010000000110001001111110111001100001010101111001101001111100101000001001000011100001100110100110100001000001100010100000011111110100110000110010001000100100100111001110000000111101010010011110001000000101110010001000101000101000110001100011110011100111100111000010110101000001100110011000011100111000011001000110000110011010001111101100100110101100001001110000011111001000110011100000000101010101011111110000011011111111110000100100011101001110111100000001000110100001001100011010011000101000111100110001100100110010100001111010110011001010011111011111010000011000110011101111000100101101011101010110100000010000100101100100001011001001001101000011111100000011100011011110010111000010001010100100111010111011101100011111111010011110110101001100000001000111001110001011110011000000111100101110110011101111111010010010000111101110000100011001101101101010100010001010010001101110111100011110010011100010110011001111010110111101001110010001111111111001011110111111111011000000001111111010100101111011011010010001110010101001010000000111001001100100100100000111001010110100010100010011100110100011100011101010111000011101000001110000111100100100010010111010111010110110110111011011011010010011000011001101001101100011011101010100111000011101000110000010010100101111111111010011100110110001011001010100101010010101111100110101000011111110010101101000110001011011011100100011110010111101111001100000010001111111000000110011001010111101000100011000010100000011001000011011101111001001011111101111101001100110100000110101111100110100001111110111010001001100101000101011010101110100110101011101110011001111001000000111101100100110111101100110011110001111000111010000010001001110100101111111111010000011100111011000011100101110101100000000000101001000100111100001000111111001010100101110000000011101010101000000000001101011101110011110000100000010000011000100101110000101010000101010101001101110110111011100001011110110001100001000101100110000100001110011011100100010000010011111011101110100110001001101110110000110000111000011010011011111011001000101100100110111100100100001011010111011001111110011111100101001010111000001100000000111110000011011110110011111001010100101101011011000011111111011110000001100110010110010011100101011001010111001100110011001011010100000100010111101110101111000110110101111010011010111011000101110001101111110010010100010011011111010000001111011111110111000001100110001001110011010011101000100100000101111001000000101110111101011110100100011001100110001111110111101000110001000111001010011011010111001001110000111110110001110101100011010110010111011101000111011011000011100101111011011100010000101010011001010010010000111100000000000011000111111100100111000011101010111100001100100010111101010011000110011100000100110110000011011001101110100000100110110100100010111010010110001011101010100001100010111111100011001101001111101100010010001001000010011011100100011100001100001111111011010011110110111000011101001101111000110100001101001010010100010011000111101011111001101111000101101010000101010010101111010001000010110010011010011001101111100101110100110100110101101100001101011011110110110011110111001010011110111001111111111110010011011101011100111010010110010100110000010101000110101011101111110110000010100000001010000011101101001011100101000001101111011100101010111100000110101100011001101011101011101101001000010111000000001000010100110001011011010010101011100000010001001011000101010111110000100000000011100111000101010100011111010110110010111011100010101001111011100000101010010101000100000101000001110001101010011110101010101000011010110100101001010101010011101001011011110111011011000001011110101010011111001111101001001111000100011001011101111001001011111100110010001111010101101011101001001100111101100000100001110000010100011110110101011010101111100110110010000010011101010111110011110111111111000010011110110010101011101101010000000101011101110100101110001001110000010000010010000011010011100101110000111011010100111000011010010011001001001111100010110000100011010101110011100001000101000101101000011100000111101011011101010111000000111001110111110111101000000101011101111111011111100111111010101100111101111110111100011010111110101000000111011110000110010001010100001110110101010000100101111101011111111100010101110100001110110110110011110011110110101100010111000110111001011001100100010010010101101010011100110001101111101010001101010011001100110010011000010010000000011111110111111101100110100010011001101101110010001111101001011000000100110111001011111000001010101000110010010101110110000111110110100111100011100010101000010000010010111100000010100011010111010000001110101111010011011000111100110100111011011100011010101111111011010100111000111110010001101100110100001100101111100101000101100000101110011010110111110001001001100000001001010100101011010101100000011001000001001000000011001101110110101000101001100011111011000111110010101100000000101011001110011001110010000111000101000110010111000101001100000000111010010110010110000001010100101100110010101011001010101000010100011111110111100111011000000001101111101001101110011111010111001001111110111011110010101010111100111001000111011011100101001010011000111101111011000111000111101011110111111101000111010000011101111101001100100011111101001000101000110000101000101101110010110101101110101111001010110101011000110000010011010101000101111000110100001010000110111110011100010011000011101111101100101101101100101001000110011010110000101110111110010000001101111001110000100010010110111100000000011011010010000000110110111011110101110111000000110101000101011111100000001111111100001101101101111110000111100110000110100100100101010101001111001100110100000001001001011110100111101010100100011111101010010101110100010111110010010101111001011101001000011000100100110001110100101000110110000011001000101110110000011001110011011011000010010001101000010010101001111010001010000111100110001011101111001001001011110011000001111011000000111101010010111101010011101101100001011000000000001010110001111001100101110000110000111111101100100110010111110010011000110110000100100110100011000001101001010101001100110000011000110100101000110101100101000110000100000011011010110111100101001100100101110000100001110000101010110110110000011111100101100100011111011001001110011000010001100101011110000001000011000010010100110110100101111100010110111000001010110110100000000110110001110010101101110100010100100100000111111110111110000110010110101010001101110100001101111000101010010010110010010111011101011100110111000001110010110101111000010001101111100110110101010011011010100011010001000001011110101100111101101100100100101101111110101011011111101101110110011101000111010111011011011010100000011000110011010111010001110001000111011100110011011110111110001110010001110101000011101011001111101011011100000110110110010001100100110010001001101111000000110011001001111010000011110101101110110010001110101101101001100110010110100101011010100011000101011100001111000011100100111101110110101000100110010010001111011100001011010001000101001101111000001111100101001101000011110000110011010111000100101000001010010001010111000011100011010010011100101000001000101010000001111110111100001010101000001111011101011000110001100101100100111011111011010001110100101100010101001101000010111110001111110000010111000000011011111101011100110111000001111000110100101010101001100111000100000101111110001110000010110100001110010011010100100001011010111000100101110110011101111100000011000000110001010000110101100100111110011010011010001100010000001110110111110101001000011111011110101000010100011010001011001101000000110100110101101011010010110100111100111000100111100011111011100111111010101011100111101100001111100011101010101000100101010001010101010011010010101100000001001111100010101000011001010011111011111010110101111101100001101000111010000111001101001101011110001010100000111101010111111111011101101100110001111010100001001111111010111010100000101011110001100010111101101010010110000001111011100000100101001000100111000011001001111111000100010001000001111001111010000011110111101001110010101101000111100100010110010010000101100100000010010001111001110010001111010111011110010011011011101011110111010000010001001110110110011111011000110001001000001110011001111101011111110011000011111101011100100110001101110101010110110001001110101100010011100100000111100000010101100000110101100111100111011111101001111101010110011111011010011110100010010000001101100011000110000101001001010110100101100000000001011101111100101010111100010000001001100001101001011100010101110111000000011010101100100000101011100010111001101011001001110100000110111110111110000010100001000111110110101011000000010111110011101111111001011000010001000011100011110010010011001001111110101101110111101101011110110011010111111001101100000001111001010000110111101011001001111111010110101000001110001101011100000101111111010101110100000001010110001000001110001100111000001010000001001010101000011110011011001100001100111101001101001110101000011001011010000101100001110001110011010011111110011001010110111110010101100111111100001111011100100100101101101001011000000000010000111010110100101010001000101010110011111100100001100001111101101100110110011011100101001111001011000110011000111000101010100000100100000011101011011101001101010011100001000011000001011010000100001110001011111111001001011001000000010100111000100011110100101101011101100010111010110000110010100001110110011010100100100111111010111100111101000110011011111000110000000100010110000110110101111100101011001010100101100111001001110110101110101101010101101011000010011000101100100100011111101000110111100001110101000110111001001000010011001000101111010100011111001101011111011111011101010001001011001010101101001110110100010101100001001111000011011001110001011011000111001110001110100010101010101101000101101101100011111001000110001011100000011011001101101111111110011101010000110101010010010111001001000001010001011100010011100000100011100001110110001000111110111000011010000110101001000000100010010100001010111101101011111010110011110010110010010100100100101010011011101101010111100011001111101000011101000001101111101010110101000001100001110001001110111100000010110110101101000000011011000111001000100110101000001100010111101111111100110001011010101010111001101100111000101001110000010000000100001010101111100011011100101101000101000100010111110000100100011000010000001001010000010001011001000100101010000100100011101000110111100010000011011100110110011010000010100110001101010000011100010011000111110100111101000001110000101111110101001000111000101000010100001010010001011101011000001010001110100011000000001001010110011111000000111111111101000000010110101100010101110001001101110100110101100110001010000110101101101111101010001100111011100110111111011001101000110110111100111011101111010100110000001000100001110011110010011101011110110101110100111011111100110010011101100101011010010111111010100000100000011100000010111001110001110001111111000101001001111110101011001111010101001111111111111011000100001111001111000111111010111011100000010101010011100111101001000100110101110111101110010101011010010101011011011110001011110101110010000111110110010010101011101000110011000000001010001111111001101110010110000110001111001100010010111100000011110110101000001101001100101100011010010011100010110100000111011000111110001101100100000100101100111101100010111100110011100011001100001100110110001110100110001101010100001011110000000011011001110010011111011111100101111011110101110110111011100010010111101000110100110010100010001100001101000100110001011111011100000100101100001111010000101000000111010100101111010100010111001010000101001001100011101010110001100110010100010010000001101000011100000011010010101010010000101110111010111110101010010011010000101001111001001110001000101110101011001101111001011111001110100010101110100110100100100011001101010111110000100100000010001000110011001000111001000000110000000000011000001111001110001100100100111000011010011100101011101000001111110010110001110001100011001101101001010010011101101001100001101010011101000001001100110100100111111010111001100000000110100011010010110111110010001111010010101000110111111010010000011110011011001111110010100101001011110011000111111010001110010110111100000011011110011110101010011101110111000010001000110100100010110111110010001110001101010000000011001111000101001110101101100111110010000110001101000011001010110000101110011000010010100110100100111101000111111100010010101011011100110011010000111000011011100001101011110001101010101110111110001100101110101111010111011111111101010001010000000110100101001101101111000000101110001010010001000110001101011111110010010010011011001011011100011001010101011101100111100011000001111100000110011111010100011000011011000101100010000100011001100100010000101110000100111011111101011000110100011101110101010111000011101010111101110000011100000111000000100001010111000000001101011000011010001101001000111101101011101110100110011101101011100000010000010000101111010001100100001101100111000010011001111101100110000000111111000111111111111101000000011011001000011000111010010100010111101010111100000000100001111001011000000001111001111001111111000010100011011000111010001010000110101100000000100101001110101001101010100101001100010011101011100000010011101101011011100101111010101111100110010001101010001001000100101000010000000111001000000000100010110111011000001111111110111001000110001000101011110000100010101101001000000101000001001010011111001011111101110011111100001111011001010101010010011011000110011111111001111110100011110001110111000101010100101111000100101101011110000111111011110001000110010101011110001110000010111101110111101001010011010100111110100010111111110000000010111101111000110110011110110111101011110011011000111011111110001111000100011000010010111101010001110100100010011110111011100111101001001001101110011111110111001111111001000110100000000100110010100000110101111111111001000001000110000101011101001101101101110100110101100011010011001111011111110011010000001001011111101110011100110100010100000101111000101010110000100010100111110101110111110011001101001101101110100100011011101011011000100000010110101110100110100101001100011010101011111111101111110010011000001011010001011001001100110011000000100100010111011000101011001111000001010101101100010101110111111001100010010011010111011100110000000100100010000001010101110010101100000101011100111001001001010111101001011010100000110110110010001011100101111111111010010011010111001100011101101110011100011011110100000100011000001110111100101101100110101000110010010010010000000000111101111001101010101010111000001010111000101011010110011011101111101101110100010001111010000100010011101111000010001111001000010101010000011001001001101010001111110010110001011110101001010111111011111010100100111100001000110110110001011111011010011111000101001011100101010001001101100000101100001111011000000110101011110100001011010111111000010000101101000101100001000001100000100100101110101011010011110111010010101000000100110100111010110100010010010100001110000100011101011000001110011001001010100011011010011110010011111101110011100001101111001010010100111100100000101000110111011111010110101100001111001011110101110110101111110010010100111101000011010101001100111010000000000000110001110000110010110111010001010001000000001010110001101001011010101111011011001100100110001100101000001010010111100100010011110111000110001001110000000000010001010100001010010101000100101101010000101010100100011101001000101110011111100010001001001110100010110101101011110011111101110111110011011110101100111001110000110110010001101010100110111100000001101000100110011011011111001011011011101000001110011010111000011000010100000001011110010010001101110010101000001110101100010111001000001000010111000111101001101100010100110001001001111101010111100001011001000001110111011111001011001010011001100010000100011101111011111001100001101111001010100010011111100101100101011011110001011110111000001100001000101011110111011100110011110011000011110010110110010001100101110001001010011010000110101011100010100110000011100000001111110111100101010111000010100111111011100100111111101000111000100010000011000100010000011101000010111000001111100000101000000110011010111011111101111111000011001010010011100000010010011111000010111100111011101001011011011111011011001010110010110111100110011100111011001011110001101001100011110000100011001011011010000110101010101110010110110110111010110100001000110110011111101000100100110101010100011000111001101111000111000110001111001101011110110001010101011000101101100110101111000011101011011101000101100110101100010001100110001000100001001101011100101010010001011111101110110101110001000100111110010010111010111100011110011011010100001000110101100011000100111001110011010011110001000011110110000000011101100111101001011001000110110000100100001111111111110000100111110010010011101110101000000010100000100101110011110011110010000000111010110101110011010111010001110001001100100010111001001100110001001001010011011110000001110111000010101001011110010110110100000001000011001110110111101111010101100000111100001111100101101100001101110011110001000100001011011111100101101101001110111100011010001100011001001011000100110000101100010010010110110010011111010001010000000100100101011110010000100000011110100010110001010000110110101110011100010110100111101001000101010001110010001010011011010101100011111110010000111100010100110001100011111101001100110111000100010111000000101000101101100001011100000100111010101010001110001010011001001001110000100000001010010001101011100111010000000010101111010111000110000000100011010111011010110110010110010001011110110110011101011101001000110001011111001111101001100111001001100010000111000001100101111101100001100110000100101101011001100110011100010111100101010111110100001100110101001111011110100100100010011100001011000101100110010101101011100011111111010001001111001110100111010000100011100100111011110111110011100000001000001010010000001000010000100111110011110110011010001001011001010100111000011000101001100000000001010110100110101001010110011000101100001100000001100100010101011110100001011101100001000001010001100111001110101001111011110101110100001101100001111001111101000011011000101100110001111010111101001010100011000101101010010011000010101011001100111001110101101100110101111101101010001111100110101010000100001001000001100010000101011010001011001100100111100011001010000101001101101011010001000110101011101010000101011011101111011100110111010011000010110011011001001100101000000011000011111010101111101100111100101111100001010011111001000001010011111011100010011010011111101100100110100000001011101001000101001110010111001100010101111110110010111011110100101000110100011111000010000011011100010010101111111110001110111010110000011010101011000110100010111100101101110110010110101100000011010111111110111010100111000100100010000111111110101001100111001110100011011101101011000100101111111111101100001011000110101101001100000111000111110011001111010110010111100010011110110100101000100011110001110000010110101101111100010000101101110000001101111001100110111101000111011101111101010001011000100111101100010111111101110110001000100000111101110001011011010010110011111100010011010010110000010001111101110111000000001010101101111010110000010110001100101100110111011001111100001011010000000110001011011101010001100100010001011000110101111100001000101010101011001100101111101000010101111001000101001000000100100110011011110111001000100000011000111100010000010011000001110000110101010001111111001101000010000101101100110100110011011011000110100000111111010000111101011000100010101011110111001001011001010010000101011111001110101000000010001000001001101100011010110101110001101100011111100001110111011010111100110111001000011100001110101011111010001001010001010111001010000111011111110010110110011111011111010111000000110110100101110010110101010010110000110010010110011100110000001100011101100111000101011010100000101000010110000011111100011101111111001100111101011000001011101000110101110000011100101001111101101010000110010110101010001011011101101000110001100001101110110100111011100100110101111011101000001011101011100101000110110000011010111010100101110111101000101100101000101100010011111100101101001001011000101011000001111000101101001110101010011001100111010100011000010000010101001000010011101110111100101001010001110011100010010101011101111110000010001101111100101000000110110010100100101101100100001000000010000110001100000011001000000100001100010101111100001100111111110111100011111010011010010011000100101011111100110100001001001110101100011010101110001100011010000000000000001010011111011001111110000001010010111000100010011000010110100010111101010110111101101010101000101001011101101011111010011011010100111111110110110001101100000110101100110010011110001110101101001010011001000011011110011101111010110110000100100000000010110000110001111101011110011011101100010110111110110111001001110101000111000110110001101000000100011111110110010001110110001110011001110010010011001100101000010111011000101100011011111011101111010100010000001101111001011110011100100000101000001110000000111010100000100110101111111000100101010010010000101000000010011001011100101111111011101110011010011100000000010101101110111001101010101100011001111110010100000001000111111000000111010010100011101110111010001010010000010111011000011001101011101110011101100100111110011101100111100111101111011011110100000011100110000101000110110100100000110000011111011100000000110100110100100010010101111001011100101101100111011110101011111101000100111110011100011100010111000000101010001011111000111010100001001001111100111000011100000001110011001011111000011001100101000000101111110101101100100111101101101101101001000100000101110011111111111011011101101001001101001100011111000000011111000001110001101010011011010000111101001010101001001000000000101000110101100101100110011100001111100101000011010100111100001100100010000101101001111110010000100010001000101111110100010001101010000100010000110111000011011010100111010011010010010001000110100001011001001010000110100110111111001101101110101101100111000101110100110000010010011100101110011000101111110010110010000010110011011111110100101111110110010100101100110001000110100011000001011100001111001001101001101000101111111011010010010100100111100100000011110010001001000000011110000110101010000011100101010111100001001100111101111110000100000110001011001100101010100010000100010100010001010010011000100111110111101101010011110101010001010010111110110011100111010101000000000100100010010100110100011111100101101110100011010111000010001000011111101010101101010110110000110011000101111000110110111011111101011010000010000110111000111110100100100101010001001100101110011011111000100000100100110100010110001000111000001110001001111001001100010010001110011010111010001111100110100100010100101100001101101100100100110000011000101111001110110000001111000010110001101000010000111000001011010111011001110111010001001000011100111101001011110011100111001101111100111000001011101001011100110100101000101000001011000000110001010000111101011101010111111011010010110101000100111101011001010101111110001010100111101100001000010101111010111001011101111011001001000101101000110000110001011001110011011000011101100101111111101000110111110010000110111001010110010010010011000110100011010011101001100001100110011110110101110110001100011010100011110111111110111110011111010111011101011000001010011111101100101111100110001011100011100000010001111000001110011010010010110110001111010001100101011101001011001110111001100100010111111101110001110001001011000110110011001011001111001010000100010000001110001100101110110000111110101010000011010110111111001010001010100010100101001101000000101001110100011011011011001111011011110110001111000101000001010111011101111010100001110010001010110110011101101101011101001100000111001111101110100001101110001101111001010001100001111111110110010001010110110100001111110001100010000111010100001011011110110000011010010100000000001000010111000010011011110100010011101110111011111101010110111110110101001010010001000101101000110001000110110010100011110110110010001001011101011111011001100000011100100011000110101111010101101010011001100111111100110111110100000110100110011110111000111101001111010110010001110110110011111101001111110001111000010110001111000111000011010100001111000010001001111011111111110100101010101111110000000111001011000111111101101011101100110100001011111010011010010000110011000001011010010011001110011010001101011001011001100101111000000111000011101000000000111110111100011000111001100010111011000100111011000110011101000111101110011001011100110110110110100011010010111101110111011100011111101101100100010010010101101100000111001111000110010000111011100100100001100011110110010110110000001111101100110001011000100110101110100001111000010011101000101001100110110011111000100110011111111100000111011100001010000111111101001101100111101110011111111100010111000000111111011101001000101011000100011111000000011000110100101100000010101000010110001111010000001110010110001000111001011011011000010011001101010011001000100101000000111110111110010000110100010010000010011111010101100101100111110000100011110111100101110111100010001110110100001110011100110001011011110000110010111111110010001100001110110000001011001011111110001010010001111101001100000010100000000010110001101011110011000111010011001001011101100001100000100110111101010010111110110001001101001110000111110111010001001001100111011101000001001111111110011011011111011011001011101111010101101111001011000001110010101111010101110110110101100101010101001000001101001110000001100010100001100010101100000010010000001010010011100011001010111010110100001111010010110000011001010010111110100011101111100100110101010000101111111001101010011100001100010101110000111110110111111001011111100001000010110000011001111010010000110000001010011110101011110110110001011011100110101001000101000110100011001110110101110111011010111010110100111011101111000111111100110110010010100110000100100011100010000000100101110100010111101110000110010001011111111000011100000100011001101100111110111011001000001001100000001111011111010011001010111111011010000101010110111111001010101000101111110010011010101111010100011011101111011001000101011111111001000110100011111101010011111011011000101010010101111101100010100000110000011001001110110001010110001000111111110110101000010111111101111110001110111010111101110110010000011011101010101110010001101001001000010000101111011010000111100011110000001001111010110001000011011010011111001001011110000011010011001001001110001000101011110101010001011011110100101011111110110111011101011010100001101011001001011110111110001010100000001001010101010001101110010000000101101111110011010001101011101101111111100011101101010011100101010000010011110100101000001100111001000111110011000111100011111110001111000000010001010100111010010111000110010100110100100110100011010010100110111110111110110111100111101000111011110110001010001000000101001011000101110101101111100010100000001110000110100111001100011110110000000101000010110010110000110101100100111011001111011010101010010011000011001010101010111110011011010110001010010110001100001101010111001001100000110011110111111110110010101110111110100001111000110101001100011011110110001111000001110000100100010011001010010101011010010011111000100111001111010000010111100110010110000111101000100001110100000100101110110000001101011000011100101001000111010100011010011001101100001011110110000101101100101101000110100100001011110010011011101101011111000100000110101011010110000101100000110101000010101000100010010111001001100111110101001110010010101000011110000101100010001111011000000001111110011110010000001101010000001111010000101011110101000101100100001101000100001111110111110111101100010101111110111011110000101111010011101001110101011010110010111100110100101110101000100011100101100101000000111001011000101101110110100001010010100001111111110110001011101010101011010110100101110101110000000101001101111100000111110100011011100100100101000010011110011000101011010010000001000001000000010111011111111100010101001111110100100001001001001100111000101110000000100000101000001000011110111101110011000100111100110110000010101010111101101011110110001000001101101110100100000011001010110011101100110011111111111100010010010010011000111011110111100100111001001011000001101110011010110100011110100001100100110000100001110001101100010101001110100000011010001100000110000110001111010001000101010000101010111101001100100101111001000010101001000001001101111110001100010011111100011000010101111100010010110010100110110101011010110111100010100111000011001011110011101100001110101001011111100001010000111110010100000100110110101001101001001110000110000010111111011001110000001000001000111111101101011000000101011000010011001100001001011110100011110011110011001001100110101011101001001110010110001010110011010011101010110101111001001011000100001100000110100011011110001011101000101110000111000111100101010001111101101111010100010110000010001111111010011110000011000011111101000100101100110011101100010001101000000110110111001010000010111001100011101101110000111110110110011110011001110110111011101000110011101000001010100010101101000000010000101111011101001110100111010110101110101101011100100000010100010011000011111111010111000000011100001001010001000000000110100100101010101010100111001100011101110000100100100101000011110101010110101000001100110110010101000010001110011101000111011011010001111101010000100011010010010111011111011111101110110110001011011010101001111001100101101111010001101110110011110011110011000110100101101100111010110111111001100011011110001101011001110011111111110001110000101101000110101010100110101110001111111000111011100110100110110111011111111001001100011001110111101000011011100100010001011000011010111110001000110100111101000011111101001100010101100000001001000001111110011110111000101111110010001010101110010111010101001010100010101101000010111000111110000010011010011100001011111110001000001000101101101110100110111010000000001011010101001100001101011100100000101100000111000100101000110010111101100100000111000110101001111001111101110100000000011110101011001000010011010001101001011001000000001010101001010111110000001000110100101100010101010011001000001101100101001111100100001000111001010001111011000010101001011011100110101001000100101010100110100010110001001110110100001001010010100110101100110111011111110111000010100001000101000100111111010010011001100000010000111010100101100100000010110111000011011001001111110010101111001100001010011000000110100100100111001100100111100000101010101000000110110101101000100101001101110101010011111111100111110000001000101010100100000110100100010100011111001111110001100111101110000010010101010110000001010111111111111111001000011010101001101011011110000010101101101011001001100010110111101011101100101110001000010101101100110011100000101000000010110100000101000101101011011110111101001000011011111101111001100000001110101011111010101011000111101100011010111001110010010111001000010110001111001101000111101010100010000001100100010110111011110011110011111101111100111101001011100111011110111110000010100100010000011010111010100011010010100111000100010110111011110011100100010101110000001011010000111010110010000000010101001101010000011010100000100111000001010111111111000101111011111000110010001111011000000101000011010010101111011000111101010111100100100011100111010001111100011011001111101100101111101100011010101010011000100000100000110000000000001110110110110111111110100000101010100110000011001100100101110110111111110110110010100110010101000001010100101101101111000001011101000110010001111100001100000101100100001110100101101001010001010101111011100001101100101101111001101110000001001110100111011001100111000010010000111000111000011010100110001100000101110010111010000001111000111111100001001011010110101001100100010000101000101101101011100010010000111110011001110000011110101100111011100111000100101100101100100111011011101011111011111110011111111100001001110011011111001001111000001000100110010110111001111101010011111001110111111011010000011000000111101010001000101010011011011111011010111110010001110101010011010001000110110000010011111100001110101101000010111100111111110101011001101000010001000000010101111100010011100101101100111011101000101000001111000001101101110011110000100010101110101011111111010001100010110110110010010111010010001100010111000001010110110001110110010011011111000111101110001111010111011101000100101110010010101100001111101010101010001110101100110101100001111010010011100010000011111000111011110001100110100000101100001110110011011010011100000000101000001110101111111110011111000000010000011000011100010010010101111101010110101100001100011100111001000010011001101100011000101010011101110001011111101001000001110110100011101000011111011101110010010001110111010010001010111011000101110101101001110111110110110000000010110110001001001111101101110011010110000010110001000011100110010010011011010011101010100111011111110101110000000110111110111001010111110000000111011000001110001001011011000001011111110001111111111111001000110101001100111011110111010111011101010000011100111011100001011000000110110010111110111001001001000010111111011001110011001010110011110100111011110011100010100110100001101001101011011101110011101011001100001100000111101111110101110101111011000111111011110011011011010011001111111101101011111110110110101001111110101001101101100010001111111011100111111010101010001100110001110011000001111000100000110110101011001001111111011011011001000101000011011011011000111001110101111000010000010000000000010001001000001110000001011110000010011011011011111110000010001001101010101101100111100001001100010110111101011111001001110001001111011111111000101100011100011011001100010110101001001001101001110101110010101001111010111111001111001000101011010011110011000101010100101011011110101001110100000010101010101000111110100011111000000110111111000111000000000101101110011100000000110000000010110101000101110111010011110010001100110101011011001011111011001000011011110001111111100000011111011101100111101101101000011100000011111011101100101010100101111011111100000011010110010001000010110010111111111001101010100110110000111000100111000101000101001110001110101111011100111010000111111001111010100111111101001111100001011010000010000110001111000011111110011011100110100000001010100001111010111001111110110000110101101011011000110011010001100011111110111010001101111010000101011011000110000000111010100011111000100101111100100110101000101011111010111110111000101001000000001101011010101110101100100101010011111101011110011111100000001011000100100000100101001110100111000101000100011001000111011110000101111010111000111111000110010101100010011101010100010011011011100100101111010100110110110100001010101001111101001100110110100100110111101111000100111100111110011010010010110111010101110110100110001001011100100001100100011011110100110111010111101100101111110011001101010110001010010010000001101111111001011000111010000111011000001110000011101100011010001001110011110110110101000000110110100100100001000001000100101111000110100100011101010000101111111101000100101000011010010001001010101100010001110010101011101111100101101011100001000011100011010010010111101000100111111011101001100110000100110111100101111001111110010100100110000110001011111110100000110010101000000010011010101101110110111101011000111110011011110110101110101100101100100001110100000010010111000000101010001111111101010111000000011111110000011101101111110001000000100001011010101111111111000100110101001010010110101001100110110001101100000011111011011100101110111010010100100110011001001100001000000011111000011010111100110101000010011010000010011001011011011001100100100111110101100100100001111111010100110011011001100010100000101001000110011011100110110000111011010011001101010010000010010011011110110011111110111100001100101001100000110000000101101100101111101100100110000111101100111011101110010011011101010101111000100010111100011001110100111001010100110010110011111001010011000101111001000011010001110000101100100011110100111110000010010001011101011110000001001000011011100100101101001001111100000010000110101000101111101110100001101001111000010010011111000111000011100000011011000010001010111001101111000100111100111011111001001111011101010001111011000101110010000001110111101010110110001100110101111101000100100101100111100001010110111111011111100010111011111011101011111100111101011111111100000000100000001100111100101111110000000010111101101101101111011111110101111110101010110010111111110110101101001010001110100101100011010011010011111101110010100000011110000010011001011110101000100000010111101000011110000101101010101001011000000011100101100100001100010011101000110000110010001001100110111001101001100111111001001111101000011000010111011001000111010101000011100011111101100111100100111110101000110011100011011001111101110000110000001111100111100001111101011110110010101111000011100110000001000001001101111111101101110100011100010000101111110101100011000000110011100011011010001111010111100101100010001011110101100110000111100100000101001011111001111001110101011000011110001101010111111111011111010110011011111000110000001011011100000010111110001000011100001010001001111001101010010111100110101110111001101101101000010100101011010100101100101000111111000100001100010111010111010110000111010000010100011000100101000001000111000101011111110100011100111001001011000000010011110000111010111111000000011111101100011010010010001111000111000010011101100000111100110010111110100110000011111111000101100000100100111001101010000001010111011101110011000110110101111000000110100001001000010101011011010001100110011001001011001111001111110100101010011000111001100110010010111001010010001000100010010001010011010111101111101110010000110001011000110110111000100010100110111001110001001000001000001111001001100000001111010010000101011110110010100100110111111000001110100110110111001100001101000011001001010001101100100010110000110111111001111110001101101010011100110011011010110110001111101011111101111001101000110010010001110111010101100110011110101111010011101011001011100100111110011010111001110001010100010101100110010111110111010100010110110011101110011000011001001000101100101001110111000101100001010110010101001001000011111111000100100110011110100010001000001011011000110100011110101101001110111010001100101010010110001111110111010011001011001011011101001010110111011101010010101001001101100100001110100110010010011100101000111011101000011001000000111110100101011111101000110101111110110000101101100101111100110011100110111001101100001101000011110011110001111101110111001101100000111000110011111100001000111001001001100110110111000000101110001001000000110010111011101001110010100001001100110111100100000001111101101101100001011111000001011001011111100101100101111100001111011101101001100010000101100100101001011100011010011101001011110100110100100110000000101111011010100101011111011101011001001011110111100100000100001111111011100111111100011011100101111001111100100111110110000111111001001011011101110100001100011010001010000100001010101111101100100111100011101011000011101000111101111001000110110000010110100010011101100001111001110011001100100101010111111101010011011000001100110101100110010001100111111011011010000011101100010111101000001000111100100101001111101111000001011011101011010100000000000111001100001011100100001111000000100110000011101111011011101000010011100110101100000111001110100110010000101001101001010011110001011110100001011110001010001011110011011111110001101100011010101010111110110101110101010110000110000110101111110010011010110111001011111111011101101111101100110101001011111000001010101011010000010001100111000000001000011011001011110000100100100001111010010100110011101000110110010010010101100111000010111101000010001011100101101101101000000010100100010110010000011100111110011011010011011000100111000000000111111111100111001001010110001101010011001100011101000010100010111100110011100111011001100001111000111111000010100101001100110110100011110110101101111101001010100111000100100111000001101111101000100000100010111000110101010010001001110101011110100101001100100101101111111101010001000100111110011011011100101100011011000100000100111010111101101001111110110110111001100110000101100000000011001010111100000011010101101001110000011010110100011110001100100110010100001000000000001100010110010111111000110001100001011000100100011011000111010010111111011011100000000110000000010001110110101010110110011111101011010000010111100111111111011010110011000111010100001101010000000101100111110101111001000111100011010110111111000110001010011110010100100001000101000011111101111011101111110001000100000100110101100110101101011010110001100010011011010011111011101011110000111100101110111010010010001111010011110001010100110001110001101100110001100110111000100010000011000010001111111111101110110001111011110101101001010110011011100101111000011101000100011001111000110001111100000010010010001111110110010001011100100111100100111010110010111111000001110010111100110011010011110001010010110011101000111111010000100101010011001010010000011011001000011010111101111001000001000010011011010001110111000111011101011001010111111100100001010100100111001010111110111000101010001010011100101101110111011011000100001001111101001001111100011111001010001100000110001001100000001110001100001100110110111110011011010010011011100101001100001011000001111011110100110010010001101110111111111100101110000010011000000100001101111110001111011001010111111101111001100000000101101011111000000010110010110110000101011101100010011111010000000100001110100111001110011101010110101100100100111110110101010000001101110010111111000111110010100001010010100010111110011000010100100010000011111010000110001100111100011111100001001011010011101010001110011111010011011011111100011001000001110100000101011001011011010110010010111011110100000010110000111001110010001001100100010111011011010100010111110010010101010111101101011001100110010011011011011000101100111101011001110101100011110000111010101011000111101000000110000011000110001010011000001011111011001001001110000000111001001110001001111010011101000000011101001111010101000111110010110101100000011000010101010010101001101001001111111110110010010110101000100010100100010010100101111111100010110010011000001110111110100001010001101101111110001011010110111110001010000000011000011110111100101000110001101100010110111010100011000111001111000000010111011000101010010010100011100111000111010000110110001101010010010101001001110001100110110111100111111010010000110100000111111010110001110111000101101000001000001110101100010110001111011110101110011101001110111110000011111001000000100010101100011011000000001101101100100011001111100001100001110111010101101111101101111011000100010100000011011010100010010111111110110010101101011010000001011010000110010001011110111000001011010100100100110101001110111010010110011100011111110111111101110011110110001001110001100111111011111001110010001010000011000110011010100001111100101101010110011001100100010010111111000010101111001010101101010100000110111110101101010011001110111011100111000001101101000110100111101111111001010110010000110001001011110111010010010111000000110010110101010000110110100110101011001001100000011011101011001100110001010100100101101011100001000101110010011101000101011001101101110001111010010111001001101001110011100110110000001100011100011111000000010111110110110011111000000111110000100010001101001101111010100110111101111001111011000011111100100101001110010100011101010010100001101010001011100011101101101011010110110100000000100010001011101011101010001101010111111110001100111000010001110101001001100011111010110011101011100100011100111101001011100100100110010111000101110011110111000110011101011111101110000100111001101101000111100010010010011010100010000100011101111010000000110000001001100100000101101001011001001011100111111111100000110011001000101111011011011000101111011000101010110011011110111001011001110111110001100000101000111011011011011000110100101001010000110010010011100011100111100100111110000010111010010000100001001001000010101110110111111011101100100111000110111110111000000100001011000100110011001111010111101111000001001010110001111000101000100100110101101001101010011100000101010100011111101001111111111111000011011000011010100001110110111000110111011011100011110111100011110111001110100100011010010100000111110100001011111001010001111100001111010011011111101110101000111100000000000100010101001100001100100000100101000110110101110001100101100011010111111011111000010000010010100110000110111111011001001010101110100001111100111010011110000100010001000011101101110001101001011001011101111001100011001010000010100010101111000001011111001110110000010111011100100111000111010100110100000111110001001011111001011110010000101110101111101001111110000010000111110100101010110011100001000110010101001100010010111101100101100001110110110101101011001110001011010101001111111100111100001100001010000011000100010010010010010111000110111100100001111111000111010010101011101101011011100001001110010110101001110101100111101011111110001001110111010011101010100011011000110001001101100100110100011001100101000011011000100101110000000111101011000100100001101100100100000101001110011100011111001101101010101011101001101010111001011000100100110001101111000001100010111100010110111101111010100110111110000110111000011001101111110101010111011001010011110110100011001100000001101010101101001111010011000100101101011000001010011011110010101111101001111010010001000101010101101110010011100101001110100011001110110011110110110100110110010011101111001101100010101101001100010010010001110011101111101011001000100011110001000110100000111011001111110011001110011100110101100100011101110001001101110111100000100011100011000101011010111111101111000011001100101101000010100000111011011101011000100010100010011011000100100011000101101011010110101100101100101111001100100100100100001101010100001100100010000110101000010000101001010000001001001010101111101011111111000110001010110110001100110001011101100100010101001011001000110100101111101100000100101011000010010000100110111011110010010101110110100011110100010101011111001100010111000101111000011110011010001101100011100100100111101000001111101101110100101010001100011001111100000010110010100010000001010011110101010011010001001101110101111111100111101110011100011010000010101100110010011111110110110010110010101001111100000001101110010101001101100111100010000110001110111110101111111000101011011100100001101011110110101110011100000011001011001010010111000110010110010111110001100000111001001110111101010000010101101010001110010100101000011000000000010110010100010011101110000100000101110100111101100101110101001000011010111010101011110000000101111011101010110011011111001000101010000111101111101011001010110110011100110110000011001000000011100111001010011010000011100110011111011100011110110000010001110011001011111000000101011001100000101100101110011111011110001111100011101000001011011001111001011000111000000001111111000000010101100100101000110100110100001000101001011100010100010000001010010011101111100000000110100000011010111011001000010011100110000011111001100011010001011001100000110000010011001001100100000100100011010011001011010111100001011011110110100101001110010100000000000111100001110000110111111110011100001101010100100110100000011100011001101111010000110000101110011010111100110111000010110000010010100000000001011110011101110110111100111101110110101011110001100110101001100010101001110111110011001111001010101010010111010101111001001110101100011000110010010010011001100110010111100010000001011110011100011011011010101111110101101100100101010001001001110111010000101000111010001100111101100101010101001111100001011000010100010011111001101000010101111000001001111100011101101110001000101001000101110111010100011101011011000111110101001101010111111001101001110101001110111111001100111001101001101111000101100111110010100000101100010111000011000111110000111101001111100110010100110101011011010010000111100110010000010110011001001111001010100001100010100101101100110010011001110001001100100010010111001010011101000000010100110101011110000001110101100111101101011010011100111101000010101100110000101111110111110011010110000010001000100010100111111101010011110011101110000110000100000100000101001100101000110101010100010101100111010000111110100011000100010000111110110101101111111000110001100110101011111011010110011101101010000100100010000101010010111110111011101111101101000000111011100111110111100101001001011100011101011000111001111111100000110011110001101010001110001010010011001011100101011110110111011111001101111110000011010010000010000011111011010010010011101001110100000000110110000110110001101100000000110001100111101110110100100101011000111001101111110011001011111111011100111010000100110111011100111101110101001011110011010101011101001101101001001001110010000011111000111101001100110111011111101110001011011000011010010000111101110101110011100101010000011101000000111011001010000010010010001011111111000001011001100111010101110000010000010100101010101010100101110001111011110010101101100101010011000001000000000001010111100001010111100011101111000100101111100100000001011000111111011000100101111011000001110111110110100100000100111100111110110110000000000100001111001100111100001111110111000101101000111010000011000010101011110011001111100101001101111100011011000000100000100101110000010010011111001111110100110010001111011001100100010110101010011111100011001100001110101010001000111001000000111000001110100111010101111001001011000011101011011111111101111110011111110100101100110010101101010110011110110011101101000101011111010011110000010111110010011000110111010110101010101010011111000000111101011001101000000001111001000000011010100100100011011010000011011101000100010000101110010100111110110100101100001110000110100010010011101101011111100000111100100010001100110010010110100111101111011000011001100000111001000100010000110001011000010001011100010100001001001001111011001001101011010001111101100001001100011000110100010000101111010110001100000011010000110000110111110101000011110111001010110000011110101000100111100101111000011101101010011101111101100001110100100000011100011110110110000100100110101011010110011101111110110001000111110101001000000100001111111001010011100011100000001111100010111101100001011110000110111111100010000101100101001011111110010100100000001100110011111001000000101110000101111100111011100101010101111001001011111011101110001000111011100010100000001111001010000000100110100001100011100111000111100101011011111011011001001011101101010100010111010101000111001000110101001101000100101001000101000010111011011101100011111001111010011101000100111111100110010100101011010111101010100010011100110101100110000010000101011101100111111100000100111000100011011000110100001110110111000010000100101100101100011110010010110101100011101001110001101111111100111110101111100000100000101001010101110101011001000110011101001010000001110101110110000111110101101110100100011110100110000010111010011011100001000111110111000011011000110000101111011001010110101110100100110100100111010000001101001010111011001110101101011000101011000011100111110011001011101111100101001100110011010011001010100110100011011011010110110100000101000011111011011100001101110110000100010001100110111011100001101101000111101000111001111101110100101000001001000101100010001001010101000100010111100000110010011010110011111110011110111000011010111010010101010011001000101011110100100101111111111101111001010111010010011001011111101010100110110100010001111001001110011101111011000010110100100010010100011011111010010010011011111011000011110010001010001100001100000011010000010010110101110100111110110101111110010100001110100101001000010111100100101000010111101000011011000111011111110001110110110111000110111010100011110001101000001110011100011001001000110001011011101010011110001011001011001110010010001100000000111100100111000111010100010100001000000110110100111010110010111100011101010101000100011010010011101111111011000011011100110111110111100110001111110111101101110010111101000011111000011011011011010101010100001111011100111111010110000101110111011101101100101110011001100011010000101001011010111101000100101101001101001001111100101001011011111101000011010011001111011010100110111100010010110000110100100101011000110011100101110001011001011110100100001100100110010101000111111001100011101000100100110010011101001111100100010110001110100010110000111000001101111011111001111100101011000000000000101101000001101000010101101100100011101101011111001010100010100100010111111000010010100100001010111011101000101011011010000011110001011011000011100000000011100001011000001100111110110100110110110001011110100010000100101010001011001000011110000101110010001111010100111001100001101101010110011111110011001100101001001100110000111100001000111011101010101100111011111111000101000000000100001110110100001000001110001100000010111011110101110000101110111110101011110000101011110110110110100000101101111101001011011011101110111000100000111011001111110010010100110010110000100001101101110000100011100011111111001001110110110110010100010001001001001000111110010000111001011111001000001011001110001001101011011001001110011110100101001010001010101110000100011000100011010010110101011111010111001101011001010010001110000100010001101000101100111101101010111001001110110001000000110001101011000011010000000100100111100110011011111000010100100100000011101010011101101000011011101100101100001100010010111000100100010110001110100110000001111110001100110100111110100001110110100101111100100101011110000000110100100100110011000111010011111110001010101010101010100000011101110110111011111101001001000110010111011110011101110011110000010110001100100101101100101010000101110101010011001101111000101011000110000010000110111110100111001000011111110101111001011011011110110011001110101111100100010100111110110001010001110111100000010000011111010010011100011101101001010101111001101111011111101000010000010001010111111011010101110011111000100110111101000110011111100101010110110001010010010011111111010011100110001000100101110001010000000110001010110110101001010111010011001011111001011011011001111010010000001000000110110001110100101011010000011111111111000100001011000100100101110011010001010111101110111110110010010111011101011001101011001101000000010101000011111011100111011001110001101011100011110100000000100010001010100101101000111001100001011001011100110001111000010110111010001110011010111000010001001011001011011010101100010111001001001011011011110110010000010110001100010101111000001000010000101110001101011001001100000101101110000010010110111110000000000000011001000001111011111100100001111101000110001001000010111010011100000101001001010110001101111110010110010111100001100001011000100011011100111011000000110101000110001010110101010011111101010110010010100010000101100011100111111101111010111000011010001110111111001110111100101110011100011010100000101001010001010101110110100111111110000100100010010101111101100111010001110100100100000101111001100001100101000101001000101111111011110101001001010101101111101010011001010110010010011101110100101011101000110000010000110100001100000011110000111010001000110110011111011011000111100101001011011110110101000010010001001100111011010011000000011100010001100111101001001100001001111110111001111110011111111000101111001100010010001011011100111010101111110000110010011101011001011110010011000001000011001101110101010001000000110101110001011001001111001101111110011110011100001000111101110000101111011111000111001101100100001010011001000100001000111100010100011000111000011010011111100001110011011010001110111111111010001110101000010110011101110110011001011101001001001010000000000101110111001101001011101111010100000101010010110111001110000100101101110111011000000100000001010100101100101001011111111110010001000010111000011100011000001110100110011101011101111101001010110011110101001011011011001110000000011110111111001001110010000011101010111010010100101000100111100111101110001001111111010011011111000101101010010101110001100001001111000101100010100111001111011100101100100011010010111010101001010111000101100111011110100111010000001100010100110110101111101001011110101011010100101111001110101101111110110101110001110101101111001011100011100011111010111100011001000101110110110010101100000010101011001110000011110101010011011000010001111001000110110000101000100011100010000100110001110001100101101000011001001000110101101111010001010000000110000000011110011011011110001000001101011101011110011001011101010010011001000001100000001001110100110001010110000000110111010111010101010001000010110000111101110010001101111100010101110011001001101110010001110110100101101000111011010111100110101101000100101101001101110111011010011110000011001101110110000001001100110110011001101001100110001111001101110011100100101011010011111001110110100011100001100101101111010110010001010110111110101010110001000011011010101000010000010110111000111100010000111001010010011011110100011101100110100110001000101010100110101100110000111110001000000110011110111011001011101111111011001111100000100000000010100011011000100011000010000001110100101000110100110111011000110011110100001101001101100110011111001011000001001110110010001000001010000101111110100111110101011110100001110100111010001010111101111110111111100100000011100000100100111001000110111110011110100110111011010110010101110010110011001011000110001101100000101110010100000010010100101001110001010100010101011100100000000010110111011001001110110100010100000011101010110111001101001000110101111110111110111100100000001000010101000100111111101010101101110111101100011001101011001010000000000110010000110100010001010010000111111101111110100101011010100100001000100010110111011011110111101000000111011111001100011000100110010001100111001101000000111110100101010100100001100110011000000111111000100001100110111111101000001000101001101111000001101001101001100101111100111001000010001000110101010010000111100010101010101101110100001000010101010011111010011110111000011001000100010110011100000101110011110000000001101110101010000010100011011011001101101111111100000110010001001000011011001101101000001100000100001101001110011000011101010010011100000010110101001100000000010010111000001111000101101000001101101101110110111110110001101001111011011000110010110000100100111011110001001101110111000101010110010001011001001000101111010011100001110000100011110011011111111100101101010011001011100101100110010110010111101111111001110011110111111111101001000110000011111000101110111111101011011010000111101111010110011111011101001001000010011010111100010110110110001110001100010110011110001001111100010010010100000110011111101010111000000000011011011010010000001111000001110111100110011101000000110011110100111001110101011101011101111100100111000110110001011100011111111111100011101010101000001101000101101001001011011111110111110001000011000010010010110010011001110110000111001100101000111001110001011000111101100100000001010100111011001011000000000111000010010100000001010110111111101111100000000100111111110110011110100101010101111001010001111000100000001100100010001000110110000011110001010010111101101110010000100011111000000011011000100111100010000101010000101111000101000000101011100000111011000010001110011001011010100001000111001001000010110110000100001101011001000000011010111011100001101110011011101101101111000011100100010001111010100001000000100100010101010111111001100011110101111001110101111101010101110100000010011000000001010000110111110111100000011111100000011010111000001000111101101000001111110101111101100111011001110100000110001111001111001101011000111111111110111011110010101000011000100011111000100010100111110110110100101100000011110100101110011001010110101010111010011101000010100111101000111100000001100101011111011000011010101110110100111011011011101101000110001110001010001111000101010011011101101000100110001101101100110111101001101110000000011100010000011111001011000110001000101000001100011000010001110101001001000100100010011110010110010111110100100011001110000000111100000011011110010110111010001011110011110100101010110101010010010111110000111101010001101000100100000110101010101110000011011101001000101101100111000111110011110011101100100111010001110011001011010110010011111111111011011110110101101101010111010000100110110001011111110111011001011101001000001111110001111010011111110001100110011100110001101000001111110110010010011110100100111100101011110111011101000000111000111010100000010010101110101000001111011001111000100000100111110011110110010001010111010100100001011100111111100001110010100111010100001100111000010010101001100110100011111001101000110101000110011100100001001101010100000110011100101110010111011001111011001010011100001110110110110110001010010101101110100000011000111101101011101010011001000100101010001100101110100111010101111010101100000101010001011100000101101010001011001111011010010010111011110111100100000001111001101000111010110111011001101111000001010100100001111111010010101011101001100010101011010001110100101000111111111011010011110000011001100111111100001001000000110110011001010111111101100000101001110111010100000000111001010001001111010001011011101101001100001000110001111000011011001011110010110000100000111000101010000001111010011100001001110001110100110001010001001100011011001001111011111111101110010000010111100101000111110010111001111000111001100110111111011000100100101101011111000110101010000001000110011000010010101000011110001111110011001001010000001100010001010111011011110000001010010100111101111001000100011011011010000000111010001001000110101000000001110111101111000010111110001000000101000001011101000100100111010100000100001001010000001011001000000111010010100101100001011100010100000010001101100001010010111100000100100001101000001000001111010100110010001100110011001100011100011111011011000001001100101110010001100110010110110001111011000100100101001101000001001010100000001111111101011011001111111011110100001111110011100101000000011011011110000110101001101001101101110101110010110111011010011001110101110111101011001001101100000010100010100011000110100110010110011011111110101110100110010100010000011010010111111011010101011001100000111001001110111110000101011001010111110101100111111111000100110111110010101101110001010111011011111001101011101110100010001000011010010010010101100100001010101000101000010100011111111010101001001001000010001000100111110100011000000011001101000000011100001111001111001111111111000110001101110111111111011100110100011011001101010110011111000101111111010011011110100100110111100101110001011101001110011010100001110000000011111111100001011011111110000100110001000100110111111110000101101011111111111100011110001101100110111010011010011000100100110010110011101001011111101110010111001001111110100001110010000011111100110100110111010110110100101010011000101110011000101100100000101001001111001110100110111001101001101011101011110011001010111100001111101001101000010100000011100011111111111010110001000101111110000000101011000111000100111011110001110000000101001011111110000110100111010011001100110101101000100100001101000011011001101000010001101101001111001011111101101011010100000010000100011000110110101100100000111111110110110101111000110001101011001011010010101001110011010100011011010001110011110000010000000101110110111101100001110001000001111011000010101010000101111111101101010010001100001011001011000011101010101000101111000010001111000001101100001010000100000010101011001110110101111000001110111011001110001101100001001010001110110001111011011011011001100101001001001100101010011000010111100101100111101011111101101101110010101100000010011011011110111111011100010111101001011000110101101001111101111110110000101000010011110001100001011000010001101010111011000011101011110010110101001110111111100110111110000110011110000100101100001100100101111001111001111001100001111000100011111101101111010101010011101100010000110110001101101010011101111101110111110110100100110001100101110011110111000111001010011101001000110011001101010001001111000100101000000101110010111011101011101101010010101111110000011011110001101011001110101100001111110010110000000000010010110000011000111111000011010101000011000111101110001100111111011110000101111000010001001100111011000100000110110010111100111001101000010010011011110110111101101100110111110011011110101011100000111110100001100111011001000111111110000101010110001110010001100111100111111001111001001010101101101100010100110001110101111111101010001101010001000100010000101100000011100111100001101101110011100100011101010101011010011111110011010011011100001111010011110010100111101010000011000000100101011001000010010100001100001001011101010111110110111101111011101001001111000011000101010011000000100100111001101010000000101111111001011010001000101001001110010011111011001111000001010100110000100000100110101111110000101010100010101100111000101111110101111110110100010111101101010111010000011100101001010000111001100101010010111000010011011100000000110011011110000001000010111000101110110110001110011001110101110001000100001101111100111100110101010111010000101010100010100001001110100110001001000100000010000010000101111111010011110111111001011001011100101010100100010100111100010111011011100100010100010011111111111111000100010110010001100111100001111011011100010111110011001110100011000010001001100001010101010001011000000000110011111101010111011010011000011100111110111000010011110100001111000101011010111100001100010011110011011010101011101110111111011101100010000001101000001111000011100110010000101000000111101111101101010000010111011001011101110111100001100111011001000100001110001001100011100000100100111100110000111011011010110011001100110000111011010101110001100010100100000011011000011101001110111010001100100100000100001010010100001000110110011101110101000011110110010011111011000000010010100110000000100101000111101110010000111101000111001011000000100110110110100100001000000100010010110010000000000101010101000100101010010100110110011100010011110100111000001011111011000110101000001111011000101100100101011111001101001111111111100101000111010011010111001001001101011110001011011110110110001110011011001001001000100011101101110001000101011000001101100110100111011000010101100001101011010010010001111110011001001111100110010100011101001101011111100110101111000111111000000010010111010100001011001111010110001010110110001110110101100010101110001001000000011010000101111010101001101111000100001010010101101100110111010001000011010101010010111001100001110000111000011011011011010101111001100101000100100001101001100011010111011001100010000100110010111101100110111000011111010100001110010001001011010101111101001011110011001000110110001111001101110110111010001111110011110110000011111110001110111011110000000111011011111110111001001110010101101011110110110110101100110111101000110110010101011000111010001001110001110111001100001010001000111000100011111100011111011101101000000100010001001111001111111010001110000100001001010101000011000000001011000100000110001000111010100101000010111101110001110001011110000010100100011000101011010010110110110001110011011011101010010000100000001100001011101011010001100110100101100000111111000111011000100001010110111111010110000100101000100001101101111000101101100111101100000010111101101111001110011111000110010001010000110011000000101000111101010010111100100110001111001111100101001001110111101000010111101011010100001100100101001010110101101111110011101101011010100100111001011100101011001000101010100010111100000111001100100010100010101010101000011100100101000001110001000111011101001000000100001111001010011110101001000011000110010100110111111000001110001100111110010011111101010011011001110000111101001101001001010111111100001001010000100110001100010111010000001101110011011010100111111101101001001110110001000100000000001100001111000010110011001001101110011111110000100000110001110101111111000001111101000101111000010100001101101010010101100001000101101000011000100010100101001111001110100101101011111110001010011011110011111011100111010010011000000111111111001010001110101101111111010101111101000011100010001111000111011111111100101100110110010100011000001101100111000000111001010100101000101010101001101011010000000110000001100100011101011111001110100011001100001010011010001100111111011011100001110110010101111101110011100011111111011100100111110000011111111010011101000100110101111000101100010011010010110001110101010011001110111001011010011000010110101111010110001110010110001010011110110100100111100000000000101111001001011110010010111000010011101011101001101011100101010100011011001111110010000100101011101000010000101101100000111100010100111110101110111000110100101000001000100100000101100010101110100011100001111011010101101101100001010101110101111001100100000110101100001100101010011011101100110010111100110100101100111100101101101001001111010100010010010011011000110100111100011100011111101110000100101010111011000100000100101100110001001000011010111110100010011010110001010110110100110101110000100000101010110011010011001010110000001010111000010100001111011000110101001010100010110111110011001111100111110111000010010000110000010011000001011101101011111110010011010101111100010111001011011001001110011010011000010010010110101111001011111100011001001000110000001011011000000101001111001010111101000001000010101100011000101100000000000010101111110101110101011100100010011010010011000000111010101011111000100010100100001111001010010110001010011000011110011011010000000101100010100011100111101010000011010010100010000000101110010010000000010111010100000100011000001001100011100100100111100110011110000011000111000001100100011101101100011110001010000111101101001110010100111100100101101000101001001010110111001011011011001010110011110010010001010010111011000001011100111001110111011110000101100010000101100101000100101001010110000011100110011100010000011001000011000111010111001100010011111110000000001100101010110011001101001011001000100110001010110101110010100000110100000111001001010111100001000010010010110110110010110111110001011100000111110101001101000100001110101100011010000000111100111100011111100010000001010011001101100100011111111001101010101000110110111001100110111101011011101100011011111001010001100000010110110010111000001001111001001010101111000011000111110110010000000010111010011100011101110111000010100000111001101100101011111111011111000000010110110100001111110110011010101010100011011100110001110101101111011101111111011111110001111011101011010000000100010111101010110100110000011001101011001011011000010010010010111100111110100100111110011010010111111110010101000001101111011000101001001101011101111011111010000011111111011101110011000101001101111000100111000111101110010110100010111100111011000110101111110010001010011011100111011001100000001110111000111110100000101000101111111000100111001100111000011000100010011111011101101111111101010000101101110110001010010001100100000111010101110100101001101101001101100100100110011010101010010000000101000110100100100111001010110011010101101100011110111111110011000011001110000111101101100110110001001000110011000001011011101110111110011111011001000010101011111000010011010110111011100110110111101111111000010001100000011011001010110011110001110110110101000110110001110000001010001111101110000110101101000110101101111100110101101100110001101100100110000010000100100100010100110001010101011111100010000111100110000101111010000101001111001111100011001110010001111001101110100000100010001101100111000010000000100111111010100101011011111101100111100110000110011011010111010000111100011100000100110001011101101001101000111001001000111110011101001100101110110001010011010110010110000001010110011011100100001010111101110101111010011000111111101000110011000110010011011111000111000000100100101001101111100100110000010110100110001010000100100111010100000011101001011101101010000101111111100101100001100000011111000100001101011001000111000010011000100110011100111101011101001111011100001000111101101100001010000111101110000110001001000101101011000010110010010000101011010010011000110100101101011010100101101001011001001101001011011100110001001101101110001101010010111000010111111011110011000110101010000111110111000001000001101010011101101100000111100001100010100010101000100101111100011100111101110111011100001100101101110001011100111001010010111000100101101111111001001011010001000100111011010101110010010001001010000100100100111111000011001010010000010010110010110100000011101001011100100101111001110001101011011011110011011101110110100110111010010011011101111010010111010110100100101111011100111001010010110011010011001000100100111010000110100111110100010110100010110000010001000111010011110101110000111001011110001010100111000101110111001010101111110000110111101010000000111111110101001101010010101110111000000110101010110010101001110100001011000111101111001001110000111100011000110010001011001110110111000010100111101101101110101010101011011001010110101111011001001010001110000101100100100010010111110110101010101111111110101010000000101101010100001111101101100001100011011111010101001101000100000001011011100001110110011001010100010111100101010100010111110000010011100110111000010010111101011110001111010011101101001010100101010000101101110101110101110001001111011111101110110000101100001110010000000111111110001110111100000001101000110001001001011000011110001100010110100101011110011101100111100111011100101101011010000010101101101110010010101111101010111011100010010011110100000100111101010100110000001101111011011010110100011011100010101000100100010000111100001111100101100101111100101100000010100001100000101100101010110101011010011011010011000110011111111100101000110001001000101010110010001101100011000110100100111110111010011010100111010011100001101111100101000010000000101100100101101010011100100101110010101010110001101010110110101111000001110110110001100100110111000101101110110100111000111100010110011110011111001100110111000011101100011011101011011011101111010111111010111001001111000001101100011010101110101011000011001010101011110011001110000010001100111010100111101111101101000011111101110110100000000111011110010011001100110010110111110000011111011100110110111100010011111110011111101011101100001101111101110100010100100010111001111001010010111011111000111101011001011000000011010111000111001011001001011101100100100001111000001011101010110010011000011110111100001100100010001111010100011110001010001101110101110001000010010110101011011000010111000111100111100110111111111001110100011100100111100001000010000101011111110101111001011000101101000001101000011011011110100010100110001011100111010100011011011111001001000000111110100101010010110111111100101000001100100101101101111010011011011111100001011110101110011101000000101110111011101101011010110111111101101000110111111010111111111001111011011101010010011111001001010000101101011000101111001000000101000101100000010010101001000000011000001001010011100001110011111001000011000111100001111000101110001011100000111100001010000010000010100101101101000101101001000000011100111101110110000100000000011011100111010101110001111000010011110100010010010110100010000110110010001100000110101011100111100000101101100101100001101011110100000100001111000111101100000111111101000000111011011111011101111000010011111110010010010010011011111011100110001110101011011011110011010000001000101110111100010101111001011101110011001101011000111100101100101100011010000000100101001100000100010100000011011010100011100110111100010000011000111011000110001011001000010011010010001100000111000001011011101111010001110011011110111110000001100011111111010011010010101101010010000100001010011011100010011011010101100101100111111100100101100000011011001001101111101011111000010000011111111000001000001111110000000111110100000111011000101000110110101001001011101010000000000011101000110100100001100001000010111000001011001011111011001111110100000101111101000111101000111011111111010000101101100111001000001001000001111101110001011001001110011001000011001000001010100110110110101110111011101111000011110101101100010100110100011110101001000101000011110110010010110001101010011100110100101101101111010101100001111011110111101101110010011011110111111001011110111010000101110100000111010000101001010110011101110110000110110000010010101011001010111011001010001110000110110110100000011100101101110001000001010000101111100011001100110101110001101101011110001110100111101111101110100110111001001111111001100111100010011110001000011010101001010101001011101011111011010110011110001111101110010001101010101111001000111000111000011101110110101000101110001010001111111010110110011010010001000100110000010001110101010110000110100100100111011000000001111011110011111101011010111000101000100011011000001100000001011011111011100110010101011001100100001001010001111000101100100111101010001100000000001010000110010011011100010010010000111111100001011010010011100111001000001010001011010110000110000001101001101110010000110101110110110011001100001111111110111001110011110000101110111010111101110101111001001011011100101000111010001010001100110010011011110011000011100000000100001100100101111010000101100000011100100110100101011110110000000001110100001000111001100001010000101010011000100100101010100100101011111001100011100110111100001000010100101111111110011000001100001011001000110010110111011101101101010011000011110111101010000000111010110111101110000001000110000100100000000100011110011010110110001100111011110100000110000101011011101010011111111111111000111100010011111011000100111100010110000011110110011000100010001010110101001100011100001000010001110001111000111110000110000100110000011011010100011000011000101111100110110100100101001000100001110101100001000101110101000111111010000100010100111101011011100101001010110011010100011000101011001000001010110111011000011101111010011110010100010111001100110110011101010101110000100011010111101101111010100110000011010111110110010111010011111001001000101111010111000100010000110101101000111100010111110011101110110100110011011000000000111111010011011001011110000010011001110101101000110101010111000010110011010111101010111000000010001000001001010101100011100010111011001101111101011111010111010000001000001000010001101001100111110101101100001001010001000111011001110000101011101100000000011101000101111111000101011001000100000111001000001110100101110000100001110110111000111100000111000001010011101011000000101011111000011000001100010111101110111110101110000101011000101110101011000010101111001001100001011111111010110110111000100000101000011000000111010110100011010100101011100011000111001000110011110010100110111010100111001111100100110111010000100100010011110001001111010110101001111110111000100100110000011000101001101111101011010100100011010111101111000101111110001011101101001100100111110101001010111010100110100111000001100100110111001010101001100111011111100010011110001101000011000101101101001110111001100001101001010000110010010100010100010010101001010010110110000110010100111001011011100101000100101111111100111100000100001111001000110000110101010101110001010000011010010101010100100011000110110011011100111110101011100011110101110110010001010001010001101001010001001101001100111111011110111010010001100111110101000100110011110100111101011110110001100001111011101101000001011000111001000110011100111110000010010101010010000101101111110110010011001010101110111010101110010010001101011101100110101110011111001100001110111001001011111111111111101100011110011001111011110110000010111110111100011001001111110010101100000001100000011001000011001000110101010010100110100001111100000101111000000111010100010001001000001010111000101001000011100101000001110100001000101011010111100000010101010010110111111110101110101101011100011100000001101101110000010011100100000101010101011111100101001001011001101101100000000010001010101001110101011100010011100001000111101001011000110101001111100010011011100000000011000011011001110111101011100100110011111110001010011100010101010000100111111111110110100010001100011101010100011010111010110000001101001110011001110011100001010100001011000000100110100101100010001111010101001001100111000111100011110001000011110001001101101000001011011111000011110011010010100101101010001100011010011011110011000011110011100010101101101011101100010110000110010000001010101011111010010011001001101010110010010010000100101100111000100100000101010000011110000111001010001000111110000100011111110011101011100100000100100101001000110001110110000010111001011110000110011010101001000000001110001001010100101111101111111110101101010010011011100010000101000111000101100000011100001010011111110100100010001101011100000101011110001000100000110011111100010011011000010001111111000010010001110101100100010111111110010010001101011100011110011100100111101101001001000000010100111111000000001101110001110010010100010000000010110100100100011010011100111111000011000001101100111011001000101101110100110101111110010001100000011111101000010100111101001011101101100110100011001001110100111110000011100000100010001010111100110100101111011001110010010111101100101000000010100010110010110101100111110011010111110100001000000101101001100100000000101110001111110111011001011100010111111001111000010110110011010101100001100111011011101010000000000000000001000100100111010110101000000101010001000101111010111010000011110011010110001101110000100010001100111101001110100010011011010111110110100010111000101011100000111010010111100010100110011000011000100011010011010101001000100111110110111111111110110101001101011001001011110000011100001011100011001010101101011011010001011001011000110010001110101001000000100101111001010100000000100100100110100001101100100100000001100000010110011111101010111010000001101001101110111101000110000001100111001111000001110111100011110111111111101000111001001001011111000010001101101101100110101111100000101010110001110111111010100010011000111010001101011001010111110101001000000111000100010101010111010000010001101100100000010010000011101010000000000001010100011010101001101101010111001001010010000010000100101001000010011010100010010010111001101101100101010110000101110110101010010111011101111001111011111101101110111010010011101101111011001110000001000101111010101100000001111000010001100110110011111110000010011101000010010001101000101110011101111011111110000100100110110010010110001111100111111101111110100001110110000001111101001100101011010011000110111100000011001110010001000110100000101100110101110110111110111001011101011000111000111011110110000101011100101001001011110000110011011011100101101111000000111000110000000110000101100110100010001110101001011001110101100001101110100100110010111001111010000111001101001000000100011110111111100110001011001110010100010100101010100010010011011011101000110010010110110110000000001011100110110111111100010000011110111011111001101010111110110101111111110110100111100110100010100100110010111001100001100110110001111011110110101100101010110010010111011000000000101011110010001000001010001110001001010001101111011101111000000010111110110110111010111000101100101101001010010100110000101000111000100100101100010111001000100010110001111100101011111001010011010010000111010010110101011110000101111110000111111000001111010101100000001010100101000110001111001010000010011110110100000100101001110010110101100001110111110010100000011010101111101001101110111011100101010001001000011010100101111111101000110101010011001101111111001000111100101001101011011100010100011101010010011001000001001001101000101100110111010110011100110010010010010001101101011001110011111100001111111101010010110011001111100101101100001111000110010111110010001010110101010001111110011100111001111110001100110110100100000011001011110011001010100010101010010001000000100111001010011111000011000100010001010111010111101100000111100110001110010011110110100100100000010010111111000010101101011001111110110100101101001001101001111101101111110100101111010000010000001111001111101101010010001101101011111001111011111101000001011101010111011111010011110001011001100101001001000101110110101010010101100011001100101011011001101100110001100000001101010111100000101100000110001110111110000010101101111001010110100110101011101101100111000011100000010100011111101000000011000001110000000001001010101011001010101111011001110011100101110100110101110011111010010101000000001001011010010110101001111010101010000110101101101001110011101010011001100100110100010011111100001101011000011110100111110110100100010001110110010000000100010111011010100100000001011100101001110011110001100011000010001010101001111111000010100010111011111111100101010111110110110010110101001001011000111110001011110010000110001001000101100111001101000001010100101110101001010010110010010010010010100101011101011100101000110000001000100111000001010000110011001111110001001010111000101101100001010010100100110100011011110001100000011101000001001110001011110110000000000000011010101011010000110000011000011101111100011010010000101011001100001010001111010001010110110001011000110000110110111101011100000100111001010010011100000011001011101100011000001000001001001101101101011010110111101011100101001010010111100111010101001110010011011010001001001111011101101110011100001101100110001001010000110110011110101110011111100101110010110110010001101001100011101000110110011101000101111001110011001110100110010001110110101100100001001100110000000010001100101100011100000011101001110001111010011010101100110011010010110100000101111100100110101011010111010111001110100101110000010111111011001100110110110101100010110110000011110000000110101100001011110010101010011110101000111011001111110011110000000100101100101001010001011101011100101110011111001101110010111001101111100100100001101100111011010111000000010011100010011010000111010011110000100100010101100001000011010001101110011010011001010100111101001001001000011000000110100001000100111100001101100001011110100010010110011111001011010111100011111010001100101100110111001101000110110011001001100000101010101000100000110010111111101010010111111111101000000010010001001111010111001011001100011011001100100000001000111000001111000000100110101001001000001001011011101001101010001000111000101011101011011100101000110001001110010011000110100110010101000010101101101000000100111111010010101000100011100100111100011010001100101100110011010110011101100011010001110011011000101010110111100100100011111111011010000011001111101011100101010111001110011110110101110100001001000110001110100001000100111100000100111010101010011101111010100001001111001001001110100000101010011110000011110100101100010010000110000101000011000001000101101011010000010001001110100011011100000010010101000001101101001110111110010101111010010111011101010111110101111011010010001011100001111100011010111101101100011110100000011110100101101110000010101101011100001110100001000111011010110111100000100011101010000101000011101001010100000001101011100101110110000011110000011011011100000001101110011111010111001111100001001011101011110000001011000100000110011000100100101101011011011111100100010000100110011111111101101001100100011001101010000110110001011010000101001100101100011111101101100101011001101011000100110111110110010111101110101111010111011101011000111100101010001111110111111011000011111001100111101001000110011011111011011111000011111100000101100110010110100110001110011000110101110100011010111110111011111001011110011110110010011110111000101011110101110011111110101110110001001110111100011111101001110100000011111101111110110110100000001111111101100110010011101111100011100100110010011010100101101000000100101100001111001011010011101001001011011000010001110100100000000110000100000101111100001010100000001010011111001100101011110111110011011010100111000010000011010110011000111110010110111010101101110000111000000001000110111000101010010101111111100110011110011101001001010011100000001100001010001000100110100010100011110101100100111111001001110000111110110011110111110110101001111111100110011111100100101000010001100010011010101000000101110101010000000000110110010010011110111011000011110001000010110110011001001000010011110011110110000101101100100001111100011111010111101001000101111111110010001110010101101001011001111110011110100011000101101001011000011010010100101111101000001011101111010100010101110101111010111100000110110000010100110010010110000000111100100110110000111110110100010011111110111010111011001111010000111100010110100011100001001111000111111100110001010111111110111001100011100010110011111010100001100101000000110011101000111000001001001110110100010101000011000011011011100111010100100001111111101001111100011111001001011001010000001100101101110011010101100110111110000001000011110111000111101101100110111110010111100001010011001110101111001110011011000001010110000110110111101100000111001000100010001101000110111100010001100000110110111101100110110111111100010101011000000010011111100110110001011101111111011110110011100100101000010001111001000101010010011001101111011001001100010100110110111111101101011010100011011110001101000110010001100011101110100011101010000101100101010011001111010000000011011010100101011101101100100001010101011010100110000111001011000001011101101110011101111010110011101110101101111110000011000101001011110010101010011111000010000000110011110011110000000000110010001101101111100100100011101101001000001000111100101010001011000100011111101100100100001011101100100101010001100001111001111001111101001100110110110100010010000010000000011110000111101011110101101011011100011100011011011100110100010100100110100101100010001101000111000001010001110011011000000000111001000000100110011110100001000011100111010111000010111010010111100010010000011000100010100001010011010010110111011001011001111000000111111110000011010110011001001111110101110101001111001111111110111101011101111010000100010011011101111101010110000000000010001101001010101001100000111011100111101111110000100100000110110000111010101111100000101011000111101110010001101111011011110111000011001001110111010110000001000010011100101110001111101001011011110111101001110101001000000111010010000000010001100110101001011000000011001000010101010100010101110100101000111110001110011110011110110101111011100010100100001110101101111001010101110011111010111001100000011001100001101000001101000100010101101000101001111100110011111101100111111001111010111010000110111001101100101011001110110111111101101010101100111100110011101000101001111110110110000001100100100010010100101101111010100010101100011010000000011111001111010001101100001001011010110000111011000011101100011011111011111100111011111100111001001010101000110110000100000110100111001111110000010100100010110010101000011000111010001111100010000011010100011111101111111000100101010110101100101100001010111000110010001101111111101111011001110001010111111101001101101000011101000100100100001111100101111111100000111101011110111000110111110110101101110100100001111010110100101010011010001000010010001010001000000000100000111011111010100010111011101111011001101111101011101101100100100010101110011011010011101110111101011101000001100100111110100001111001111111110000110001110010100010000000100000100000101001001011100101100110101100101000110010011100001000000100111001100011010101000010011101001101100011101110011011011100100001001011010100000110111000011101101101000000100001000111000110101100110100001100000001100011011010001000100100100000111001101101000001101001110000101110101100010100010110110000111110001011101000111001011001100010010101100001001001110000010110000101011110000101100110101001000001011100100110000010011111110010010111011110101001000000101100110001100111001010100011001010010010101000011110110011100110101111001010000110001001000111111110111001110000110100100110100101010000110001100010000101010011011101010001101001101111001001000111111110111011100001001001011101110010101110110010100101101010110101100000000010011001101000010100000101000100010001011010010001101011110101100010100011000101011000000000111100001010110000111101110011111001000110101101001101011101000101111011001100101110110001010011110001010100111010011000101111110101110011011011110100110011010100110001001101001001110000111011000011001110010101111111010111111010110001111011100101101110110000010001001011111101011110000110010111001000110010001111000111100100110100101100101110100101001111000000111110101011110001001110101010010000011010000110100011011001011000011100100001110011010011110101101110001010011000110000110010001000111111001100111010001001100000011010101000001101110111011111110110010000011011000111100000100101000010101010010100101101100110000111111001000011100011001100010111101111101011111010100010011001010111001000010000001110010001000011010100111001100110111110011000101010001100101100000011100010011101011010101101100001111010001000011101010110010000101000111001110101111000010011000000010010110111111001001011110111000110010001111000000111110110101010101111111110010010011101011100110010001000100010110001101010101101111111010000001011010010111110011010010010001000001101100010001101011110010110000011111101000001111110110011110000111101011100011100011101101100011001001111010001011101011101001001101100001100101011001000010111001011001010111001011110100110000100011011101111001000011110111011000010111011011101011010001001001100011000101110001111011110101100101001110101001111100110110000000110010111100001000111100111100010011101100110001001000001111010010000010111110010110111010111000000111100010110001110010100101011000111011111000011111111100000011111111100100000111001111011101110101000111010101000011110001011100000000011000111011100111000100101000010110000000111101010101010011000000010011010011011101010011010000110011000001100110111100110001000100010101100111000010111001010011011011110101111111111011010100001010100110000011001001011101001110110000111010011111111001101100101001110001010100000001101110110111000100010111101000011101010110111101110101000110110110101001100011110011110111100110111101010101111011111011001000011101010110101101110110011000001101101011101110110001111000000111000111011111101101110000001011100010011111010010100101110100110100010110000010100110010100100010110011100110010011000001101101001011111110010000100100001010011110011011110010101110000010110010000110111001110001010100101001011110000010000001000001101000000011001110111100010000101100101101010110110000011101010000000111010111010110100101101101111010110110011011000111010110100101001001010110001100010001111000111101011011010111111010011111010110010101001010100100000000010001001110110100010111001000100110010110000011000011000101000110010111000001101011000110101001011100001100100011011110001101110110010101101110110011000001001010110011011100100010101000011100010111010110000010100110001000011011110110111011101010111101100000001111010100011011011101100101000100010011001101011000101010111011000110111011000111010000010101111000001110000110110001001111001001010000101101010011001001000111000010000000000110010010011000010010000100110101111010010011101100100110001110000000101110101010111010100101111011110111101101110000000100000100100001011000100100001011111100011100100111101101001111000001101000000001111110101111011111010011110100111100010101110111110000010000110011100100011010000011011100111110011001000011100001010000011011010101001111100010010000101011010101011001110100001101001011110111110100101101011011011000011010101100111111001011010100001011110100111010010100100001010101000101101010110101011010111101010111010111110001111001110011000101110110110001110110101000000100010101001110010011011100100010001001101001010010100001101101101001011011011100000100100110010001110100101000001001110110110110111001011000111001101100100111001000110000000000100010101001001100001100111001011111110000011100100000001011001010110100000101110101001000000000101100001010011000011011000011100111101100101100110001100101100011000111011000010110100001110000001010111011010000000101000011010011100011001111010011011100110000000001101000100111011010000111000011000010110100001001000000101110000101010011100111111001001001011100000000010111010101010111100110001010101100000011001100000011111011101100000001100000110001101001001011010000100000111100000111111001111111111000010100100011110011110100110101010000111111101101010100001011110111101011001000000111000000110000111110010011111000100001111001011010000110010010110010001011011001101000110111001100011100101001101111011010010001010110110101000111101110000000111100110101001011011111011111011011101011001010110100111111011001101010110010111000100001011001011111010001110110000111100000010001101010010101011100001100101101101100010000100000100110101000000110011111011110101010001000011011111110111101100011001001001001101110000011100111010101111001100000101011101000100101001100001111010100010100101111010111110000001110101110001000101110101101011100011101001110000100110110100111000111001100111000001011010001101011010010101010110100110010101001101000010001000101011101100111011111001111000111011100011001011101111101011101111010110010010100001011111010111011101100101001000000110100000100101011101010011110001101111011101101010000100010111101110100000110010010001010100100111011110111000001010101000010011111101111111000001111011011110011011011101110110000001110000111001101010011100101100110101100111010001111001010101111000110101111111010000100110111001110100100001000011000111000110000011110100101000100001100000110000101000000001000001100100000001000110100000101111110101101101010000100100001110000110111010110101010010110100101011110011111010101010101110010100101110001001001011100000111101000100000010101101000101001000110001111111010011000011001000110110100101100100010111011011111101001001001100100111100001101111111010000011110000101100010000000110010111011101110110110110111111100011001010000000001100000001100000000100010100111110000100000110000101100000010011011000100001001110001010010101110100111110100111000010010000111111011011100001001101101110010000000101011101011011111001011101010000010111110010011011111110101101000011101100011101011101110011110001010100010010110011001111001010000101111000001011100101110011000101000001100111001110001100011100101010101011001000010000010110110010000001101100111010110111000000001111101000001010001001111011001011011101110111000010010101111000000011010101001001001000101010101011011110001101111100010011011101010101111111111101000101000111101010000000110001001000010100001101111000100111000011001111100101101111101100110000110110010000001010110011111100000111011010011111000011011100000000000001100010000110001000001100000010000111000100111101101101010001100000001111001101000111000000100100110011010010100000100101001000100111111000000011111101001000101101100110111000111001011100100100000100100001011100111111010000100111011111100110011001010000000011111101100110011001100001000101001000100110110010011001100011000110111001101101000101110001001001101110011000100000110100100111110111111001110010100001000000100110110110011101010001001101011011001000100010100111000011010011010010010101100011001110000010100110101110101010101000100001110010110100100000011000101111110110011001011011100010100111011101011011101110011111010011110011100101000000001011001010010010000011111110110010001010111101100001001100001110100110010001110011010111000110010011101001011111001011001101100110011011111011010001110011101101010011100111000101100000110001100101010101100111100001000010101001101110000101011100001011101001111111001100010110011011101011111111110000011011010001010110000000111001111000011110100001011100111001000011001100110111101010110101001110010100010100111010100101010111001110011101010000111110001010101011111010100111100110001001111111110000100100011101011111011111011110010011000000101111010100010101010010111110010110101000011000001111000111100101110001011110110010010001101011011101111010010100110101010101100010111100110001000111100110100001101110100100100111010101000100010111010101011101010110001001111110011100111101111100001011101001011001010000101110010100001111001011101110111000000101001101111001010100111101011010101010111101000010110001011011110110111011100110011010101011011111000111111110111100111101010000100010100111010100110011100110001100010001000100000100001001011101101000000111111111111001011110010111001100000101101100110010001101101011110000000011001111111111011001010110001001110110001000100010001110000101101001011001100101000100110001011101011110111110010111000001111111011100110100000111000001010010110011000110011101011111110111010110110110110010111010001111111001111111000100110001011110100001101001110011011011011100101000111100010110001010100110011100110100111101100111111111011111000111100000010001011000010001100011000101011111101100001101111100100100001110110111001111010010101101001101000011000100001100001100100101000001111111101110101111010001000111011100011101010010000100011001001110001100000110001101100111110001111001100101001010000110110110111000001101100111011100111000001101111000011111111010001100011000010111101001001111000011001110001010001111000111111010001010001101100010111000110100101100010100010110000100111110110000110110001010010110100001100010001010000100010010111010010111000111101110101100011110001010011101010010000010001100001011000111111001010101110111111110001001001110101010000001010000010000100110111001010001011101100000111101011110001011100101001000001001110100100001000000111000000010000001101110101100111111101001010010010101001001110000011000010111010010010110100010101110111010001001011101010000111110011010101101110001100010100111111010001010010000001110110101101110000101100001010101001001001001111111001110010001000100100100110100010100100110110101001110010100010110001100100111110100111111001000010011010001100010010001110110100100000011001001101001011101000101110000111001010110011010010001011110010100101110001110100101100111101010011101011000101110010010001110100011110011010001111111000110001111111101100110000110101011011011101110001010011101110110100111101001000000110101110000110010100101101110111000110100100111111110111110110111011001001110100101001011000110010110100111101110110000001111010101000011001100111010110100001010110000111011000100101101100011000111110001111001010010100001011011110100110011101000110101001011001111011101110101001110011011111010010010110000001110011101001100010001011110110010001001001100111101011110111000001000101110110101110100010000011010100000100000111111100100011100101101101010111010110001010010111100111011010110000100110010100011111011100110100011011001100011100000000111110111001101111011000010011101011001110000011110001000010010000001101010011110000111011000111000101100010101010000011101010000100101100001101010111000010110001001001010101100000101110111000101111101000001111100100000011010010111111110101101100101110010000011100011000111100000000001100000111111000010110111101111101000111001000110101000011000010011111000011110010100100011100101011110010111100011111110111111101111101110001111011011011101011000100110111111010010011110001111111101010101010010100010101001100001001001111000001110100110110011011101010100000101011011100111010111000110110001010000011000101110110001111010011011111001100101010101010010111111100000000010001110110011001111011101111111111100001000001110111010000010110101100010100001010101101011100101111111001010110110001000000011111010111001100001011110000100010000001011100010100001010111011110000010110001010110010010011001100011000101000010001110110000110000001100110110101111010010110000101001110100110110101011110100110110100000000000100011111000001110100101100100001000001000111110000100110000110111111110011001110011100110110000000111001001110111011101010000001001000100101011100100010101010110001101011111010001101110101001101000111000101001110100000111100000001110111100001100111111110111001010110010011000100110100101111100010011101111001001111000111011001101011011011111100101001100010011101110101011100110110010001110101111110001111011011110010110100000100100110011101000010001011011010010011010011010011011000011001101100101100101100011100000110110111000010100110101000011101110010100011110000100100010001100010100011100000011101011010111100110010100100001101110100010011011111001100110101011110011101101110110110011010110111110100101110110000100001110001000001111101011001010110100000101101101001101011001111111011100111011001011010001100110000110110010100000101011010010001110001010000000011011100110101110011000110010101111110000111101010000010100001110111000111101111100000000001000000101100101101110001010110110100100110001110001101011000100011101000110100111111000010100011101010010000011000011111110011010101011010011101110110001010111100111011101000010110001100101101001010000110101101101011100011010000001001000010110100010010001110100000000101110100010001100011111101011111000111110111101000100010110110011011111111000101110111010101111111110100011010010000011110110111101100110010001110111100101001110111000100010001011101010110000111010011001101110001011111100101100001001100111011000011100001010000100101001100101001110110100111101100011011100010001110000001101101000110011000110110011011011101110111010010010110110000100111011001100101000111010110010100011110011110010001011000100000111010100101000000110010011001111011110010101111110110001100111011011010011010011101110101100000100010001110001011001001011000100010011010000101101111010111010110010000000110000010101110101010011101001111001110011101110111000111111010000101000000001001000011111111110110101011010110000011011110001111101101101011011100100001111110001011110101011101000010111000110110110110101101010001110101110010010010011101110100110110110100110011110111011010111100111100110000100101000000100011011011101011101110110000001101011111100110111110011011001000101011101100010001010001000010110100010111101110000101110110010101000111000010001101101100111111000000110101101100110111011100100101101110011111000011000100001100101011000001000000001111001001111100010011001000101001000101100101001000011101010000011110001000011101000100000100011011000110010000000100001010100101011110110111010000001111001010101111001011111111111000000011001010011000001111110010110000111010101101100010011100110100100111001100010101010001101101011001011011111011111111111110001010011101001111101000011100010011010100100001101100011001000011011100010001110001101110001001110000100010100000000001010101100001101101111100011110011000101110001110000111110110111010011000101000100010101001110000101011001111010010010010011000000000111011110001010001010011110010010101111000101100000101111011111110101000110001111011110001100000001111001000100101010111001101110110111011000110011101000000000110110111000100000001101001011011000100001111010101111011110111010010000011111001101100011111010101100000000101101101011110110011111001111010101010100010110100011001011010100111000110011001111100010110101000111101011000010000110000110110101101111110000000011011001011100011000100111000100010101101001011110110001110010001111100100101001111110011000101110010010101001110111110001010011100010110010011111111101110011011001011101111100001010010100111001100110001000100011010000011110110101001001101111110101000011101100000000110000100101001001100111101100111001100000010110100100000111001111110011010001010111010000110010001100000001100001000010100001000111101011000000000000001101010100110000100000101111110011110110101101001011011010000011010000101101011101101111110110010000000000100001100010100110101000011110110001100000101101101101101000101001001111111100000100001101000000001101100010001000101000110001101101111000001110011010101110100010001001101011000110111000000110001111010011111010000101100001100101001001101000111010101010010001011001011110001010100001000111110101100010111101111100010110101100011011110110110011010011011001011110010100110101110101100010000111011111111101001011101000001011000011110110110101010111011001001101111100011001001010111110010010110001010001111001011010100111010100111010000111000000111101000010100010100100111101100111101100010111110110100011001110000000001001000000000001011010010110011001010111001111011001110101101010111100100101101001011111000011111010001111000110101000010001110111000110010011010001101010110000111001111001011101111011100011011111011011101100011110101001001011000011100100110000010100010010111100010100001011101101101001101110000111001011010000111001000111101100001110111000000101101010011110010101010000011110000100011101011011110101001100001000010110010110011001110110010111100110111010001111101101110110011101110000111000101011011100100010011000101010100011011110011000100011001110011100000111110011011110111110110010100100010100001110011000010111001000101101111001100101100110111000110011110000011000000010011101001011010110100010000000110110011010011110000110001100111101101011011111101100010100011011111011101110010111001111111011010010000011001111001010100001100111001011011001000010000100010111010110001011110100101110101011011110110011111001110110111111111100100010011001100000101001011111111011001111000110011001110110010100000001000101111010101100001010111111100000010001101010100001000000010011010101111100110011010111010010001111110110011101000101001111001111111101110000000111110101000010111010001010000011110100010110011100110100010110000100011111000001000111001000110000000010100010111111110101111100110110010001001010001001111110000010011101010010011110100001011011110100000100101100001011110100011100001010011110101111111111101101100100000011100100110001111001001111111111010101100111011011010000110100110001000010111100001010101001110001010101110110001110011110000000011110111101111000110101111110011100000100111010101000000001010101000011001110000010100001111001100001101010001110001100000011010111000011110011000001110101111001110110010110010000101100000110000110011111111110010001111000101100001101010110110111110110011001010010001010111000001100101111111100110011111010111110110011000101110101110011110110100100100011111110010110001100111110101100100001110011011011001011111100000001000111100110011111101101011001110000000010000101101100000010001000010011011100111110101111011000111000010011111100100010111001011011000001000110110101101111100001011101011011101001001011001101001100011101101110111000011110111000011011101010110111100010011110110001000011101001111001100111110110100110110101110110011101000110010101101101110010100101001010110010111011110010010101110010011101100111000111001001100010011011001111010111111011110010001010011111000010001010101101110000010110010001010000111110001000110001110000100111101110001010101100111100011001010010110010010011101010111111111011001111101110110100011001010010011111110101001000110100110111011011110000000011111011011000111110010110011001110110000110010001010110011100001001110111000011011110011111001101111111000000011001000011100000001000011000001000111001000110011001010001100000001001101010111000001000110000000001011111001111010101011010010010000000100100110111001111100101011101011000101100100101000100111101010010110100010001010010100111010111100001000110101110101001000101001101110110001011011000100100000101100110111001111011011001011110001110001010111001110101000100101101011111100111110110110001010100000100010011011100010011010010100001111110000111101011000011100111001001010100011100111011111010111110110101001010000100101100011100111100101000110110001010111100010001100110011010101100110000101010000110101011010101100001000101010100110101001000110110100011001001111010001100110101100001011010010100000111101100011011101111110011011101110000001001010000100100101011011001111010100110011110110011010001011011110100010001101010000001011100001000100101010110110100010000010111100011010100010100110101010101101100111101101101110000111011010111100101111011110111101110001101100111001111100000100101011101011000100001010001000110110110111010010111101110100110000000011111111111101010101111000110001110101001110110110111010011010100110011101011110001001010110110100011011100100001111111110110100101000111011110110011100000000011010101111100011001100000011010111011011101101100011011010000110000111101011000000011110100000000110111000001011110110010101011101101010001100110101110101101011000001000010110100011101100010111000100101010011010001100101011101110000110000001101001100001110011001111100101101101111001101101000110010101000111100101000111000000100000010001111010000011001001111001100001001001110000111111100100100111010010011110001010110011011001110110101001000110001000010111101011001111011011000101011011101101001101110111001001001110000011000111011110000011110000001111100011001111011100111001001011101011001010110110101010010100110111101111111110100111110110110000000110111111111110000011010011110101011101100111101001001001111100111101001011000000010101100101100011011011001100110100101000001000100101011100100110000101100000101011000000101100101001100111001101101000100011101100000100001100010001001110000111011000110110011011100110110010100011110000000101001110001001010101000110111100101101100000010111010101101111100110110001000101000110000100110110000000010001001110100000001010001111110000000010000001111011000101101000011011001111101001001001001001000101111100111000101001001011101111010000111010000010001111001100100001110001000001010101001110000000011010001101101001101010011011100011101011110110010000110101000011100101010011010010100001100010001001011100010111001101111100001010101110011011001010011110010011101000000010010000100100010110011111101111000010111011111100100011001111101000001011101110111100001110110100101001000001000100000100110101000100110011011101001100001010111010011010010110000111000110100111010010001100000010011100011011000011000000111100100000000100010000110100111011111101011100010101010010101110110111111110100100110101100010110010111101101110011100111101010100000011000000100111011101100110010110000101011111100110000101000111100101100110101001011010100110110110100000101100001011001010101101010101011011110101101011011101000110100101101111111100101101111110101011111110110010100000000101011101110110010110010110111001010001100011011110011111001001101110011101001111011010110110011111001111101111010011111111111010101011101100101011100000110100001010011011000111110011100010100000111101000100001000010010100111111101011110111000010000001111000011100010001010101010110101111001111101000011001101001011111101100100001011111001101000111111111011111111110011010001101110101100010100001100100010010100111101101001111011101001110001110010010111111000010111100001011010111011101000100100001100100100101001000001100110100000110111111100010011110111111010011001001100000101101100001100111001001010010100101001001011110111111100111101000101010101000010011100011110011010101000011110110000000100101100000100000010110010101000111101111000000101000101000110010011011000110101111010111111000001011100000011010011110000111111111111100110100011100001010001110110101001000000011000011110011101101001111100011110011001111010100010110100001000001111100010000011101000010011000110100100110110101111111101100101001000010101101100100001100110111001000000001001100011111011110000001011001110101111111010000010111100111001111011100101011000100111101101101010001100111000001001011111001001011111100010111111011100010010010010010100100110000000000001101101110000101101001110000001110110010011111010001111100111011101110100000100111010110011011000000110000100101011111110000001011101010100001100100111110011111010100111010001111000010110111110111110011011010001100111101111010110110110000111001110100100110010111001100100111000110010011100011110100100001100011011001000000111011001010111100101010101011100101000111111101101110011100110010001000000011111000111010000100001110001000000110011010100011000000111010000000101111111111000011101110111101100001011011100110010000100110101011110110000101000010010100011110101110101111100111011101011000000001010011011011110101110000101110010011011100010000101000111000001001010101100110011001010100001011100111110010101111100011101101001001010001110110111010110000000101111111111110110000001000101111010001101011011111100100010101101011100100011010111100011001110101101111000010011001101101110110101101001011110110100011010111010111110101011011110010110000100101010111111100011001010111110000001011000111110100111011000010000101011010011010110110000001111111110101001111000000110010110000111001011111110110000110011110110111100100111100111110000101011110100100010111110000100111100100110100101001000100111001111000110110111110101111010000011111011101010111111111000101100001001110011111101001100001011101111110100101110001010010010111010100111010110110110011110001100100110001011111010111111011000011001101000101000011000000001111011001111010101110100100101101111000110010111111010101001101100110110000111101111111011010100111111010001110110001011001010001011101110001111101100001111010111010011101101010110101010000011000001000111011110000011110111100000111010000100010001000101011011110111110000010001110111100100101110000101001001110111010000100000011011111101010111001110101100100001001010011011110001101101011000100011100111101110011111010010100011101010010101000110010000011100100001000110111011001100111110110111010110100011010000100100110111111000100001010011011011001100111011011011110000000110110110111001010111010011110100001100001010111111011110111110111010010100111000100000010100111110101110011000110110001110111110000000011001011101010101100100010010000100100110011111010111110101001110010101000111100100011100100100010100101000001001110100011100011110110010110101100011110111010010000110110110011011101101011100011101100101101010001010110111100010000110010010011110000011011000101111010100001110101000001111010111100011110100010101001100011100101111101000100011111100011110010011110001100101001100111111000110000110010010011001000111000100011000111111110000010001101101101001011000011111011001101111010000100101110011110101111111100110011101001000010100010110111100110010010110001011101110001111110100011100110110100001010000111010110101011100000011010001100000101101000000101100100001011101010011010011111101000101010111001000011010000001111110001000000010000100001000101011011111001110011100010011010011010100101011111110001101110011011100000101000011111111101111000101010110110001000001111000110000110100001011100011101010011110011111000011101100000110111010110001010010010010011111000000111100011100101101010101110100001011101001000110011110000011111001111111100001010010110010000100111001110101010011111011111111010011001111010011101001000001111111101101011001101011000110110000011001100110111110000001001010100110011101100111110111001010111000000010110111100101111110000110000101011000110101000010000100110110010111110100110100101011011111110100101010110000011110001000101000010010110111011010111110100100100000110001000001100010111111010000010011001000001100011011001001101101000010010001011001001010111110101111001100111001111001100101001001001101000101111100101111000110100101010111011100110001111011010001000110111010100011001010011100010011001110001101101111011110101110010000101011111101110101100011000101100011001100011010011010100010101110000101111001011001001100000010011000110000010011111010100010000110011000110100100011000010110111010101010111110101001011010100001000000000001001110101100000111111001110000111110100111010100100110101010010110010011011101000101011011110001011101111001111111011011100011101000001101001010101110011111000100001100001001111110010111000001010001000110110011000110110100001011100100011010010011001010000101010101111111110011000111111111111110101100110000110010000101000010101101110001001111111001000110010001100000000111000010011000101011111110011111101101101111111001011001011100111101010010110000011010101110110000000011100110111011001111101110000000010100000100111001011110010000101001100100011010110101011010111010111000101111101001011110010101110110111011000101001100001110110000101001110000001000010100010010000110010111000110111101111111000110111111110001110001111101000110001100000000011110010110000101101010010100110110110110110010100001001111010011111011100000000000110101010001010000110011101010011111110010100101011111111110100101011001011010111000110000110010010111110111001100010011111100011111000110111100111010110101000001101111111011101001000100101000011010000101011100110100110010001011010101111101000101000111111010100010011001010001110110011100010001111110011100101111100101010111111000001111010001111011110000011110111011110110000110010110000101111001101101110000111110100111100001001000001101111000001101010101110000001011000000101111011000000110001111011101010000110101111110011011111110100000110001000111111110110000001110011110101010100000010111111111001011011101111010101010011111110100011110001011100110100010101111100100100010101001010110100000001100110010000010001011010010110000000111001101110010000010111100110101000111011101101111110001111111111011100100011100110101011111111011111011101110100001011000101001111001110010001100001101111010101011110100001111101011010111011110000101111000011101011010101110001100110011001110101011010100001001111101111110101101010011100110001110001101000101111001110010100011110000101101111101001010111010111111011000000111110010111101001110011101001100101100100010011101111110000011110010001111100111010100111110110010001001110111010010010011001110101111010010101110000011111001111101000001110111011111111101101100001011101000100101100000010101110001000111000100100101010000010111111111011101010111001111000110000110100000001000100111010110000100110110001101100101011000001111001010110111010010000111000001001101101010011000011000001010101110000011111111010100111111110110000011111110101101111101100001111101000000011011010001000010001111111000100111000011111000011001101011001101011011001010010111110010000100111000000111100001010100001001001100110000010010100110011000010111010011110111011101111110000101100110111100100000001011001111011000110010101010100111110100110101001001110010010111111001110110110010100100110111000011100101101110001101000001100001111101110111000110001011011011101000100000001100000111100010110101111111110100011011110101101110111101100111110011001010010111111101110000000111111000101001100111000101110000010100001100111010010010010101000011100110101010111110000010011100001011010001110001110111010001100010010011000001000100010111010000000000000110111010010110000001101011010101100100111001111000011110000101101111001101111111110100100111001001110111100110000000101000110010111001001111010110010100011110110001101000011110111010101011000101101001000111101111100110110111100000001001111111010101001010111101011010101011101000001010001001101010000100101101000110011100011000010001101101001000111101000110110110101000011100110100001011001100111100101011110001001101101010000010001001110101110011101100111011111000011010111101000111001110110101010010100100000101001110001001001001000011111010110011110100111000011010010111001111101101100001000011111000010000101100011100011101000110010010011101010010101110101011010101101111110000000010100101111011000000011101111101100000111101001101001011000011010110110100110101010100100000011001001001100000010100001011011010001001100100111000001010010111011100101001111100100001111000010110000000000010000011001000010010001101111001000010011101101011010110011111111000101001111100011101100101101011001011110100100100011111001010001110010001111110110100100111101011001101000111001001111111010010101011110100101000000000100001011011110010001111001110010010110001110110000111011011110110110000000010111011001100000110111010110100100110000110010001101100101101100011010010100011110010010100001011011001010001010010010101101111010110001001110011111110111000111000100100000010001100111010111101001110001011000111110111011010001011000111011010111101010101001101000000001111101100111000101111010011110100100110001100111110000111101010010011010001101000011100010100010011001000101010110000001100100000101100111001101100111101001101111010011000000010000110111110100011000101001111000000000100000101100110110101111010001000011000001101110000001000000110101111111011110111111001101100001110000111100110001011110001010001000010011001001101000010111011110010101010111101111010100011101101110011110000111110111101010111000101000000100000000000010011000100010100111001011010110110110110010001101101001010101000100111000110010100110011010000000011001100011101001000101100011100101000000011100101101110110110011100001110011010011100110111110100110101111110110101111110010100010010110100100110011010111100111011000010110000111001011101001100100111011100111110110011100011110001101000111110110010010100110011111000100011101101100111100101110000000010000111110001010011101101101000111100101100001111100111011101100011011001011111100110110101100000010000100010101011010001001100111010110010111101111000011111001110110001001000000101000010001000000110000011001111111011110100000101110010000011000001101011111110010011011110111010011110010110101011111001100010011100101101010010110101110010100011100010110000010110101010100011100000101010111001100011001111000001110110100100101000001101011110100110001010001101000111101101011011110111011111010111011001100010111100111011100111110110101010111101001001101010001011010001100001101100001111010011001100110100100000001111010110011110110001000111000011000111010010001100101001111000001000100001010000010111101001000000001000100101000011001010101100010110110101011000110011001100001000010100101111111001001110100111000101101010110000011100110011101100011000101101100100001100111101001111101110011011100110010011111010011101101110100101110001000100001111001100101111100011101100110110101101111110110101100000111011111100101001000101111110000010001000001100000011101010101101111111100100110001100001001111010111101101011111111011111111101101111010110100000011011010011100101000001110001110110110001010000100100001110100001111000111111011110111101000000010110010110001111000100111010100100110111111110110001010100011111000100100001101001110000010001101010010100101100001010101100010001100000011011011110000101100111001110010001111100110111010011000011011111001011100010111001010000010100101111000111011110000101111110110000010100011101101011000000110110011010111110011000101100000011100010110111001001101011100110100010111100011000101110001100011111000001010110101011001101111000110100110001011101001111110011111100000000110100000111000110010001110111110001010100100111000011100111101010101111110001110110000011001111011000111000000000001011010011001011001100011100111000011000000110000110100101010110001011010101010111111010111001110100010110110010011010110011101111100100100010011100110001100100000011111110110101011111000010101011000011010111011100000010111010011010000101011001010101011110001000000011111111111000000111100001010111111000111011101001101010100011011101000101110100100001100100101110111010001000101100101100101010100000111011101100001001110110011000001110001011001100001010110101110110001011111011100010000101101000011010001000001011000111000001000110100000101001011011100001001011011111100100111001101111010010101011001111101110001001110001100011110100101100100000110100011100010110010010010011011111001101001010000100111111111101010110111111010010011011010101010111000011111111010101101100011001010001000010101100111001010101110110001100011011011011011101100110010001101001000101111100100010001011100001001110011011101110001110100001011110000111010001110100111100000000000011110010110001001011100011100110111101000001111001011010001100001110110011100101110100010101010111000111110010001010111010100110010100110100100011111011000010001000011110100011110011011001101110110000110101011100010000101101111101000110100010111101110000110000001111010010000101111010011000000110100100100100011111010101110010011010110110100010011000110111001110000001101011000101100010110100001000101101111101101010100001001001101110001100010001110011001001011001000111010110000000010011001010000101101101001101101101110011001001011111000011010100010000110110111101000111110000011100101001011001100111000100010110001101110001100101001100000011011001001110000111111001111001000101111010000100001011010001011110010111101001010011010100000001111110110011100010101111000000001111110101010010001001111000001111101000100011011001010111010101010010011110011100110011100010011001110100110100101110101010110100110101000111110011000010100111001111010011111101010100111101111110011111101000110110101100110000011000110001010111010001011000110000001001100101110111010100100001110010010011010100111111001100010101111010100011011010110011110010100010101000001100110010000110010111000101010000101011001110111110000010000100100110001111010110011001001110100000100110111110010111100001010110110011110111011110011101010110101111110110011100100000010110110000000101010111011110101011100010111010111001001010101001101101000011001010000000001101000110101101001011010010011101111101001110110000011010010000011001110011101111110011001101101011100111101011010001001001001100000101101110100110101011111001110101100010011001011001111101000100101010111000111010111010100000111110100111010001001111000100011100001000001001111110011110010011000110010110101011000010000000110011011010001101111111111001000100001011010010100100110000011010010100010010011011110001011101011111000000111000111010100011010001110100101110010001110011000011110110001001111110110001011010000011110000010100100111011100000101110001001110011010110011100010010100110011001111001010000110011100011010011001011100000000010001010001011000110001110100011100001011000100101100010101110101111101011101101100111011100101010011101010110101110111011111100101110111010001011001010101001011111101101111010011110010010110010101100100010111011100001001100110010011110010111010100110000111011010011010111010001011010100011000110011000001011001111100100110100001010001101010101000001001011011101000100001110111100101111101101001000101010011110010010111001111101000110100101010010111101111010010101000011001101001111000011110011010110000110011111101001101101100111100001100001100011010110111101100010100001101101100001001100101011111101011010110111001000101110100110000000110101001011001100001101100000001011110110001110001111101111000011101001101110001010010000111111100111010001110101100110110000101001100110110001100111100110000001111001100000100110100010101110011101000101111010011001101000100010111110000111111100000111011001011001001111110100000100100001010001000000101010100010011010100110000100001111110000001011110111001100101010010101110110011110011101011011011110010111000010111010010011000011001001101101011001100000011100010011011011110011011010111100111000011001110001011111001011010101110111111011110000000101110100001001011000101110000001111001011010100001101101001010000100010010010110000011001100110101001001011110110011111100010001000011100101111110011010101100011010000010110000011000111111101111111001000100100000101001111111010101110001011001001111001010100000010011111010101101010010111000110101010001111001000000101001011101110011111110110111010111011010111001110110100001010001101100001010001001101110000011111001110001101110111001101110011000001100100000010101110011100000001010001100101010110111101001000011000000110001010000011111011011100010001111101010010100101101001010001110111101111010101010001110110001110011001101000001101010000101100100111001011011100010110000111101000010110100011101101111111110111111010100000010011001101110101011010111110111101101010110110100110100011010111011000111011110111010000100000100001010111100001001110010101010100010100010010111000010101110100011100111011001101010111011100000101010110110011111000101110011001100110101101111001000111011110110101000001110000010111101110010001010101101100010010000011011100011010101001101111101100100111011101001100001111110100000011101110100101110001111011111001101110100011100110101101000011001000100011001111010100000011111101111010101011110110010100110000001101001100001111001110101011010000001110010010001011001101100010100000000111001010100000011101000011100110010111001111010110110000100101011111110100110101001011011000101010100100100000010000100110101100100011110100010001100110100011011100001111000110101010111010110011100111000110110101100101001100010110011011000000011111111000110000011110010000001111011001111100001011110010010000011101000110011110011100110100110010010101011010011110001111000110100111101000011000101010001001010000111100100010101101001110100001011001001000101111101010100101110100110100010111101010001001000011010011001010111110011001011011011011001101001001011100010110111110001101101000111100111001000100000101010000101111011111011001001101110000010101111001011011001110110110100111111110000000011111110100011110011001111001001001111000101101001111100001110101111100000011001111000000001000101010001000010000111011000111011100010111001011001111111001111100011101101100000101110100001000111100010010101101000111101000011100001100001111110101011110011110111101010100010001010110111011110011010011101101100010001000011000101001000000010100100111101100101000110000000011010001000101001100101110101101000101000101100110100111110001011101011000100010100101111101110001010001011011011110010000100111100111000111000000101110001111100111110000001001011111101111110100010000010101111011100000010100011101101001101100100111110011111110100001111000000011101000111100011001101001000000001010000101110001111111000001001101110110001110011111011001110001010111010101010010100010101001100010101011000110010000100001100100110011011111111001101100001110111010010111100101000101000000010111001010000111000011001101011000000100111100001110100100000101101110101011111010000110100100101111101111010011110010011010110010001111001011101100110110110001110010001110010100011110011100000011110001110010100000000011110100100010000000010011011101100100010000010000000101000101111111000010001100000111100010101110100111111110111000001100011001011101100000001111010110100000010111110101101111101100100000001010111001111100001110010111100111010010110010001110000000110001010111010010000000010111011111011001000101111110010100001100110011101111111000111010000100100001100000101001000010000101001010101110100101101011101011101111111101100101111000010110010101100001010100111010101110110110100110110001110111000000010010001010011100011001000001000100000101001100110101101110000100111111101101101001110111001111110110010011000101011000110101110100000111011010011101001001110000001011001011011011001010010000101101011010101110101001001101011000101110001000000101010011100001001101010011001000111101011100001011100010100111000001111111010111000100001000100011010000110001010101110100111010001111110110111000111001000001111000111010100001111010001100001101111001100101100010011000011011010111011000011100100111100100000001111101000111101111101001000010010101110000010010000100101011011110111000010110111100100000000000100010001110100110000001101001100011001011101011101000000000000011000111011000100000110110101110100101100110011001111111101101001010000111111111101100101000000111100011111011100100111100010101100001000100101101110111001100110101011100001101111101011011000110100011011110001000110011111010111110100000101000100010111001001000001111110111010111101001011011001000101001100010000010111010010001011101011000000000011101110001111010000000100010101100110010100000010000101000011111000111111111010000110111011100100111100110000100010011101101100011000110100000011110001101101011011100011011010100100011001010100000110111011111010101011110110100100001010101100101010010111011111001001100001010110101010010110011110001110011010001000101000101011000111011000000011010111001100000001010010111111011110000111111010100100100010101000110000010111011001110100011110100001100110101010010010110010110110000101000011111011010101001110010110101111111101101110001011111110010011000010111010111111100111110101101101011010001010100010001110001110001010111011111011000101000100010101001101001111001100011110101011000001100010010100111000101100011010001011111011111111111000111010100001101011100101100000010010101011100100000010110101110110110010110011011110000011111101111110010011000111110010001111000101101100011111110001010111100010111111100110110001101011010000110000101110010110000110100001100000001010010001011100010011111001110010111011101010010010100100100100101001101110001100101111110011101100100011101111010100010010010111110110110110011001110100101100001011000010001001100111011011100111111000010000100000011000011011011110101000001010010100001001000111101100110111001111101101011010110001111110011010010000100000011110101110101001100100110110000111100110101011110001011111110100011110001111010011000011011101011011101011000000001011001011101000110001000010100100111011010000111110101110100111011011011111011001101111011011000101110100111111100011111010000001100000110101000010011101011110011001000000011111100100110111001001001111000011111111001011001100001110001101010011101001100101010010100001110011010010110111011110011011101100001000010101101110011110111111111010111011111110100100111101111011100100011001100110110010000001110000110101010101000101010100010100100110111010010001000110000100011010001000101011001001111101011011100011111101011100110111011110110101000100000001001111000000100110001110101000001011111110110011010010001100000000101011100111100000000110101011010101010111111111011010110111001101111011111011011110001011010000010111101000111100001100010011101101001010011011100101010111100110110101000010010011010010010001000100001111111110100010000101100100110001010001101011100010000110111100001000101011111001001111011000001110101111010101011000110011110110111101010001011001010110001101101001010100000100001001000100100100011011000101111011111100100111111111001010101011010111111001011101000110100101110101100101100001010000111001100011101000111001101111000001101110101101100011100110001010101110110010111011111011000101011111001011101001000011111001001000110100010000110001100010001011111000101000000001000111100011001001101101000111001111000101111011110100110010110010100111101010100111101001100111101110011011000101001110100111100101011110011111111101101000001010011010101110011010010101101011100101011111011010000101111001011000010101101001100110011001100011000000010111101000111101110000010110001100100010100110111001010101001111011001100000111001110100010010011110111110001010010010111001100001100101100100100010010100111100111010101100011000001111011111111001101011001110011110011100000110001001111000101100000100101000001110000011000101100000011111100011001010110100011101010000000100000100001100000001110110011011100111001010110011101001110010111111001000111101111110111100011111101100111111110111010011100011100011001001011101011011110111111001010001100010101101010011000110010100110001000010101111000010001000110010010010110100101110000010100110111001001011100000111001110110011001010010010010110100001010111011011000111001100010011010000001110011001011011110101011100011110111001100100101010011101100100000110010001011100110110111101111101000011000010101010111110011100100010100100000001101101001111110000101011011100010011110011100011010110001110000110100001110010010100000100000111100011001010101000010101001110010011111011010101000011001001011011101100011110110101000001100111110100000111001110000001000100101100100110010111000000000010001100101001100011010001111010101001111001010110100111010101011100011111000100110111111001111100011110111000000100010111100001100010111100111101001100100111010101111101111001110011011110101011001100010110111110000001100010100000111000101111110011010001110010101001000001111111100101000111100101100010001011110011010101100110110010011000101111111100100100001100010001010010111111011110000111001011011110101010110101000110000100101100100101011001011110100000111111000110100110001001000000111101101001111011101100000111101010110011100111100001111110000001111101110100000011011001010000110001001010011001110011000001101110100001100110011011000100010010110101100111010010111111100010110010001110001011100101110011001100000100101110010011110010101011110100101100101011101100011100001011001011100010000010011101111111100011110010111101110101001010110010010100001010000001001110001101000100101000110100111110111110010101011001010010101011100100000000100100101110101001110100000111100010000100101001011001100111001101011011100001001100010011100000011100111011011100011010000000011010011101100010110101010001000100110110110001010010010100000010011111011110001010011100000100011011000000000111111100101010000100001000101001110011101011100010110010111111110001011010001010110101111101110010010011101001011101010010111010001111010010001001001101000010001000101110101010110001010110000101100100110010000000111111001010001101110011001110001010100011110000100000101110000100111100111011101110000111001000011100001111000100111001001100011001001101111001110010100101011010101111000110111001000110000010011110111010110000100001001011000001100110000101010100111011000110010000011101001111101100011110001111011111100100000001011101110100001001110001110001110010100101011010101100110011001111101100101010000001010011100101011000101000100000110101010101101101101111000000100100000110110000101011100011011000001001101001000011110100000001001011111111100111101100001100001101011011011100000001110010100111101000111110111101001101000111000101011110001100101000101011010101100111000101110010011110001000000010001101010001100010100011011111011110100001011011001101111011001101101010110101110110110010001001110100111100101101010000011100101110110001010011001110100000010011110000100101110000111100111011000101001110000000010101110101101111110010000101110101100010111001001001010110111010000000111100000100110100000111100100100001001110101101001001101000101101111000110101011011011101101010010010010110001000101000011100111110110111010010100100001011010101000110001010101100101111011100101101000111011110101110101101011100000110010011001010100010001011010101001000101010001101001010111111001101010000011000111000000110001100011110010001111001010110010111010110111011010000100100101010010101111100011110101011000111010000001011010100110011001010100011110001111101111011001101011010110100000111011000000010011010000101100110010000110110010001010101100110000100111111100111001001001111110000110111100000010011010100100110010010110110110101100100010011001001100101110110010101100000010010111101110010001000101110101001001101110110100100010111111100101010001000011011110000011110111101000101111111000000001110101111000110011011000110100000010001001111010010111100110011001000000000111011001011100010010010011001000011101011110110101101001000001101100011001100110111010001100111011000011111101100100101110011001011001011100100100100101011000010100001111111001100000001000100010110101110000111011111100101011010101011101001010001010101100101110101110001110010011010111111101011110100100010001101100110010010110100101100011001111100111000011111001001111010000100110110011001111010101001010010000110011010001111001010001101101110000100000001111010100101101010000001101010100110110111110010011000000110010011010111000011000101001110010111010101000111001110110101001100111111100000110110010010110111100010010100100000010010001010100111011000111111000101111101011111000111100000110011100011111010001010010011010101111001000001010111110011000011011010010000110101100010001011000100000101101100110111100011010011100110011011111110100011100010000101111111100001100000101010111010101101100010111001101011011000100101000000110001001010111101011110100000010000101110110100101101011100110010100000000110000011111110000110110000100000011101000010111110000000010001011001001011110000110110010101110100000011101110000001000000011111111101000101001101111100100011000001011001100100010001101001110001000001100010111010101001000010010100111011111001100101000000111100110100100101001101110100010011100110010101101011111000000110000101010111011000011000000011010100101011110101101001000011100000010001111001011101001010000001110111011111101000010101100011010010001110010101011111101001100100111010001010101100111010100011001011010100000101010011110011110011001001001000000000001001101111101101100101011100010001111010101010111001000101000110100110010100011101101010110001011000111011010101111010011011010101010100001110000010111000010000011101000001111001101011001111101100010111101010100100100110100110011001111010110111110011010110110100010111101000110000100010011100011011111111000111100000001111001110000011000011110000001101100000001001011110111110111110100000011000100010111111001101100000010010101110110101111001000111011110011100100111010011001001011110111111000111101111000111110011011111101100000000010011000010111011000110011110111111101100001100001111110011110100001011010111010001000110100100000100011010100011010001110111101001101011010110011000100111100001100101111010111001010110011101100011101001000011010111010000000101111000001010100110101001100010001010111010101111111101100001110111011111111010101000010011000011000011111110000100100010110010001001001001111100010110111000111011100110000110101111011100000110010110010111101001110011110001110000010001110101100111100100000110111110100000001100111110100100100010011110001100111000010010011001011110001101000100000111011111000011101100101010000000101110111010100100001000011011011011111110111101001011101001111000110000001100001110110110111011101000111100000110001110000000011001010111000001101000000110100001101000001110011000101001111110000110000010010100111000110100101101010100100110001000110011011100101000101110010001111111101011110000101010011010110001011100000011101101011010100010111001011110011010111001111110011100100101100011010011000101101101100100001110100110111000000111110100011001000001001101101011101001110101110011010000011100011111111011011001111001100010001001111110100001001001000100100100100000100011111010101100111111010000010101001101101110101101001000001000111100001001000111110100101011000010111100001111101100110000001111000010000000011000111111011000100110010000110110101000001011101010010000001111111101000111101001011111010000111000001111111010001100100001101100000100101011001101110010100110011100100010011101100110011100101011010011100100011000101000101001001000001001101001101011101011100000101111000001100111001010011110011100101101111011001000111100100011111000001000111000010000110000010101110000100100111110001001000011101001010110111001011001001010010111001100001111110001111010111001001011100110010010010101010101101011111111000111000111000010110010000000001001110101101000010100110100111011100000111001010000000011101000011110010010010111100001110100010101110100011111101110110110010100011101001111011001101010101000011110111001011001111001010100101100111000000000101100011111100001100001010011010101100111101101101001011001100101000100100001111110000010111010100110000011000000111100101111001011010101110110110100100111101101110001110000101011011010011011000000100101110110001001010000000100000010111110000110011010111110001110011000111100101010110011001000000101110011000010000101000011100101001100110001100110010011110110101100011011100000001100111111000111001111001000101111000010010100011000000100000001001000011100000011001111111110001001000100111011000111000001010000101101010010010000111010110011001001011100000110101100111000000111001010111000001011110000001001111111101011111010011101101010000001001111010000111111011110111011111101011110000001011110101110101100110001011100110101010101110000011110110110000110100011110000000100011011111111011101111100101101011000011001000100000000011000011101001110110110000010101001011001101010011001011111110001110011010111001111110010100110110001110001001010111101110101000100001011111110010001111111011000110010001000110000011010001101000001111101111010111110111011110011011001110110110000010010111101100010110010110000011000001010111001000001101010100101110001110110011111100101100100111100000011001001111101101100001111000010111100101001111000011011101110010100101110001100101111100111110001110111001111100001011111011001111101000101010001010001010010100111101010101100000010010101100110000101100011011000100001000111110111100101000111110111110011101000010101111000110101011100011100101101101110001111010101011000110101001010010010010101001001111010111111111010000100011111111010101010010000100100011111010011111000100101101110101011001000111101010010000010011110000101100100010011011111110100100011101110111000011010000011011101010100010011010001011011110000101011010110010111100100111100001100100001011001111100001111011110101111111011000111110000110010111101000111000001000100101010011010101110110101111111110000101100100000001010001110011110000010011001010111000110000101010111100111011011100100100111101001011110000000011101110010000011111100111011000000011000011001010110011001011011011110110101010000111111111000101000000110100101110011000101110010111010110111100000010101110000011111011011011010001010111100010101111101101001000111010100011000101011000100011110011110111110110110110110011100101010011111100001011111110101110000100110010001111010100010001110011101101110000101010100110010011100101011110110010100101000011010001001110110100000000101110100010010100100101000000001010011011100010100111011001000111001001111000011001011101000000010000000100000010000001010100100100010011101100011011101100001010001110111100111010010011001011010111010010101001000110010001101010001101110001110111101011000110001001110110110011000011100001001011000101111101010111110101011111000101101011011000001110111111011100110111100111000001100001001011110111100001000001001111110001110110111100010101011011110100101110111011001011111001111001001011100001100001011010000111111011100010101110101110110100110111101111011000000100101000011010111110011011110001101010111011010011100111010100111100111000010110110111011111001011100111001011011111111000001000100011110101010101010101111101000001100001010001100111100011010000010100100110101111000101010101001100010001010001110100001000111010111110010011010010111110111100011101111000010101011111101101011000101000100000111100001100100000001101000011011010011101101110101111110011001010010001010000000111101100010100001010010111001001001000001011111101011110101101101101110001001111111111001100100000001100100010100101000111000101111111010001111100011100011111011010010101010010100100101110111100010101010100110110110110101010110111000011001111100100000110011100000011101100100001111011000110110101100001000100001111111001000001111101101010110100100000010010011010010100100101100010000011100100110011010101100101001000111100100100010101010001011001001001000110101001001011101111000000000100100011010010011101100001110100111010010010001000011111010010100101010110010011110001001101001101010010111101011011110011011101001010110101111101011001110011011111000100000000011000011101111000101001010010101110101110101111010110101100101000100111000000010100110100010000101011001111010100001000101100001001111001101101100111000110100100101011101101100101101000111101110011100111011000101001111000010010100111101010000100001010011111101111111100110111011010011011011100000010111011101010010100110101000110111001100101011110000011011001000100110111011000011011011101111110010101110111011110010100110001001001010010111011001101001010011110100100010011101100011000010101111000000010011011100101111110111111100101010110110000100110000011111000111010011001100010010101100011011011010011010110011000000010101011000101010100100000001010001000101110100010001111100001100111110000100101001101111111001111000100010000001110111111110011010100001000100110101001011111011011111111100100101010111001000110010111000111010001111101111111111000111011111000110100101011000010001011101101111110010011111100101001011110011011101110011001111100100111111110110110010111101000011011001000111000010111101111111110110001011110010100110111111100011111110111110111001011001101110111101110011011101110000010100110011010110000011100111011100101011110100001111011100011100001101011111101101101000011000000110000010101000100010011010001100100010110010100001001010111010001010100001111110010100011000011001011010100101011111101110111111001001010011101110010111011001101111011001010110100000101111110100110000110010000000000011110000010001100101000100100100101000111100101111110101011100110000101011101111110011111001000010101110101100111000011111111011111010011101110111000000011110110110011110111110110101110111010111001010000001000100000111111010111110001111001011010111110010011001110110101111101011011111111011111100010101101000000100000001001100010111100011000000010001010111101000001101100011100000101000100010110010110000001100011001011110101000011111101001101010101010011010011001101101000000111001100100010010010111000010110110000110011110100101100101001100011100110011110111100000110111000001011001011001011000010100010010110001101101011000101111010011100101011010101011101001011011000000011011111010000110010110001111011101011111000001111000001000010010011101000111110000010100101100110110101011000101100001110100001010000010011001101111011100000100111110100100101101101101010101100001101001011101010110001000111001011010111011111101111000001000010010011010101110111010100111011111100101011111000100001110110001101100011011000111001111110000000001110010011001011010110001100111100101001111100101110001011011010100100110110001110000111010011011011010111111000001010011000101001000111001001111101101100001101001000111000000111101001011111111100101001011101110000001110101010010011110101001111000111111100110101101001011010010100001100000001001000001000111110110010110010010000111100111010001101100110111011100111111010111101000011110100100100110101110001011101011100010010011110001001001010100101100010010010110000011011111001011100101110010000000011111111001111010101000001000110101110110101100001100001100001001000110111001001010011100110010011111011001010010001111001100100010100101101010011100010111100110010010010111101110110111101100101100011100000010001110101010001000101100000111001010001001010001101011100000100011100101101101001011001000111001110110100100111100010110111100000000100100110010110010100000011001110101100010001111011000000100010010011100011001000000010010110000000010101011001010101111100100001001100001100010010100000110110010011000000110010010100100101100111101101101110010110111011010110000100111011111101111100011111101111101110010111001000001000011100110111101010011100111111011010010111010011000111010001010101100011101001010110001100001110111010101100000101111101100110011001001011100001111100110001111000001110101011011110101001011001111100000000011110100111001000001110110110010001001101000001100000001011111010100111111010011001011101011110001000101111010011000011010011001010100101100010001110000110101100010100010001101011110101100101010001100110000010110111010010000011110100001011010001010110111011101101110111111010010000010101011110100111000110111001010100110111110000010001000001000101011011110000111001000011111010101101100000110010011001111110000000001010111111000001000011101010011001101011110101011011000101010101011101111100010000101100010111101111110011100001111010010110101000100011100110100110010001011011101011000100011111110101010000111100000100100110000001010101101000110011101111110111111110010011111000111000100111100110101111101111011100000000011011100101000000101100011110001100110010010000111111101101100110111111010001001101110011000000011011100010101000011110011110101110011010000101100001110011110001100000001011101111011000101100000111001001011100111101010011011011000000111000100111110110001101001110010010010011001111111111110100010100110010001000100111100111101110101110100011110001011111000011101100000000001111011000111111000000110001111110011001101110001001001110000001111011000110001010111111001001010101111011010010110111001101011111100111101111100001100110100110011011010101011010110110101011101001000100010010010000101010111100111100101110111001111110011100100110011110000111011011110000110111101000101101110011011111011111011010011111100011110111110110000111101010110000110101010100001110110111111101101001111100100010001100000010000010100111101110011110101001111000000001101100111111011111111000101101101100100011010100110111011000011101100110101010001111101111010111101000111001010010110001110000000011100101001001111110001111111011100001001000100011101010101001100110101101000110010000111010100100001010000100011100111111111010100001010100110111001000010110010001001100111100110101001100000110101010110101111111110011101110100100011110010011001100010101011010001000001101010011111100011100110110001001101101011010111001101001010110001001101101010111000111011000000011111100101101100000101001100010000011011011110001001000111011010111100011010101010001110011000111110010111110011100110001010011000110000001001110000111110000100010101010101001010100100101010011110110111010110011001011010011111101111000110111001110110111101110000011110011001101011110000111110110010111101010010010100101001011010101110010000000111001101000110000100101110001011101000001101100101110100101110100100001101011100011000000001000001010010100001101000100011101011001100000110011101101010110001000101011111011100111011100100001011101001100000011001000100001101101001100101101101001000010111111111100000000010010110100000000100111010010101110010011011100100000111000000010011000011110001110001011011000000110000000000010010000100000010011101000101100100011101100011110011011110010011101101101011110111011110001111101000010101111111101001100100111011001000111100111100110100111000101011010010011100011000011001011111000010101011110111111111010101111110100101011000010000100011110101010000001111001011110110000101010111101110011011101100111010111000000100110011101111001010101001100110001010000011111110100111010000100101001110111111000000001111001111110010010001111111001110110101111000100001001001111100111011010110000100100111000011111011000001010010010110101101110010001010010010111000000010000001011000110001100010111000001110000000001111000101110110011000111100110100000101111111100011101100000011011011001100000100001000101111110010011001100000101000110110010001000100111110001110001111101110110011011110010110001111111000001111100110010001000000011111101111000101101011001111010111111111000011101000100011110101000101110001101111000010010010101011110010010011100101001010110000001101000111000011100000100010111101100111011000100011001011111101011010001001101111111110101011001000100000000111110110001011111000000011000111111100101000110001010111101001110101011110110011001111000001110101101110100000111110110101001000101111001001110110010101000111000100100011101001001001001110110110011110100110111100000100101101111001111100010001100000010011100011110110111100000011101001000100110011110010101010011100011001110001001110011010101111010001101101101011100001111001011010101000110101011011111101110110000011000000100101110110101100001011101010101110111011001110110111101100001111100110010111010011000111101100001010101111101011011011110010111001101001001111001100101000000000110001101001000011010111110111011111101010110001010010111000110010011000100000100110011011010011101110110011110010001011111100000100101001111000011110101101010110001001010111111101111000101001110110000100011011111010110110011011010101100011101111101101101010001111111010111011000110100110100111001001001011100111110010010100110101010101111111100011010100000111101100011101001011001011100111111111101110101010101101010110101101011101000110011000000010001000111101011111010000111000110101010100110110011100100010001011000011010011011100000100010001100101100110110111100111001010110110101101101101011101001011100001111010001011010011101100111001010110110001000100110101100011000000001000110000110111100111010001011111011110011000101101010100111101101100110101010101101111000101101011111110101011101001110000011110101010110001000110000101010001010101111100100101001110010100100001011101001001001111010100101111110100010000101111011100010000100001100100100011010111100010010111011010010010000110001110001010011110001010111101101011100000101000000001110100011101011101011100010001001011001100000100100111001111100100010010110011101110100110000000111101000111101111100000111001011011100111101110110100011101000100111110000000111101110111100010110011000010101100110000011010111000101011011000001110000111110000101001101011101010110010100010001111110111111111111100101101011110011001100011010110001001110010101001000010101011111010100000000110001000110101011010001110010011101100101000010110011110000101011000001111011011101010001111111001001010010011111111101000111101110110000100101110011100001001001101001101101100001110011111010001100001010110000010000000101100110010101101011000011000011000001000010111111011001110011011110101000010011110001100011001101111001101000101010010111011000010000100010110111011000011010000110010000111000000001001011001000001110010011100100100101001011101111100010010111111011010001101011011000001010101010001011000001110100111111101000110101000101110110100011110100011111110101110001010010001111010100100001000101110101011010001110000100010001010000110010000111111000001110100001101000011000001110001111000100000111101111000110010010011100010010111111111010110011110011110000001100100011010010101001001000100110111001111110001010110100100101001011110110111101010001101010111010011101010100110100110000001001111011111101000010111111010000101111111010011001101100000100111110110110101010010000000111010000010100101110001100011101001000011000010000011110000110101110100111011001111000010011001101100100011010001000111001011000010001011110101010101111101100001100000000000100110010010000011011111111110111101111010001110111011100101011111001011000110000001000100011010111100100001010000001000000010111110110011111101100010011110011001111101101011101010110010100100010110111100001001111111111000010101101111001101010011100001111100101001100111111101000100100011010011110001011110101001010001100111100000101001101010111011011111111110010010011010110110110000100011011101011011011101100010110101101101010111010000011100000010011010111111000101011101110000010010000100100101001100111101101010001001110011111010010011011010011101100100010010101000011101001001000011001100011100110011110111000111100011100111000100001011111011000000011000100000000110101001001010011011111100111110010001101011010001101111110101000111010111110110110010100011001111100010010010010111011100011101101111000001101000110100011010001100111011111100101111000001000110011000101010011000101011101000001001011000000100011010101000100111000111101001100010001011010000001001010110100000000000111000110101110000000000001100101110111101110001111000110010100000110001101001101110111010110110010001001001100000001100001101100010111100000011101100010101001110110010000011101101001100010011100101100001100111101101100101001100111110011001001100010000011010001000010100000001010000001010011101111101100100100100010101011100011011111000011011110001110110011010010110001000011110001001100111000110110001000011100101011010011101110011010100111111101100110010100011000000111111100011110001011000100110100010011110001110100010001111110101100010010011011101110100001101111100111010110111011100110010100110001101011100100010100110101011100001001001010111010010110000110100110100010001011111111011111111010001111011001110001000110011111111101001101001010111100110100001000001111111101110011101110010010110011110101110111110001001111110101110011010110101010110101111001111010000001100011000000010001101110100111011111011000001101010001000011010100101010011101001101010000100010100110011011000110000111100000100001111100101101011111100001000111100100001101111111100001001001101111000001010011010001111110111101111111101011110000010110011110010111111111011101001000000100001011010110011100100111001111110111110100000011111001010111001100100001111110010100001101100100001111001100100001100100100000101110011010100101101111111001001110110011011100010001010001000010001101111110000010111011001110100111010101110010001001111001110101110010011110001010010100111011111001111110001100010010110100100010101000100110001111101100000110001001111001110010000110100100011111110011101011101000111110101111110011001111111000100100001011110111100101110010001110111100100011001101010000111110100000111010010011001101010010011010011110111001011000100111001111010001011100101100011000111010011111000010111010110011100001111001001111011011100110001100000110110111101010111001001111001111111001101010010111100011010000110011011010001111010011001001000101101010110001001101101011011111100000011110110011100111100001111100010110011001011001000111010011100111111010000101000110110111111111111101111101111100000101100101000010011010101101111100111000001000101011111011011010011010110001010001111011111001011011110000101010111011111101101000001000110010111101011101001011110011001101010010100000001111001110001010100111101011111001010000010101100100001000011110000010011000000010100111010110010001011111000011110011101111001101000101000001010111011011011000101001011101010000001011111100011010011011011101010010101000000011011001000001100000111101010000101010110100101101100100001000100010001110111100010101110001010010001101011011000110110100010111001101001100011000000111111110100000010111000011100101100101011000110111111000011000011110000101100110010010111001110001010111100011000011101010011100111000110010011001011010011101011001001101001010010011111101000111110011100001101100001010010101111010100101000000110110110100001011101000101010111010101001111000101001010110111111001110111010000101001101100000110110011111101010001000001010010000100100110110100000110011100110101010000010000110110110011101000101001011101011101100101101011010111011111111101010100011111010101010010111100111111000000110100101000001010101000000011101100011001101000011010010111110110010110111110011011011001110000111010000100001101111101011001001001000111100000110101001111101011111011101110001011110010100110101101111000101001101001001000011001100100100001111001110111000011100100011111110101101111010011010001000011111010010001101011111100101110111001011001011110000000100111111011100010101000100000011011111010101000000000010010000111001111010101110001011000001001111011101111000001111000010001010110111111110110101101100110000100010001010111001000110001101000110010101011011001010001100010010010010011101010111010100100010010001000100111011101111111101100110101110110111000010001001110000101100101111110000000101000010000100110010001010110110011010010101010001100001110000010011000001101110011110000100101111110101111100011101110001011001000000101001011100010011100000100010110000001101000100010000001000010011100010000110110110010000010101100100001110100101110101001001110110111100010110000010011000111100110101011111100010011111111000010101101000111100100000111111111000011110111111110001111111110000100100100001011100000111101011100110100110101110001000111010001010011000101111010001011010111100110000100000000000000100010101011011001100110100111101101000011111110000011011011001111101010010100110101010011110100100100101111001111100100111110000000010011000000111110100100010101100010110100100101001100011110011011111001111000010101101011000111100011011101010101001101111100010110110101000101000101111111001011011000100110000011110111010011000010100011111010011100101110011100000010001111010010111100110001011111111011001101100100110001100110101101110101010011000100100100110111100101100100100111110110100011001100101100100010010001110000110111010100011010001011110101010000010010011111000010111110010011101111100011100000110100110011101100001000001010011001100100101000111011101100011101000111101000110100000000010001101011001001100100110100100111001100011010001101101100000100101010100011101111110100010010001010011110100111010011110011101001110100100000101101111010101000000000101010101001000110001010010110101001010001001011101010010011111111010000110101010000110001001001000110000000010011101010111111001000001100001001100001111101110001101101100000101010100000000010011101100001111001000010110100010001111110000111111010011111000010000110011011001000101001110000011111011100001110001111011110101010100101100111101111111001110011011011111000110001000100000101110010011100100111011010111011011001001111100101100111100111100100010000100110111101000111111001111010111010110101100110010010110111111111011011111011110111000011100000001000100011000110011010011011101001110010010010000101001110110000011110000111011010000011001101010100011010000101110110100010101010001110111100010001110000010101110001100010010001100000000010110011010111110000000010000100101101110111100110100001010011100000001001000001011001011111011010100000110111101000111001110011011111000111100000100011110011110001000000111100001000000111001111110000111001010111110100101000100000111111110111000100111100011000110101000110010001100111000111110011000010011101001001010010111111001001100110101000001000110100011000101011001100100000000011100001000111011101001000100011111010010101000101100110001110011111011101110010101100010001100000110110100100101010010010101110101111100001010000110011110100011000111001000101011001000011100100100000110101100000101100010001101010111100000010001011101101010101101110011101000101000111101111000011011111000010100110100100100011101010000111100000111100111110100111101000111001011010111100111101001000110011000111001011111111010101010001000100001101101101011101100110010011010010101000110000111100001000001001001011110110101101110100111111000001100001101000100101011001101001000011110001010010101111001010000111101000110110100011001011010000101001001110100101110101000011101100101011100101101010010001110101010110010010011000011101001100101000110101101111010011011001110111110011111100001100010001010110000110011010110001111110110001110000011100101010100101010011001001101010001010000110000101010111001101110010001010011111011101100010101101001110000111001001000100111100001111101011000001111000111011101001101100111010001110010011110110001001111101000011000101100101011110110101000110001111100001110110010000100110101010001011110110110000001101111000110111101111101111001011000110011011000001111110110100110100000010000100011010001110110000001001010001011110010111011011111101011110100001000100000001101001101000111100100111110011001101000110000111010001000110001110000000011001001000100101111000011111111100100011000010010000110000001000010100010010110000010110111001010110111100000010011010101001000111110110100100011001101010101101101011000100100111111111010100100111001100111000000001100111111100110101110101010000111001001100000111100011111000100010010111100110011111011111011110000100011001111100010010000010111110001100100110011010111110100000011111001011001101101100101101100110001000000100100001000010010110000010011001110000010000111011101011000000101100000111010100100110101010111011110110110001010110110111011001100010001010110011010100000100011100101100000100001001101111011000110001111011011101010110110101111010111010001100100100001101110001111110110110100100010010000110000101111110000100101001000001010011111000000110010100001000000100111111000001110100011101100100110011100000011100111100101101010111110111000111111000010001110001110110010010111000110011000011001011111001111111011101100010101101010100010000010010001010100111000110010000100110111110000101110101110000111101010000010000011010100100110111000011101011001011000111110011000011100100100110100000000110001010100011011011001010110111000110101001010011100001100000110111101101010010000010000000001101010111010110001000100110110111010111010010110110100010100000101010010100000100011101001101010100101100111001000001010010001101001000011001110100011010011111010111001001101011100000000011101110010000111100001101101001011010011010110100011010010110111001011011011110001001101011111110000100111110110011011001101100100110001101010110000011011111100110110000011001110000100001110000000000101001001100110101110111011110010110101111001101010111100001000111000000101100110101010101110010111111101011001001101110001111001100010101100101001110001110111100000110101101010101010001001001011000100000011000100011100011001100010001100001000101110100011011101101111011100111010011110011001011000011010111011100110111101000000101010100110100110100000100111100010111011001011011000010011000101010000111101000010000101100011111101001010100000100011011111101000101110011100011110000001100101101100010100111111111100010010110100001001011100100110010101101010101100001011001000011000100001001100010110011111111010111000111010000111101101011010001101011011001100000010010011001111110010110100100101000001100111011011101100000100101000011011111001101000001110101001101011000110010101000000001010010111000010011010111011011100110100100010000110110100001010111101110110001011100001101001100010001101011101011110000010111000011000101010000010010001001110011000100111010110110001001011000011101001010101111011000100111101101011000110100001111001000000101101110111110110111001000111101001011010100111001100101001100011101010111010011010011111100110010101111100100011100110101011101011101001011011000001111010000110101001111110110100010110100101000110011100100011011000000111001000010110000011010110111110100000100100100111111001101111111001110110010101000101011110010001111010000100101010101100110101001000100100010010001000001110001010110010011000000011100100101000010010010100101110111100001111101010100011110100001011100010111000110110011111001110101001010100111001000001111010001111001101010011111001111110011101011111100001000011011000000110100000101101111000111101000010101110011101001000000110011001001010110010100001110111001101001011010100111101011111101110111000011000111000010110001100011111001110101001010010110001010100000110011100111001111110010011000000001010010111100110001010100110011011100110110010011111111111001010101100111011010101100110000000111100111111111101111110101110100011101001101101010111111111111111011111000001001001111101111110111000111100100010011000111011011111000011001010111101000110000100111011000100001010011111001011101100010101111111010100101001010111000010100100001001001101110110101100000011011001110001101000100110111111001110111101111110110000100100111111001110101101111010000010100100010000110010011010011011000111011010110011010011111111100011001011001011100000011110100110010101110110011110110000010011110010100000110101010110111100100000000011000011010001001001101000101100010010010100001101100011111001111010100010011100110000000010110100001101001010111000010110010111101101101110011010100101111010010001100101011111110101111110000110011110110011001101110100011000100101100000100001111110110011110101100110100001001000001111001000001011100010110011110011101110011010100101101000001101111110010101000010111100010010110100010001100011100000010100011110001100110101000001010101010101010001110010100010000001101000101100110101011110101001001010101010100111010000101001110000001010101010111011001101001010100100010110000100011101000010100000000000001011011100110011011101111001100010111011001001101000011111110101110001001101111110111010011001000001001001000011011001101101100111001100000110100110101100011101000000010000111101010001000000000111110100010110001101110010100000001100100101001111001010011100110011111010110101110110101010110011100100110010010101100110101000100011011001001110000011100101101101001110010011001010101001101110000100100011010111101100101000110001010001000010010101100000110011100101101111101010110100100110101101000001011100011100000111000011101011001100001000100100001001000111000000011101101110100110011110101110010110101111010110110110010001001101111001100110101101110111101101010011000010010110000001011011000110100111111100111010100011111110101100101010111111110111000000100010000011101011110010100110101000001000110111111001010101010100100001101000001110001000111101100110011110010011000101011101111100101011011011000001010010100110101011000011010100100101010011100000011101101111110100100000010011101110110001010000001010000001111100000100110101001101011100100010100011101111100100010111101111100101010001110000010111110100100111101001110110101100111011001111100101110000011001101010110011000101001001011010000100011001101011001011001010011111111100100100100100010000001000111111011011110110000010100010111110000011101110001001001100001101010111011110010000110011110010111111101111010010010111001010100111011101111001111110100100111010011110110010110110000101010011000010100101110010010110000111110111111100000110010000001000101011100001100111000110110010000001101010011000001110001011111000110110101011101111110011101001110110100100101001001001010110110011111111000101000110010000100110110100100110110111101011110001011101000100101111000010100000110010101101011100101011110100111011100100100111000100000110010100110111010100110100001011111110101000110101111010101110110001000111101100000010010101001001000100101100110111000111101011100111101000110100100000011111000110001010001110111010110010111100111011111101000100100001001001001111101011111001011110100001010110110100011111011110000011111111101011000011100101000111100001011101001000101010101110110001000101010101101000011000010011011110100010000110111010001000010011010001010100110100111001001000001110011011100001100001101111001001111101101100101111001111111000101010111110000100100000011110111101001000000111111101011110001100010111111100010010011000010011111010010010001111111010110110010100011010011110100110111110111011000001010101011010101010001110011011100100100011111011100001000001110000101010100000111001111100010001010000110001110010010100011110011011100011010000001011110110000001110001111010110011000111101101110101101110000110101010000000001100100101001010001000110100100011110010110111001110100110101101000100000101101010110000001110110100000110010010000101110011101010000111011110101010101010011101101100010000011000101111110000101000110100011001011100001100001001100111100101101101010011100000111111111110111000101111111011001110111101001010000010110110111000110110011010000001101111001101100001010101001010110010111100000010110011111110100000010001001110110100111110101000010001100111011010110100100010101111110010111000110011010110100010101101101101100100100101000100001111110110110001010101110110000000110010011111011110111100111111111111101010001000100001111100110101101011010011101110010010010101000110000110111110001001110110111110111001010110110010000110100111111111011001011110001110011111110001011000111110011110000111110100011100101100000010001111110100100101001011101111100000010111001010010001010001101011110010001010110110101011100000010100010000111111101011100100001001110110011110110110100110110100000010011111111000110011000001001111100111001111010001001010100000110010011111001100011101001000011010110011101011100011011010111001001111010110010100110111100001001111101011101000100110100100100100111110001011111001100101110111001110101101010001000111000111100001000011010111000110010000110011110001001101000011011011011111110101101010100010110101011100001001010110010101111110101000010001001110000011101011101001110101111101010100110110000000101001000101100101010110100010010111000000011100100100000111000001010101000110001101011111101011101110000011111010010111100000100110100001100111010101101101000010110101111001110101110000111111111101110101010101101010011000100001000000011000110010000110010010010110001000011000110011100000101001011010100111010000000100010101011001010100111001100000101111010001100101011100011110101101101101100001111110100001101011111000101001100010010101100100100111100100001111001001000110011001100001110010110000011001111100100000101000011010111111111010110001011110001011100100001110010111100101111010100111110111101101010101111001101111110010000001011111100000001111000011111111000011100011110101100100011110000010010011110111101000101111110100000010111111000001010010001010000110001101000011111011010111100011000100011001100101001101000110010101011111100001101101010111101101011111000000101001010101111100111010011011011000011101110001000101000111011100010001101000011010010111100011011010000011000001100010011001010110110101110110100111000101000001001000111001001000111101011000101100100100111011101011001000110100011011110100101100000100011010101111011011110011000011111111001110000010101101011110001101010101100101111110001011000001010011010000101001011000100111100111101111100110100011010111011010101010100110110100000110000011100001001100000100001101000100010100001001010101100010100001010101110000100110010100101011000001101000010111000001111111000101110000001111111011001001010000111110011111011001110100110110100000001100100011101111110000101010101010110000011111001111111010001011001101100010110011111110011011111100001011010110110100101010101111000100011110110110101001011000001000100011101001100011001100100111111010101010101010100111110010100111011111010110001101110111000110111011000111101001011001100101011000001011010100100010010001010110110110010111111001110001101001101110011111101001101001001100111000101001111011010010001100101111110001100100000110000111010001101110001010101011101100111100111110110011101101101100100011010001010001001101001001010000001011010000111001110111010010101100100100000000110100010000001000011000010110111001111101011110101110011011001001001010101101001101011111110111000111010001100011011001111010111010100010011101001111000110010001010100010110110100100111101101110111110110011101111100011101010100111110010010111111100100101000100111000110100101000000010000101101001110011011001011101011011010001011010010011111011110000001110011110101110101100101100011111011100110100100010000011101100001010101011000100000001000000111000101110010000011111110000001111101111110011111001100011110100111010110101001001100100100111111000001010000000001010110000110111010010001011010100010111000011101101110111110100000101100101111111110000111100110111010101010101100000010000011101110100111010110100011110000001111100001101001110010110000011101000000010101010111000111101001001011110011110011110001111011100010011010110011101101110011001101111111101010110100101101100001001100000101101011110101001110111000001110100110101110010100100011111000001101000111000110110110011100100100101110111010101100001000011111011011100111000001110101010010101101101010001111001111100110111111100111000011101000000001011101000000001100010100010101100011000101111101011010010110110011001000100110011000111110101111101101111110100000000010111101011101001011111011111011001110000010010011101111000100011000011010001110110100100011011100100111001000101010001100100110100100110011100110110000011011001100000000001010111010100111011010001111000110001111101001111011111110010101000110100111000111110000100101010100100010110001111101001100001001110110111011111001101110110110101011000110110111101100001101100101011010010001101001011110111110000000011011001110111000010101001101111001010101101110011000001010111000110100010110101011110001100010000111001001111010100010101001111000001011011001010010100010111011101111100110110001101000101110010110010111101111111000111110001101001001011101101010001111111101100001000000000010101010001011011001000001000101110100000110101111000000111011111010000110000110111010110011011011111011111000000110111011000000100110011000011010111010101010010010101000100100111101101101011100101000100010111110100011011010101110010111010010011100111001011001010011110000100011001000101111001100100100110100111001101000100001000000001101011001111100000101010110000101111111000100001101101100101101011101010110000000011110000100111010000100111001111100001101001100100011100011111000110001100011001100011001011010000101100010000100100111001100110010100110110100010000101010011110000010001011100111011010001001111000011111000011000010110000111011010011111001010001101111000010110011101101101110011111011110110010000111100111011100000111110100100111110110011011101111011001111111100101011000110010101100000111000100011110101100001111001001111101110001001001100101111010100010001111101110011110111011000111100000110000010011111011010011001110100010011111111001001000111011111111100010010010110111000100010010111100011110001011110001010101110011101110011011100010011010011101111011100011001000111010011101000001111001110001110001011011010101010001001100100111000000111111110110100001100101110100100011011100011110101010010110100011010111100101100011010111100000110010001101010110110000010000100000000110100111010011110101111000101000101101110001001101100111100000101001001010100100001111111110110010111011101000100010111101001111000010110110100000100110010110100000111001100111000001100001001100100011000100010000011000111100111001101100011101101010011010110000010101010110101000011100010011100111110110001000000010101001110101010011110011111001000101100101000110001010101001001000001110110100110001100001101100010010110000101011011011011101001110010010000100100010101001000000011001011010000000111000101110111001100100000010110100110001110001001001010001011100000011101011111001100110100000000001001001011011111111111110001100001001000101010110101100111010110001000010001100110111100111100000011101001110001010110111110111010110001101110000101010010111000011110110110011001100010000100011100101110110010110110001110011000111101010011001100111100000101010101001000010101100111111010101111111111110101010001001010111110010001101100010011000100011100011001111000011100110100111011001111011111010110111000010011010001001011111110101100110010101110011100110100011110010000001110001000100111111110001100111100000000011000010001101101101100011111110000101101000111111101011001011110011101101110010110000001001011101111001010110100011110001010100001111100010011011100000110010001001011101101010000011101111111011111011111010100101111011001011000100101111010100010000101000100000100101000010101010101010111010100100111101101101001000010000100000001011110000001011100101011010010100101110101011011111001100101111011111011001111100001000100110110110000101110011101101110100100111011111011010111011000000011010101010111011010010110011101011000101111001000110001001001100111010011111110001000001100100010110001010110001101100101000001011000100011101110010110101001001101111011001100101111110111001000001110100110101111010111001011000100111010000001010111010010111001001111111111011111000011001010100000001111110001000111000000000111101011111111010011110111000111010011101110010100011110101000011011000001101110011010011011110111101111011011100110010100100001111100100000001000101000110111011101111010111110100011011110010111101100101110111000110110011101000011101100010000101111100000101011111111011001110001101010111101001000001010101010011110111000011101110111001110111101101100100010011011010111000111101010111111010111011000110011101010001101001010011000011001011000000010100110100100111001111000100011001011001111010011111100110001111111110111101111010011000101101010111011101111010101101010101100011110111011011011001100010110010011101100011110000110011010100111001110110110010010010110100101000011001010111101110101001011011010001000111011100110110010000100000010111000110010010010011001111011110010110100101111101011110001111010001000010000100100111010100101001111011010000000100101011011100101000110001101010101010100111000110101010011111111111011010111000001100011101100100110100011110110000011000011100101110000100101100000101111110010000000011111000010101001011011111100000010111010000111010001000101111101011100010101011110001010010100110010010100111011011010001111100010010111011101100111011001011101010111111011110001111111011101101010001010111110110101110100110011111011110100110010101101100111001011000111100000100110011011101111101110110100111001110000100110000010101110001101101100000111100000101110110010101010011011000100100000101101111101010101001101111000010011110011000000011001010111110010011000010000010110101100101011001011000011110110100111101100010010111101010111001010111001101111100101110101110101100000011001000101000010111100110010011110011100100001100011101000010011101001011000111000110110001010101101001001110011110010110000001010110110111101111010011011000111101011111110000111100000101100101100010110101101110101001101111101100111000000111000110011001101001011100110111001001100110111000100000000101111111110011001011001010000101111101110110000110000000110110001010011001001011101010011101100001110111010001001011101101101010100110011011001001001010111110111110011101101111100101110000000011010100101100110111100100010110010000111000001001111110010001101110101100100100101011000001000001001111011101110101110100001101111010010111110100011001100111001001111000001001101110001010010000100101001010100110100110101101000001111000000100110010000010010001000001011101101111111110001000000110000000011010010011111011010001110010100011001000100010101100000011011110100101101011111110101110110011001010001110100110101101101100110000011100110000011010100110101111011110110001111101001100000001010101011010101100010010000101101001111100010100101110001111001001100000100100001010111010101110001000000001011001000100110100111001011110110100011001111100000100010110000101101111010010110111100111011110101111000001010110110110010100101001111000000100111001110010100111011001011101000011000000101000010100110000111010101000101011110101000100000101010001010010001011001100101100011010011010111111110001010110110010101011000110010010110101010111100001001111000000100011010001101011111010110000001001000111001011011110110101010011011100100000001010011011011101011110001101000010111110101000101011100010001000100000110000000100011100011100111001010011011111001110111001011111000110111000101000111101100000010011000110011111100000100101101111000011000111100100010001100011010011011000110000101000001001101110011010111011101001110110101001011010010011001000010101101010001001100111010110111110111001100001001100111011000011100100010101110100100000110001011111010001010011010010111101011110011101000111010011101001000111111010111111100101100010010100100000000111000111000110000110000110000101100100010000011101111010010011101111111000011011000010101100111101100000000110101010000101110100010110110010001010011001111010001000111101100101111100111000101001000011010000011000111011001100100011000110100000001111110010001101100010100000110101011100111100011011110011011011110011100111000011110110100101100010010000011011000010100000110000111111001101111100011111001010111111101000000100010101101111101111000110010001010101101111001010001001100011010101110110000000000111111110001100001110110110101110101011111000000001101111100100101011111001011001011110101110010101010111001100000110100110111111010110110110010001111001000001001100111011110000100011101111010111110101110110111110100111110001111111010111011010000001000000011101100110000011110000100111111101100000000000101010011000011101000100011001001000010101000101000010011111111000100100010111100001001000110001011000100111111111011101101000100110001001110001011010001001000000001011010000011101100011000010110110101100101010010100000111010110001001000000101000011000000111011101110000111011011100111001111010010010100001100111110010100100111011110000101111100111001111101001011101101101000001101000111100010111000101000010000111000010011001111011011011001101010010010101000011111000100111011011011011111110010101010000101110010011000010110000111011110000101110101110011001110000100100010011100110100111000110001101000011010010011101111100010101110100001001110111110011101000111110011011011000101011111010000000001001000001101010100000001001101011011100101001111011100101110011000100011100011101000001010001110011111110001000110110100101011010110011010100010100110010011110001001000100010000100011111110111010010110111110110101101001011100000100100000010010010000111011001100000110100110001001010010111011001110100110100010001100011011111010000111010110000011010101111100011100111010111000101111110100001000111110110101110010100000111001000000011010101010100101111011101010110100000100111011110110011011101010111111011010101110011111101000011111000001000001000001101000011100010110110011110110111000000010010101110100101010010111110101000100100010111010010110100001011011110111000101101110011010010100001101011011101000001010101001100110011000011000001100001011111010101111011100101111011010110000010011110000011101010110001101111011011111000001110000011110100011110001110010110101110001001101110011010011111111100110111001010010111000110100010100011110110000011100001110011011100111100000101000000111000101100110110100100111010000011001110000001011100111000001110001111010111110101100100111111000110100001000110011011110101011101010100101100000011100010001111011010001110011111101000001101001110101111011101111100111111101101101100110110111111000011101101001000110011001001111100011100111011110101100110100000011100101000110011000010101000011111000110110011110001101010010100010010110111110001011100100000011000111011111100011101100000101000000000011001010111000101001001110111110110110111011000001100110010001110001101011000111011010000011011000111110001110000001111111100010111100110001011010111011101000111000001110001101010110001001001001010111111101010011011110001001111110101001011110100101101010100001000100001001101101101101110011101001010100100001100100001101000100110111111110110101110101111101011100101101110111000100010110101010101100111011110110111001101100111111000101001110000100011001011111101001001111001101001001011000100110111001111000000011011011010100000101000110011010000000011010011010101000110000001100010110100101100010111011011111011001100101010001100001001101000011110101001010011100011101101001110100000111000010100111101010101000101000100100011100010101011101100111000100010111001100100001110101010100101000001001001100100101100010110111101110111111010010101000111111000011011010000111110000011101000000101101011110001100000011110001011010010101011010100001011000001010101001101000110011101111011110011001011111111101110101011111011000101010011100000001100101111010011000101010101010100111011001111001100111011100010010100011000010110000110011100011000111100011101000001011101000100110111000110001111000111100111010001101010010001010011011101001011101001001110010001010010010101110010101111101101010011011100010111100111111010100110011001001011110100010001001001111100110001000001010100011011000010110000101111011101011010111111101011010010111010010111001001001001110111011000110100001000110100111111111110101111011111111111011101011010001000000001011000111100111100100101011100110010110111010001001000011011100100010011111100010001001001000010110101001000001111000110000100111100010011100111011110001001010110010001011010001100001010101111010001110101100110000101100000001001011001111011110101110001111111011101011000010101000001010011100010011111111110111000110011100011100111101101011000000111000110111111110010110101010111110111101101001100111011101101111010110111111111000000011100001100001100101010000101001111000010100100001100111011000001010011110000111000000110101010100111011100111001000111011011011110100111110001101001100100001011101100001000000001011111011001111001001111110010001000110100110010011110110101100010100111110111011010110001000110000110110001110100011001101111101011101000101110111000010011001111010110111100000001010000110111010010001100010001011101001100010011001001110101001101100101000010001110011101100101110110100010110100000011001010100100101011100110110011010100110011110011110000011001010001000000011100011111111011101100110110011010011100110100010111111110001100010100010101100000000001001100111000010100100000100001100010010010011001111110011100010100110111100111001000100111011000111001101100111100000101110010010110111011101000000001010111100001000001010010100111101001001111001100001011111001101000100110011001001110110010100001100001001011010110100001111101001110111110001011100101101001011110100110000110100010010001000010000111010101000011111101111101001011100100011000010110010111111110000111011111101001011011000001100011111000111001011110011111010111010111100010011100110111011001011100010001110101101110100011011000001111111101101000011011000101110111000000111110111110011010110000001011011010110100111000100100100100000111110011100010110111011011111000001000000010110111110011110001111101100010110111101100011011101010111110011010111101111101011000001010110100001010110110111101001110110001111100101011100001011110000010000110011101110010000110111101011100011111111001001010100011011010011110100101000110011110110110010100101110001001011011011010000101001111010111110000111001100010110011111100011111010000000010110101010010111010011111000100111110010001101111010011000011101001010110110111100011110000101011100100111010001100100110010111101000101010110111010010111111011111110000110011000011001001001010110011000011110100111111111011010001111110001101010010111011100001111001010001111011001000100111000001110000100111100100010111110101110101010111010010001101001111011001010000000101110101110010001110001101101111100111100010010111000111001110111001000101010111001110010111011101001001101001100001010101110000010001001010101100110101101000101111111100011110001111011110101110000100101110011101101100001001110001001001101111101000001001000100001110101110100010011101110011110000001010001101001011011001111011110000011000100101111010001010100010001110011001110100101011101101010100010010110100111001111110011111000100001000011111000000110001011011100000111100010100101111110011001010011010100001010100010011110001110101101100001011100011000110000010101100000000011100110101011010100010000111110100011011011011001100011001010010000110000000010100010001011010110111001101110010010011111100000001100010011110001100001110101100101100101101101110000000001011100111011001000000111110111010100010000000001100010101000101110101101000010001011001000010010010011101111010000110000000000001101010001011011010100011111010111101001111100001001001001001101000111001111100001010100110000011001100001111010101110100011011000101001001000111010010100010110100110000100101001010111010100010111010010110011001001000101011110111111101001110011100010010000011111111110111110000101101001010111101000100000110000100000001000010111011100100100111111100010001101110011110001001001001101100111011000001101000000000110101011010010011000011101100111111000110111110011110001110010001101110000111100111010110100110100011111011010011001111111111010000101000010001100010000011111010111111100101001110010110001010111101001011101000110100011111000010111010001101010101110011011100000111011000101100001110011011000000011011011000110010011001000001001000010001000010111011111100010101010000101001011000011001001100110011011111011111010111111010100100011001111001000111101011110111001100100111111011110101010101101010101010011101001001001001010101101111010110000101111100110011010000111100010101100100010001000100101100110111001001010001011011110001100011010001101000100110101111101110100100000110100111010111111111110111010010101110101101101100001001011111001000010110110011100001010101100010001111101101000110111101111001100111100100000001011100101111001000000001111011011110100001111001000001110101111010110001011110011110001011000111101001010111111110100011111111111011000001000010100101010100100111001100011100011110010111111010011011110101011110001010011100011001010110110010100101100110010010000111101110111100101101011011001001101111000101000011011110110001111100000110100101100010111001010100011010111111010001110010110110001101110110010110000111111101100101110000110110010000001010001011001011010100101010100001001110110010101011010010000111001111011000101100101000001110001010111011000011101000101000011000110000001011101100011000000110100011000010010001100110010101110101101010100011110100101110011110100101100100010111001000110101111010011001010110011010111011100010100001111011100100111010111010101011000111110111100000111011111000111000000011101011101010111100111011000101101110001000001111111111101001110111010001100001101010110001010101111010011100100101011111110100001110100111101010110100001111000101110100101010100110100110010000100011000100110011010001011100111001001101010011011110111000000011011001110011001000100111011101011011111001010001111101111011000101000000101111011000011010100101110111100111000100101001100011010101000001000111010110011100101010010011000110010100000101011101101001011010011011001010000101011000001101101010100001001000010111110011101000000100110110100100011100010110001001011110010000111011111001110110011010011011100011011011111101110111011010011001011110110110111001110111111010110011010110001110110101110000111000001111110010100101001110010111011000110010011011100000101100011001011100101010000111011001000001110010010100010110111011111000111001011000111101110010111010111001011011101110101101011010011001001011110111000010110101011010000111001010100000100011110000011110110111111010111101100011011111111110010000001000010110101011000010011111000100101011110111100100010111000110011011111110110100010111000110110100110111111100000101010010111110100011010011110111101110101110010011001110010000100000100001111000000111010000010100110000000000101001011001011010101001111100000100001100111101000001000001011011101111010110110111011100101000100011000010101110000010110101001011001101100001100011001001101011010111001110101011000100001001001111100110000000000011011111100101111001101011111101100010110111000100100110111000001100100110100011001011000111001011110011000000101000000100111110011100100110011110100010010101011011010101111001010011010101001000110100001110100101010010111110010111111010100101011000100101110111111000111101011111110010010101100010101000101110001000111110010001100000011110000101100110111010101010010000010111110010100111000010011110011011110100100000011000100011100111001111010001110101100000011010110000111011101010111110101011010110111011011100001011000111100001000010110100011111110110000001010000100111001110010001100100101101011100110001101011010110011011111010110001110011000000100010011100110000111100011111110111000100011100011110100100110001101110111100100111000110000001111110010000011000010011110111111000111010010011001000010111101010111100000011001101110110100110010111100101000100100011001011000111001110110100111011100011111011110101000000110101011110011110111101000000100110000011000010111101100111100001110110100101010010110111111011001110010100010111111000001110011100001010010000111000000110111111111010010101001001000010001010111010101100100110101101011001001100100000010001110100111000000100000011010101111011010110000001010010100101111110100000111010100101010101100000100001101111001011001101100001000100110111001111110010110010010101000010100111110101011101101011001110111011001111100111011000000111011010011001001110011101000010001011010101111010000100010101010111001110011000110010011111101000000101010001100101000000000010011000001010011011110010001001101011100100111010001111101111001011100000011111111100010010011011010111101100000000111111010011000101001110011001001000001010100000110001011011101111000111011001000011111110001110111011110101100111100110011000001010011010010000101110011101010100010011001100101011100110110111000111001100111111001111101110011100001010000111010100111011010100011000000110011011000111010000101111101000111001101011010010000100010101100000011000011000111011001100011001011110000101110001000000100111100011000100101011111110101011011001110000110011000111000011110110001001010100011000101001111000111101110100100110111110100001111111100101111100001001100011011100110110111111001110111011010001100000011100100010110010001110011011000011110011110111100101000011110100011111100000111010111101001100100001101010110101010011110001010111100100001101100010110101100101101100110000010001110001011011110101100011111110010111111111110100111010001011101111010011110000111100010000011011110100001101000100000000101000000110110011100100000111010000101101101001000011110000110100111100111011011010010100100001001101110110010010010000100000100111100001000110001110010001100000101110001110101000111111001100001010001010010001110001001000101100100001100100010100110010010110111001101011011000011101101011000011101101011010010001001101100000011111100100011111100100001011010111101100101011001111001001111101110000101010001001111011011010111001100010111000101001111110001101101110010101101010001011010010100011001110111011101000101110101000100001111100011101010111011000111001101010101110100110010010010110101110111001111101010100111100000001001110110001010100011000000000100001100001101010111001011100010100101101110110010101010101100101010000111011010011101001110010110111101011010000000010001111000100111101101100010111111100001111000100000000110100110110000101110011011010010110011000010101101111100011011101010100010111010100011110000100011100010111110010101100110110000100000111010110111011011011010000001011111101111100111001011001000101100001001111101100111111011111000011101011111111010000101100001010100010000110110100100000110111011011000011100101000011101000100010011110101010010010111101111010001111100001001001011110110100111000110000101111000110001011001011011010001010011100011100010011000110000010001010110000010111101101101010111010001010110000101100011000011001001110001000100011001010011000100101000100101011000010000000101100010110111000110001100010000110100000100001000001101110011000000010011101100110101101000001000010010111000000010100001110111111110001110001010011100011011110101011110011001101010011000010110010001111000111101110000101110110101001111100010011101001101100010000001011101111111010100010100010010110100000101101000101111101101010100100000010010010110011010000101100110000110011111100010000101101010101101110100111001101010011011001001110000010001111110010000010100111011010110110011000001001101101010100011001111010011111111010001010010001010110000010110110100010111111101101010010111010110101101110110100000010101100100101011111010001001111110100000000110010100011111111010110011011110110010011111110101010000000110001110001101010110001011000100000010000101010111111101000100010110110101110001010100111100010011000110101101001110001001111000100011010110001011101111110100101001001111000111111011101101000101101001001000100010011010100000001100010101001000011101101010010111110001110011111100010010001001101000111000111011010111000001111100110101101110010101111000011111011110001110100010010101000001000100101011001110011011111000100001110111010111110001101010010011101010100000101110111111101001011001101100011111011111000011110001101001001011110000111110000011001101111000110000101100110100111111101011110110001111001111111001111111011010100100101100111101111110111111001100101011101011111010011101000001000110101011111010001101010110111011111000100001110111100101100111100101101001001011010101101000111010110011100110100100101101001110000110110011101110111110000111001000011101111110100001000110000010001001111011010011000101001111000001101111010100011000111000011001011010100100000011001111101011101100011001000001011001111111111001110000011101111100110011101000011110000101010100101010110101111000100101001000011101000100011100101101001000111010010000001010011110110100101011101000100100100100111111101000111010101111000111010000100011100111111010110100110001001010101001010101011100011000110000101101100101000100101110000000000110011100011100011010011011100000111001110101111101101100000110110010110001001111010101000010100000101100110101001101111001011110010110111000110110100111010000111110111101010101000111011110011000001011011001010101000001000100110000011110100000111101111010000101011110011011000010101110111111111100101111000011000001010011111110111001010101100000010101000000111111111000110001110000010000101101010110011111001011111111010101001111110110000111000110000110011010000000001010111011100101110001010111111100011100111100010100000001010100100100111100011001001110111110110101011001010100110000101011011100001000100000000100101101000100110000001011010000001100100010100000011001101111110101011101100010010011110011111101110000011100101000010111001101001111001010100010001010110101010111111011011100100111110011101000111010011101010011001100100111111001001100101101001100101111110000000000000110111001010000110100110101111011011010010010001111101101000101101010100111111101001000010101111100010101011010111001100010000000000011010100000101111111101001110111010001100001001010101001010100100001100101101100111001101110111000111001000111100100111001110000101001110011011010011100000011011000100001111010101111110111101100100000001100100011011000101111100110101111101110110111001111110101110010000010110110000011110101001010011001111111011001000000101011110110011101000110001110011110110100001010111000010001101110100100010001011011100111010001111000100111110011011001111101101010010001101110110011101100101100100000110011000000101101001000111011111010101111001101011101110010110100010101001000010010010110100001110111111011100101000011001000010000110000001100010101111010000001111010110001111001001111110100010101100111001001011010011011110011010101101000110100111000001101000101100111101011001111110010001110011001111001000100000000101111001111100111010011101100111100101011100001010010100101011010100000000000101000111100110100001000000110110111100100100000100011111011001010000011101111111111010110100010011110000101010110000111010110110111100111101111110010010011000001000110011110010101110001000101000000101011001010101110001111000011100110110101001111111100001100100011111011100110011011101100101000000110100111110110000000010000110110011110001110000110111010100010011100100011011000110111101111000011011001101100110001100001011101111001011000111011110001011110100001001001100100111110110000100100111101111011101100100010001000011110011011000100111100101101100110000101110000100111000000110101111110110001101110111010100110101100110110000010000111111011111111101000111110011110011010111100010100000100110100011111011110110010011001100000101010101001011111001001101010100111110001100010111001101001001011110000011001010011111100111011011111011001101110011001010000010101001110001110101111100000111101111010110101010100000101111110110000101101000011010100001101111000110101010001011000110111111100111111011110110011011100001101110100010100111100010101110010110011110010010001110001100101111100110000111110010010111101000010010100001100111100111111010110101000010000010000111010010001111111001101111101010001010011111111010001100011111000001010101001011011110101001111011100110010100100001011000011010100110100010000001001001010001101100011001111100100011110101000101111000111001101100000000111010010111100100100011000000010110010111101101011100110011000011000000001011111010110110101111011010101001100111101111010000110010101110001111100111110001000000101101101110001111111111011000110010011011000111000100011001111001110010111001100111001111110111011001000100010011110111001100110000011010010100111011110000001010011011111010011000110000110100101011011001100011110001011100101101001100000101100100110110010110100010100110101010100010100000000101101110111010110111001100101100010111101111010001010010011010010010101010101110000011011001000010110110011000101000100110000010101100111111111010011110101010101000000111100100110001001100001000000001011100100001011010001001100000001100000101110000110100111011111011101100110001111110101000101001101001011010111111100010000100011111000000110111010110101001010010111101111010010110010000110001101101011110101111010001011111010101000101011010100001100101011101010000111000100101111100100110111010010010001000001101100001110001101010011110000110001100110011011101101001000000000000101000101110001100000111101111001101101101011000010100001010010110000100111000101011010001101100100001111101001001000000000010100011110110111011010101011000111100011101100001100010001111010000011100010011011011010101000111001000000100001000011010110110001100000000011101001110000001111000010100011101000010001011000010010011010011011100011010011001100000001110111101011011110010001011011011100111000111101110101000101010101000110100001101010010011010110010111011101010011100010100011010000011001110000011000000010100000011010010001101100010110011011100100000100010111011000111101010011111011011010110110001100000101101110010110110101000010010001001010101011001000101011111000001011011010110011101000100010011010000110101000011111000101101000110101010101001011001000101111101111110001001111011111011100110110001110011110101101101110000000011100110001010100101011010110010000010001111101000111110100100100010101010001100111011101011100010011010011111100101100011111000110010111110110101110000001111111110111101001010011011000000101101000100100101010101010111000001101111100101110110101000010110001111111010001110001010110101101001011111001000111001001001100111011101111100001010000101111000011100011001010111010100000000011011001111011011100101101010011101011110011011111000101000110100000001000010001110100001101001111101001100101010101010010011110001101001011110110110010001001010001000001110101101101101000010011100000101100100111010011110010011101101000101011011000010101010111010101101010010010101000110111100010010010110011100010111111010100000100111100000000000110110111001011100011101110110110101110000111100001101010000101001000101101111110010100101100101010111010110001101100101101010100011000101101010101100111111000100011001100011100110101110110011100011011100010111100100011111101001110000000100111101101110110101111011101100101000010000011010100100101101110110001001001011100100110100010110101110010111001101011100111101111010001010000111000010111010100111000010001111011011010100101101110100101100001110010101001011000111110000101101110110011011101000100010100100101010110000100001100001000100110010110110100011001010001101101100001111010100111000001001111011011110001010011001101000110001101100101011100001010000000101010010010010011110001101001101101111110001001101110101001000011010110000100100001001000001100000110011001100001001111110010000111000110000000011110000111101000100000110010110000011111111100001100001000000110011101001101101011000010011001110100011010011100101000100101111001001111010000001111000000110111011010011111011110000000110000101100101000001010100101011001011101001000011011100111111111110001111000010111110001101001011111000101100110001011000110110101001010110100000011111100000000110001100101110011000000001000101000001001000110011101001000001010011011011101111000000001010100100001110111001100000011001110110100100110010100010101100011011110110001010011010010111000110111101110010100110001110011010011101011010111011000100111010011110110011010000011010000101111110100000100100100001001101110101111110011000111001001010100100101110100110111011110100010000101000011111110111100110000010101011001100100010011000011010100101111000010111000110000110110011001010010011001001101100111011110101010000110111110100110000000010100011101001111001010111000110110101001101001100100010111011010010011111111111101000011000001000001100000100101110001010100100100010100110111010100110101011001111100010000000001100100100100100011011110010101100110101100000101000100111010011110010011011110011100000010000000111100100110010100011001011110110011100011001010000000000111101011111000111000010101110001111000001001100001010000110010011100101111101001110110101100000111101010001101011000001110111010111001101011111011000110110111100101111000101101101000000010011010000111011000001111011111010111100110101100101010011111010000000000111100000011000101110111001011101101000001110101111010001101111110111000101100101111100110110001000110101100111000000100111001100101111110100011001111000100001101011010100110110000101111111000110010111110011010110100010111010111000101111101001010100101000011100110000110111101010110111111011100010010010000010011101010001011010100110001011000110111001101000101100111000100101001111010110100100001011010001010101110011111101100010101111100010100001000101100000111110000011111010000000101111100010100101011101111111111100100101011011101001101000010011101010010011010011111011110011001111111000011111111101011111000100111110000000101111110011101000000111010101010001101111110010100110001100011001100000110001101110001111110100100000110010101001001001010110000101010101101000000111101011000101111110101100011011101110001100011001100010100111011011000101111111001101101000111000111010111100011110011011000111010011001100110111001111111000011011100000001110011110001110101110111000011011010000011011011001001101100100000111100001100010100000000101011101011001011110011111110000001001100000011111101101000001100111010100101101101100011000110111000110010011110111000101000111010010101011111101000001001101001010100011111101111111011011010101000011001010110100110001110100011110101001110001111010000100111100010110001011011110101101100001011101011100111101000101100000010110111001101100101011101111100111010000000111101111010110111110101010110100101111001101110010100001011010001111111001100001011010100110100000111101111000000010010010100001011000111001111001000110110100111110100011111110100110000000001000111100010010110111110010111010110011111001101111001111101010101010011000011011001110110111001111101011001100101111111010011011101011111001001001011100010011101101110111001011001001001100111001000001110101001110111000010100110001111010110110100111100111011010010000001000111000000011110101110111010001001000101000101011010111100000101101101010011000000011010111110101000011100010011000111000100110010100100001101110011010001011111101000010100110110001000100001111110000111101001000101001101110111001011111010011101111011011010101110110100000100001010101110001110101101111110110101000000100100011000100111011000000001010001111010000111011111101101100011011110100111100100100100110110010111001011110100110010100110010110011010011001001111111100101100100110111001000010000111111011111100110100100001011001001011011010000110010000011001000111000111000100100110011010001000101100110000111011001001110001001001101111011111001101001100100101011101011100000010010101010011001011011110000001110100010011100001010010001001111111111011101110000001001111011010011100000001101100001111101000100101111010111011011011010001010110011011110001001101011010001010110000010101001010011100011110001110100011010100000100010101010010111010110000100100110011000101011011011000101100011011100100100101110000101100101011101010010110001111010100000110000110010110010011001101111100000010100100010111001110110101010001111100010111110000101101000101000111011011010011000000110101001110000111001111110111000111001010001011100100001100000010110011010011111101110111001100010110010110111110011000100011011101110110110101111011010000101100001010010110010010111111000100101110111101000010001001110001111110011010011111000111111100000101111101000101101000001100101001100011010010101011100000111001011111001010001000000111111110010010111101111101100010110110111000011010111010110100110100000011001110101111001101000111011100000111011110000000110100111100000111011100101101111010000011100011101011010010001010011110100110000110010001101010000111010000111101101001110111010100110110100110010101110010110100010101111011111001110000010001000111101101101011111010001001010110000000100010010110001000010101001011101100001110000100110010011001100001001011000001000011111100101100100011110010011000110011000000100101110111001000010011101010101011011000101010000101111101111101101111010111011000100001011001001110000110011000000101110011110000000100000001011111100011001101110011010011000100001000011110110011000111000110011000100011101100011110011000011011110000000100111001000111000001011111000011000010101011001000001101100000010100111111011001110011011111000110010111001001010001110110100011100111000001100010011011101001001110001011110110100101001111101100110111111111100110101010011000000110100000001011000010100110000010110000111011011001100110101010100110000100111111111000001110000001101101100101101001111101000100110110110000000001100100001011010100000110100000010110001101000111111011011100101100101101101100011111110111111010111110101100100101010110111101010100001000010001011011011111110111101110011000101011101110101101010100111010001100001101010010110100010101001111111001111001000110001101101111001111010010010111011100100110110111001110111010111000110100101001100011100010011100100100001011101100011100001111101000100000011100101101110011011111001001101011011001011111110100011010100000000110101010110101011101010100010111011100001001000101001111111111010011011111110101100011100011001000110110000100101011000110100001000010011111111110110000010000100110111011010000010001101001111000011000001111111110111101100100110100000010011101100111111001111000101111010110101110001100101001100100110110011111101101000000111100010100100001011001100011010010000101101111010011101101110001111101111001000010001101011101110011111000111000000010010000100000110110111110000110011010101110110010000101011010000000010001010110010000001100100111110110111100110011010010001001011011111100010110001100001010100010110100110100101100010010111001101101001100110000110000010101000011110110010101000011011001000000000001101110000100111100010010100101100011000010111100101110010010011110100011011101000101100001101010010101010001010001010010010100001010011111010101011110001110111101000001101001000101010110001000000100010001101100011011100101010011101010110010011110000100100001000100111001110000101000111100110110001010100111111100100111111110111101111010010111100110100001100110101001000101100011100010010011111000011001011101000011000101100010110001011000001110010101100111111110110011111000001001001101010110001011101011010001100111110001110010010000010011011111011010111100100010001011010111110111011011010100100111100101101000010000100011010101010010001010000000010010001000100111001011111100111001110011001110110101011010110001001100110010100111111000111100101010100011101011011001011110111000001000000011110000110011010010111111101001111101000101101110111111100101101001010110010110110110010011111110011001011011100011101000100010000101011110011010100110011110101100110000001110110110110110011010110001100111001110000110101111110100011000001010011001000000000101001000110010011001011110001010100110011000011111101111001101111101010100111000110000100100001100100101000010001110110100101011111010000001111110111100111111010000001110110001110101000110100101011111010001111100111000111101110000110001001001001000011001011000001000100010001100001011000000110100100111000010101000110000010000001111010011111100111011100111010000101011010001100100000101000100000000111001100110101111011111111110001011001101110001011011100101100010001100100011000001000010000000111011101100100100111110110110100100100000010111101000110101110100111011101010001100001011000010000010010111010100111010000000110101111011110111110000001101100100111010011001010011001000100110010011010010100101101000010001011101100001010100001111111101010100101100000100111110111000101100110101100000110011111011101010011011000001011100001110101011100001101101111100001010110000000111000010111101101000110001011010101101001111010100011111000101011000001110111110010010110101011110000000010001000011101100011010000110001100010011001000111110100010001001010101001001001110100110000100100101000010001110010011011000010010111110010010101101100110011111100000110010001101111011001110010100110010000001110001111010011010110101000101001010111010000011010101010011101101001001000111100101001001111101010110000100010011011100001111010011001100100010010011101101110101011001000011100000000011010100010101001101110111100110001010001011000000000100100001011110000111010100010001101011010011011010101111100110110010011110001101011001000000010100110000110001011001110001000010000011000110101110111111001011101000000111110010100100011111010100111001011110001000011000101010001110110111001010001001000010011100111100000101010101111111000011001100101110110000110111111011011001011101100100101111111100101000110000010001110000100000110011000100010110110111010010101101110011111100000110100101001001010010000111010111001100000110010001101011101100100110011000101000010100001101010011010011001011011101100101011011101100100110111110010010111001001111111011110010011101111111010100011010001010011000001111111100100001111100000110100011110111101010111110101010110001010000010010010001100110110111010010100100110001110011101100110101010101001100000110100110111110110101010000100110001011010101100001111010101111010100000010001000110011000011101011000000101110001100010111001001110000000101101010011011101001001100000101011111101001111110000101101100011110101110111010101011111011010110101011011010111001101111110100111001001111101010101111100100000000101110010000011001001101101101000011011110010011010000010000101110100111000111101101011111110111011100111101110101101100100010100101000011111000011100110001011111000101000110000000111001101010000001001110011110001101010100110011001010101001010011111000010100111100010100000011011010110111011001110000010101100011101111100001011001110100001011110110101010110000000111111110111000011100000001011001100000001100100001001000000100110010101000010110111010011100000001011001001000011001110101001100010110000111110101000100100101000100000110110100010111010001000100100001100110101010100001101000011101011110100110000001111011100011010000001110000111011110110011110100001010011101001010100101011001100010001000011101010101011000101011111010001000010011100110100011111000100001100011011001010110010110011110010101001011101001001101100111111010110000110000001001101011110111010111000011001010010011010111010000001110001001100110000111110101000101100010000100000000110100101011100110101101111101101010111011101101000110101100000000000001011011000000110100111011111011001010011101110011111000011100011000010100010100011001101110101111100010001011011100101101100011010001000001011001001101011111001111011010111110001101010011011100000010101101001010000111100111101001100110100101000110110100101100000011111101010010000110000110111010110010011100011011000100011011110100101100000011110100010001011000000100010001110000101100101011010011110010101110100111001110011010101110011101100100110000011110110010000000010010011001110100110000110100110110001111001101100100000110011111010011010001101110010001111011110111110110000011101101110111000100110010000111011110101101010111111000100110011011100100101100011110000001011011001010011010111001101010100010001101110111101101101110101000100010100010100110010010000010010000011001010101000000101010111111010100100111000001000011101110010101100001100111010110100001100011101111100011011011110000011011110010110100100010110011000000100000011010001000010101110110100010010111000001101101101101110010000100011001111011110010101010111111110001101111000111101010000000100110111011101010000100000001101010100100101010001101101111100001010010011100110100111000000101000000010100000101010001011001111101111101110100001010111111011110111001100001011100000111111111010011000011101000011010001100111110100111111001010111110100011000101100010010100101100001000001100101010010110110110111111100110100011000001000010100110101100001010111110110010101110100110010010111000100001100111111110100000100111010100011101001000111001100100001101011010010011010110011110101010001101010111011111100100011111011010010001011100011000000100100111001010011000011001011010101010100101110000100100101001000111010000000011111000010000100111110000111001110001101110110110100001001101101100010111010110110010000101100111000000100010010010111010001101011101101110000011000001000110110011110101111000101000100100001000001101111010101001111111111001000111100000110111010011101110001000101001011110011011100111111111110101101010101010111111001110001100101011000100011000011100000110111111011100011101011101100101011110010000000101110000110100100001101111101001100111101100110010010000100000110011011111001011110000000101010110001000100010001111111000000010100111100001111100100101001000011100010011110100000011000110001010100101010011111101001000110001110110100101010010001001011001001001011111001010001010001000011100101111100010010011010100010111011111010010011011111110010000111111111000011110110001010110111001000000101001010011110000010110001110110110000111111110110011010001000010101100000001010000011011010001100010000010100011011111010001100011011111001001010100101111011001100011010000010011001110001000101110000100010011111111111110011111001110101110100001110010000111111110011010101111010000010001111010011010001010001100111001000010101100000100110011110110101100100001110110000101100100110010101111011000000101000011000011001110001111110101000110000110110110011000100000110001100011010100010000001111001000110000100110100000011110000001001100100011100010010101100100001111001000011101100010001000001110111001100101100101111010100010011101010100011100101011001111110111101111100000001000111111011010111001101011101010110111010011010110110100000100101011100000111001010011100110110000110101100110111011001100001010101000111001111101000011100000011011001100111010111000001001001111000011100101101100011110010000100010111110111010110010010100010000010011111100110100111011010001111111000111111101100100111110010000011001001101000011011100011111001010100000001111111000101000011110111001010001111011001100011110101000001110101000001100100000000100010110111010100110111010000010100100001100101010111110100010000110000101001100110000001000101000000010010010010010101110010100110110001000101101111111010111101010010100010101110101110011010101001100100010111010111110110110000001111011011111010101111001001110011010101100010010011001110101001111001001101010110000110010001000001111110111001111011001101010111001110000111100011000110101100101010001100010010100011001110001100011011000001111100001000111000101100111011001001011110010111101000101100001010000000111100011010011110100110010011110010000110101001000001010001010110001110000100000100011100101110001011010101101110001101010110001100001101100011101100111110100110101000000110110100101001011001100111010001000001010100010111101110001111000011111101101000010010000100000110011000000100100001011011000100000110100001100110001000100000000100011100101100000010110011110000001001100000001100011011010100101111110011101100000111000100010001011100111101111011010101011111000010111100111010001101011001011111000111100101010010100011100101011111100000110101111111011101110011100010101110000000011001001110010011001000111101010100111011000100110100110000011010000011010001100111111000110010110000110111001100100001110000001101000011000011110111111001101100011011101101111101001010111010101111110111001001100011100100100000010110000100001100010010011110010000011000101000101010010100101010110001000011011000100101000101101010100111010011111011101100111110001111111010011111101011011110110011010100000100000110100100000111010111111000100010000101010100101110100011110010010101100011110110000001110101110011011001101011000001110100110111010100000110010010001001001011110011001111011000000011101011101011110011010100011011011111100011000110000100100100111110011110101010101010001010010001000010110011000010111101100001000111101101100011000010001100010000011010101111011011100100110000010010111000011001111001100000110101010001011101110010001010011100110011110010101100000111111111111110001111000100100011010010101011011111000001000010111000000001110101011010111100110111110011111101100010111010010110100110001100001010111001011000110101101100010111111110101000101010001101101111000100110011101100001010010011110000000011110010111100010010110111001001000010010110011110101101111111001000011001001110011010110001011000111111011011000100001101111110110010100001100110001011111111111001101101001010000101101110111010110001100000110010011011011011010011111101101110100100011101101011110100111010010011111110101100101010010110001000101011001001111101110000011000100000100011011000010100111111000011010010100100011000111001110110110010110001000100100010010101110110101101111111000110001001000101010001000001111111000110011001111001100001100010100101001010110010101101110110011010000001000100000010101011000010011000100010110101010011011010101000101011000010111111100010000000110110100101010001100011110010011001110000110110101111100100010111111100111000011110011110011001000111111100111000111111111000100010000000111000010111100101111100001011100110110010000000001111100111010110101111000110010111100000000010011001111101111101000111111101111100000011111010000011100010010001110101001110100001111010101100000101000001100110000110010011100000101101101110010000001100011000010100011100011000010001010000110011010101101111111111110111000100111110010111010111101001101110010110101111100000110110110001011001011010110001001011010111110000100111101011111101001100010100010010011110111101110011101111010111001011101111000101111101111110001101010001011110111111011111000010011100000100100001000111010100100000111010111100110100001111111010111100001010100111011010101001011101111100011001100101011101000011111011111010101010011110100001010000111111100010100111100110100001100010101000010010111011011111000100000000100101000000100000001001110000101010101001010001011010010111001101110010011000100010100111100011001100111001110110001111110001111110111001110101011110101010101010001010111010111000101110100000001000001111110011011001000101001000000101011000111100001100111110100010001001110011100110100110100101111110001101011100011001101100000110100100010011001101001111000010111101100000111111101010111000100101100111111100111101110100111100110011001110011101101010111000010000110000111101011000111100101010101111010001001010110110011110100101011000101001000011010010110100001100001001000101000010011000100110011000001111001100011101010100101111101110001100001010101111011011010010011101011010001011001001110000101110100010001110111101101001010000110110011111110100001111001000110001101000001111100011010010001100100111101001100111010000011100101100011000011000011010010111110010000111010000101110100100110111101001000110010010010100010100100001101001000001001100001010000110101011011101111100000011010000111001000000000011001111100111100111111010110010100100001101001000001000001101111011101100010011101011111101111100010011000101011011111010100111000101011100111011110000000000100001110001101110010000011101001111010100110000101110110000010111011101010001111100000001010101111111101010001000101001110101011111000101001101010000011000110111110011001001001110000011101110001000010101111011001111000101010001010110011110101011100000101001110111001100110101010111111010000101000000000100110010000000111100000111110001101000000000100011110010110001001010100011100100010011111001000111110101111101010110011100011000000011000111011101011111111101001000011111110010011101001100100011110000101010110110111100101111111010000010111010000101111000001011101010101110000011011001010101100000101101101001110100110101110000010001011100101001000011110001111101011100111100010100011110100100000101110111001100001111010101001101100011111101100100000111101100001111010000111110010110111001110000000000110100100011010110100011101011011011010100001001001100101000000100110011011101001001010111011010011100000100010110100011100010111101100010110010101110100000110110010000000011110101000001001110110001101111011011100101101001101000010110101000101110010001110010011010000100101100111100111001110011000001000000011000011011010101110001001101100111101000100101011000011010101100111111001110000100101011111011110110100101011111100001111111110110011011010110000011100101011100100010011001100101001011111111111001010111110011001110011010110000011100000001100111111111101010011010101110111111010101010111111000000011000000101001000101111000010111001011100000011000111111011010100010011000001000100011111111011100101101111111000110001001000001100100001010010001001100110100101101100101010101001110001000110111001001110111001010100011001100011011010000001110010010010101001000001100100000001110110100101000000011000100011100110100000110101110001010011011010000100110111111111111101100011011011101001111100001011011011101110011010110101100110100000110101000100111100000100011100111000110101000110001100000001001011101001101100111001100101000000111101100110111111110011110100100110011000001110010000001100001000001100000001101111011001110000100110000000001000110001111010111100110001010001101100101100011111101111100100010100000110010100110101011100010011010001000010111100011001111011010011100011110011111010101110000011110110110100011001111011001111000001001100011001111001101111010111010101000001100111111101100010110110111111001101111001111111101111000011100000000011110101001111010101010101000011100000011100001001010100101010010001011001100101100000011101011001110001010111100110001110000110111100001010001100000101011001010110000111000000110011000010101101001001100001100100101000111011001100110100001111000100010011001111001000111111111101110001011010010010001010101011101110111000000010100111000001000111111100001110000111110010110011100000010011010000110101000011111111001110000000101001001001101001011101110010101010010000001000010001011110110001000111010010101101100100000111100011011100001100100111101111000111110010101111101100000000010000111110110111000110110100000101100110101011010100011000010010110001010011001100011111011101101110101111000101110101001010111111010001000010111011111110001111111100010010101101100010110111001110100001010011010000101011010010101101000101110011100000001001000011001000100110000101001100101011111011101001000111001110101011110011101110011011010111111100000111100000110010011010110001101100101010111011100010010000111110001001011001011010010001011110100001111111011111011101000001011110000000001001010110001101000000111100101010001000000001010001110101011010010101001001100001101001101101011010011110101000000110011101000000000011101101110001101010011100111011010110011001011101101000110000110011010100101000101011100100000010111111011110011001101100011011001001000101011100010111010111011001010010010011101011001001000001100111011101101110001111111000011101001110010101011001001000110110110000001100110010100101001101101000110111100101110011101011110110101001101111000100110111000010010010110100101110011100000100011010100101001111101010111100110101011010000110100000010111011111101100001000100111100010010010011111110001000001110111100101001100101111100011100110111100001101001010110011010000001111011001001001110101010001111100000000100101101111000001000001011110000100011111101000001101110100011010001111000100001111101110010010010100100111011101101001110111100100101100111010000110100101101000111001011101011001101110111111110000101010100011111110001111010110011110011010110011100100010010100001100010011010001011111001000001100001110010011100011010000001100001111010000000111001110000000100000000010011110101001010000101100101010000000011100001000100010100011010011011111111110000101110010001100111101111010000101011100111110000101100111101101010000111000110111001100101001010100000110110010111110110001000101100111100110111010001011110000010010101111000110110101000101000100001010001011011011001011000110010101011101000001000111100101000001010111100011001000010111100010100100101110000110111110011111111100110110011100101001001100111001010111000101100011001001101101111101111011000101110100110010011011011000001000110000100001100000111001111000011111101110111111011011001101011101100110110010101101101011110100111110111011000000010010100000100001011111000100111110000111110011000101101000001111010111100111100110111100001010101011000110001110010101101100101011010100010110111111011110010010100111010001111011111000011001010000010101000011001011011000001000000111110100001100001001111101001000001100111011100010100101000000011011011000011010000110001010110000100010100010011011110100011100100101101010101110001101110100110001001010111011010011010011000001111000010101110000010001000110011001011111110000110011110000110110110011100100100010100001001010101100010110111111101011111101010101000100111111100011000011011010111001100100110111001100111010001010101100011110111011011010111010001000001001001001010011100110110110101111100110000010110001100010000100001110111010010111111100100101110000001110100111010001100101010111100010011001000001000001110111110110010100100011001101000101111100101000101011000100011001111101001111010011000010010001100001101010011000000010011001101101001100110010101111000110111001111000010101110000100000010100100000111111001110101010111011010001101011000100101110000110111101111010100001111001111000100011100110111111001000111000111011010110011010011111010011110110110001100011010101011010010001011011010011111110000100100010101100001001000010001100001111110000011011100111011110011110001010101101111111010001100011010110000001011010111011000101011110000001011001011000010001111100000011100111111100010011010101110111000110110000001100000110011011001100011111100110101101001100011010010100010110001110011011111101011000101001101011000100111111100100101100011110100110010101101111000001010111110101010101011010100101100101001000100110110111111001100001011011001110101110111011011101001011000011011010000101000110111100011101110100010000110110000011011010010110101011001110101000001000010101101000010011111100010011111011000111010000000111001111010001110110011000110001111000110011101111111000100000001001100111101010000001110001110110011111111001010000010010110011100010101110001000101011010111101100100101110101001010000011111001000000001000101000011001000000011011000001011100011111001001110010101100000110011000001000011101011101110100010111011010110001100001111011010111110000110010110011011000101010100101000001010010100010001001111100011110001110000010000011001100011000111110001010101101100001111001110001111110011001011011010011111010000100101000000000001111001100101000001011111100011001100011001010011110111001011101010011100001001001000011111010100000011110010011011001010100000001010100001100010010001101000101001010111110001010111110010110000110001101111110101001010101010100111101101111111000100010011010011101000010001101010000011011001100001110011101011001110101111111010111010000001011011101100010100000011110001101011101100111111101011010001010101101001101110101000010010111111010001001110101101010011011001001001001011111010000101111010001111111100011110100111110101001000000001110001000101010110101001100111011100101011011001110001000010111010000011011001010010111011100101111111100001110001101100000010011110011001011100010010001011111111111101101010110100111101010001111011110100001101101100101111110111001010010001100111010000001100110001100000010101100011110111010101100010001110010101100011110011111101100111110101011111000011100111000111001010011100010111111010010010001101111011001001001010110011010101111101011010010001111101001001100000000011011101011100110100000010111110100111001011110000001001110111011001010001010111001111110110110010110011100111001001010110101000111001110100101010001001100101010110011110000000110110100011101101010101011111001111100100110010101101000100010010011101110100100010000110111110000111110101001010100011111000000110110111100100011001000000001100111111000101111000001101111001000111100011010000010100110000010001000010110011111111010010100110010111010010010010101010001010000110000111010100001110111000111001011000000000011000000111111000001000001101010010011001000010110000111000100000100011100011101100001101100000001110010100110000010111110110000011000000110011100100101101001001000110110110011101111001110000100011100111000001111100010000100110101101010100000010111001011011001001000001011001100100101110001000011010010110100010110100010011000101011101111100010100101101011110010111110100110001110001100010010110111110111101010010010001000001010011111011111011110101110111101100100101100011011000101100110110101100000111101011000111111101010001001010101110010100101100101001111110111010010000101000100100111110001010111110010010101011001000111000000011101000100011001000011011001010111001001010011100111010001111011100010001101110101110001110000110101010011111000111001010111001111110001001110111110110000101111001001101001101110111110000101000001100011010011010100010100110000111100101001011110110101110001011111111010100000010001101100011111101010101001001010101011100011001100010000110100011101111110010000111110100110100000110110101100001101001110001110011100100010110000010100110010000100110100010011011011011111100110100110111000001100111011100110100010111000110111100111011101100001010110110010100001000101001110100100101010010001000010110011010010101001000101010001110110100111111111010000110100011010100111000001111011100100010111101101010100000101100101110110110010101010111100101010000001101111100111011010000001000001011110110011010001100011111010000110111010010101011111111101011100100111000101100011010111011001000011001001111100001000001100001110110010011100100011110111100111100010100010010011010111001111001001100100101101101100110011000011000011010100100011000000000001100111010011001001001110011011011000110101110010010011001100100000111000100110010001010101111101010110101110100100001011010001111000011100001111110010110100011010010111111000110100101011010111001110011001100001111001011111110001110110000011110000010100100100111000010001110001111011010011111110101101000010100101010010111011001001001000101011100100111000000101100111110010101111110010000110111111001111111100001100001001111100101001111011010010011101011100111000011100100110100000001111100111111010010001000101000101001000011011101101011110001111011100110001001110100110101111010110100101100101011011101101010110000010101100100111101010001111100111100101100011111101000001110111100101000001011110100011011000111000001111000111001000100100011110111101011110110010111011010011110111010110001010110101001111100100111101111011100010001110000100010010100011101101011011001000000101110111101100111111000010001010100011011011110011010011100001010000000000111010001000000100011100111001011110010000101110000111110101100101000000000010011110011100000011101001011001001011011010010000111101111001111000011100000111001001010111100011000000001000111000010011001100100001100010011100010010110000100001010101011100000010110110000111001001010101011111000011011110101011100110011001010001010111001010011100101011100001001111111001110011100000101000101111011000011001010010101101001101101100011000101111110110110010011011001011000010011100111110111010011101001001111100100101001110000100011110010011010001100000110111001100010110001110101100010011011001010110000011010011101110011100101011101110100011100000100010000001110010111000101011010100011100000001101001001011011010010001101111111011011000001110010010110100001010100010101101100011100100101101010001000100010100110110111010001110010001000000111001011010000101101111111111111101100000011010001100110011111000011110100100101100110111001011110001010000101000000001100101001101000001111111001101101001101010100001000011001101010101010010101100111100100111111010001101011100111111100011110100101110010011110010001111000101011011011001111000100110111000111010010101011101111110110111100001010000100001101100011110010011110101011100101110001110010111110100010011100010111010110101100110111111011001001010001111010110101000110011010010110001101110100100110001111101100110100101100110010000110101101001101011111011110100100100110101000100000110010010101000110010101011010100100110001010000001110100000100110011001100110111001011001101010100101101111011011011001100100101100010111100110101001101110111010010010101010010111001010110110000001010101010011010001110000011110111010001100111111100111000100011100001101000111001011101100110010100110011011010100111110000010011010001010011100110010010111000110011110000110111011011011110100100011011111001001101110001001111101000001110100011000011111000100100100100101101010110101001011000100100000000011001000010110000101110111000100000101111000010001110000111010100000001000000111000010111100011011100000000100001010010101010010101011101100001111011000001011100101100110110001000100000001110100111100000111111000100100111010001001001100111011101010010011111100101110010100000100010111000110100111111010001000010001000001010111101000000001000111011110100100101111110101011100100101001101001000110110110010110000111111011110001100011011011000101111100111000010100000101000000101101110010001000001101011010110111111011010111001001101101110110110111101000010010001011100011001010010110110100001100101011101000101011101111110101010101001000101001100100000000000100000001000110001111100010011100100101111110110000001100111000101000111100110101011011000111100100111011001011111100111010000011011100010101110101001111001100101100000111000100010110001010110000000101101111011100000010100001001101010010101110101111101001110101110100010001001011010110110000001011011110111011100011000001101111001000000101110010010110010111011100010110011011110001010010110110111011110000011101011011001100110000110001001100111001011101000111100110100110110100111011100100101111001100001010101001100111001011111100101100010010110000100011110101100001111100000100111110011101101000101101011110110010110000110010010111110110001000011101000101110111101111110001001100110001000111111100000010100000000011101000001101010010001011111110010001001100010001101100100011100000101101010100011101001001010010000011101011001111011000100101001110111001111001011010010100110010100111101000111001011010100001011011100011111110010111000111111110110010000011111000000111010101100100011111011101110011010101101001111001000101001011101110010111111011001010010110000110000000100101101101100011100111111001110011100011001111100111000110101000001000010011101000001100101000010110000100100101110110101110011111010100111000100001110001110011111111000101001000011010110001101000001011101010011010100000111010000011110001100101000000101001001100101111111110111000110100110100010000010011101110100000010101101100101011010001101000010001011010101010000001010001001110000111011100010010001101111101001011000011111001000000111100101010000111101100110000001010111011100000011010001001000100101110011001111001110010010111011010011100000000010011100010001010011110101000000111101111010010101001101011111101111011001011001000000100100111111111100010010100100101111011110101101011001000010000101010101110110110100110111101001011111111001100001000010101001100000101000111011011100101000111010000101011001010111110000101001100111010001001010111100100000100010101100011101001000110011110100110010011110000110110001110011100111011010101111100111001001101100011000001011001100100000011110110001101000100101110101010110101101101101000000011110001011011110110000111101110101111001101000111011010001010101011010000001101110111100100101001010000110101001100100101111100101111110000010101100100110110000111110111010010000000110010110110101100111010011100010010011111010110001110001001111001111111100010110110101011101111110100111100010111011001101010001010010001110000101011110111001110111101101110000111110011011100100111000001110100101011101110100001000010000011110000100001010101110100100101110101111011101010111000010011111100010101010101010011110100100111111000010000101011111100100011011110111000100000101001001100010101100011000011101001100001000100101100111110100101100101101100010110001011001011000100110000100100000111101100101011010101111011010110010011001001111110000110100100111101100001001111011011111100011110100101010010110110001010000011001100110010101001000000011111001001100000101101100000110100011011000110001101100110011010011100101100101110110101101001010011011010111110010011010111100010000010011110110111110000000101111010010000010100110010101101110100111101010111110001010010001010000110100100100110011110101100000010001011101000001011100101110001100111101010000111111001101101110111101000110001010110110110011100101111000010001100010101110101010000000100101011110011010101101100011011011100100111001000100011100010010110100101110001001100001001100000010100010001001011101011010110000101001111001111010111011011001001000011001100000011001010001000101001001000111111110101011010011101101001000100111101010111101010011011110000011001001101010000111000101001001010100010111010010011000010100000010101110111001101000001111011010101010110001010010000001001110111000101010110000100000011110001111111110011111101001111011110011000010011111100101000101011100100010101100111000100000000111100001111111100011010111000011010110111110111100101011100000100011101001010011001000000011110001101101000100100101001100001000111001010100011101001000001101101001110001001011010101001010001100010101001101101000101111010010010010010101011100000000110111111111110000110001101010010000011000001001101100110011111011000110101110011111001001010001100101010101001101101001101111111110011000100101001000011100101111111000001001101010111001100100000000110101001000100000010110010110110011100101011100000110010001110100101100100110000000111111111110001011010111000011000001000011000000111001100101111111011100101000110111000100101001000001010000101010010110010011011001011001110011110000010001101010100100100010010100011100101001110111001101011000100000011000011111010000110010110110001101100010010000101100100101000100111100000001011000101011010101010001011101100100010101000011010011100110001001001100110011111001111101100111100110001001000100101001010011001110001111010110010000110001000010100111000101111111100010110100101001011011001101101100011100010010011110100010010110011010101011111010000010001001101100001001000011001110010000101111110000011100010100010000000101101111110101110001001000000110010100001010111011100011011111100110001011111001101110011001110100101000111001100111110100000111101010110111111111001111001000011111011001000001001110000000001000111000111000100101111111001101110011110010101001001010100010111111001011101100101101001110000100111100101101110101110000000010010000011101110011001100100001010010001100100110011100011111110101001111010001101011001101100101010011110101010010110000101000111101001111000100011111001111011001001101111111111011101101000011011100010010101110000000110101000010000100010001101100011110011011100000011000000000110110110011111001000100101110100000010111010001110010000001001000001100010010010000101111011011010101101111101010100110011010110110101010100001101110011010100010001001000100100011110000010100000000101010010110101001101111100010101111100001100010001111111011100101011000111010010111100011000101111010011010010000001101101011101110000010111110010001100001011101010000110011010011011100100011001011110100100111010110100010100111101101100101011100000100100110110110000100100111111011010111101111000100001001100001011001011100011110001110010110011011100101011010111001101111011111110000111001000011010000000011100010100110101111011101010001101101100101011100000110000001000100101001011001001001100010111000001100100000110010110100110011100001101100001111010100011011011110100101100100111000111011001011011001011010010110110110000101110001011001111100011111010000000000000100101101110011011000011011110010010101100010111110100000110101100101000100110110010110100101110000110110111001110111100000010001010000001110101101011001001001000001010100011110010110111011011010011110110100011101011010011100111000001110000111100101001100010100110100101011110110000111000011000010011010110100101100110001011100000010101001111010000010111011001100001110101110101111101111111010010111001011000101001011011111000100010101111000111011101111010101101010011100101000001100011101100101110000111001000100000100101001010100001000011010101001110011000001110111000011101110110001010011111111101010000100110000101110010110001111100000110111010011011010110010000100111100011001110000101101110111000111000001000100011100001010101001011101001011110001000110101100011100001001000000010101111010101110010110111010010011100111100101010101101100010100000110111110001101000101010101011000000111010000101111001100000000110001110000001101100111100000011011011011010000100000111000110001101101011100111100110110010000010101110101000110001101011101111111110001111001001010001111100010110010010110000010000111111111100010001000000010101000110010101110011101010001000010111011111110100101100011100011010111101101100100100001001011100010111011000000010011010110100111011010110100101010011111100110110100000010110110111010101110010110011101110111010110000100010011001111001011011110000000101101101001101110100001111110001011111010010111011000100100110110000000000101101011000010111111010101001000010110010001000110010101100000111111101010111101100110101000010110000100100010110111011010100111101110000110101100111111111101000100111110011111111001100010011001001111111110111000000001100011111111110010001111010100110011011010011011111011100101101000111110000110100001110110111010100001011110010000100100110100101001000101010011110000000010011110010111101001000111000111011100010111101010000111100011000001000001010111010010110111110000101110111110000111101110011001101000110101001010000111101101100100001100011100101100100110101101000011010110011000010101010100100111010101011001000111110110100100100100011111111110000110111011101111100010010100000101101101000001011111000001000011100011111111010111011100110010101110111001010001000101111010111010100001101011110111011100111001000100101001000110000111001110010011111111000100100110110101011001100001010111010000001001100111000010110101111011111111110100000000100011111001000101001100110111001101110100010101000110000111110111010011001110100000111101101101011110000111110001011001001001100111000010100010111100100000110100010100000110011100111000000010011110011101010011101111011010011100000011000001100110011001101100110010010100001010100110100101111011000011110001001110111001110010101110101100110010010101100010110011101110001001000010110101110101010010100011110010001111101111111110111101001111000101010001011101011100000100000011100100001001100001011000111110101000010000001011011001000011111101000111000100100000100011111100101000001001010011110011011110110100101010110110101011111011001000001111011011110010110010001111110101011010000001110100011000110000001100001010000111100101100100111110000110100111011001110001011011000101001100001001010110001101011111100000100000001111100010001010100100100101001011110111010011110100000110000101010010101001001101000101010000011000111010000101111010000100100100111100101110111110111000011100100011001100000110110101000100111000110001100100010010110010110101000010001010100110111110011111000001111101101011011000100001000111010001101001000010011011011001100111110001010111011111110100110010100111100000111010001101000000000010111101011110010000100110100101100011111000100100110000010101111101001000111100011101010011000001010011100011011101101100100000111011111010100101110110001001110101011000010000100011011010101001010110011100011010010011000100101010001100100100110011100011011001111101001000011000110000111001000000101101100110110001000110000010100010111001001100010111011001101111010101011011111100111101010100111110100010110001011011100001000110011010011011101000000001011101011111101110010011110111111110000010110110001100001111011110110011111111001001110101010010001100110111111101101110100100001100110111000000011101001011001000000110100110000011001001100000010011100011100010010010010111111011000011101100100001111100011000110000000010011100110000000001000001011000111111101101001100110000001100011100110111110010100110010000100011111011010011101010110101100000001010100011100000000101111100111010111111101000001110011101001111101000000010010011101110001101000111100011011011010010000010010111101100100001000101000000011101101010011111011110100001110001100101111110110111111101010101001111101101010010010010000111010111000100010101011001101001011011011010100101111111110110000100010011100010101111100100010011111011000000010100011011000001111101010100001101100110001010110011001110001001101000000010111011101111111100011000100010011001110000110000110100000100111110000011111010110101010010100001110011101010000010011001011111000100001011101011101111000110000010110001101101010000100010000111010010111000010100111100000101000101010101011111000000100011101100101100101110110101101010111011100000001111001001011000110101011111001000111001001011010000101001110010010100000111101001000001001110001000000010001100111101010111001101101110110110011101101001111100100001010111101100000101101101001000101101001111001000100100100101011011110110110101000011010001100010100100110011110011101010110101110000010111111001111000111100110111110110000001101000110110011000110001100010001010110110000101010000000101100011100011000000010010110010100000001111101111000000000101111100011110001100010010110001001010110111010010110001010011010001100001001111110000001101000101100011000000001001011010111010100100000010101110110111110101110110100011100011000011101101110110000001010101111110111010101010010110010001110011000001010111101000010000011001011100010000110101110101101101000001000111000110100001001100010110111011111111001000100010100000111001010101001101110001000011000110101111010010001010110110110000001110011001111101000111100001010010011011000110011000000010001110011111010011001110011111001101111001111010001100000110111001000011001001010110011010111010101011111110111110001110101100000101000111000011000011101110111111011111110100100111001111111010010001101111010110111111110010010000010100011100110100011111111111001001011110100110111001100010100011101110010100111011011100000100110110000111111110110011111011011010001010110000110111001001001111011011001100101011110011101001111111001111001000000111011010110001011000001110011110100010110111010100100011101100100001010001100011110001000010100101011100010011111011011100100101010110110100110100011011001100111001011000001000101011110011010110000011011010101101011101001000101011010110100011101010111111001001000100100001010001011001001010111010101100101110010100010111001101010001111111010101111101110000111111000010100000111010010001110101000010000110111000100001110000001111110001010100000001000111100011111100001100000010111101011110011011111100010101110100111101110111000010111100111100011010111011100111100100001000111010010111101101101001111010110000001001111101011001100111110011001111010110110101000000111011011100001100010001001100110010010010001001011101001010100111110101011011100101111101010000001101010001101001101100111110001111010001110010100100000110001000001001000011001100110011011111100101001111011010000100100000001111001100111111100010101000010000100000011011000011111100010000101100000100011110010000010101100100000010011101101110011110010001100001111101110010000101010111110110011111110101010010101101111111101101000110110011101011110101110001001101000000000101110011000110100011110100101110100111101011111100011111011011100111110111110101111101011000110101110001110100010101011101011011111000111100010010010101100000111011010111001001111100110000111001101101110111111100010001110010001100010010000110000011000010011010101110111000010111110011000110010111100000110100100000100010100111011010001010000001010101011101110010110110100011101101010011101010110111100100110110111111100010111101111010100011000001000011100101100010100110111000110001101101010010010000011100010100001101011011010100101100101011110100010111101111000110111001110110001001010101111100001001011011111011001110010101100011010101011101011001100011110001111010101100111001010001010101010001110101011100010011100111111000110010111001011110110110001000110100011110101000100000110101101101101100100010101010000011110100010100100010011100101010000111111100101101010110100110100101111000110100111000010010100110110000010000100001100010110111011100010101110111000110010011110110010100000100001111110011010001101110110000100110110101010101011111101001000110100111101111011010011111111100001000110000100111111000110110011011100101010000001111110011011110011010101001011100111010100101001000111001100110111001100110011011001101100010011000111111010100010011011000110010100001011100101100000110000001000101110111100110010100010111011100111110100101101011111000100010110010110010101111101101010011101001110111011101100111101001010010110000100101111000101100011010010111000100101111000010100110100001010001011001111010101100101101101000101111001001011001011000110101110011100100011101010010010011001111000000101111100010001110001010111100111011010000010001101001010011010110000111110010100111101010010000111110011111111111011100111111010011001111001110100000101001111111011010110011110000100101001010001011111100010100000010010101110010011000101101111101100110001000101000010111000001010001111010011110010010000101111101000111111100101100110011111111111000101101101100010110100011011001011101100011111001111000100111011000100001110100101111100000100110001011000011010011010101111001000000110000001001111101110010101011100111101011101100011001001001111100111100100110111100111001100101111010100100010111000011011110110011001111111000100000001011100110111110100110110101111110110110000001111011111001001011001001000111010110010111100100011000001000001110001010100001111010011000011001101111001001011110101101101001010100101001101100010101101100000111011100000010100011011010010101100110100000000000001101001100000111011101110110111111000010001100010101100111000101001001001100110000000110011011000010100101011110011000011001110110110100100101011001011111010010010101011001111100111101001100100100001101100001110100100011111001100000001000010101011000001000011000001111011100011111001000110101111010010000111101001100001100000100101010000010110111100101000010010101001011110011011010111111110101101000111101000000111010111110001111010100101000101011100111010100001101110001100100011011110100011010001011010011100010001011110101001011101000111011010100001100100000010110101000000000111100110000100000000110111011011001111101110001110100010001111000000000101111100100000110010110000111010001011100010001010010011000011011110000110100001111111011101110111100011010001011011001111010100110011001110011000011111011000010011011001001100101101000001010101111010010110110010110000000010001010101000010011111110100000101101101110001100101001101001010110011000000101100011110011001100110010101011000001000101010000010001010001011010010110010100110000000000110110101101000100110110000100011111111111001011111000001110000110010001000111110010111000011100000001100000000001111100100001101000101101010111000101100001000011111010110111100010001001110110100101010001000111011110011010001011111001000110110110001010010010100001110110001101101001001111000000110100010111011101011100000111000110101110111000100000011010010111101110100001100110001001111010001110001100000000000010110100000111001100111101100000100010100011011100011101010001110000001101001000100010110001101001000010000111101110100101001011100110100011100010001010000101000111010110000011011011010011010001110101101110101100001011101011000000000110111001010111101110010101111100001001010011010011010100010011011011010000111101010011011010011010111001010000100110111011001001000110000110100100010100101010111011101010010000001111100100101100000000111111111000010000101001101011111001010110011100100011001100011011010101000100100001010100010011000101110111110001101001100000111001001001001100100100000011010010011111101010001000001010110011000010101000011101010111111000100010011111100010111100001110101101101111111110111101101101000101011110001100010101011110100000011010010010110110011100111111110001100001000110010011010011110010010011010000000110111101001100110110010011101111101101101100101011111111110110011010011010111101010101010001001100111111111110111011110011000101111011100001010010101101011111001011111011110000101001011101010010010001010101011100010000000101101010000101111010101110001100100011011001000001011011110111111001101100100100010010111111011111000010000011111010100000101011110111101001110111001101101010111010001011111101110110011000101011101011001001001010000000111001001000000101101100000100110111100110001001010000111001000001111110101110110111110110111011111111011110111110001111101000100101010001001101101100010110100000110100110010010111111100000111011000111010001111000010010000101110010110101011011110111101110101100010101011101111011010000001111001111010100010101110110101011100001111111000100011100010101111011001100001110000110110100001001010111100000010000100010100101111010110110110100011000010001101101110011010100100010011000101001000100001000000111101011010000100010101011110100111000100011100100110111000000111010111001011001111011101000101001000101001111000010000010101000111001111000011001000000001111111110000000001010111100010101100001101010000001010110000100101011110111000001001010011110101010101000111111101101100000001000001110000010100101001100001110111110011001001001101001011010100000110010011011110111100001001100111110111110111001101011100000001010010110011111111011111111001111001100110001100110001111011110000010110000001001100001111010011110001100101000100011110001011111000011011100000001010111111011111111011111000011000011010101100110111000111110101111011000111101000000001011001100101100011010110111111100110100000010011011111001101111100001111000000011010111010000011010100100010101010011110011010000000110101010111110010100101001101100011000100111110101000111110110001111100010100100011110010101111110000110010101110110000110110101101010110011110010111110010001010010101100111111010000110010000000110001010000111100001000110000000100000001100100101110110101010111000101010110100011001010011111000000000101110001101111011001000000101101111110100011000000110000111010101110110000110101100000011000010011100010010101010010111000010100000001100110111011101111101111010101010000111010110010111000110101110100100110110011101110000111101110101100011111000011110000011000001011000100001011010111100001110000001011111001001111110100100000001001001110111010000110011111110101101010100001000100110000110111111110101001111110110111001100000000101100000011001110101010101110111010001110001000011001001100111001011100011000001000000001110001011100010011110101110010100000011000011010010110011010110000100101101001011110111110101110010100111100000100000111010000010101000101111010110110111101110000101011000010100111111000101011110111110001001010010111011001000011111000100111010111011010111011111100101001000100011101111111110011011000000010010001000101011001101110110000010101111011111101011010100000011001100011101010101111111110111100011111111011000001101101111111001101001111101010100001001110111011000011000100000001000110001001011110010001011111101101001000001000001100010111011010110000011001010011001011000011101011011101010101100001010001010100110101000000100001110011111000110010101001010001100100100111010110000110001010101001111101000101110111100010010001111011111000001100000101000110110011001001010010100110001010001110000100000010111000000101010010110101010000001010100011111010100111010100101101010000101110100010100011010111000001011101101010111100011100110100001111101100010011110101111010010111100000000101111011001000011100010000100011011101100100101010001111111010101110001000100101111100110101001100000111110000000101101100010000000001100011110010110000010001010011110001100000111000011101100101110111100011001111110101001011001011001101011000100001011011010101000110110011010010111011110000010110110110011101001011111111010001110100011011110110011110110000110011100000101110110101110000001100001100001101101100011110101011011011011100111010011000000101010011101111000010010111000111001101110010110100001010110100111001001100010011011010011100100101001000100101110111110101011001011000101111010010010000011001111111010000101101101110000001111101001111100010101000110000011010001110110010011000111000001001100001111110101110000111000110011001011110010111111010110011001011110010110101110110101110011100111101010010101111010111001100001001000101111110010010001110011010010011011111010010111001110100111111101111010100110010000110100111001010010100001001011110101010100000110011011101011010010000100011111010101110010011010101100000110110110001100110001100100101011101011111101011111110111100110110011010001011010010111100110111110101011111011111101111010010100110111101101110111010001110100001000010110011100110111000010010001100011100101000011011011111000110111011001000010000001001011000001011111001011111010110001100000111100001110010001110010011101001010001101101011000000011001100000001011000111111100010011111100011001100111001101100100111111111000000010111110010111111110110000100010111010111001101010110100110001011101110001001011001011111010010000010101000100011111011000101110110111101101111011100001101000101101001100011010111111001110101101001001010111001101111000010011001100100010110100011001111001100010100101000101000001010110001010000101111101111111000110011001100111100001110001000001010000100000000110110100100101101110010100100011000100001110001111011111001000010111001110010001011100111000111011110111011001110000010111001100101111101110010101110001101100000110111000101010100011100110011011100000110011101110010110000011111100001100000110101011110100101000011011001010110000111011011000011011001000000111111111111001000000000011101000111101111110001001001011001001110010101011010000010110110100000110000011110000001011001011010001101110000010000010010000011100010101101011100010011001010010001111011111000101100111101000110111001000110100101111110101100011100110000011110100101110101111111011100000011110010010101010010101000011001010001110011110001101101011011000100101111100000010001101110110000101010100001101101111011110001010101001111010100001011100100101011110111100100001110111110110001000011111001011000110010100001001110100110111010100101111111100111110101001111111001000011001000011101111110111101101000101110100001000100101001110110010010010110111110110000111111100001000110101101011101101000101000001010010011001110101011000010010010001001000100011010110011011111100000100111010000100100110101111000000000101000110010011000000110101101010111101111101110010101011101001010011000000110110001001111000101001010100010110100001100110100111101101010001001101111101001110000000100100010111000101100101100011010000110010110001000001101111111000100011111111100000101100001000000110011100111000011000111100111001101010101111011000101010000110001001101000101000000011100100100110011001100011111001110010001101011110011100111110001111111111100111011110100010010011010100100011011100111010110101110010001101101001101101111000101000010101001000100011110001010100000111101011001011010000011011011100110111000100111111110101010010110111000001100001011101011001101011010100010010010000000111110100000010000101101001011101100100111111001001001100100001110111001110001101110101011001100110100111000111110111000001110110001111011000000010110100000011101100011010110111010010000010100111101101000111011110000101010110010100110111011010100011011000000101000001010101000011101101110010101000010011110101100001100010001110110110100110010100011110001110010100101000001101100111000011100000011111010110100010110000000101000110011100111011110110011001011100101100001011010010100100011100101111100100000010011111010101101100100011111110011010001101101010110110000011001011110111000111111100111111010111111000100011010100000001101100110101101110111010100001101111011000100101101001010000000111110000001001100111101101110110101101000101010101110111000010100011000010000010101101111101110010101110111111101111011001000001001010001011111110111101001001000010000111011111010101000001110101000000110100011110000100001001000110011000001110001111011101011010001000100111001010010001101110000001010001100010101101100001001011011010110011010000100001100100000111010100101110000001000110101111101100111011111001101011100011111000101000110010010101010100000110011000001011010100100110101001111001111000100110101100110100110111010110111010101011101111010101000000100111011110001110001101010111010011010011101001010011011001100000100011010111001100100100000100101100010111010000010011000000111000110001101100010011001101101010111101001100001100011011100100010011010011101100110110000000010001000100100010010010010000011101110000101111001100101101101111010000000101001010100111010001110010011011111110011000110111111111110110111101100110001010001110010101010010111100111111111111100011001001010000001100010101010011111011111000000111100111101001111111100001100111111010000111000100100111111101110110010001010010000111110011010110110101100000001101001110101000111000100000011100100101001101011111110001011100011011001101111001000111111101001110110101100111100110100011100000001010100010101001111100110101101011011110101000111001011001000000010111001101111011001101110000001011001111010101000110111001111110100010001011011110000000111001001100011110111100110001111000101100010111110001011101001111111000001011110001010111111010011111100011000101001100001100001001010111110010010010011010100101010000101110011010110100101001010000010001000011101111100100000101101010001001001010100010010010110000111011100111110101110110111001001001010110010011110010001100101000001010010011011101100001101000100100001100011000101000010011001011110000100100011110000111110001011001001001011010000000011101010101011011100010101001000100111000100000100001110110001100100101101110111011011001101100100010011000011001101111010010101100011110101000111110101101111010010111100110110000100001111011001101111011011011010111000011100101001110101100010001010010111001111111000011100110000101110100010111101110101011111001100000010011000001000010100011111001101011011000101111000101101110111010110001101000010011011110101110110000000010111011011110011001111000101101111101000111111100011110110010110001010100011101100010001111101110001111011011111011001001010111101111100110011110010001101010011001001100111001011000001011101001000011101011101011010010101001100010100001000000110101010111011000100001111001001010111101011110101101000110100100101000101100001111100011101110000111001101000111101011111101011110101101010111101110110001111101001011001111111011010110011011101010000011000100100011101011000011001100100101111001000001100111100110100101001000000101001110110111001001001111111011100110001110010111001100110111000011001111011010011101000100101111110001011010001000010111000111101011110111101101111011101000000100110001111011011111110101000000101100111010110100101110011010000111101100101110100001011000100010010110010101010101101010001011011100000010100111100000101010100011111001011101101001111110011000011011000010000101001000000010001111011111110111000011011110111010100101100100100000100101110101111010000101111000100010101001111100001100110111100110110000100011001011100001001010001111110111011101101011001011100100000101111000001110101010000100000011001100001011001010000110100000001010110110111100011010110111011110000101100111101111010000000001000010101001110001111110101001110000001011100100011011100000111111011110110100100001000011100100000111111010111000110001110110001111010111000111011110101010100010110000111101001100111011111100011011000001110110110100011111101111000001111111001100001100001101010100110111111101100010100100110001111001100001101001100111110100011110001100111101101101000010010111100010001011101001010001101010010010010000001011010100010010011010011001100100011110110100100001000101000001100101011001011110111000011000100101111001001101100010000101100100110100110111010111010110100101100100001111010000111101000110011011011010011110110011100101000110010110111001001000001011010101100111111010111010101101101101011000111111101011100110000010101001011000101111100011100111000010011011101010110010110100111100110000100011000101111000101011011101001111010011110001010001001010001101000001100010111000110110011000101011001011111101101010011010011110001001101111111101111101110101101110001100111110010000101101101010001110100101001101011100011010101010110100101010001010101000111111000001000000100100011111001111000011000101111111010100110100011111110100101101100111010101111100011110100100100011011101110100001001101000111101010101011101111100011111011100111001010010101010100000000100101000101110101000000110110100111011110110100100010000011010001100010000000110010101101000010011011011010001100001000101010011101111010100110111101011000000111001000100000010001111101001011101100011111100100010010111101111111001011110011011011100111100111111010111100110111001011001011001101001010100110100110101001001001011100101111110101111101000010101110001000010000100011101010011111010000011100000101001011100010111010000100111001101010011010110100110110100100001011110100101001101001101011111011110010100000110000001010100011010101010010110011111000001000011100100100001010100101010101110111111000010101001100010001111101111000110111011111100000011111101000110111101010101011000100101001010011000000000110011111000011100110101111000111001111001111110101010000101011001111010010001011011110100000000100111111100100110001100011010111100001000011001111101101000010000011110110000101100100101000101111101000011110111011011011000000001101110000111000010001001011010010010010100111111111111000110000110001010101001101110101110010111000110000000110011101101001100010100000101010111001110100010111011110101100000100000001100010111111001000011110010010000000101111001001101110000100011101110010110001110001010010100101111011111110101011110011010011111100111111000001010110000011100110100011001111110100101101000101111110101000100001011000001101010111000101000100110001100110101011011000100010001010110110110110101101110001001011010100111010111101111001101000100011010010110110001100110010001100111110000101111110101110001000011000111001111010011000101100101100000000101001001011110111001111110100110100100000101011111101001011100010110110000001010010100101100110101101100100010111011000011000011001100011000100101100101010101111101001001101101011100111000110110111011100010110110110111001001001010000010100101110101010101011001111100001101110011101010001010011011110101010111101010010100111000101111100000001001011000111010011000110010011001100100110001000100101100001000010100100111011000001100011110100010111101111010101101100010101111111110011010101011001000010100011001000111010110010110101111101001011010001101010101010001001101100000011011100111010010111100111100111111011110110110101010110110000000111001111001111100000001111001000001101111110001010000010011111111010100110100000110111011111001111111011001101010111111010110011001001010010001101011110110101101100000111001111010011011001000101100101000010011011100101000000101001011100011101100111001000100110000001100110001101110110111101000100100100100010100111010001000111001110100011010000011110001000100010111101111001100101001111100100001000100010101010010110000101110001100110010101101110011010010100011110011101100011100011010110011111011111010101110111100100111010110110011111011010100110111011100011011111010011101100011011110011111111100011001101101110101110110111110011101000101101100111000111000011111010111000010101010100001110011000001011110100100010000100000111111000101110010111001010110011001101001100010000011011110110111101100101111100011110110100100100000110011011110101111000100001000110110001110010001110111111001001001010000010111010010101101001000010001000000001000011101100110010100001100110001111100110011110110111100100011101101010110000000011011110101110010010101100101001111000101101110111111001010110110010001001010111111111001011001001110010110001001100101000101111010011011100011100111010110101111100101101011010010110110001011101011110110000111110000111001011110110010110011110100000111110010001001100010001011010001011101111110111110101000011111101100101101111100010111000110100110010000011101011001010100101001001001111111100111011000100101101011101000110110110111101011010001000100111010001111111001111100111010110010011111110000110011001010101111010110101110100000000010000011010011100001011111110110110000010100001110010110101100101111111100000000111101100111010101000111100000101011001111000111100001000100100100111110011010000100000111010000011111100001111001100010110101110101110000001111010110010110001000110001100100111101101001010111000010011011101101110101100110001100000110000011110101101101110010100011111111011101011000000001111010110110011100001011010101000010101001101011010111001111101000110100011111101011101100101011100101101000101011110100101010100010110111110101101011101100110010100011110110000100001110101010100100111101000000010001001001101001101000100101000100100011011111101010110101111001011001110011110001000010001100001101010101101111100111101111111001001010000000111100100011110011100101110011110001011010010010000100111111001011000001000111101100000001110000111000000001011100110001001000000111010111100011100011010110000001100101011111110101111100010101000011000001000100000010011010110001100010101011001100000011010101000000001010011100010111000000110100101000011110000011000000011000011000000100101000000110011101110010000111001000000000001101000010100000000010000010001111111000111011100010010101001001100010010001000000010000001010001011110100001101100011101011011110110101000011111101001011110010100011011111000011000101010010111011100101011011000000000100000111000101111100001111110010000100110000001110100101010101001111110011111100100110101110000000110110001000000011001001010110010111110100001011101100001000000000000011110110011101011010011000001010000011010010010001000111000011010001110001101000001011000110001001011000011110101100111000011000001010010111011111001011000010000000011111101110100001001100100010001110010101110111101100101001101100110010110110011100111100000001110100111101010010111100011101110111011001110100010111111011111001001100001101010111010111010101101110011101110110110101010000101001100100100010111000101001010000010011010000110100011000110110000010010101011100101000011000011001010100011101010010110110011001110110101101111101001111101101110111011101101010100111101111010001010010110000000010000101110000011010000010001001111000110100001011001111100011001100000001110101010000101110101111101001110001101000101100110001011111011010100011100101001010100100000011010110001011001110001011110011011000110110100000011110110010000111000000010001101001000000110111010000111100101100011001001110001101010110011011111011011100010110011101010110010010010010101011010100111111001101011110101110010010100110011100110100011001011000000111011110011001101100010100100010110110000000110101000000111110001110001100011100101001010100110000101110100011011110101011000101111000100010101101000111100000110000101000011110010110011010011110011101111111110110110100010101101010101001100110100101100101000101000001000011001000011101100110011100001000010000101110010001100001110000100111110110101011000010011011011000000011110010011000010110111110110101001111010001011111001111010100101010011000001010010011101010111011010000100111101011010011111110101100000000101011100110011110000111001000110100001111001100100111101011010101110001111000001010101001000000101010001001001111110011110110000101110111010111000101111100100000100111011011111000000101011100000000111011100001011011010000011001000100111001100110001111000011110101111111000011100100000111100100101011011011000110000001010101111001111001101000111000101101011001101100000100101101001110111110001100001100111100111111111000011100001000110110000110010100100110011000000111111100100110001000001010001011111011100100110000100010011101010000001011010010111011110010011011011101001111110011011011010000000011010000010110000101111111010001110110001001011101111110001001110110111001111101110111111010111000000111111111101101111101010110101011000011000011101011011111101100111010110110011110110001100110100101111011101011010111000111101110011100011010010010111000011001111000110001100101010110010010000101001001000111001111001000001000011011000100110000010010000111111111001111011001101011001100001011100110001011101010101100110010101000100000000001000001111000100011000011001010101001101101000000001000110000101010010100000100100010111010100001010111001100111011111001110111110100011101010100101000111011100001111110001011010011100011001011111010110110010000011100010111101010000010110010101101001000100110011100110011000000101101011101100110001001001110111100001011001001000001110101011000000000101100111001001000111100110110011110000101000011110110111110010111110011101011010001010111010101101111100111010000011001000100101100110000001001100100010000001001110010001001011100000001111001111010101100111101100001100111110111000011001111011111111110101000110000011100111000101101001111111101000110010111101100100111010110100010011001001000010001001101101110111000101101010100001110111101101100001101110101001000001110011001101111111111100100110111000101110001001010000100111100001111101111111111101000010000111001001101101011011000001110010011110111000000110001011011101000110000010011100011000000111111000101000000100100100111101001111111101111010111010100010011110001010111100111000010100001110100000111100001111000111000001000100101100100100011000010111011110010111011110111010011111110011010100001000100111110000000110010001000001100110001111001010000001110000100101100010111101010010001000101101110111101111100101100000001111001111111111001111111000111010111100111101111100111101010011110111111101001000100111001001011111000011001111111010100011110010010001110110001011101010011101100101010111100110001111000001101011110000110001010001000110110010110010111101101111101111010101111111101001101100000110101001011010111001000000000101100111000100001100100101101010010101101101110111001110010010000011111000011110001000000110110001101100000010110111010100111100110110001000000111001010001001100111001000100000010100000000101001101111000110111101001010001101000010110000000010101000000001010111011001111111100110110111100101011111000001110000101011010100001100010101001110111010001010111100110000000101000111000010110101011100110011011110000001100000111110111000101011001111101110001011010000011110100101001101101001111010100110001000101000001001001111101111110100000101100100101000011111011101010100101110000110100010001100110111111011001011111101100100010010010001000001000001001000101000101010010010011001001011011000110111001100111000101001001011001011011010110110100101101110111111010001110001010001100011101010010100010110100101010000110000010101010101111100011010010000111100110111000110011111111100010101000011010000010011110011110000111000101100000110001110110011111001101011111010100111000110000000011100111111101001110010100011000101110000110000011001011101000110101010111010110001100001110010111110000100101010001111001010001000000001000000101110011101000101011000000110001101101101110100101001110001000111000111110011101110110100101011010000001001101011000011011111001000101000000100000110101011101011000000111110010010101111010011101001100001010000101011110111001011010010110001100001011011011110101010111111110001000001101110010100101011011111101001001101110111000110000100101001001101101000000100110010010010000001100101001011110010010111101011000011001101111010110101000100001000011011111000110100110110001010110111111100001011101001100101000101100001111010101010001001111101110000111010010000111011111100000100011010101001110001100101011110000001010000001001100100101100111100011110100111000001011010011000111100011010100011111111001100001011001110011100011010011010100010011011101111101111011100001100000010000010110001110101100110110110000001111000000101000000100000001110000010011100101010111101101011011001010110100000010110100111111100011000001110001011000111110101011111000001110001101101011110100000111011010100000111010101101011000111010001001101000110000100110011100000110101100110011000000101101101001111011001000011101111100000001110010010001001001001111011110101111010110001110000011000100110010000011001100000110101100001010110010100101110111101110001111001011111111110110110011000110101010001110011111110110001111100110111110101010101010110111110101000010100101100010011001101111111010000010110011010100100010111011001100111100000111010111100100101001111110110101101010010001100111110101110010001101101011000000100110000000011001010000001001011100000001001010010110000111101001011010001100001100110000110111010000100110011110001101011010000000101100010001000011101110011011011000010000101000011010101111101011111101000011011001010001010110000010100011110110010000100010111000111111000011011100101100011111000110110100000011000001010110001111010010001011010000000001010000100010110010010100001110101111000000010111000101101110101101011010110101011000111111011001111010101100011011010010111000010100010100100111000110011010110011000001001110010100101101111110110011001110001100101001101011110111011001101100101110110011000100111010001100000111011001111101101011101000011011110010110000011011000100000110000101100000000100110011100000000010101101110100110001011000000011110000110011100000111101101000000110111111011111100111110001001101101010001110011001110001101110110011110010010000101000111011111111011101011000110000010111001001010100101001010111001110111110000011001101110011111110001000011000001101110111100110010100011000111001101001001100011100011001011000101010101011011010100010110110000001010011000001100100110000111110001111010010110110000100010100100111101000010010010000000001110011100000100011011010101010011010000111111110110010010100111111001011000100111001101111000011011010111010101111110110110100001000010001101000000011010100100100101100001110001111001001111100001011101110101011000011101011001001000010000011100101000010111011001010101101110101100010000011011110101101000010011011100111101111110001111111010001101100001010010010100101100100110101001001111010100011110000001110000011110101100001011010111110111101010101001100010011000110111011100101001101010101000111101110000101110101111101001111000100100110101001111010111010111011011110011111100011010000011101011001101111010000110110000010001101001101000011101111010111000111011001110110011000000110100110010010110000101010011111110101101000101011110000001011010110111001011000011000110111001001001001101001011010100100111011010011111010011011101011100001100100000101110001000101010100010011000011010000110101011111110110011000111001011011000011000111000000111011110101001001101010111101100111011001000001111001010101000110111100100011101001010110000110111000001001110111111011011111110110010001001111101110101111010100001001100001011011111101010101001001001111001110010010110001101001110101011101000001100011111010001101000010010110100011100100011011100011011101100100110111011011111011101011001000011101000101101101000100000110000000110000010011110001011110110101011100100000001001001011010101001001010100101100111111011011111010110011000101111100100000101011110111000011000010111111000100010101100110011000111101011110010011011001110001000001000010001001101000101110000110010100000001011111100011100110000111100011010001101100011111011011101011010100010111110110000111001011000010001101100110010100001001110000011111101000011010000011100111100101100001101000000010010101010100010111111111010000100101110110011010000010010101000010001101100111001111010100110000010010000001011101011011011111001011100111101111001001111010110101100011011010110001101100111010111000001110101110101101100110101111101101110010110110001011101000000000001100111111001011001110000110101110001110010110001110100111100000111011010000100010110111000101101011000101011001010101001000111110111101000101011101100111101010000011011111001100101010000010011110110110010000101110111010100000111001101110001001000011010101000101111111110100110010110111101111111011100010100100001101000001000000101111001001101001111100000001110000000110100010111110101000000101111100100101101000110000001010101110000001101111011110101101001110011110010000110000110111110011010010111010111011011001011101000111010101011011110000001100111000110011011101001101111001100111000000100010110010000110100001111010110011001111010010111010100001110111111010000101001010111000110111010101111100000110100110101100100100000011101110101110010000101001010110010001001010110101101010001010110100000001011100000000111011011100100001001100101100011101110100100010111101000110111101101101111111100000110000000111001011010111000001111101000011000010110100011101100000111001101101100110000101100001011010101010011000111100110010110001010011100000000110101011011111011101111111101110100101101011110110011011100111011010101100011110001111000001110111110010000111001010110010000101110000000011000110111010100000000010000000000000111100010110011100110101000110100110111000000111000100110100011110001100010000101110010000010110110101010100001110111010100101101011100110011111000100111110011011111011110000100110010101011000110010110010111110010101110011100001111101011000001100101011111111110100101010100000011011001110101111101111110001111001011101100110101111010000100001101110100111011110110110101010101010110101110100111100101100000111001110111001010110001110110110101010101000101110100111011001010111001111010101110010001110111110000110101001010001100100001000110010011111001110101001100111101011011111101101010101001011100001011011011111110100010001111100101001001001000110010100110100110111110110101110111000111100100001111111110100010000010001110111111010111000011000111010001101101000001100010010001010011000101011011001110110101011000010100011100111111101101110110110011110010110001001011011001000000110110110010001101100011001011000010100000101100111000111100111100101010001100111001011110100110101110110110101101011100100101111011010111100010000111101011001001100111000111011001000111110101011100101000101111100000011000010101100100000101010001000011010110110011011000000010001010001110010011110001001010010010100011001100100111000110110001101011111011110001100011110000011101111110010010101011010111110011010000100000011111100110001001010011110110001000110011000100100010111010110101110111010100011111001100011000011110010100100101110011011111100101000100010100110111100111111110101000000011111100111010111001100000110100000010011100000111101001101001111110100100001000000010100101110110001110011001101011100011100011010101010101010011110101101111000101101001010100001000101001011100110011100010101011011010011100000100110001001011110100000110011010011100101100110100011010000011010110110000111010010111010000010111000010001101111010101111100111010001100000110111101010001100111010110010010011110000010111110010001010111000111001111100101100000010010000001111010110111111100101000111000101100000101110110000110101011101101111111111011001001100100101111000011101110001011001000100000000000000100010011101000100111110000000110000010000010100011001111011111101100101110000011110101100000010101011011110011001010000111001000010010010011001100011010011111101011111001011100111011000000100000010100011101100010110000100011000100100100000111111011110110111010011110110111111101111111001110111011111000101000000101101100010011011100011001101001100000101100101101101001000100110011011000001000011001000100000000000001100010101111010001110000110111100100101100001111010100011001100111000101000000011010100001111010010111100110101100011111100110000111110101110000000000101101010111010000011101100100011000010111011000010000101010101000000110011100110010001010111101011001010011011110101001110000111011001000101011100111111010111010101000111010111110011111111001000001010010101001101000110100001011110011111100100000110111010011010111101111101000011111011101100100110111000010011111110110011111010011100110010001010101010110010110001101100001100010011000110101011000010000110111101010011101001000010101110001010010110001100111100100100000101011011001000011010010101011011001110000111000000000010010001001000100110011000110001101100111000111010000101011110100111001110101110000000010101100001001100100111000100001111110011000110110110001111010100010110111000100111010000001000000111100110001001100111011111100000000010010110010011111011001001100110000010101110000010011000010000110011111000110000010100110110001100010110111011010010011110000111110000101100011111010110001101100011100010010011000111101100001000001011100100011001100011101110011000011001100111101001110111010001100010101100100000001111111101110100111010001010000100000001111101110100001000101111110000000010010111101110110000010101101010000110010000000111010001001001000100100011110010111100100001111010011010011111001100011111011010101001000111000000001101001000111101001110001011110100100011100010110001011000111010101011010011110101100100010011011011010100101100001111110000010101011100100110100110010011110011110011010101101110110111110001101001111101111001110011011111110100110010111011010001110110001110110111101100001111101000011001001101000011101010111010000010101010110101011110111100100111111001110100111010011001001001110011101101101000101110110110111111111111000001000000011111000110101011010001100110101011110110110010110010010110101010100101110010000000010110010001110011101011111010111111110010111101011100111111001101110101111011110111010100100111001101111101001101101010111001100101011000011110001101101001011010010101100000010100111111100100110100000001010100001100100110110111101101000010110000011111000001100000101100110011110101010011110101100001010110101010000100110110100011101000010111000011011010101101011010111011111101100011011110101111101111010111111011100011100010111111011100000000100101110011010110010001010000010000100110011100011100011101110001000110101010111001101110110001001000011011111011101110100011011010111011001011010100100111001000011111111001111000101100010110011010000101000100010101000101000001001100011110010010110000011001110001101110010100100000100001111101011101010001010011110101010001110101010011001101001101010100111101000000010010111010011111000011000011110001111011101011111011010101011101101011011000001011000011101100000110010100001010010101001101100100110011010000001110000001000011011101101101011111110100001111101101001110010010011101111001110111001101010011011101011100001000011010100100001001101001101001010111001011000100010010100011010100111111010110100001011001010101010000001011010000101001110010101111100100111011100010010110010100110010000000001011101100001101111010000101010101011110110111100100011011010010100101111101110001010101000101100110011101011111110001010000111010010011001110010100100110001001100111101011000110000111101100000101100100111110100101000101011110011011010010101100001000111010001011011000111111010100110000111011111100001100010011000000110011111100101110111010000001100011001111110110111010111011110010110010111011011100000001010001010101010010111011110011001110111110110100010000000010101111011101110110001110001000000011111101001011111100101111010101001000111000100011010110100000011000001001000001001100101101011101001000110010011001001010111010101010001101111011011011010111101101001111110110001101001010001011110101011000000010100100110010010100000111111010011001111010010100111101001011011000101010110000111101000010000001001010010011110010110100000100100100010010100000101000010001000101111001111101110100101000111010101001010110000001010010001011110110101110110110001100011100111011100000000101000001010100111000110010011001100000000001011100010011011001110010111001100101000001110001011000110010111001101101010011110000111101111100101111110100011010110000101111110011101001110000010000001110100111110101010100011010101010001001010001100010101001000110111010010100100101101010011100001111110111001001011010110110101111011111111010110010111011011101001010001100111001110010010000001100110010001110100100101111001001011101100101110010110111110001011001010110111100001000100000101010000011111101001010011111100110110000101010111110101000000000011111100010101000101000000011101001100111110010101000110000010110101110100010010011100110110010001001110111110001001110101101011101110000100100011001011101000011110111101011010011111101011000100010011110110111011011001000001111111101110011101011000101110100000101010111100001011101001010001111011111110000011110011001001000000001100111111111110011000001010111011110010010000001000010101010110100000101101011101010001001011110000000100100110011000110101110011000001001011010110111011000000110001011001100110001100010110011000110100101000001001011110011010001100111111110110100010101101000011011001011000010000011000011101000011011000110101110001111101111101110010100001000010110001001111111011111101010011000001100000011111011000000100011010111001000111001101000110011000100110010000110010111011101101111110111001101000000001100000000010011011000101110010010010111101100110001111100100100000110111111111001010100011110000001111001111100100011001011001100011001001001001011001011000001111101010101010011111101010010001011101111011001101110111001000100010010010100011110110010100111101101011010010001010010000110101001011000111110010000100101101000011001011101101100011100101110000111100010010111100000100000101001111100110011110100110111110111101111011010100101100100000101111101010010110100100111110110001001101110011011100000001010000001100011000011011010110100111011001011011000101010100011001101000010110011001101001100110011101010000011000101010011111111101101000110100010110111010110111110000011111001011111110101101100111111011001011001011011110101111010100010111011011010100000010100111001001011111000000111011010101111010111111100001011101001011010101111111111001110100100110101111001011001001111110101000001011011110111111011011100111001110100000000100111111011001111011100000001011001001011100011001000110011111100010010010110011100000101111000111110000111101000000000100100001000000101001110100011010111000001110111111100010101010110011111101010011001101111001110010100001110111000010101110100111110001111110111100101110100011000010001110100101010011010101101011001010011001111101011111001100001000100100110010111101010110100001100000010100001111110111000101001011110000000100101001010110000101010001100110010011110111011000101010101010100110101101101011101100011000001001000100110111010010001001100001100101110010001101110010111101001011110001100101111100100010100101011000110110011001100110001000011100000110111111001010110110001100101001001001100011101010000101010110011010100111010001111001110010111000000100011001110100110110101101100111100001100001100101011000001010110110110000001111100011111101001010111000100000010101100000001111000110110010000101011100011011011100001000101111101011011111000000001001001001001100111001101001001001001111000111101001011100001000010111100100001010110000101010101001110101001110110010001011111011101101101001010001011000101000001101000111011110001100000110101001101111110010010110100110011110000010010001001001110001011010101101000000010001011010101110110001100011111011110101100000111001011011001101111110010111110001101101000010001001111100001101110010100011100111001101001000111000000111100000001010000010101000100111100101001110110100001110010101000010101110110101010110000101001111001101110001000100011100010101010101001011111000010110111110110110111101100101100101111100001010000110011110111111111010011100010101011100001101101101000000111101110100101100110100010000110101010010110111111011111110011010011011100111010101101110000100001100000010001101010001000011100111100110101010010101010101101100111001001001001100101000110011010110111100000100010111000011110010001000111011110101001011000011010111010101111001011110111011011010101110110000011010010011010101000100101100001011001001111111100000101101111000010011110001001010011111100001100101001000010100001010011110110010010001001011111001010110111001011110001101110010011010111010011100110011011110100111011011100010100011001100111000001011101101000110000011000011001100110100001110111110111100100010101100110111001001110100010011101000100001010100111101001111010000011000000010000011010110000001001010100111011111001111101001011001101100010010011110100101110010110100100101110110010100110001011010111110111011011110011100100111110110011100100101110100011001111011110010011110111100000011101100001001110000001000100101000001000111111100001011010101000110100000101000001011011000110101000110001100100000111100101011010110010100110000010001011011101011001000100010101110011111110000001001100101101100001100110101000000000101101011001100101000011010010110110110100011001101011110000100101111101101100001101100000000010000000001000100010101101000111101001010010001000100011110010011101110000001000101010010111010000100101110101011011101010010001010100100100111011011010100010011111101011101010101110011100110010110111100011011100110101010101001110110100101001110111000000011000011011110101001010111011110100100110100011000001110111001100000010100010010101101110001010000011101001111110111000110011111001000001010111101101011110001111100100011111110101100100111101011101011110000101110011000000011001001110000001111000000101000101011000111101001100011111010100011000100101101101101100100100011001010100011101101000001011100001011101010101010100010111000011111010111011000101101101101000001111001101010101111110001000111110100110110111110101110001111010110100001101101101111000101010100111000011101101001010011000110110011110001101111101011111010010001000100101010101001111000101110011000010011011001010011000000101010011000110001100111101100000110010011000001101000100000011010000001001100000100101001110101011000111100010000010101100010001010010101100010100000011010010001101100100100100101101000010100011101000011110010000001111100000011011111001001000111100101101101110111011110101110101001011000000111000000100010001110110110101100010111100000110001011110111001100100000000010011010001110110111101010110100100111000110111110010001001010001111011001010011001011010001000100011110110101100110110100010110011010111000010000001111000100111111101110111110001111000110011101111011011000000010000101100011001011010011001111001111110001010101111111110010111010001010011011010001110011001100101000010101110100100000101010010000010011100010010110110101000101111111101011000100100011011001000101110010110000011110011011001011000001100010100001101111010111011011010110110110100100000010100011100000111100010010000110001010010101101001100001100000100010011010000001010110110000100010011110110010000101011001011000101101011100110101001000110100010001101011011010100100000110001110101111010000001101111010000101101000111001111110000100001111110001010111011010000100000101001000100010111000000100001101010101000110100100001000000101000101000100000100111110111000000101011111000001011001100000110101011001010011101110000001101110110000000010000011110100000110001000001110111111010101100111111000011110000001100111111110111101010111101100101011100101111010111001110100111110100110100011101001100111110110001000110101101110110100100000000010000101000101011110010101000000110100101001011110000110100010010010101101110011110110100011110011011001010010101001100111100001010111001011110101100010010100101110110110000111101111001001111011000100001110101101110000101101011100101001100010101111110111110001011110010001110101101011000100111100101001000010000001011000111010110111110010010100011101001011100110111100010000011001001111101010000100001010010110101010100110110001111011010100000001101011000000011100110100111011011000101010001000000001001000000000101010110101011101110111110100100100100101101100101101011110000110101001000000111011100011001101111011010100110111110110000010101110110100000101111011010010011111001101001101010111100111111100110101111101010110101010110000111001110110011010010101101101010110011001100101010100101000111100010000100101000110111111011001100011010110000000100111011111101111110110111110011010000001111011100000100111100110011110000000000000111001101111111001111101000011011101001000010000011000011001110000011110110001001010100110111001101010100001101001111101001000111100011010100001100110011010100010001110101010000010001110110011011100111111001101100001111011000011100011010011010101101101100001100001100111101111001100100111110001000111001010110001110100111000010000011010100101101111101110101011100000011011111111001110111101101100001000110111000001101001100010100001010001100011001110101111110001000101001101111101000001100000000110001101011100101000011011101111010101111110111100010001010111100010000101111000100011100011101101001101111111111110100110110001110111011000110011010010000001101010001101011010100010101100111001111100111110101111001100011010000111001111111000100110010010001101100101000010100100010111010000110000111001100011000010101101111001111111101101111001000101101101011100011110001111000001101000011011001000000011001000100101110010111101010110010001110000111011000111000010001011110000011001001110110011110001000110101001011110000001000111001100001101111010000001001011001010000100000010111101011101001110000111110101001001000000011110000011000010001001011010101010001110011100110101000110001110101111100111110010000100001001010111111110111010010100110110111101110100100000010110000000000000110111111110101001110010010001111101100000010000001001100011100010000111110001000011000011110101111000001101101110111001100100110100101010010101010010001110011110011010001110111011110100001011101010000111110100101011110010100111010111100110000100111110011110101100100011010000000001010111101111110101110111111011110100000010011101010001010000000010100011000100110100110001101100001010101011000000001001010011100110000110011100000011000010100011000000001000111010111100110101111100110111001110011011010110010110100000010000101110101011001100011010011010001100100111111011110001101010101111000101011000100111101101110001101101001110101100011111011101011011011111000100100101101001101011001111111000100100001001110011000100110011100101011001111000000000000011110110110101111110001100010100000110000011011000001101111101110110100100011111111110111000110111000011101110110010110011100010000011101010111011011100101100101010111011100010001010001001111001100111101101001100100101110011010100101010110101101011010001001011010111010001101001110010111110100100000011111110000110011100111001111111110100011110000000000011101100001011000001111111011010011001101111010111110011111111101100011011000111101101011100110000111010100100000001010111110010111100101100000011101100101100000001101010001011001010100110010111001110010111111001111010110101011111100101000000101100011101010101100010010001101111000100010010101101111100010000110111110100100101101001010010001110101001010101111101110011100001011101100000111110101010100000110101100011001100111010010000110000000111001111010001101000011100011001010001000110101101111110001111000101010001111010000101111010001101010101001100100101100101010011111100010000110001111000001101000011001100111100010010000100011101111000000100100101001011110101111110110101010000001101000010111111011000000011001010101010101011011011010101100010110101010101110011010010111111011001001000000101111010110101000011011001010001001001010011100010110000110110001101110001011001000000010000011011101100001110110110010000001111000011001111011101000010001111110101111011000111000000011001010011000110111100010100101101011111001101110101010101101111010110010100000110011011111100000111001111011111100100111001100111000000101111000100001100000010111100101011011010100111100111100000010101010100000011011010000000011000110100001110010000010110100111110000001010111111111001011110001101110110101110000100110010100001100001001110010011011101000110100011100011001111110110111110110011010010110111011010000111011110100000000011100001001011001001010001010011001000000110100000101011011011001010001100110111001100000011110110011100011000000100010010111111001001010111101100011111110001110010100111001101100111000000011001010010001100100000100011110110110000011110101000010101110101011000000111011110111001010100111100101011000110011101100100010010101010000001101000001000100000101010000001100000100010111001100111110011000010011001111000101011001000111011001001100111100100000010000111110011001101111101101100011100001011011001110111011110100100101100010001111010110100001011110110010110001110100001011111011001000010111100110010010101100001100001011111111111011100001111101111101000101110000110011110000011110010101001110111001111010111011111010110101101010110111001100001001101001101101101000010001111100001110111101000000100000111001010100111100101011110011100010101011110011001001110111111001010111000110110001110100100110110001010100010001001101001001111010110110000101100111101011100010011110110010000011100010100111001111011100000111001000100001101000111000110101001001101011010101111101000101110101011101110101011100010011001110000101011011000000011010110100001111101011100101000011001111010101100111010000101111011100101001111001101111111110101010010011100001011011101001100111001101010011000010110001010010111111000111111100100100100001101001100110100100000010111101001011001010000001001000101100010011000101011010000011000110000101010010111100110110100011010010111001011101100000001100100000011000101000110001010010011111110111100010110100111010000101010010001010101000110100111010111101100101010000111010000110100100111011011111101101101100000011011001101000111000001011011001101110000101110110011100011001100100101011011100011110011011010000100011111101110100001100001110011011010010111011110110001100110101100100010110101100001101101100000000110100110100100100110110110110001000001101010111000100100011010111100011001111011010101001111100111100111001000100100011111000001001000001000010011101101101100011101101011101100101011101010010111100100101100100110110010101000010111101001011110100000100011110001001011010100000101110111001110101101001001100010110100010011001100000010100000111110010101011110010010000101100111100101010000001001000011110011110000011101000011011011100010111100011011101100010100010011110101101010000110010001010000000111000100110001011010000110000001100100011101000011101111010110000001111111101000010010100100010001000000101101111011000101000010111110000000110111001001000110010001110101001111101001001010010101001011101001111000111010111001010010111001011010111001011100100001111011010100101111011011110110011101110100001001010010001000100000110001101011000111000001111000000101010001111001000011101100101011110001011011100000011101010101001111100101010111100100111111111110001110100010001010001101001010101110010000100000000000111010000110011010110111010110111111000000100111001001100101010011010111110110101000010001011011101100110011100111111000011011111011100010110001000101101001110111101001001100000001111101111111000000111100000000010011011011011111001001010001100101010101111001110111110000110001010110011101111111001010011011001011101101001100011001011000010111111101011111011000111100010011010111011000011100110011111000111011100001110010010010100101011100101110010000000010101110010110010010110000101011101011001000111011010101110011110000001010100011010110101001110000010111010011001001111100011010100100111010010001111010010110000100001001100101001100101111101100010101000101111000000101111101101011101001110101101110100010111010110101001111100001001111101110110001111011001101101000111110111000101110100111100010101110011111001001101010111011011000000001011001100000100110000110010110111111101100110111000001001111011101011001110110000010000100110111010111011010011100110110111110111100100001010100000000111010001111110110101101111110110010010000000101111010101000110110101000011110100110010001101101111001000101100010111001011011001101000011110111010101110001010100101110100110001001111110101101101011000110011010110011001110111000011110101110111100001100110101010011011100110011101001000101111000000100101110011111001001000000011101000001000111001011111110010011100010000001110100000110111010001011110010110001101011011111010100100110000010010000010010000000100010111100010010000001010111100010001000011100010011101010011111001111101110000010101100100001000011000101111000100001010100101001010000000100010011101000111100110001100000001011111111100111010100011101001001110110000001100110111011100100001110000001111001011110000110000111101011100111110111000111010100111101001110110000111101010010010000001101001010011000100101001100010000111111100001111001011101101101000111100011111001010011000010101101010100010001100101101100001000110101011110001111100101101011011101110011110011110011000101011101001110011101110000010010001100110111011011011101110011011110110111101111011011110010101110101000101011111001100110000111100001100101101010101001101111101101101110011001101101000100001001011101110001111001001101011000001100010100110000001011110110110011101000111101110001101111101101001010100110101100101100101100010101111011111111010110111011100010010010000011001100100100011000000101110011101110010111001101001111000010010001100011101000010001100100001001001100010110101111111010101101001101111010110011111110101001000100001010100110001111110100110110011111010100101000001010001010001001110100000100001101100010010011101010000110100110110111011010111111000000100101001100001100100111011000111111011000000111111100000010010101111101111010111001001011111110111111101000000000010011111000011011111101010110011011110100100011010011101000000101111110010011011011001011101010101101010011111000101111100001001100000101100000110110000101101110010001100101100011111110101010011110100100110010100111101011000110100001001010110100111110111001011011000000100000100100111110100010011100011001010110001000111111001001100010010000000001000110010000001000110000000111011101110000010100010011111001110110011101011111101111111100101111110101101010011100010111110010101011010000100110101111111100111000000011000001101110001110110110100110000001000000000011111000111001111100101101101010110010001100001010111101001100100000011010111011010011111010001111101111001100100000011101011101000110100100011011100101000110100100010101010100100100011111000110010110001010011100001010010010000011100010100111110010110001001110111111010000001011010011000110000010110101111100010100101000111000011000001010010101111000111000110011101110100010001100010000111101011001001010000011001001110000110001111101110110100110010101000111000110110000111010000101010100101011100010101110010110110011010001100111010011111001100110010101010010111110111011111000011011111010011001100110100100011000010101111110000011010001111000111000110111101001011101001001101001000110000010100101111011111110000001110001110101011000101010100111111010001101001000100101001001100100111011110110000011111110000001000100111010100111101100010000010011001110101100100001011111001000111010000111000011010101111000011001111010101011011100110100110110111010100111111111111100011010000110100011100100101111000010111010001110111001010000000001010010011111000011100111011011000001110100110100011101000001010010011111000000100010101001010110100110110011111011111100100011110000101000111011111011100100100001111101110110001011110101110100000001001001010011011111010101110111001111110111011111011011110001111001101101000100011000001100111011100001100101001100100100100100101010010111100111101011000001111100111011001110111111001111100111000000011001001101100100000110100110110111111000000010110110111101100110000000110000111100111001001101001010010100010000101001101001100010100000010010110010011000010011010001101001001001100001101000010001011000100111010111010101001000111110010011101110110001010000001010110100011111010001010001110101101010100110000101100000010011010100010010000100100000100000110101001010000100001110111101010001100001001100011000110111101110000011100110000011011001011001001010010111111001001100100100000011110001001011101110110100100011011001100100101100001011110111111101011110111011001110011001010001001110000010111001011101011110010010010010011001100001010110000110100001111001111101101110010110000100011111010000010001011010000000001011100001001010001101111101101010110011011101100101011111110110011011100010101111010111001100000010000111101101100011110000100101110001001110101011011001110010101010001110101010011001010110000101100011101010101000000101001101000100100000101111001111111110101001110000100011110111100111101010100100111010101111100001011111110111011000000000010000001101111010001101000110111010110000110000000011011111001111111111000101101001101010100110101011101000010010100110111001111110011110000111100001000101001000001010011111000001011101010111000011100011111000110100011101101010100001001100011001011011011110000110100010101101010010000001001010110011101110100000010101101000001011011010111000000110001111011101011100111100010111101100100110000111010011101011101010001000110010111100101001110011110110010100110000010001101010101001011100010001110010001000001001001000000101010101111000000011110000000110010110111101100110111100111001100010010010000111001110010111100111011100101100100101100000110111011100101001111111000011101011111101101001000101000000111111110111101010011100001110011011000001011001011011011010100000010100101000010001001100110100000011111010110110100100100100100011001001111011101001000011000100011011000001000111110100101111000000010101101110110100110110100100000010100010110111111000010111010111010111001100100111100011100110001110110111001001011111110000110000000100001011100100001010010100100100100100000100101110111010000001110101011011000111010010000011111011101000100001100010100000110110011001010110000111000001110110000011011000011110111000000101101001110011111110111110011101010110101000010000111100110001010011001110000101010111101101011011110100011101001010100101000111100001110011000110100011101100011011000001001011001001111110000101001101010011101101111001100001010001101111111010011101010000110010101110010101110111100010101001111110110001111111110111010001111110110100100110000011110100001111111000101111000011111000010101011010001010101100111110011110111011101101011001101100110110010000011110010001110100000111000011111110101110110111010011011110111000111011011101110101110000100110101110001000100000010000111001001101101100000001100101000101111100000001000011011100110111110101010000011100101110111111000010011110001101100001110011111000000010111110110101111111110110000000010001000100101001010111001011011111001001110111000011001011010101110000000101111001011111111001011101100101000001010110100011010111101110000001000000101111111101001011001011100110111100110101110010100011101111111101011110001000010111010101100010001001100101000111000110001111110101010101100011010111111111110000001001101000010110100111110001101111000001001111110010000000010100110010011011111100101001110111001011101101110100000101111011111011001110100101110110010110100110010110010101110110101111011001000101011110001010011011110001110010100001100101101101100110000001001101011011100110010101111110101010000011011011000100110001110110110110010111110101101010011011011111100100000101001011101000111111100111000000001000011111011001011000110101111110101010000100111111000100100100101101000111100100000000111001101100110111110010000101010110011110100011111011101010010010101010001001110100100010100010000111010101100000111111100110101101111100100001000110101110001010000010001000101110101100001000111010100000111110000101000010000011100101110100101110001011111111100110001010101100000100100100000100100111110000100001000101001101101110010001100010100111101100001001110010010110011100000011110100001011110001011010111001010110101011010110110101100000000101001001010011100000001100100001111101000111100001111101101100111001001111000101011101011110010011111100000010110101000011110110001100110110100100001111111111101001011100101001001010010100011110001100000101111001010010100101001011111110100101110000101001010111001010000111100100011111111011111100101000000001001001101111001110001001000111010100111110111110110010001011111000011101011101001100010111000000001000110100010101010010010011011000110001010100110000110111011110110001011100000001111011110100010010011100001100101010001010001011001000110010011010011010001100110001101100100010110001111110000001100010010010100110001111001110100000011000100010111011011101011001000011010000110111011011100100000110111001111011000100100001101001001110011111111110110001000000001001011000100111111110111101101111011011111101000100000011011101001011000011110000011001110010000110010110101110011011001100101010001011001010001100010001011111001000011011100111100000111101000100011000100011100111110111100011011010101110000000001111111000001011110000000001011000111001110101001000011100111010100011010010110001011000011001010111001110111100011111011110010111001000101100010101111101011110001111011101010111110001010000010101001000010110011100000101111011100000101001000001000110111101001011000101101101000111000111001110011011110010010011100000110110010111111001110111010011111011000100101001110110111011010101010110000010011110010010111011011000101001001101110101011100000001001110101101100111101000111011101000111011110101101000101100000110001111111000101011101111000101111110000100100000111010001100100000111100101100011010001110000101000100001001101101010101000011111001001011111101010101111001111010100111100101111101101111000100000111000100110001010000110011011101110010011111011110111101000011110011000010001110111010110011011011000011101100000100011000001011111111100100011011000001100010010011000011000010010101000110011000100111111110110111001011001101111001000011110011010011011000110010100000111100010101110110010011101000010110010101001001011011111010001110101101001101010011011100111111000100010111100110011000001010010010011001011011101110101110011010011111101001100001111001111100110100111000011001000110100110010010010011100101100101100100011111101110111110011100100110011110111101111101010000110111000101010000100010100011011010100001001101101001100110010111101011001111011011110001101001001011111110110101101011010100101110101000111101100101000110101001101110011000110110111001110100101111011010111001111011110011000110000010100101001000010110111110011110110110110001110101111010001010001001001001001010100101001110110011010110100010100011011001111101111000111011101111001100001111100000111001001001011110011011110111000000000111000000000001000000001001001011110000100001110101111100001011110010110000000011011101011011010001111101111101101101111111110111111001000000111101010111010001111001000011001000001001101010000000100110001110011101001001101000100000011100111110110000000011011101111100000101111111010001100011101101011010100101100000100101010010001000111111011011101001111011100010011101101111010100000111001001111010101110110101001000110001100111100101101100000000000110011110110000010101110010010111011100101000110010010011101011110001000100110110011100110000010110111101001011101110100111001100100010111001100011100010111101101111111001110110110000000000010110001010110000000000010111100011001110001011000111101111001010001101000101111110101010001100110111001001101111111010011010100011011001010101110101010100110011000000100101110101100011010101011010110101101000011011010011100001110101001110001011110000101000011011101011000011101011100100101111111110001011111010101010001110010011001110010101100111110101101100110110100011101111101100111101000101101111101111010111011110100110110111110001101001001100010100011101011010111110101100101001000111000111101110001011000110111000001110100010001000100111101001110010001010000100100011111101110010011110000000000100011100101001111110101100100110010000010010000101010011110011101010011100110110010010010010000111001111000101011110111011011000101011010011001100011101011010111101001000100100010101111100000011101100010000000000101100110011001110111111010111001111011101111000110110101010101111100010000110100110010011101111110111010011000100110001010001011110011011000001010011010110010001001111111111001001110000010100100000011010100011011101011001100011011110111010011011101110000010011110101011000100100110101010010000001111001000000110111100110110010001001011001010001001011000100110010101000001100000111101101010111101000101000110010110100011100100000101010111111110001101100011100000010011001010011110110110000111100010111011001001000001111011110100100100101001001100001001010100010001110000010001010000100100001110100110000110000110010111111001011101100101110110100100110011000100101101100100100111110001111010110101011011111001100110111101101101101011101111100111101111101101111101001111110110010111101110111010001100111111001011100100101110110010001011101111101110011110001101010111101110110101111001101101010011010011101111001111000011101011111010000000010111110111011010111010001010001110100101111010110000010110010001101110001100000011100110000010101111101001100101000000001011010101011011110010100101111000111011100001110110000010111000111111100100100110000110001110100111100001001001111000011010101100000100100011100111000100000111000000101111001000101001011001011110111100010010111000110111110111111111101100000110001010101011110101100010010001011100111011011100010100010011111010001101111010100101111011000011001110101100101010001010111100000101000000001101100110101000100111101001101001100001011110010011110011101110111010100111011110110101011000100111100011011110101110111001010101001000010010000101100101000011101110000111000010011100111110100100010100100010011011010110000010110001101000001000101110011101000111101000110111101111001101110011100110100010000010010000010100111101101110110000100100000001010000001001110110010110000001111100001101001011010100100000110000100100001001110001101100010011001001111110111000011110010110111100111110100001011101011111001010110010100110011011011101001011100010001101111001100101110010000000101101010111011010000011100100101000100110011010010001100110011111011100001001011101111111000000010000001010010000011110001010010101111101001001100001010000011100101111000100011110000100001000101000110111100101011111100101000110101100111100011010000101010100111001000110101111011001000101010100001000110011000001111111110111011001100010110110011010101010011111101100010010111101010000010100001001101001001000100010011011101101011010111001000111001100101100100101111101100010101000000110001001001100001111100011001000010001011000010001010010011111101001110011011001101111101110001101011001111100010110001001000100111101100111000000101111100100110000111010100111010010001011110000111000010000000101010111001010011000100010110111111010110110100010000110100110100001111010010110100000011001111111010011111110001100011010100011010000000011101100110111001100011001101011001001100110111010100110110111111000101111110110000010011011101001101011111111010111100100101110100100101100100011011011010010001000000011000101111000101111010101110101110011100010111011011000100110010110111110111000010110110110001110011000010000110000101100001100111011111101100110000110011100100110101101111000111100000000011000111111101101110110100100000100111001000011111011000111111110001100010001001110000110100110000011111111111010111011111000101010010010101010110010011000110011010001001001011011101010010100110011101000111100001111000101101011000000100010010100111010000100110100001011100100111110000100010111100111100011010100100100001000101111000110011101001011010011001010111010011110101011110000100111100110101001110110010011111010101000110110110001000110000001000010000000010101001110111011001100111001001011100100011100110101111110000001011101110010000010001010011010010100011011111001100101010100001100100101111111011000110100000101011111101110101110100010111010011100001100111001101101100010100011001100100100111001011110000101011001000111001001111010000110001101100001101110101100000100001001001010110110000010011001001011101101111111010011110101011101111111101000101111001110100000001011001000111010101110001011101101010010100001100000000010111000001111001011101101101000111010000110100000011000000000101010110100111011010100110101101000101010101101001010000000101010001011110100110110101000011101010000010100011001110000100010110111011000110001000000111010110101010010101001111110111010100000010100001111010110010001011000110001000100101101011010001111100011001010110110101000111100010010011011010011101100101011011101001011111000010110100111011001111111111001010011001011010010001101011011010100101111000101100001010111101101101011101000011001000110101010100011111010000001011001011011000001101111000101011010001001000100111110100010101101111111000110111111111001111011101100010100111010010001010001111100111001000110010110010001000111011010111110000101101001001111100011011000010000000111100101111110011010100101000101000110010011111110001000110000110000010100100111101010100011001011010100101010100101101101111011101001011010100110001011101011110110011011011011010011010101010010000110000101101111000111111011110100001000111000111000111111000101000010000000111100001010011010001100101010100100010010110110000101000010100111100110010011011001100010001010001010110100001000001100100110110001001101111011000000100100100010001010101110110100110101101011100011101001110001010001110011001001011110100000110001100000010001001000111010000100010100010110100010101101110000111000111110011001101001001011001011010110101001100011001111011110111101110000011000010100011101101010110010101111011010001101000110010001010111110100110001011001000100001010100110011100010010000101100011111111111000011111000101000110110100100110100110001101011010110110010100100000110100011101000111111110111000111110011100001111000110111110110100100000011111111010001010101011000101111001001111000001010111100001001100111100100111000001000011101011110110000111101100010000001100100101110110001010010111101000110001001001000010001001110101011001111101111110111100111010111111101001011011101100000110111001100011111100011100111001010000110010101111101101111010010000011000100111001001011001110001101001101101100000110110000110000100101100110001011111110100011101001011101101100011100001110111100101110010111000001110010010000101000111001001011100001111111000111100001100110010101011110010000000010101000001111101000000000101010111101000010111111111000000100010010010011001100011110010110000011000101111100000001001110011011011110111001001111011110001011101011000010111111010011000000101110000111100110101111101000100001101111000101011101110000101111001111001101011010011010000111011011000001101001101110011010110010100000111010111010111110101100110011010010101100011110010000010010011010110101101000101001011010110001100101101001000110010000000010001100101000101001110010000010110001101101011011010011111100110001110100010011001100101100100001010000100001111001100111101101010100101110010101001010110111110000011100100000001000101010101010000101001100011111011100010100010001100101100001100100010111101000110001011110101101101010100101110110000111100111110000100001110000001010010011011001000101001010000111111011100000111101110011110011100011111111011000110100000010110100001010111000101101100011101101101111001110110101000100111100011111011010111111100110011011101011001111010001100011000110000000010000101000101110100000111100110000000100001010110110001110101100000100100000111101011001101100101100110011111100010100111101110001001010011110100000000101111011001001101010100111000011111100001011100101001000010000010111101110010001000101010010010000101100010100001100011011111000100101000011001110101111010001111100000111100101010011001100101000101100101011011001001000011101101010100001011100110100100100101110001000111001011000101011100100110010010011101000011011100010101110010100101000100100110111010111001001100110010101000100010110011000001000100011100000000100001011011001001111000111100000110010101010011001100100011001100111001110000111000011001010010100111101101111110110001001111111101101101011011110100110100110100001011010110000110111010111111001111010100000001000011010000101011110010100111010011100010010010110101011010110101101100010110101110011010000001111001110101100110000001111001011010101111100001001000001001100110000101011001010101101100011110011011011010110111011001101101101000001010001101100100001101101101000100111000001110100101111101011110101001011010011111100001011111011101010101101010000001010001000001110010110001100000001101101000110100100000100101110001010010011101110001001101101101010101110001100100101001101111101000010100001001010111001101001111100100010110001101111000111011000111011011011110001011001001001000110110010011110110010110010110010001111101011011101000100001010011111110001110111000010110011101000000010110011111010101101001101011110111111000101010001010011101101100000000100011101010100111011010010011011111100111011010010010000111100010110010110111001110011001011110110111100111100111011000111011100111011000010111100000010000000010100100101110110111100100100001100010001000010110101101100001011000010101010000011000111101011100011111111001010011000011000100110011011100111010100011111001000110000000100011101101100010101101000111110111011101001100111111011000100110001010101011111100110000100101001110011110001110100001011001110000111110101111011101111010111001110001101010001010011001010101111110111010110110001011101001000000010000101110000011110011101110111100110100111011011000100100110101101001000000010111111101111001110000100000001010111110111010001000111110010101000101000101001100111110110011010100010010110110100101000011101000001101001101110000010100100110010000101100000000100011101110111101000101001010001010001101010100101100101010110100101110110111001100100111101100110011010110100110100011010000011011001111110111011010011001100100011010010101011110000011111111001010100011000010101011111111000100001000010111101010000101110110001001100001011011101110110100011000001011110100111101110110010100110110110001101011001001110100111010000100101101111000000001001000111010111110110100001000101000011010101111100111011100000011111101101000111110001110000011111010010110110101100100011000010101110011001011111011101110011010111111000100010110000000110100101111000000001100101011010111000000100111000000000101000110011010100101000011010101011010101111010101110001001000110010001101101100010000001111001101110011111110101010101111010011101100000110111000110111111010010101100100110110001011001110100011000011000000101001011001100101110001110011101000100011001101010111100000010000001010100000000111011101010100111011101100000110011110010101100111000001000010101111010101001001000011101101100100010000101101100101110110000100111011010010001010101101010000110001000001110101111101101011100011101011101100001100000100000110011000000011110101101110110101110001000001100111010110001100001101000110001001101011001110011011100011110111111101001011010011101010111100101110001000110101001100101100101010110001111011110101010110111111101101101101010100010110100010001011011100101110111000110010110101100011011111010010111111100011111010010001011111000101101110000101010110001101110101010101100101101101000101101000111110010111101000001110001011011110000110111101010010010100010000000010011111111001001111110011000001110101100110101110000010010011011110111010001111110010011000111011010010000011000001100010100011011001001010000111010111110110010101010110101010011001011100010010100111100110001111101010000010111111101100001100111100110101111100111100101101110110000100111110111110100001111100010100000111011001101011100101000111011111010110110000111110011010000011001011101111111100011001111110011110111010101000101110110001001100011011101000010101101100000000000101100000110111100100010110010100100100100101110111110010111100101011010010100000010101010001010010100001101110110010011111100110111001000011100101010111110100111110011001010100010110000100000000111111001000100000001001001111010011010100010111001011111110100001001010011011010001001000100100010111111100101100001101011100101000011111001100010010110001101101100011011101111110011011000010000001001011100001101111111100110010011010010101111001000101111000111000011011100010010100100101110100101011001101101011011101000100101101101011100101101000100110111110101111100011111011000101101001001001010000110010010001001011110001100111010011100010101101000000100010101001100011000000001100011011100011110000011110110101010100001000100010111000011111011101000011011100110000001001001111011001100101101100010101010100001110101011000011011001111011001110001000101111100100000100010010101101000000010111100110111011110000110001111000011111001010101000010011001111000111100110001010101000111100000100001001111110110111101100010101110100011101110100110010100100011010100110011111000111000111010101110010111111110100010101001011110100011010000110111000011011100110110111000111110100010001111000101010000101101010000100000101010011110001101011000100111000001000110110001101000101100111001111011100110011110010010111100010100111001001001011101100111100010010001011011010101010000101011101010100000111111101001111110010111101110011101101100010100001001001101010111110100110001000010111111110100011111011110100011010111111010001001110010100010010110101011100000110100111111000100010111001000111111011011100000111001011100111111001110000011111011111100111001111001111111000111100101100110001111101110110000100100111100100110010100101101000110100111100111111110110011000001111010001010111010101100010010100010001010000101111000111110010001100010110101100010111101011001111001001110111110111010110000000111110101001101000110010011111011011100101010011001111000011100011001100010100110110111111011110000011011000010100111001100111111100011001110000110110110111011100010101101110101001110100011101111001001001100000100101110011110001111101000001011000010001110001100110111101011101111101100110010011011000101110110010010111111101100011101010111101100100100001101010001000011001000001011010011010111101011000111111100111100000111000100110000111101110101010000000100100111110011111101101111100001100001101000011001111100110001000101100000110100110101111111110011010110011110001001111010110110001010111100010111000011000010001110101111101001011011101001100111110001101111010100110011111010110110001111111100101101001101111110101111101100111001101110001001101101001010110110000111100110111101011101111100010110101110000111101000101111100010011111110101000010000001011000000011010001010000001000101011101100001111110110110000111011011110010001000000000101001111010111011010011010100101010001100011011110111000001111010111111011010100110110011110010101001101110000110001100011101111111011100011001010000101000100010000001011100010100110000010101100100010011110001001110010001100010010011010010000111101010101001000010101101010111110111111000110001100101011001111110111100011110100000011100110100001101001101000110000001101010110000010110011010000101010001011011000001011011110101010110011111110111101111101111111001101101011110001111011101110100100000111100111110001111000110111101000010010111001001110110010101010011101001101110001101000001011010001010101101001100011011100100110001101000100011010011011000010110010101100100100100000100111110011000100100001101011000100001001011110010000000111001011100001110000101011000010000100000001101110110011000111011100011001100000011001111000110110110001010111110111100101010101010000111010001110101111101010111110010001110110011101011100101010011000001111011001111101110110011100011010101100010001100110011100110100101010101101101001000001011110111100101000101111000011000101010111011110101010111011010110011000101100010000110100110010001011110100111101110001111101101001010000000000100110101101011101111011011110101000100000010011010100110011001001011110011001111011010000000101100111100011110101111110101010111101110011001001000001001010110000001000000111111101001101101011110011111110001110101100001001000001100111100010000001011000101011101110000110101111101100110100101101010101011011111010011001001010100001001101110011100110100011100111010010110000000101101000101101011100011010000100001010111100010010011101101100000001110000101010101101011110000111111001100011101110111000101001111001000001001111101001011010001000111011101100010001000000101011011111000011100010010010011100001110001100100101000001101100101101110110010110111011011101110010100000100111001001100000000001001110000100000000111010111010110010101011000111011010101110110011110100000001110110010111110001111001010010101110110010011110000001111010110001111001100110100101010101110011001111000000101110000110101011111000101101101101000100010010000010001110011101001010001101001111001100000111110110000000101101101111010111000001000101011101100010100000110101100101011110000111101101110110001010001100010001111000101000000100011111111110000100011101000000000011011010111000110001010110001111110111110101111010100111111110001110110111110011001010011111100101100100000011000100100011101100010111010111000100110000011110100010100010100001110011001111001001111001000000101100001001010010001011011010000101110010101100110110010001110101000101011111100011101001111000100110000110011001111001001100000010011110110011011100001101000011001111000111000011111111101000011001111011001111110111111010110001100000011111000000011000101101110010011001101111010111001011010001010111001011010011111110111010000010000111111011001010110011000110110110101011010010101100000111000100101000011010101010010001100111010010010000011101001000110001110100010010011001001001001111110011001011110100100101100110111101101111000101111000110111100110111010111010011010000100001011101001101100010011000010000111010011111100011101000101110110010100110001001010100100010110011010100100100000110011001011001010111001000001101101100101000101101111001000010111011001011100100101100010101011111101111010011111011001101101110100011101011001010100110000100010101011000000100101001100011001000101011011011110001001010100100000110110011001001111111111101000111110010111100000010001101001000011000001001111000010010101110000110011001100011000111011010111011101101000101100111110000101111011110100001100011010110010010110100101111100110000011100110101011001000001110111110011100111111111000001111111101001000000000110011000101011111001101000111001000010010011111010010101001010011101001000001010010010110110110010111100110100000110111101111100100100011011110100001110100011110110111100110101111011001101111100110010000010111100111101111001000100101010010001101101101100011000011010011010100000101000011000001101111000100101101110010101101101010000110001101010010011000111110001110101101010100101110010111001111110010101010011111111110011010010100100101000011110110011100101100011101110101001110010000100011000000100011100110000100011110111010001001110101100010010001011000000111110111111010101101110011001100011111110100111100000011111010001011010011011010011111000000100110001001010111000110101110000011111101111110101000000110100101011000110010010100001100110001101010100111001100010001000100010100010000001111011001110111110000110011011001100010010101100011000101100110010011001001001010000010011000010101011101000101111101011101101101100001000110111100001111111000011001111010101101110111111011100010010000010000110101011001010110101100101011100010000010101000101101100001011000100010100110111001110010000010111011110001100111001001001100010100010100100100000000011011010011001111110111001000001011000111101100001001110001010000101101110000010001110100010000010010100110100101011000010111010111011101011011111100111000001001110001011110001001001111000001110000110010111100011001011011110100000010101111011110010001001111100000000110110010111110111100110011011011100011110010110011101101010101000111011001000100101111001100010011000000011110110010111010000000001000111000100100000101010111010010111110110001000101111001110010000010100101011010110101110101111011100011011100100000000101011001100110011101000010101110011011010111000110011010101011110010011000100110010110110000011101101110011100110001111010010001100110011110100110110111000000101111100001011111011111011110110101001101110010010011000001000110000100110111101011010110100111011111000000101100101111100000111000100111011000111100101000000100010010100001011100010111111111110101101111100010101101111010010010101110100010101010000001001100011001111000001110001001000110001010111001110010010111111100001110100110100100011011110111111001010000011111001001110100000011111001010011101001001101110001100101000110110111101101110001110110110011010001101111000011011000000100001010110011011011110010101011000010110000100111000100110101001000100111011111101011000101101101001001100110101000101111111001100010101100111100011100000111000110101010110111001010011110101111011100000110010111110110110010011101101010011010101001110000100001010010011110010110001100111011010100010111100010110100110111111000101101100110010111101011100001000011100100100111111011110101101011000110011100001000100010010101101111110010100100011001100110000010110101010001101000010111001111110100101010101010011001110010111100110100111100100001010101010101100011100111101110011001110001110000000101100100001110011010101000101100001110001100101111011110110000000000001001101100111100010110001011001101101010110001100011001110100011010101100111000001110010001100100011000100010110111110110001110010100010000100101000110011101101100100000101111101000111011000001010101011111111101011010001100010000101000110100111000110101001100010110110011101000110000101110000000010101101110100111100010010010111110101100111110011100011011011001101001110100100011011110000001000100011101101001001000100000001111010111101010101100101111011010000110110000010100000010000110010001100100101111110011110011011100100000000001100010111000110000011110100100000111000001010001010000110011010011111100111001110010101001100001111001011011101001110000010110010101000010110100001010111101101101000001101101001111001010100000011110111010110100110111101010010000110010100101001110100001000101000100100110001000111010100010011011001101111011101100000011110010001100111101000110110111110100011010100110100101000111001000111110011010010000100001010001110100010001001011010010011010100101011011111000100101110101100011101100110011000111000101010111011110010100001101100010001100100011111001011001100100110101111110110111011000010001011111011101100110100011111001010100110101111010001010011100111000001001000000111110001110001101111010011111001000001100011001000100001111000110001001011110001101001011111110010000101111000100111100101001001101011110010111100111000101010101110110001001011000101100010001101001010011111001010010000100110011100000100100110010110100010011111111101110100001110100001000001010111011100110000010011101110100001100011110111011011001101010010000001101001000010000101011101011111011010110001100010011100111100110000011011001111101110101001101111001100000100110000000011101101100000001001001111100110001101101000111010000110101110001000000100010101101111111101001001000111101100101100110011110000001100011011101110001100000010101000010011000011110011011111001000101000010011010010000001101000000100101011000010111101010101100000111100001001001001111101101111011011101110101111010011101010101110100001111001110001010100000111101011111011000000010100101111111011000010101001110111111000111110001111100100011011111000000111000100101101110011001101111111000001010001001000101110111101010100010100001100111101011110100001100101111101001010001011000000111100111001100000111001101100000011111100010010110000101110000100111111001111111001010010101011110111000110111110100010101111100011000101000110010111011000011011110001111101101110110010000100100110001111100011010011010010100101101001111100111101010110110100010111011110000111010001000000000000110101011111110001100101001001101001110111011001010001000000000010110100001100000101011010110110111001010101010011010111001100001010010001001100110011100011011111110001101001010001011101001000110001000001111100010100001011010011010010111110000100100111101010110000010111110101110001111010111011000011101011001001100010001000011011001111100001100011100011100001001011100110011111111111110110000000111111111010100010111011011011111110001100011000001100000001100111110010100011011110111111010011111100110100111011110100001010000001111110000111100100011101010111101110010110011101100100001001011010101010100001011000111111111111111001100001100010101101001011011100110111110011001110110010010101011101011101001011100010010011011010001110110101011100010001011110001010011000110100001110111101001100110011000100001011111100001101011000000100001011101001110010000110111111111110101000101111110100010000010010011001111011010000100100010100000100011000011011111101001111101011011010001111110010101101010010010001101110010000001011101000101100000001110000101111001110111110011000101100100100000110000010100011110101000000110111100011100101010100011101000111000111001010011001101000000111111111110101010011100010010001001111111111011011011011110111010000011100101001110011101010011101101101010111111111101001100100111001010101100011011000000111101011010001001101101011110010101101001100010111111111011101011110101000000111011010110111001110011111111111010000110001100010100100111111101100001111101011001100101010110010110100100011011001111111110101100110001110010100001110001101000010001100101011111110110000001010010011111001001100010011001011101100100110110001111011001101000011101111010100001110011010101000101010001010011001001110110010110111000111000010111010101011110110101110101101110000011111110011111010111110111100010011011111011000101010110000000110110100011011000101100100101111100010101000000100010010001110011010101000111011001011000001000000101100101000101000010111111101001100000000111011000010001001111111011101111110001100000111110000111101010001011111101101010110001101010101110100110101101011100101111111010010110001110011011000001000010110111101101001001110110000111111100001100001110110011010001001111010001111101100111010101001101111101000010001001100111011001011000100001000001000110101101000000011010110001011000110100101011101000101011010100101010100100000010011100110010110001110110101101110101001010000001011000110000010111000001101110100000110001110100001000011100011001111010011011010000000110101000001101001110111101100001110101110111001110000101001000011100100110010100000001110000111110100110111101110011000100101000111101100110100101001111100101000010101111110001110000101101101110111101100111110100010000101001100111000001011111000010101110000000101101000100000111011010100011101001110101101101011100010011110001101110101010011100100011000001000001111011101101000000001100111010100101101010110100100010001110010111011111100111101001100011111111011001100101010101010000011010111101001110011101011011111001101000101001001101010110010001001110001010010010000111111000010010110011010101110010110101101000101100101000010100111101000100010001101000111100111000001111011100111010110100100110100100100100111100101001010000111100101001010001010010101110001110010011010011010100100101010001011111101101110000010010001111011000010100111110000101110101000000010110111011011000101001110000111001010101101101101101001101100111111111001000100011111011010100010100011111100111110110011010011100101000010101011101111000011100111101111010001110001110001111111001010101100000110011110001100110011000001110010110010111011101111110011110100001110111011010110010001110011010101111110101001011010111110010111110011100000111101110110101111101110001011001111010111010000101011010110010101000000111101111010100101001000101111101011000011100100001001011110011101010101100011101001110000011101110011010010111001111111100001111001010001010000100010000110011011010100110000011000010100100110110001110111010001001000010110000010100010001101000111111101100010010000001011111100010101100100110100101000010100111100100001001011101111101111111010010001111011000010010010100101101110010101100010010010010000010001111110100010101100000010101111111110000100010111101101100001000000011110000110101000000001111111011110000111000110111001000011101101101111101011001011101101101111001111000010010110010100100000011010001101111111011011111110111111110101000111001000101100101000110100111101000010100000011011000110111100010001001010110000010110000000010000011101011111100100001100010101011000101011100101100101111100001101000110110000110000111111011001111100110110001110101011110000001000111111111001110011010011010100111110111101011101110000010000000110011101100100001011000011000111100010001101111111101010001111001101110000011100001111011101010101011110001111001100110010010100100110011001111001001110010111001000111011111000000101011011011101000010111100100010010010110101000010111100101000000110101101001000100001110100010111010100110000110101100001110110001010011001000000111010101000010101100101011100011110100011101101110110110111001100111110011001001110100100110001000101011011110111011111000110011011101010111110010110010101100110000100110000001001010101100100100100110111111111110101111111010111101010101111110010001001010111001011010011110011000111001110001110001000110110111111001011010010001010101010101001110000100111011100111000101110010110100101101011101111011100010010001001101110100110110100011000000111010110101101001111011011101100011000110110011001000110110100000001000011111011001010000011100000111011101010100000011111010100101100010010111101011011111110101101000100000110000110001111100111110111110100011000010001111010001110111001000000001011001101101011001010011010010010011101010000110111101000111001111100110110111000101000010001010101100101011000011101010110101001110000101010101010000011011010000111000010010011101110001101100111110000000110111101100001110011110010110110011001101111000000101110101111011001110111000000110101010100001010001101010111010010111111001010111100001100010010011000011000011111111010111000010100011111101111001100111100101100000101111110001011100100110010000110010110101000001011000100001111001011110111111000001000001110011111001001011101110111001001000000110001011101101111000110000111100001111111001111101001000100100100110111000010110111010011000111111001001000100010100101011101001001111101111010010100110010001110011101010010001110110101001111010010011100101011010010100111110011101000100011011110001011110010110010000110110111011001000011110001110100000001000011110001111000011010010010100111111000111101100010011111001111001010111010110110101110000110000111100100000000110011010101101110101010011101000100001010110000111111010111111100010011110010001011110010011110010111110101011011100000000011110101010000110011010111011010011011010101110010100110011000011100000000001100010110110111000000011001000001010101000111101001100101111001010110001010100001100010010110101101100010011001001100110001011000100101111111110110011100000010000011011001011001101101100011010101000000110000101000101011111111001111100010100111111000100010011000010001001110001010111011111100001110010010000111011111110101101000000001110100010001100100111100111110010111100111000011001000111101000101000110011000000101001111101010110011011100101110110110110101100110010011100100111010100101000111101001111100001001010100110101010000011001100110100000111111100100010101111101110001110000111011010111001101110111000110001100100111001001111001111110110010010001000110001111100001011101111111100000111110011010011111001101111011111011110011101010011101010101011100111110001001000111011100110111001000000100011010010010100101100000011110000111101011111110110101101100101101101100111011111101111001110110010100001000110100010011000000111100101000010001001001101111000101110110011000100111010010101000011100010101010110101101010001110110000111111000111000111010001010000010010001011001010010000110110111011000100001111001001010010101110000010100001001000010000100000000011000111011001011100111110100100010001110010100100010101110111000001110001001111011100001011111010110111101001100001000111011001100100100100100100000111000001110001000100100001111010101011110100001001000110111000111101011011101011001000111110111001100001101000100101010110010110110010011100010110101101111101101001101111100000111010000110100010110110101010001101101001111110100010111100111111100100101111110000000100100111101100111011011111001000111101101100011110111011011100010001000101101100100001011110011001000000101000001111110111011110101100111000001011110000101010101010000100001100101011101000000101101111111111000101010111111000010011010110010011001101100011100001011001010001100010000011111110000100000110101110010001001000100010111010110100000100110001111001101000000101010001111001110010100010000001111101100001101011010000100001000011011110000001010011101000000000001011100001110101001110111100111010011011101010010101011010111011011100111100000101111101111010000100001000110101000000111110101111101110101110001100000100111001111000111100110010101100110001001101110111000000001100011011100100000101111010110011111001101010011111111101101110101111000001110111101101110100110101010100011011000011110111101111100011001011100010010011100000001110101010111011010001111101100111110010101110000111011111000000101110100001001000011001010101110101010000000010010101000110110010010001100000111011010110011100101100111011111010010100110111010101100101000100010010001111000111110100101000011100111011110100111111110000001110110101011111110111101010001000101111001001111111100101000001001101001000100111110011010111110000100100100110001010110011011110101000010101101111011001100111010100001010000100100101000000010101011111100101100001101001000010000001100110101111110010110101100010001100110111100100101001110001110000110000000110101011100001001000110000000000100111100000101001110011001001101101111111000000110010000100011010100110010110100110100011111001010000101111100101101001001110101011101011001011100011111100110011110111111101110000001111101100110101000100001111101100101011100100101001000100110101000001011001001000010100011111111001110010000000110011010001010010000100001011100010011011110010001101101000111000110100110111001001111010000100010111011001101011101111110010000111011010010101010001011101011000001000101000000100010100011010100000010111010110101110100001011110000101111001100101001101011011100011101100101000010101011101100011101010111100101100110011100110111110011011000010011100110111110111101000111110001100011000000100101101100010011010111101101100101010001010001101100010001101100000010010000011011001000011101010001100001000100010110011110110110010100111001001111000000101110111001010110001101011001000100010010111110101000011001100000011100001000010001110010101110000110000111010011111100101110101101101001111110010000101010100000100010001001100101101110000001111111000100001011101101111001011000011111000010001001010000101011001001010100001110010001010010100011111001001011010111010101000001100000100010000010001100000011100100011111110010000001001000001001111101101110001110010000010011011011111011001100001110011010010101010000100101010100011010001110001100000111000100111010110111010011111101001000101110101100100001110001011000110000010001101101010011111111111110100100000110001110110100000010011011100010111110011110110001001111111000101011010010000010100101001111001011011010010101111000111110010010011010101010010011000100010001010110111010001001011110101001111110000100101111000110101010111110100111001110000101001011010000100010100100101110000100000111011110111001001111011111101000011110001001101101010101010111011001010011011100101000001110001111110000101001011111011011011110100000011000001011100000110110010011110000100111000111010101011011010011000100110010000110110100111000100010010100110001000110001111110010000001011100011100001110011010110100101000000110100000011111101001000100100111101010010010001010001000100011101111010110111011101001011111101011100101110001011000001110011110011010011110011101001111001011011110000100001100110110111001000101010110101111011011011000101110110111111001001010000001010100100010100111000011000000110011010101111101101011010101011001011010100011111100011100100000111000000011101001000001000000000000001000101011011000110011101001110100011101011010110110101000001000010111111000100101011011110100000111011111010101010011001111000010100101011001110100000010101111010101101010010111110100010110010100011011100000111000001100010100101101000010111010001000010100110011000001110010111100111001101000011100100111011110010101010101100010011100111000001101001001110010100010100111101110001000101101010101001010110101000010111010011101000111011100110101101111000110111110111110110101000111001011011101000100000111001110110001110000010010000001000101011001011110111111000001100100110010110010000100100011010001000100111011011100100001000001001000110101110101010111111101011001110100101110000110111000100111010100111110101101000100001110101010100100111000100010001101011110110111010111111001111100010110101111001110001100010001011000110101111000000100110110101011001111011011011110110000111111011101000001111000000110010010011011001011001100011110001011111000010110000010000101011001011101111100100100110110101100110010011010011010001110010011101111011110000011010000111011001111100101100000110001010110010011011000000100001111010001001111011111010110100110000010010000011100110111111111011011110100100010001010010100001100010110010010001000110100001101011110011101100101100010100001110001110000101111101010011101010010110000011001011000100000110001011000001000000111001010110101110000111001101011010001111010101000111111111100000010001110000010110010010010000100101111110101011111111000101111011101101010001001010100100111001100111011001011110111100111011110100011000011000110100111011100110000101100100110110010011001101110001101000011011001100000100001000100011110110000101101111000100001111100111011110010100000111110010101011001011101100010111010100000101010111101000100000001100110010001010001000100011111010111101001110101100000100100000000001111000001100111001011000110001000001100000100011001011001110000011011000111011100101010110011001001100110100110110111001110011111111101110010000010100000100100001010000110111100100110110101011000001001101101100000000001100101111101001111100000110110010111000010011100110110011101000011010000010100010101111101010010110000010111001111101010000110110110110100011100100101010101100110100111010100111000001001111001100110011110110101101000100110101110110111111100101000100101001101011000111010110111010001100101010011110111010000101101010101100111001100000001101010111001100010010000100110101011001000111111000101000101100111010011100000001011000100111011001001010111000010010010001001100110011010010100000001001111001111001100001001000101010100000010011000101001111010101100110010110010000101111110010101111100100100010000001100110001001111101000001101101001100001110100001001101011011100110001001110011001001100100010010010110110110011100111111101000000101100010001101011100010100100010010111100101000101110011011000100101111111100100000111110010101010010111110101001001111100011111111100000001100000010000111101100010001001000010001000100101011101000010001001111000011100000110000011011001100000010100011100010101110111011010100010001111010110010000111001100111010011011010000101110111010011111101110111001011111110011001110110101000001010001001001100010100001011001010100100001011001001001001010010011010100001010100111000111110000010001010011111101110111110100100000010101011001110001010110001001001000011001111110110010101101000001100011011100111010111101101101100000101110000111111111011101100010110011100010111001010100101001010001111001111010000110110010101101001100001000110011000100010000011001110111110101100101011001011101011001110100010010111110101111000010100101001111011010011011000000000011100101101101111001010010000100000001011111110110010000011011011111110111100011100110001101011111101011010110001000010011111100011111101111100011001001100101000111001111010110111010111111101100000101010100010011010100000011111011000001000111101101111010011010111001110001110110010111000011010101111100100001011111100000110100010111001011011100011011110010000010000010110000111000000100100110011101010000100001001001101100101011100010111000001001010111000100000111110100111111000001010101001010100100111011110011000110100111000101010000100010001110011011110010010100011010111010010101000011011101000101001101000010001100111010101011101110110001001101111011100110110010000000010001010000111011101101001010001010001111101011011110101011101001010110010011110101011111001010011110011111011011110000001000100101110111111110010100001010110001100000110101010000000111110000100110110100100110110011000011111011110101101110111000010111010011011110111111001111000011000011111000110000010010100011110100111010100111011110011000000111101100101111110011101011111101110010101101100010010011111101111110111110110110011110110010100010000000111111001010000000001010111001000000111110001101110010110001110101001001111010100001010000000100100110110110011100101010000101101010100111100111000100011001000100010011101110110110011010100101001110000011101110001101010100100101010110110100111010111001010000001000010001011011111000011101100111110100011010000011111000001111101100011011110111000011001101111110110000011000011001001011010101110000011000001100101100111011010100100011100001100011110000110000110001101001101111101100100110010010011001101000011100000110110111110011101011110101101101111101000010100111011110010111000001110011000010100000111111100000001101101001010001101001101101000111011110100000010001000011111001011011010110101101100100100001010110101010110010011100010111100101000001111111110011110001111101001001011100010101001010110110110110011011010000011101010100110101110111001010111100001010000101001001100110101101100010100001000011000011000000100111000111111101110010101110000000101101101100101001100010111111010001101011101010111011011010101010110001100011011111000110100111010011111100110100001010001011010100111100010001101111100010010101110111011101011011101011010011010101100111000011110001011100011110000000010110011011001000001010011101101101101100101001100100000011010001110001100010010110101011000001000101011001001100001100110100001111000100011110101110001110111111110000111001010110110110010110010101110010000000101011101001111111011111100101001011111100000110000001110101110000100010110001100001010000110001101110010110101101111111000111110101110110000001001101110101001010110000000010001000010101111100111011110100100110000000100100100010001101110001100000101000001011010011100101001000100111010001011001101111101100011100011101111010110001010111110010111101110010010110110110011000111011001100010000110100101000000001110111101011110111110011100100001110010010101010000010101000100101000101110010100100010100110011000100111001111110101010110000010110011000010000010110011011111101100011011000010000001000100110101010001001011100011110011111001100001101110101010011101111000111010111110000000000110010010100111111111111100001000101001011000111101101010101000010111101110011111001011100011111000001110101111001100110110101101010111100001111000100111100010100111000010011000010010111010011101100110011111110101100001110001110001010100101111000001010010011001001010001101001100100000011001000010100100101110100110100000100000001011110010011100000111111011010100000100011111111101100111001110011000111110011110001100000010110011000100110111110111001011110110101001010011010111001111001101000001101101101100111111110010111101100011100001110111011111100111100000100100000111111011110111111010100101101010001100010010011110011001110100000011110110110001010100110011011011011011111111011011010111110101100110110011101010111000111000101011111010101001011101010010100000111000111100111011001101000001000010100001000110001101100011000011001001000001100001011111100010100110100100100010110011010100110000101011001010100111100000110100100110100111110101111000001110010000001100110110010001101000111001101000000100001010110001001001100101010001110100111111101000100001011010010111100111000101000011010101011001001000110111001011001001001010111000101000111000010001100101101101001010101011101000111110100110000111101010101110100001101001011010011101110001110111001111001001011000011000010010111010101011111010111000001111001011011110011010100101000111100011011001000111010001100110010100100010001100110110010100100011000010010100101001100000000111010000010001101101101110000111000111101010011100001001000000001010101000110111100011001011110001010101011110011010110110101111000101001011010111010100111000100100110100010000000000000110111001001000100011000110110111011100111111010110100110111111100101011001001100100110101111110111000101011001101101101010100011000011100000101010000100001100001000111110111010101110010000110001101011100101010000010010101101110111100100000001110010010000001001101110001100010010000110111001011101100011000110001111010011010001001000110110100010111111101111001011000001100100000010111001110001001010100001000111100111010111000011101110001110100100001101100010010011011010110101000010101001111110000110001110111111101100111000101101111111000000100111111010000011100110100100010101011101110101100001111001101110010101001000011000101011101110001001101111000001010001111110010010111011110100110100001110111101111101100110001010111101101101111000110001011000000010100000101001111010000000000010011100111111001110001011010111000111110111001000011011110110010111010010101100000010000110010111100000111001110011010100001110101010111011100111001001110110111011100001010001010000001000001101000011011011110000111001101100000010011000111011011001001110001000001111100101110101000001100110000100100101001001111101110100001110110001111111010100000001010001110010111011101011000101000111010100111100001001011011011000001000010100011111011101110010110111011000001000000011011101010001100000110100101011000101110101001011100010101111011010010100011111011011011000001100100000011010101110010110100011011101111011100111011000101011001000000110101000111100011011000100000010110101001100000100111010100011000111110000011011100100111100111110100001100111111101011100101101010101100010101111010101001101100000101110000110111001010010010100110100101101100000101100111100110001101101111000100000111111001101111111101000101001101011111100101110101110101101001101000100110101111101101010110111000011110111011011011100111000010000000101011000101000111100111000110010000100100001100011010010110111110100101001000011111000010001001101011000000100110000100010111010001100011000110101110001010110101011111000110010101100111000001010001010000100000001000000001011100111000001001110011000111011100001001000011100000010010001100111000100101001001100101010100101000110101111110100110010111111000101100110001001111001111100101101111101101000111011000011011100111111000101101010010010111011110011010101100101000010010100111110000001001111011100110011011100000011010101010011010001010101100101001110101110010011001010100110110000110100000011110011111011101011110010000111011010000011110001100110011111110100111101101111011010011000111011000100110110010101110110101011111001110011000010000011000100101000001010010011110000101000101000010101010001100001000101010000000010010001010010110000011000010000000001101001001100011011110111011010001000100010110011111111101000001101001000111010011000100100101011110001010111101100111001111100101100101111111011010011100110010011010011011101110000001010000011011101011110110110111010101011101100100001011110101000101000111111100010011001101100001010101110010110001100001000110111011010100100110100001100000011010000101100101001110110110110001000111111001010010100100000110111101001111100000110001111101100010010111010101111100110000010011111010000101101111100010111000101010111011001100100001010101101000101101001100111100101110111001111001001100100111001110100010000001100000111000000100001000110111101100100111101000000001111010010100010000001011000111110001010010000101011101101000001101110101001110110100011010001111011110000100111001100110011100011000111001000100010010101100101000100110111001010110111110101111111011100101101110110001100110101100010110110110110011100000111100000011110011011011011101101110000110110101100101001100110101001000001100101011110110101011101001101110010100000010001100010101100010101010001111010110000000010111010011010101001011100001100110110011100110010011001100010011011000101001110111100001110010000000011001010011100100100011010111111100100110111101111000110011001001101011010111011010100101110110101010110011010111101111001100100010011011010110110111111100001010011110101111001111000011011110111000011001010100010101110010101111000000010011000001010111111000110110101101101010011111100100110010010011110010010101100010100110101010010011100110100001000011111000011101010110000101001001100111010110110101001011000100011000110000000001010010110010001000010010000010010101010111111000110101100100001110101100110010011101010110111111110101101000111010110001010001011001001100101110001100101111011000011110000001101111000101011011000000100100101001110111111000001001011111101010000111110011000011111110101010110011001000101111101101010011100101000001011011001010011110010010111010110010010010111100011001010101100001001000100110011100000110011110000000101000011110101110001111111100011110010011000101111101100101011001100100111000111100111100011010011100000110111100010100100011000000010010011001100011000101001111010011010111010010101001110011010111000011001111111001101111010001011011010001011001001111100010111101011100011100011101101001011000101100101000010110010100011111011110011100011000111000001010110001000011100110011011100010110101100101100010100001110010001101110110001011001111000111010010110100110111111101110111110100000111110000110010111000110001111100010101101110011011101101110010100000000101011110101100000110011010110000011010011000100111010011101101010000011100101011110010111101100010100111000100110001001101001001000000011101011111101111101011001110101111010110110111001011101111001010100100101110000000100100001101001010011011110111011011111111111001111011100100011110001010001010100111110101010000110101001100011110001111110001111100000101011110110101100110010100010010110001111001010101001000001110000010100000001101111100011001001000010000011011111110111110001000100000101001101000010000011011000010011001001100101100010110010000111001010011000100001010111010111101101010101110001011111010010000001000011110101001000100000101001000110010100011011100010001011011011001101011010111010001011001000010110011010000011010010011111111010001000000000010011110101011001110011011010101010001011101001010101000010101110010001011101001111011001010100111011001011000010000000001110000110110001000001101001101011111011000000110000000011100111000010010110001000100010111011010110110101111111010000011101101110001000011100010001001000111101101101101000111101110111011001100011000110011010100010010011111101000001110111100000101011010101010000111010000000001000110001100001011110001000110011111000111110110111110110010001011111110111011100110100011101000110011001010110100111110110110000011000011110010001011000011011110110001100100010010001100011101001100111101011111011110011010111111100000100101010001110011000010111100010010101110111101111000111111101100010100101010011111011011000100011101100110010100101111110110111111100100010010110111000000111001011100110000101110100100010001001101110101110011110101010111000100001110100010010000100011100000100110101110010011001101111011010110011000111010010100010010001011100110100111010101001111111000100101100000010111110010101001101110100101100001111110001011001001010011000101101010001011000010001101100100001111110101001011100001110010101111000110011010010010101011001000011001100000001110100101101001010110100100111010011001110101010110000100001110010011001000100010100011010011011000011110011001111010000011011010110101000010101100000010000110111110010001010110110001011110011001001001001101000110010101010000111111101011010001010111011010110001011010101010111010100101011011101110111100110100101000100010111100010110000000101100101000101100011111110000110100110001110001101100011011101011110000001010110110001011101011110010101101101010000001100111101010111010101010110101110001101100010010111110001100000001101001001110110000101000000010000000101000010010000100111101001110001001100010011100111010011000101101110000110111100001010111110110110010110110101100011000100101011110111100010001110110111001111111001101100011100010001011001101000111001010100101011001100101001111101100010100101001111110000100001010011110101001011000110000110101100101000101101011100110011000010101100001101010001101100110110101000111011011110100001100101101011101110101100111101111110110001000111111011011110010111000111000010000101010111010011100111101101100000001000010100110011000010000101011011101110110011100111110100100011000100111000001111010011010001011110110000101000001101101010110110010100110100000000110000100011111010110010010010101001000001110011001001100010010111011010000111000011101111100011001111011001010101111001100011110011110111100001110011100100000101100110111000010100111011101001100100010111000001110000101011100111100101100100101000011101001100110110111100111000011111111010000001101000000010110010101010100000001000010000011011011100001100111001010110101011010011110010110100011111100000011010110111100010000100110011111000011010100110100010111000101101010001010110101110110111011100001000100010010011111001000001001100111111010101001101111000001101000110010110000001101000010000011100001110000100101011101110010010111000100100100110011011011011101011001000011010010001111110001001011110001000101010011100010010111100011011001101110010001010100000101111111111111110110011101010010011010110100010011010001010101110000001100111100001101011001000101001010101001100101111100010011011010010010011110101110111111000101101101010010101011100010100010100001110110001111000000010001101001001110011001100010110001001000010111111010011001111100001110100000001110101010010101110110100001100000010100010010101010000111010000010001110110100000000100011010011100001010001101001000010101110110101110111110010110000110101110011111100111110100101110001010001101100001110111111111001110000011000000001100010101111010000101011100100001001011110111101110101101101001100011101000010011011100111001010101011111111110010010111100000001011111011111011101100001111001010011100100000011111100111011100001100010111010000001101101010100011110101100001000101111111100001001010111000001101101111010110001100000000100111100111101011110111111100100011100001010111011010001100111000011001010000100100101100001011000010010101010000011011101110001001001111101111011111111010110100101110010001100101011010000101101110100111111110111111010101100000100100100000011001000101000101101111010000011001101010110000100011011000001101110101011001101010010001101011101100100111001101010011111011101001011001010010011101010111010000001101111111011101010011101000001000101010110001111011110110111101010111111011000010000110100011100110010101000100100111000111011000101001111111001101011110111101001000101110111111010101000100010000011111001100001110001001100110101000000111100010101000010010010100100001100000110100101000010000000000111110111001111101011110011101011010100110010101111001000110111101101111101110000011101010101110101011010100000010110011101011110111101010111111100101100001000000110000111110110000011011010111001000111001101010011010111111111011000011100001011110110010110110111101000101101100100111011010100101111101110011110111010101111110101010100001001010101000111100111111110101100001111010111011111110111101100111110111100011010000011110111101010101010000111001011101001111111100011011001000000011110110011111000000100111000011110110110110011001100010111110000010101110001010100011010111001001111010001001110111011101011100011010011000011011000111011101000111101100011001100011100001101100101110011011101000100001111000110110001001100001011111010101111010101001010100000101100111100000000111001000100000011100111111111100011110010110110111011110010100010101111100111100101011101100000010110000011000011000001000100100011000011001111111111010010001100011001100100001110111101011010010100011000010010111111110000011000001000101011100101110010000010011011110001010101011001110010000000011000111110000110101110010100001111100100111011111101100111111000011100110011011111000010011101011000001110000100111100101010011000110110110101000001111011100000111001101000001100110010101000010100010110011001000110011110000111101101000110100110101110101111000111001110000000100010010101111010111100010101010101000011001111110010000101001110011000000011110010010000000011111001001101111100110100101001010000000111110010000001110011001011111001111010101110001100011101101111001111101111110111010100000011110100011000010000110100010100111101001001001110111111111110010000010101110011101010010000001000000111011001110100010011101100000001000011101110101001011101101101011100000001101001101110010101010011100001111010010011010111010001101011110110110101111100011110000001110101011100011000000111001110111111101100111001100000111101101010101110111000111110010001100100000001010000110010100010001000111000111111110001101100100001001001001010010111010101001010110101101000011111010110000101010101011000010100011111011001111000000001111111111100111110101001010110011100011000000101100110111101110111001110100010010110111100110000101110110111001101100010001100010000011111110110011100000101100001010001001111010010101011010101010100000000101101111001100101010001011011111010100101001010111101001010111001010110111111101000011111000110101000101110100111001010001100101110100100110111010100111010101111111000100010011011101000110011011111000010000110110110100000011101010111011111100110100000000010101110110001010011000100111101010111000111011100110110001010000110001011000111100010010110000010011111110011010100011110001001011001011111001110110111111001011000110101110010100101000111000010011010011111011110100100010100000001011111100111110111101011111110001001100001101011101001011100011111011100010001100110100000000000010000110010100011001111000010010101000000100011010011101010101011101000110000111110001111001011100110010001111010100011001011100100000110101100110110011010110000000100010101001101101010101100011101001110101111010100111110101011000000000000001101110101011101010000110001101000010011111111101111010110001111010011010001111011000001100010011110101010100010010001011101001101001100011000110011100001010110100011010111100101100001101000000110101000001111010110110100000000100111011101110010111000000000111000100010101000011100111001010111110001111110011011011110101100100011001111001111011010011111110011111000001101011000101101110001010110101000011000010010110100011000111101010111001111010001000001100001110000000100010110100010100000111011010010101010110001010101010001001110111101011011000000001000011111001000011010110011110111001011001000111100000110010011101000000001011011001011000101110110011011001111001000000101000100011101000101100111001111011101111101101001011101011011000110110101001100101011001000010110110000110110100110001000010110101001100100000110110100100011011000101111000101100100100000100011000000100111001010001000110111101011000011000011111101011111110100011000101111110111101000010000100000001111010011011110111000011110001001011010001010001110110101011001011011010111111111111001010111011110011111001011111100010010100101011111011100001101100010110010110000101011011011101110010100001000110101100101010101001001100010100101011101000010101100111110011110010011000010110011011010101110101101101011011001110110101010110001101111110011100001101110110101101100111101001101100110110011111011000010001001001011010101010101100111000101000011011000000101000000100101111101010010101001101011011100100001011100110000101000010111101101011111010101100111011010000010110010100111010010100000010000010001101111000011111011000001111111011110110001000000011001010001000000111110100111010111111011001100011000000101001100011011110111010001011101001110001000100101010011111001000111111011000110011000101111101000011100110110111100111100001011011100010100110011010111001011010010100011100111000110100011100011101100110100110101000001011010000101000111000110110011111010111000011110010101010010000011011010100110110110110000010111111011101101100010100010000110000101101011100000000101110101100100110000000001000010011100100100101010010111101010011011101010001111110000111100011110100110011000001111111001011010110100001001101001010111001111100000011011111100100111100010000111110111100110100101010011011101010010010001011110101111000100001011011111000110001010001100111010110000101111101001110000111101101100011001111101001101101110100001010111010011101110110101100101101101100101001110001010011001111000100100000011011010000011001110111011000111011110010001010100111111001001111111000110101111110010001111010111100011101001111110110010000101001010000000101100001111100000000000111000110101000001011101111100101100110010010100101100111000110111101001110101100011111011011001001011001110011001010101011111010110100001000010110111000100111001010110001111000101000011010110011111110110111001010100101100010110101011010000101100011101110100111100001100001100011101010110101100011111111010010000010000011011101010011100101100111011111100011101000011000100011101000011011100000110111010100010011000001011111101001000000110010100100011001001001001100101000101010010110001011101011101100010110000100011001110000101100100100101011100001100100100010000100001110100000011010000111000001110111100101000111101010000111100011110010101001011111010101111100011110000011100110111001000111101100111101100011011111010111110111010011011001111101111001000011011011001000101000101011110110100000011111110000100110101101111111111000010110001001101010010101000010010101111110110011101000101101110000110011110111010001001011000111010000011100100001111101001101101111000001010001111100001010111010110100100110100010010000010100001110100110101010011101111110000110001011010010111101111101001010101111011100101011011110001011000111110000100111101011011100111111100110111101000111010110101010000000011011001110001011001000100111000001101010000101110100010000101100110001111111101010001111000000001001100110010100100111111100111000101010110110101111111000000100110100011000101010110010001100000010111000001010011110110010100001010010000110101001100000101001010110010101101001000001011110111101110010000001110011001000000111010001010010001100101000111010010001101110111010111100111100111000101111110111101100000000101110101110000111010101010010001111011111011100111010000100111011011100000001000010101110011101011000111111111011100101001110110001110101011000111001000111010010100110011111011110000001101000101110011100101001110010101111001110001111010011000000011100001010001111001011001000100110110000010011110111110111111001110001100000100011110001000001010101111101001001000110000111101110101000000001100110111011011111010101110001010100100100100110000101110110001110001110000000101111101100111000111000100001111011111000010010100010111010100010011111100011000000000000001001111110011110100011101100110000100010001010101011101011010000111010110111110100101111111110011101000000111010011100100000000110110101100001000010001111011000011011000111101001000101000000110111010101001111011111111111000011100001010010100010101010011010000010000111111000000001011011101001110100011110010101001101000010011001001000010110110111100011110101100010011100100111010101000000111001111111000001110111111011001010100000100111110111010010100101110111011111110110001010010100111101010010001010000111110111011000001110010000011000001110001111000100110000010110101010010111100110011101000001101001100001100010110111111100001110011011110001010101000001000001001101011110010001001101000110111011100000101001010100110011110110101000000100000101110110100011010110001001100111100010011100000110101111101001000101010010001100101000111110011011101011100110101011100110010100110110010110001000011001111110111100111110011101111101100111011110001111111110010001000100001010010001110100001001011101001110101011111111000000100010001010001110101101100000110111100100001100011001111101110100110001010001110000110000111011011110011100110111010101010100110111010101101100101011001001011001010011101100110101110111111000110101010011101010010000111000100110011111100001100010110100000010100111000110000011011001011001110001001110111101010010100111010110111011101100001011000000000101101100010111110101010101100011010101000011001001110100111100110100000110000001111110010000101110000010100000111100011101010011111000110000101000111100111101101000110110011110000101110000001100110000101110010001000110001100010010011011001101111010100101010110010111111110110010011101100100101010110100100101110001100011011110111001010101101110010101111000110111010111011010001011010000111111011110000010010101011001000001001001011101000111000011011011000010001111000001101001100101110111010000111111000011101010101001000111001000010010101000101100001001111011101001001110001110111111100001110001100111001000101100101010000100001011111010011110011101110011011010100010000000110001111101110111000111100000000110000110010100101000101000001111000000110000001101100100011111010000000110101000100101101100011111100000011000000100110101001101111101111010010100100010100111100011110011010000101011001111001101111000101100011010100110100010010110100110001110100011000011110100011010111001100100111010010000110111000100100111000100100110101000011110000000100011110011001110011100000111100100110110100000111011111000000100100000111011001100010010101110010011110111000101001101101111101000111101101010001101101000100100100011010000111100001010011101011001000000010100110111100100101100110001011111001101101001101100100000011110001111100010110010011010000001110010010111001110101111000101110001001011010110000000011001110111110101101100101101101101010010010001010000001101011111000000001011011101100111010100010100110001010111001011110000111001111111001111100000101011111111111000101111001111100111110101110111110100000010001110001101001110111011011011011100001110011110010001111101100101100111111001100101001101001110100100001100101101101101000011101001001001011100000100000111101000010100010000010101010011110000110001100101011101110111101011101101111010111100001000101111001110110011001110100011110111001111110101100010000101100001111111000000111101111101010001000110110011110111101101001111110101010001101101100001000000001111000000110010011111001010011000010100011000001001101011100010110000111110001001011101001001111000001000000000110011000001110110000101110001100110001101111111111010001110110011011111011101101001001000000100001101110010010001111100110101100111110100010001111111111000011000011101111111110011000111110110100110101100111010011011110010001110000110101001101110001111100001110001101110001101101001101100100100010011010101010001111101000101100101011111111001110000000010101001010010000010110110101111000101001101100111000101110101001111011000010101011011000100000101010010101000110000010001010111101010000111101101110101001111111110100000000110111100100010100101111011100111010101000100110110010011010000010110110111011011001001011111011111010000011001010100111110001101101010110110110101011001110100001110100010111011101011101100101110001110010101101010010011000010111001100011001011101101101111111110010011001101010010100111011010111111101000111110000011111101101001011000000000111110010100110111000100110000100011011001111001000000000010111110001101011011100110011011100001110111110011011000000010111110110001000100001000110000110110001001011010101011101000011010001011111101011111100011101110101110101111000110010010101110001111110000111110101100110101101101110001001110010010000100111000000100111100001110100110101001011010000001010010000101101100110100000100101011001000000000000111111100011110010001110111011011001111010100110100110111010111101110111100001110110101111001001111001100000000101000100100110011111011000111110000000010110101111011001111010001100011011100110001010111000110010110011111000100001111100101010001001011100010100110000001111101010100010001110110101101110101000110100101000100001100011111111110100000011110100000101101011100100000100111101000010101101000001010000010110101000000001111010100100101101010001010000011010111010010100101011010011110100110101101101000100100000000100100000110001100000110110010110101010010011000010110000101000010001010101011010111000000100010000111110101010011010110000011000001000110001011111000001111111101101010010111101111010010100111101100001001001000001100010011000100000110101000110100001111100111111011111011001001111110111010111110011111111110001110100111010000011001000000110010011010011110000111011010100011011000100011100100110010001110111000000100111110011001100101000011111110110100001110110000001111000011001000001001111010110011010010011101101000010011111100100000100100011100010100101010000000101010001111101001101001011010010000111101100001101000001100001101101100001101000111011010100111110011011000101001010110011011000100011011100010101110101110011111000111100101001001010010000000100010000011011101011010010010000110101000110001010100110000011000110010110111001001000101001101001011111110001010101000100111001010000101100001111011011000011100010010100111111111010100011111010001011011010101011101101100110010011001001110101101100111110100100011001100001000010100001010101000010000101111101001000110111001101101001000000100101101000111100001001010001010111110000001110000001000110101000101101011100100010011110110111010101011001100000110011000110111001111010011110011001001110100000101001011110011011100001101011111100101010101010100010101001101010011000011111101100101010101001000011101100011011101001010110110111110011001110101111100000011011100001000110000010001110000011101101101011101000111111010000101100101101100000101111101110000100110010111011001100110010010011001111110100001011010100010110101010000001011010001001111110101000111000101110100100010111001011001100011000001001000100100101111001001001000111110111011011100010111100001010001100011100001000000101111000111101100111001111011111111011000011110010101000001000110101000011000010100101110010000000100001000001000011101100011111010100111110101000011011101100101000010010000011011000110000010001000011011110001010101110011010001011010100011011111110100101010110010111111000100010100000010110011100100110000000111010100010011000101010001110110000111100011110010110011001000011111101000011110110000111110100011110010101101011110010110111111000110000001001101000101010111011010010111101110001110010111111100011101111000010111001101110100101111100100100100001101010000100110110010010011011110010111101111111100101110101101001111110011000000000011100001001100110001111101010001100100101100010011111001011100000101000011000010111000010110000100101110011100000101101000100101001100110110000010010100100101110101100011110011111011010101100001001110110101111111001100011100011101110010110001100100011100110110101001111010000101001111011100001001100101000111101000000101010101000001001110111101100001010101000010101011110110001111100110000111100000111001111111100110110100101001100001001110011010111111011110111101111110011101111011101001111101000010100110111000011111000010001101111010101110010100111110111101011000100001100100010001001100111010111111010010100010101110001100000110010011010101010001100111110010010101101010010011011011000010111010100010000000111101100011010011001111110100111001110110110110110011110111001101101011010010110111000100110010010110000000000101001110111000101011110010001110101101000010101100000011111111010011011101111000110110101010010101100100000101110101101111010100111001010111111111110100110000010000011111110110000001101001011001011010110001001100001111111110001111101010100011110011010110101000111111100101101111100001110100000111110111001101011010110110001100001100111111111000001011001101101001111010100111011111111111110000000101101011101110001110101111010000011100011100100001001010100011001111011010111010010010100101001000010001111110000001110001100010001011100010000111000011110100001100101010101000011101101111010010111011000001000001011011011110100101001010110011111111110110101100111010001100100010001000101010100101111011001100011101110110011010010100111111010101101111111101100110100000111100100001010011101010001110010000110010011110011111011001100101111011011100011000010111110100011101100111100011001101110011101011001101000110000111100101000011101110011100101101110100101110111011101010000101110100111100001011010111101111101101001100010010100111111001001111111101011000100110011111101011110111001001101011110001000001011010111000001001101011000010000110001110011001010010111100000111010010111000001010001011100001110110000110010101101000111111000000011000011111001001111111110000110001101101100011100010101110101110110110001010010010101111010000100010010010010100110001111001101001101010000001000100001001000110011000111001000000101110011001010100110001001111000110000100111011111010101011100111000111101011011010111111111101111100001000100001001001000011111001110100110111000000010000000110011111011001100100101010000000101110000000011100000001010101111100110001000010010011100111101000000000001001010000100000101011011111011111101001010101110001011100011110001111111011010110010011110100110010100011000001010111011011011001110100011000011101010010111110111111000111010010010110001011000101011000101001010111011001111011001011001100110111111101110010101010001011010001100010111111100000111111010000001011011001001000111000110010110001000001000001011011100100111110110100011011010001011110010101011110100010001111011100001010100101111011101001001001110010100111001000101010010001000100010000011110011100010111010110111101110101111101101011000111101111111001100111100111111101010010010010000100110101011101110011011101101110001110001001010010100010101011110011011011111010111110000010011111101010000101001100000101111101111101111001100001110000010001100101101100111101101000010000101110001111010001100001100001101101010010110011010010110011100101011001111110110101001101110111100111110010000101001001001001110000000011110100001101110101000101001111001111101111000101001011110001100010000001111010011010101000110110000010100001011001010011111101010111110101000001110110001111100110100001001010111110100100001010000110110001011110011011110000000110111111101111000000101100001001001000111010111001100111010011101011010001001100110001011010001100010001110001111100000110011100010011100100101101100010100011111100100100100100010011011000011011011110101111010000101011001111001010000010100110100011011100000000100011111101000100011100110100100101010010010101110110110110000001001000001100011011111010100000001000100100001111010010100001000001100111101100011101010000001110100110111011100101010010111110010001100111100010001110101011000101100101101010001010010000110100011001100100101101111110110010110101010010000101011011111010110100100111000101010101101101110000100001110010101111110110000000101110010000100011110101110101111010010111100011110100011000101011000000000000101100010100000100100100110000010010110110011100110110011100001101001000101100101000010000010101000101011000100000110100010100111111100101111011011010010110110011011110101101101111010011010000001110111101011101111011110101100001000110111011110111010110101010100010110101010001101101111101000011111011100101001110000101111111100011111000000111111100101100001000100110100110000001000000111100101100010101100000001100101001101010100111101000000111111011100011111010000011111110110011011000010110100111001110111111001101001101001001101010101111101110100011111010101010000101111110001111000110000101101101010101001100110101100111101001000010011001100101011101001001001101010111001101010111000000110100010010010010001011110000001111010101001000100010011011010110111111111111110001010100110111011010010001111111110000010001001010101000110101000000101110001101001110000101000101110000000000101111001110000101100110001000111111100010001010100100000010000111111101111111011101111110100001100111010010010110001100111001111111100110000001011101111100001010110001000100100110100101101110000010111111010111000100101110000110110011001101110001100101101000110001000101010101010000010110111110010111101001011100110011111110001111011001001011100000101110101000000001100100011110000001101000000100001100011011011101010000101100111000100100011110101010110011000001110111000010000101010011100100011100111011011110101111001101011010011000001001010111001000001100111101110000011001000111011010111101100110100110101011001000011010111001011100100110001011101100100110100010001100011100110111110110000100010111010101110010010000111101000000101110101101011100010111101101101001111100000110010111110011010001000110110000111100011111000110101100001011011000010000001011011000110000101111010101101001110110010101011110110101011111010001000100010110010001010110101101010000010100000110000111011101101101100110000000111101011011110000000101000000010001110010111010101110001100101101100010000110010111011100010100001111101011001111100101011001101000010101000111110101010010001001010001010010111100110011111101011011100010000010100110000101101110110111101110101110011011101000000101100010111101111001011100100001000110000000000011001111101001111101010001010001101010011111101101000010000101101111100110110110011001010010111010000111010011000000100001111010000111011010010101100000001110111111000110011010011000101111001010000111001010101100001011110000100111101110011110100010001000100101001010111111111011101100100110000011110010010110100001101010000000000000110110110111000110001001010001101100100011000110101011010011101001010111011001010001001010111011100111110110111011010010000110000100010010101000100110010011001111111100000011010110011011100111011000111011110010100010001101011001110001100110110111100110001010011110110110010011010100101100110110111001010110101110100001101100011100110111011110111100111101100110010001111000111101001001111101111001011011100010011110010010110111100100111010111010101010111001010111101001010010100010111011110010100001001000111001111001011000000011101100100101000101011011001100001011111010110110101111111001011100111101110010111101010110110101011001001110011010000010011000110001101011001000101110111011011000000001110001011101001010111001000010000101011001010110110010010011100111000111101100001010001010110001001001100110111100001011011110000011011011011011111011100010010010010001000000011111111011011011001100100001101111110010101110101011000000101001100010001100111001000111101010111010100100010011011000110000001010110111011001000100011000011011011101101100111001010000110010000101000101110001100110010010111100111101111001101011100001001101000101001111111101011100101100001000101001010111111000001110010110011010011110011000101100101111000010101000110101000010010110011110111011110110100001010101001001011100011100000100101110100101100100110101011110110101001010011000101101110000110000110001100001100010111100110101001100010111110111110100111011001011101011000011110100010110000101000100100000001011100001010110000001011111100100110110001110011100111001000011001101010110001010101101000001010010011100011010100101010000101010101001000101100110001011001101000100000000110111100101001111100011100000011101010000101001111001000110010001100000011000010110011000001011010011111110111101101001110011010010101001011100001000101110110100110001110001011101101111101001000111100010101011101010011011110110100111101110110000101110111010110000101001010101010110101111101101100010100101010010010010001000010101110111001001100011110110011110101000111011110010000011100111111101101111101101111100000111111101010001100001010001010100110000010010011100010000001100101011111000100101000000101100001011010110110110111110001010110010111110010110101001101011011110111011111110111010010111010010001101101110000100010100100111101010011101010011000110000001001111111011001011010111100111001110010100110001001011110011100110001100000100001100110010110010101100011111000110000010011001011001000101011111111011001110100111010100000001111011100010111011011110101100001001011001000111010011000100010001111000110100001101000100010010100010110000110001010101010010000110010111110000011010001111101011111101101010101010111011100101010111101110101111100100011000111100101100000001110101000000100110101011000001011011111011000010101101011010000001001111011100101110101001111111100011110111110001001000010100100001001010111000111101101001000010001111100101111111011001011000011110111011101000101100001100111001111010001001110111110110011011111111100000101111001101110100011111011000101101010101000100011011000110100101001101100110000110001110001011100100000001101011001100101011001111001101111001010001110110011000111001111110111011111010100000111101111111010110101011010010101011011001110110001001000000011011100011101100001010111100011110011110101000000001111011101100100001111011101111000100011100000001001110111110111110101110101010001101011101111111100100000100111000001110010001001000000110000000101100000100011100111100111100111000111000111011100011111101101111010011000001010000011100001001101011011011111111011000100010100011011010101000000111011110000110011101011111100111010111001011011101001011110011001010110111100100000100001111011011111000110001110110110111010010100110000110011111001010111001101011011101010011011111100101111111001110100101111111110000001111001001101100000101011010110111100100111001101010101110010110001011010110010110001010000111000000101000010011101001100001100101111100111100010111011100101100010100110111111111010000101001100100000111001011101011111000111100111111101111110010001000000001101010111010001100011100001100110000111001101010000001111111101011000010011011111100011110100000001111000111001010101010001110000100111101010111101100010000110101001101100100111001001110000101100000100011000011101010000000101110100101111100000100010010000110101111111011110110011000000111001111111001010101100110110101100100011100010010010011010011000100110111110010100010000101011010011110010101010011110000101000111101111100011100011111001011010000000010101011001101000101010101101011001111010011111100001100001101010001011101010010110111111000110111010000100101110011101000101111101110100101001100011110001100101101111111010101110001101111011110111001110110110011000011110101110111101010011110110110111011001001110111001110100011000010101000110100101001001110010001100100101111101101100000000100100111110010011101011100111010100001011001100110110001010100111100010100100010101111101110001010111011001100000010100011110001011111111111011101101111000100000111100001010111100100001010000010100000101010001111101100101101011110001000001111110000101001101110001111010100111010000011111001111010110010011110011001001100010110001011010000101110000010111010110111001011001101000011100011010110001111101001110110100010010000100000001110110011001010011010100011001101110001011110000110101011110011110100010001110000010001011111000111001010011011100000100101111111001101110110111110001100010101000000010011010110001100110010011011001100101001111101110111010000011100010101100110011101001101100000101001101110101101011111111001110100110000010010101101011101010111001110110000101101011011110011001111111110001111001101010011010011010111101001111110001101101001100111000010101111101000100111011011010011010100000010101011111110010001010101111100110000110100101001101000010010010000100001001010000001111110111101001111111000001111100010100111101001000110101111110000001100000101011110011101001100010001111010000001000011111011011110111011001000010011101011011101010000100001001100001001101010111100100100001000010110111111001011010100100100110001111100100110010101110111001010101001001011101100100001110000010101101001010001110010000100101111001101101010001011011000111001011000100011110011111000011011101011100010100011111110011001111111100111010101001101100101011001111010100011100100011101001111001100100000010000110010001101111110000111111110010110001111111010001100000110010111010101001100101001000111101011101001001010110010111011001001100010100110010110110011000000110110000010011101010011100101011001110111010101101010100111100010001000001110001010001010011001010001010110111000100111000001001100100110001001000010100011010000001001000000101110110010111000001001100111101101101101011100000010100001000111011101111110101001101100100101100000011001010101101010100010100101010010011001000000111110000110011011011111000010110110001000001010101111101011011101100100000011011110100011011101010110101100110010110110101001010101010010001100011001011010001010000011110001100110010111001011100100000000010111100101110000100100100000110111101110100110100010110111101001001010100110000001100100011010110011100100010011111010110101010100110010011010011111100111000110000111000001010001000010001110011111111001001100111110111010110111110010010000011101011011010110011100100110000000010001111111011100001111010111110101011110101101100000111000010010111010000111001010011000011010011100010000001010000011001101100001111100100111101101010010010110011001111100101111001110000010110110110111110011011110110110000101100100100000011110001011000111000111010010010010001011011010010110110100111010010110010011101101010011000010101100111111101110010010101111110000111000001010101110001001100110111101111110011100001110110111101000011101011001001011101011001110010010011011110011101000100101010001001100010011011110101000110111110100011111001001011101100010000011111101111110101111111011011010110010111101110000111101101100000001110010101101110000111011000111111010111000010111100111001111110000001101010110101001101100111000100110100110111100000100101110010101011011101001000101101101000101101001100010010101110111100000011001000111101110011011100001011000101101001010011010001010110000111010111110101011110011110111100101100110000001111111101100100011101100010001110101001101111000010101001111100100000000010111100001111101000101011100111010001110110110110010111000011001101001000000111110010001001000010110001101110001100111110100010110110000010010011000000101011000011011000001011101000111001110011101100001011101100111101111011001011011111010000010010000011001100000011001010100110001111000010110000001000001110111110011010110110000100100101100011110110010110001011011010100000110010011111010011110111111000111000111010101100110010010101101010000001110110111111000100011000101011111100010010100001000001100011100000011010010100100000111100101100010100010111000011001001100010100101100011101111100011010100100011001101101110110100001001001011101000101101101001011100111100000100000110100110010100101000110111110000000110111110001001000011000110011010001110101000110101010011010001010100110101010001111011100110101111000110011011100011011010111000100110101001011111110100100110000111001101101010110011011100011110101011011001000000110010101000010011011000001101111100100010010001000101110110110001111010001011000111010010100010011100011101011111101111111100000001111100001001100000001100000011101101101001111010100111111000101100011100010110000101111111010100110000100001011010000011101011100011100101010111111000111010100110011110110101001000011001111100001110100101111001111001010000100110100010100100001111111011111011100110100001000010111111010101110110010111100100101101001111101001001010010011011010000101000001011001000000000001011100100001110010000110110100110000100110001101101101001000110100101101000010111101101100000010100100010011111101110000011110001101110011110010000011000101001111011011010101010010010001110101011111011010011000001000010101110000010011111001111110011011101011110011000100001000001011110001111101011101101100001010010110100111110001110100110101011110011010101100111100010010011010100111010100001010001000010100100001011110011101010001101100000101101001111001001110100010001000101101011110000001011101011100010101100011001000010000011110011110000011000100001011101101001110011100001101101010000010001111110111010101110101111110110000111100010010010001101010000111111100001110000111111110100100001000000000010111100001111010110011111010101001010010000010101001011110010101010111010011100110101000001110111100101101101011010110110110001110010000101000100011110100000001101010000101100010111010101001111010111011100111111110011011111000100101100001100010101011000010101110100100101001001011111001111111010111001000100110100110101000101110111000100011000000100111100100100011000101101110101010100001010110111110010010001010101000011000001011000010001011001101010010000100011000000000000110001010101111010000001100101110101001110010100111010111111000001110010010111000111100011101010001101100110110000011001110101110000100111100100000000010110101000010001100011000111111001100000001101111110110101100011000100010100001110010110110001111111111001001011110110000001110101001101010001101110000011001110110111101101010110000000001011011110011101001000110011000011111010100100100111101010111001011011010010010100000001111111110000100111001001011101010110110011111010011000100111100001111011010011011001000001110001101010100111101101100100101000001010110001111110001100000101000101101101011100111100100100011010110110000110111010010000101111110111110101101000010010010111111011101011100100011111010000000010101101110011100011111110000100010011110010010000111101101110100011110101010001101001110010110110010011011011101011010100000011001000001101101100101001010000001101001011100101011111101010000101000010011100001110111010010111001101100001001111100000111001001100101101110110111111100111111100101011011010100100110011111001011010011000000011010110010100000111001100000111101110111111001010111001110111010111100011101111111010111100011000011111100011110101001010110011101001001110101111100111101001000101000000001001000001100111010110000001001100111111000010011001101011111001011111000110001001010000010010101111110101100100011000011001110111111101100011001111001010100110100110100010100000000010010011111110001010010001110000100011101100101010001001111010101010011111110011111110101100010110111000110011010010101111000110000111100011110001011111011111110101010100010101110111110010000101111010110000100011010000011101110111000000011011011100111011100111111010101001111001011110110010010010011010000111001011000001010000100000111011001001011100101011101010011010111010000100000001100011000000010011110101101010110110001100111011010111000110010001101101001001100011100001100010000000101001001100010010100010100110110100110110010001111101000011111010011100100000011011000000001000011001100101000001001110100001101101010000111000110101001101101010101001010111001111011000010010111000110100110100110100100110100011111011111011101100110001011100100000001110000000001110010101110110111010101111001111000011111111110111000111001101001011111010011011110110101000010101100100000000011110100000011000001000001000011010100111010011010010001010001110111011011000101010001011001010011111010100100111011010011110001101011110111100110010010100001010011001010000100001101111010010000000011100001110100001110011011011001111000100111100011001001000010011000001110001111010011001111100010010101111000110011010101000100101011001010100011101110001000100001100000000001111011011000011100101010000010001000000111111111011000111010101111110110100001011001111010001110011110100101101110110100111011000000111110111100010110100111000011100100100001000010100010010010100111100100101011010101010111110011011011101101011101011010001110011101101110101010010100000001011100011101100110110011110110100000100000011010000001101001110110001100101001000100001011111000111111111000001110111011100110110011110111011101111000010000010100100011011100111110100110111011100100110000110111101001011001011001101011110101000010011111101001000011001000010110101001101101111100111101010100100101011100110110000011101101110100011111001110000000111000010011111101011000101111011010001110001001111111110011111011000101111000011100111101011101000100110011101000001100110011101000110010011001001011110101111101010100100110101000111100110101101001011000010000100100011100110101111101110110011001010111110100101100111000010111000100001000001111001100001100110010000111100011101010111010011100100111011010111111011110100100110010110101011011001100000001100001101010011110000001010100101100100101110100111000001111001101111111110001010110011100001000101000100010001010000110011000011011101000011011110110111011010010001110001010000110001111101110000111101100000010110010000110010011100011100100100111011100010001011110100001111000111011111101110110010110000111010100101101001111010001000011110011101011100111111110011001001110001010111011101110110010101010010010100110101111011000110010010000101111001111101101100111100100010011000011101010111111001111110000011100111100100001011110110001111110100110010100011011011000111011000001111001001100011010100101001110110011111001101101111010111000011010011011110101000001011100101001001100100001110101000101001010110011010001011100011100110100110011110101100001101110111011010011101101010111000110101111100000010000011101101000001010000011110001101111000101100110001000010101001000100001010101110111101000000111000111111011000011110100100000101111010011111101110010001110101110101101011101111010101111101110001000010000001101010010111011011011010000010101001100110001110110001111101111001010011100101111111101000011000111110101000001110001110001010100000010111111111111000001010001001111101010010111101111101110000011010011101111101010010100101010111101001111011101111100010011110110111000000000111011100000000011000101100000000101111011001001000110110101101010100111011110100011001001110111011001111011100110000000101101101011101010101100111010101101100111111011111100111100101001010000011000110011000101010110111000010110111011110101011110000101001011101100101100000011011010101100001101011001100100111001100010110001001010100111001100001000100011100111001001110001001100010011110100100100111110110101000100100110011001110100010111110110010001111010001001100001010011000111100010011001011110101001111010010110011101101100110110001101111000011100111000010001100110011000000000011010011011010011000010000100010100110000010001010101010110111000001110010110111011011000011110000000001100101010011110011011110111011011100010011011010111101111010011000100111111000100110000111111001000001110011000101011100110100110001011011000101001101110010111010101011101110101001001011101100000011001101111111001010101101110101010010000101000010000000110010011101001101000101000101111110000100000001010101100111001111000111001101110001111100010111111001110101111000010111010101100101100111001001010101010110101000001001001000101010100110101101011110000111011101000011110010101011100100011111110110110111000010111001101001000110011001001110011111100010101110000001010100011011110011101001001000111111110100010010110111000001010111110110101110010001000111101010000110100110011111001010010101010101110111001000011000111110011011100110000100011110101101011111100010111100011111110111111100111101110001100100001011010101110011000011111100011001101110100100000110001100100000001001011101001100011110101110011111011001010010000110001110010000110101000000011000000101010000100110011101001101110111010110111111010100010000111111011110001110001111101101011101010011110001110011101111001000001011111111100101010100011011001101100101101101110001101100011001000010111100001111011100001001000000101011100101100011011110011110001001111011111100011110100100100101100011110001100110000101000110101011110000000100101011100101010000011001111000101011010001110100110110001101000100000110111010100010110111111111010000110010110010110010001011100111111010001110100001111101001000110001100010100010010010010110010100011000000111110110000010110010100010011110000010010000000111000011001100100001010111010000111100000110100011111110110010111010100000010100001110110100010001101100011000000110011000011010101000111111100000001011011110110000101100110101110011111111001011011101010110110110101010001001110110011101011111101100000111011111011110011011111000100010101010101110001101000100011100011001111001100100010100000111101111000011011011101101100101000100001011010000011011111011010111100111001011000001011101001110010000110101110110110101110101101100110010111110011001100000110000010010100001111110000010011010011111101011010101101011111101001010100000110010010000000000011010010111111111000110101011011110101000011110101001110110100111011100100110101111000101011111000110101110110001101000010000111010010001010011101010010100100000010101011001010100001001011010100011000000101011100111010000000000010010001111011010100110010111011101111001111010100100111111110100101101010100101101110001101110001001100001101101101111110011000100000011101100000010111110110111110110110000111101000111001111000011011111001011000010011000100100011010100001010011111110010101011100010001000010111010110000001110010000000101100001010000010000100111110000110001010110001100011101110011110011000011101100011101011011101001111100000100001010001000000010111101001111000001011011000000001010100111111101100110111111110111001011001000111111100101100011001100000001101101111010000101000010010111110111111000100100100000010100011000011111001110001001100000101001001101110000101011101100010010111100011000010111010110011000110010001001001000001010100001101100101001000000110100110111110000010010000110101011001101010101101101111010011001100100001000000101100101100110001000000000110010110101010110010100000001110010001001101110000001111111001111000101001000110111111111111100101000000111100011101010101010010110111111001000010000110000111000101001101001010110010011000011100001110010010101011001111111000010010011000110101101010011011011011111011011100011100100100011110101000111101101000010111001101011010001110101010001111000101011111100011001110110010011010010110001110001111010001000110111100001100110101011010011100000001010011111010011011000111101101000010001101000001010001001001101110011010001101001110010011001101111111001110110011011000100100001001001111100010010110101101100001010100100111101001101011101100111100001111110111010111100110011011101101001110010011111010001101110110111011111110111000010101111000110011001100001000010101101110100111111110101000100101001000100100101001000001010101000110110100110111010001110110011010110101100000001001010000111001011010111110101010000000001101110011110011100000010001010010111011101010100011101100000100100001101110011110011111101001100111000100101100101111011010011001111100000001010110000001111000110111010011000001101001101011101111101001111110101111101011111001000101011110001001011010101000100000001001010110000110010010011010000100111101110110011011100110011001100110011110100001011010100100010010101111100111011101110100100101100001100110110111101111011111101001011011101111001110111111111100100110000111001111101001110101011110100100100011110110110001111110100100110011101111011110001111011100011000010011111101011111010110001101101111010111110000110011110111100001001000010101100101010011001100011100001100010000011010100010111100101010010011000011000100011010110100101010011010000110110100011011111110101000001001001001000101001001101011011010100000111101000110010100110010000010111101110011000100011110011001100101011111011110010011111111100110001100111001010101100111000011000111001001001001100001001101111111100100000001100100110111101000010010101101001100010011010001010010001100110000011010101010111100011010001010100100101111111001101101100001110010001001100011110111010000000111011011101101111101000101000110111100101000111101110110001010010100010000110001010000100000110001101011101011101010010110001111001011111011110110010111010001000101100110000100011101000101001011100011100000010011110111000000111101010100010011111001110101001000010110111001111010110101110100000011101011100110110000100110101101010011011011101000010011111101001000111101011000011100100111011001110000111001111011101011111001010010110001010001110111000111100110100110011001110111101111001001110000111011101011111101100011000111011010010010001001111111110000011000001110001001100010111010100101111101101001001000001011000101100110011010000100100000011110010110011100111000001101110001101101011101101111011011110011011101010100000111011011110110000110011110110011000010101000111111001101011010000101011010101000001101001000101001000110101001111000001010011011011111001110001010110000000001000000010010100110010001101000111111010100000010101111011110000111111100100101111101000110011011111100000000011000111101010001100100001100000101100010010100011000011110100011111100101101000110000110100110011001101000010101101001010111010010101001110011010010001110101000000010111110101110100110000001111001001001110011011010101111000110000100010101110011101111101010000110010100001010100111100001000001001100001010011100011110110111101010100011010111010000010011010111110000001001100000010001110010110110010001111000010111001001101100000110011001111100111111101111001010101010101100011110100100001111000100010100011100100100010000100000000000010100111000101110100101100011111000001100000001001000101110110111010110100110101100001010010001101011011001000111001100000101010111011011101101001101000010111100010010011001100000101011001101000100011110010100011110111111100001010011101101000111110011111010111111110101001010100111010010101010000100001000101111110111000100100110110011110110011001001100111110110001011011011111111110111110010111001011110011000000001100010000000011101100001001010100011011111101101111010011001111101010100001010000000111110111011010100100010000100111101010011100011010101101111100010110001110101010111111110010100011101000101011001010000101100111001110010010111011000011110100010001000001110101000101011100011000001010111101011010011000000000110000001001001110100010000100100110101110010001110010101100011001110101110001111001110110101101110101100101010011011011011001101010100110111000010000000100100011011100010110110101110100100110101010100100110110001111111010010100110100010111001010000100101011110110001001100010000101011011101110001001001000100101101110110111111101101011000000001001100001011100001101011011000110001001100001100100110011101100111101101110000000100001000101010000111110010010001111101111110101000101101100001101011010101001100010011110100101010011111110101110011010111111101111101000011101001101011000100000100000110110100110110001011011111100000110101010010111111100011000000001100111111101111000000010111011011000110001110110111111010001101111010011111010010010100010111101100111111001111110001010000111110101000100101010010000010000100010101100110001110111000110100111101111101110000010000011001110010011011011010011101100110011111010010001001010101001010011001110011101000001110000111101001100111110000111011010010010000111010101001010101001000110000010110110010100110011001110111100010000101001101100001000010010100100001010000010001011011000010001100100010001010000101111111101100101010000110010000100101000000011011110110010100011100101100011001101111000111011111011001100111011111010010000100000001111001010100101100100001100000010001000010110101011011011101001101110101110101100111100110110100000100010111011110100010000000000010101010000000000000011111110010100011001001000100111111011110010000000110100010010110110001101111101100001010111110000010101101000111111001101101000101110111101000001111100010111101010011100010101001011110011010111110010110100000100000000111011100010111011101000011110001001011111110101011010011100001111101001000110011010000110110101001101100010101011000001110000010011100010001100100100111110111101110100100111000001111111001111010010000100010000000101101111101100010001011111000000101100110001110011000110110001101011100011000110001010010001111000010111001010110001110111100010001011101101111001111001110101101001010100001001110000110011101001000001001011001011010000101010000011101100100001100101101010010000000110100000101101111000010110101010111100001010110101100101001011111010011000100010110011110110010100101001010001010000000000111001001101011000011110001110101000010101111001011010110100000010110010001101110100110111011101100001111100101000101101111110110000001011011111010100111010011101010110000110111110011110000101111001110110101000101101011001011100110011100101010110001011100100110011111010110011011011100111001011000100000001001101111001001100011100011001010110010011111010001010000001111001111001101011101101100011101011011000111000111110001000100000011101001100100101101100101111011000100000000110100110010011111101010001101110101111111011110000101100011100000010001001111100101001001110100110100111011101010101101011111100101111001010110111010101110010111101010000100100000010001110011000001101010010110001001000001101011101011000110010100111010001101011111101110010011111101100110110011011001001111000110010100011101100000111000001100101001110101101100101001001101100111101000001101001001000010010001011000000000011110011001110100010010001100001100111001101110110011010001110110100011001010101111011101101010001100000000011110000010101010111100110100111010101111001100000001110110111011011000100101100111001101010000000100000011111001000100000010011001111111011001010001110010101001100100100000111101010011001100100111000110000010001110100000101000100111011101111100010011011000000110101100011100111101110101101101111010010100101111000101110110110100000110001110101010110100001011110110000101011001101001100110101100010010111100111101110010010101111100111110010111100000101111101111010010010110100101110111101110000010000000010100101111010001010011011111101101010001110001110101111110111100101111011011111101011011000011101011110011101110010011010101010111011001101011100111100001110110110110100011100101101100011001001101011111101010011100000001110110100011001111001101100001110010100010111000001100100001100011010101110010010110011101000000011001000001100011010111001101111001010111011110000000011001010001011101110000111010111001111000001011010010001001010111011000000111011100011110000010000010110101100111100100100000001001011111001100111000100010010100000101010000010100010100101011110010110100010001110010111101111010100010010011011110011101011010100101000011010000101100100111100111000001010001101110011110100001011011011011111001111010110010001001000111001011100000100111011111011110111001011100110001011000010000011001100111010000001011000000011101101010110000111110101111110000110001000111010111101110000000001001010101011000010011101101011010001100010101000010011111000000101110001100111110010111100000011100100110100100000100011011100000111110011100000010100011011001110011010001000110010000110010000011011110001000111001010000111111011010111110011000000110101101001111111010011101111110000010100101111001111010100010011110001100001100100100111101010010001111111101100101001110011110001101110000001000111100110100100111110100011100011001110110001011000010010001100011111010101000011111011011010110001110000011100110111100111111100001001101000101101111111000101000110110010000110100010010000001001011001100111111010000000010100000010010110000101000001010011100111010010110001011101000001100011000000111001110001111100000110111010010111101100001101000010111011101001001011000101000110001100111011111111011110111101110010011101011111101110110110101100001110001011111001000010001101110011101101101100010100111001001010010101110111111000011011110011011001101010001110101011000011110101100110110010011100010110111111111101100101110100110010100101001000110001111001100010011001111000010001000011000110010111101011111110110001101100111111111000001011111000000101001001101010011000010100000001001010100101101010111010000000111101011000010011011101000001110110011000011011100000100010110011100100011100101101010111000011111000111010100001111000010011101001100110110001111000001110111011101011001100110111001000001110001000011111111110111000000100010110101011100111011101101010101010101001000000000001001100111100011011101001111001010111100001100111100110000000100001111011110010010001111010111011101010010110000000000110000011011010001100000100110000110100011011100011100110111101100101111111110000001101011100101011111100110010110011000111011101001100110010100101100011011100101010110110100000110101010110110101011101010101000010111110010000010011011000100111000111010101100010001010100110001010101011110101101010101110111001010110011110001101000010011010111000001010000010111000100111101111011100001101000110011001010011111001001111011010010011000000000111110100101011101100111101001110111010001100101000001110010111010101000110111001100111100011001111101111101101101101111111010111011011001111011011101101011110100100101011011101110111011100011100000000110010001000101000101100010111011100010000110111001001010010000010011010110011101001100111010001011100100001100001101111100100011001101010001111101101000101011110111011111011000101010001100011110100101110000011110100110010000101010011000100011000100011110011010110011100001000101100011101001111000100100100011000110001001011101001000111101010010000011010111100000001100011100100010100110111100001001110101111100000001110111110111001000110001100001100010111011110000000011101110000100010111100111101101111000111000001011100100011000101111011111110011101000000111001100001010100001010011111010000111000100011010101100110010111000010000101011110100110010001111110010110010000000000011000001000011110000010010101101111001101100010010100000011110110110111101011100101011100011101101111000011111100111100010111011101101011010100001010110000110110101000001000010001101010111100000100001110111011011010110001001111011110000110111011110110001000001010101110110110011100101111110110110101000110100011111101101110010111100111011111111111100001101010111011110011010010111101110011011000011101010010000110000001110000010001110101010100101110110100101011110001111101100100000110101000001101011101000101001010110101011100011000111111111010010110101000010000100001000000011101010010010011111010101011100001001110101110011100010010001110010010111100010111110101100001110111000000011001111010011010000110001110011011000111000000000101000110001111110010110100000000011110100011101001000100110110011101011010110011100000011011110101000100010001011000010011110100010110100110111001011101111100000100100001100000001011001111110111010100000100100000000011110000111100101100101101110011111110110011101000001011111110000001011010101010110111001101011111111101001001111011001101101000101011100111001110011011011111110110001000101000111000000111111001011101001010001101110110000011101101111001110110011110011100100110001101010010101100011010011001010001010111100000001111011101100100110001011101101001100001011101001101011101100011011111000001110100011100001010101010000110101110110011111001111110011001110000111001001111010100011001110100110100001110011111110101011001001010100101010000101011111000001000001100101110000010100111010001011110000111000111101010101011100000110000111000100011001011010011100101010101001110110100110101000011010011101011110101101001010101110000001010101000110010100110100111111100010011111000110101101101010101101100001010101110111111001110010000001101011101110101011011110100100110010000010100111011100100000011011000010010000010101011111000111010110011010101001011010101101011110100010110110000111110111000111110111100100101011001101111001011100011101111011100000000101101100111101000000110110110001000100001000011101110000011011101000001111010110011111110111100100010111101011110010010001110101110111111101001101111101111111101100001001001100101111101010010000000000001111101100101110011001101001110010100110011001110111101110101101000000111100010101010001111010101110111011001101110010010101110100110111011000000000001100011110100101001010001000011101011111000101101000110011011101100011111111011000111101010001010001100000100000011101110010101001110101110101010010001111000011101010111010101101000110001000010101010110110011100001100011011000000001011000011100111110001101001010110010101100000110000001011010000100101111000000111000000100101101100011111101010001110110010110110010011101000100010111111011110010010110010110001111100001110111111000001000001110000011001101101001011011111000100111100010001011000100011010001101000001001100000010010110000011101001011010010000000000001011110101010000100010001000001101101010111111110001101110101101001100110011001010111011010000011000111100000000010111000000111101011111010011100001001110100111101001011100001000000011101100001000010011000010111011000110011100111100110000000010101001110010111001100010010010011110010110000110111101001011011000110100011000100111100100110111110011001010100100110010110110101001101111000011111000001001110000111111110000001101100001011010111001101011010111010100011100001000001011001011101111111001010001100011001000001101110010011111101101010010001111000011111110000010010111100001010001110001101101011001010011001110001100000101001111010001100110101010111011100000010010011111110111110011010000110000001011010000100010010111010110001101101000011110011110011001101011111100100000111100010111011111011001111011101000111001001101001010111111011000000111011111000110011111110101101110011010010101110011001010111101001100010001101010000100001111111011101111001010000100111101001101101111010001010100110110010001000100011111111111011100110000000001100001001010010100111010010011100100001111000100101111000111000101110011100101011000100011001010110100111111110111100000011100011110001010010110010101100000101110001011001000001100110011100011001011011101111000000010110010111110010111011111011101000000110000100110010010111001100000010011101100101011110010000010000110101101111111011101101111110000100001001111100111001111001011101000110001111001110001111101111001001000100111000110010000111110101101111010110100000010000000001110110101100100100111011011101011001011110001010100111010100000000011111111011110000001000010000100011001100011001000011111001100011011110010000111111001010010110000001000101101011110111000001010111001000110101110010101000000000010001100001010011100001000001010111001001011110100010001010000100010001001011001101110110111011100100010111000110011100010011001111100010101001111011101100101001101110110111001111101100101100101101001101111010101000111100101100101111110100010111111111110010100110111000001000011001011001111100000110101000010100101010110111011100100111100110010100101001000110100000101101010001010111010000010010101010001001011001011010000011100101000110110001000011000010111100001111100101010001000000001000011000011001010101100111101011100000110101111011100010011111010101101110111000010011111010000101010000011100010100011100111110101101000110101011101001011111010100101010111111010001101100010101000100000100110100110000011001111101110000100100000100000110100110110110001110101111000111000110001010011100100000010110110001000110100010001100100111010101011111101101100110011011111110100001000110001100010111010011001001011111010111011000010000100101011000100000100011000100110101011010000101011111100011010011100110000001011001110111110110100101000000111111111011001000000100111001011001010011111011011101000001110010101101000110110001001010100001010101100010010011000110011001110110001101101100010110000000011000011010111000011001000001011011110011010110000110011000010100000100010000100110111111101000010101111001101101101000001111000111100100010010110011001000011001110100110111000110101111001010001101010111101101101000001110001001010010001110010011111001110001100111011111000011111011110011101100011011110101010011011000000111001001111011001000001111110011000100010010110110000100011000000101001010000010001100010111110111110000110111110000100001111110111000001100000001011110000101001101001111001100111001100001000100000111111001110010010000010001111111101101000100100101011100100110100101100110100101101111110110101011011011001010011100011001100110001001110111111110011101011101010100100000110100110001110110010010001100001111000100111101110001010010011100010100011101011010000000010010010111000110000101011111100110101011110010111111010011111001100111111001100011100111101101010011100111000101001110111101101011111000100100001010111110111000000010000001010011000000001101000001110101010000010010110000110000110110001011101010110001101011100000100010011000010000001010011000001110110110010011010010110111000011010000111110101101101000110110110101000100011100100101000010011001010111000101010010110011110101011010011000010001111111011100011100011011111001010001011100110011010001011011101100100001011001111000110100100001011000101111010001001110000111010111101101000110110010100001111100100110111110101110111110100110010100100010011010101001111111011101100110101110101011010011000010100011111100010000100010001000111011011011101011100110011110100101001011010000011010000000010011101110100110001110100000110100111101000010000001100111101100000000011111101010101101111111110001001000011001101110001111111110100011110010100000101000000110101111101110000101000101000010111011000101000011100001111111100001100000010110000010001010110011100100000010011101101111101001110111110001111000000000001000101110011101101111011001000100000001111111000010000100001110100100101010010110001011110000111010100000011100110011001101110101111100111000010101111101100001010110100111111110000000000000101000010010011010110011010101001111100011010000110101101000001001000101011010010110000000011001111001011010001100111010100011111101010001110100010101110110100110000011000100011010110001001010010101001100010110001011110111111000101100001111101110011110101110100010001110110001001111010111000001111100110110000010101000000110011001010000100011000000011101010110000101011001000011111101111001011001001100100000011010111111011101111001101001101001110101011111010001111001100101111000010000101100101010111110001001110011000011011101111001010011111101110100001111111111010001010101100100101001010001010110001100000010101100000100011101110001011001001011111101011111011100101101000001111100001011111000101011100100110010110101100100100011000001101000010100111111101011111100110101001010110010100111111111100110000000100000011010000011010000101110010000100010111100011011110001101101101010110001111110001111111000010010000000010111010000101111000000100101001010100100101001100111011001001110111100010000011111000000100001010010010011100010110001011000111111010010001001111001000010001110011101111110101101010111111001110100001110011111100000011010110010101011001110011101011100111101001111010011011000011000111110010011101000100001111100111010011100001011010010100000010011110111010100100100101111001101101100101011010011110010100110100100110100001000010011111000111111110100000001001001100111100101111100111101010100111111101001101110010101010001011001100100010110111001011100000001111010100011011111101101100101010111001000001011011110101010001000101110110111001011011110001000110110100111001000011111110011100101110101011101000000001101001110001010000010101001011110111010001110000000100010001010000011010010111010011101011011001011101010001111000000110111100110101101000011111110100011111111011111111000001011000110011110001100111010000000000110100000101001111010011110110011111001010111011110010100011111100011010100011111001110001100011011110101010001101000011110101110100110101101101010100100110000000101001010101001110101011011101111101101011100000010001100110011101110011101100110111000110111000001001110110011110010010011101011010001000110101111110010101100010111100110110110011000111010010111101110010111101001110010000100100010001100000010011011100010011011111111100111001110011010010100101001010100101110010001100110110111100000001111101110000010100010000011001111111000000010111100001011000101011000011100010100100000000001101110101010001000000000101011111000010001110111001100010111101110000011101011101110101110010000010111101100001110100001000000010110111001101110100001100001111000111010000010111111011011111011111010110110111011001110010110010000000010011100000111100011101100101100100100100001101100001110101011001110110000000001101100001101000001010001101101001100011001111110100101011001110101101110001000100110011011111101000000101110110101111100010010011110000010111001111011010000110010011110110100110011000111001111000000111001010110101100101001100010000110100011011000110101010001011000011100101000101100011100111110111001111010000011110011111101100010101001010111000100001101100100011010100110101111110001001110010111111010000011111010001111001110100010001000000011011101111011101101011000000010111110110100010100111001110100111010000001110001110011110011000110001001001000110011010100010011111101101011001010011100000010011001011011000011101001101011100001111100101111010110110000001110111100111001011001100000101010000000100100101000010001101111110100101000100101110011100101100110001110110010011100110101001101010001101010111100010000001110101000000100110010110100000100000000011100010010110000010001010110011101110100010110010011011111011111010011110011110100111001001100000001000111000001010111001001011011010110100001010010000001010000011011001001110000011111010010000100110101101110001010010011000000101011110110100011110111111101011011010000101100110001100101100000110110000010110101000100001010101000110110100000011000101101010101101100011101000000011010011100110011101010011000001011001000111101110111000011001100010101011110010011110101000001001100000101000101001101110011101000111110000001010110101010110100010110000011101101101000001101010111010100000000000110110110100010001011101111010110000000111100011100111111011010011010001000111011100010110010010101100011011100101000111011010001111011011010000011010110101010110010100101010010010011001111000111110011001110110011110110101100000100010000100101101001010010100011111111100111000111100010000010111101001110000100101110000000010111011110110100101100010110000000001101110011001011011111111000110110110110000011001101100100000100110011101100000101111111000001000010001101000000000100100010111111000100101110111000000011011100001011111100010111111010011000110100110000110001101010110011101111110001100001000010001001111001100011001111010010100110110011101011001001001110010100110110100101111100111111101011110100111101100010010010001011000111001011010100111100100011111001000011001101011000001110010011111001110111000010000111101001000011100101010011010000110110110110111011110010010111001110010000110000101000010010110001001010010010101000101000100101111111100100001000000011100110011110110101100101100001100100110100011001011111110010100010011100011111110011101100101101110100010110011000110010011001011010111110010010110100111011011001111111101011110011101011001000100001001110001000111101110101101110010000010100000000000000001101100101111110101001100100111110111101010111000000100110000011110010000010110001001110000001011111110010011101011111100011000000101011010010011010000100101001011000110000101000101010010101101101001111110001000010001001011110000011110000000101101001101110100000010101011001011110000100110110010111100101111111111000011110011101000110111010000000010000111000100101101101010111001101000010010010011111001110011011001111011111100010011000000001100100111100010010110010101001100111011101101001000011010001111011110010011000011010011011001101100000010101001111100011110100100111111000101110000010101101011111000111001111000100001001011000010011000001001011001000111101100111111100100111111101111010000010010100111011011100100000011001101100101111010100100000000101010001111011000011111111111010101111001010111011011001111000000001110100100010010010110101000110101000100101011010100100011100101000011001001101000000100011010100100111100100100101110011000000111001101010110111011001100000000000101101101011010010010100111111100101000100001001001111001100000010011100111100101101110001100101110110101011111111001001101000011110010000010110000001100111010100101001110010101001000101010011101111101000011011011100011101101010101110110000010001111110101101110011000101111000101001100010011100111101101101111110100001101001011011001000100001111001011110000111000001001110110110110101101100101011000001101010010000001000001101100000100110010011000000110101111111011011111010111001000000011111100100100101101011010010100010100000000111011110100010111001001111101111001111010010100010000101111100011010111101001101000101110100110111100011110010001001010011001001101100011011001011010110111111011000101001011111001001000001110000010001110111000000001010010110111111100001011010111010000000110010010001000101010010011010011000111000001001010000001101100111001000000011100101000111111100101101111111100110000111110110101010011111100101000001110111010110111110000001010000001101111000111010011001111100110000101111000111101001111001010000111111101011000111000010101111000110100011110110100111101001010111100011000111101110111110100111111110000101101101000011110100011010101010101000001101001010101010101000111000000001001110011110011001000000000111100110010000101010010010000110011011100100100011011110001001110101110101001011010110011100000101100011101101010001111000001110010100011001010011011101011010010000110011101000111011010100100110110010011011001001000111011001000100110110101100100110001110010001111001001100001101111100110001110000011101001100001011100111001100011110100000101010001001110100100101111110111011000101101000011100110111110001101000001010100001101111110000001000001000110100011000011001110001010111001100011011101100000100110110111000111110100000000100100000000101110010001001011101000101001110011001110110000010101011100000101101010001000101000110000010010101101001000011000000110100001100110000011011100101110000000000111010110110000111001011101011101101011000101100100111001000001111011011111101100000110111001101001010011101111010011010101111000011111000000100011111000111000110000000111100100010100100001011100010000010001110001011111001011101111011110000110100011111100011000110011111111100010100100110011001011110010000001100001010100101100101101110010001100001011010101000110110010000001101100011001101001001010111011000000000111111100110011001110000000000010010111101001101010000000000000001001111000101111110001111000010110010001011010110001110111010010111010111100000001100001011011100110111110110110010001110101110110100111010100110000010110001100101001110000001011001110010101111100111100000100110010100101000111110101001111110010100000001100111100010000110000110101000011001000001001000011101101001011100001100111010111111111000101011001000011011111011001101000001110000100100110111000111011011110101000111110001100010000010101001011000101001000110111000110000001100111110110010101001011010000000100100100101010100010010111100111100101001110110010010111001010101011000000100100111000110010101111011111011110101000111011101110000100110101001010110100000001001001111111001001010001111000010101100100000011110111101100010100010101101001010100101110001111001111101001100110101000100100111110000110111110001100111010011000101000110001010111011111110011110100110101110100111111111011000010111100011101101101011111011101111110000110100001110010000011100110100010111111100001111000110010010001010001000111100100010010111000110010001011010110100110110001011101100111010010101111100111001100110010010000101011110101101111001101010010010010110100000111000111010000011000110001001100000111111100101010111111011010101100010111000000010110111011100101001111100011110000001100110000000101100011011110001101001100111011010000111100001110111010100010101010110000100010010001100000110100111100100000111101001110110011101000010101000111111010111110100011010110101011000100100101100100001010010100100111001001010101000111101001111100010101100001100010001110101001110010011100011001011101110001111000010110110001110110110101111100000010000110010110011010000100011101011100010100011101100001111011101101111011001101111011111000010011010101010000110101100001101100000100101001010000111000101111110000010010000001101101000011111010111110000011111011110111010110101000100001001110100101100011100101111010011010111110100011111100010101000110010111000000011001010101101001000000000101111000001111101111001011010110010010111010010101111110111001001000000111110010001101111011001010111010011100001001101010100111011111101011010011011001011100000101001000001000110100011101010011101110000110000001001110111000111110011101000111110011110110011100101101011111100001110101010100000100111111100101110010110100101001111100110111111010101000101110110001011010001011101101011100011001000110110111110011100111110000000110111111101110111100101000000011010101000001110001110001101000110011111010010000000010001101010010010111110011101011100011100001111110011001111101000011101110100010100111110111000011101100110001010011110001110000010001000100100100100011011000000011110001101011010100011011011111101000111110110110011111011101110000001001010011010100111111100000010011111110101111010000101010100110100101011111111110111000001110001110000100100010011011000111010110110100101110111000100011100101010100001110010010100110101111011011011111101001000111101001011101001100010010101000111111110110001100010101101110001100101111101100001010101011010110001000111100111001101100101101101000110101101001000110101000011010011001000100000001101110110100000011010111111110010001000111011100000111100000100100011100000110011011101011011100000110111111100000010100011101101000000010111110100010011100101110100111111110010000001101011101011000100101010000101000101111111111110011100000110010000000101010011001110100011100100111101110111010110101010100011111110101101000010101000011100111111110011110111000000011000010101000010111101010111000101001010011000110010100000110110111111100001010101100010011111011101110110111010011101100101010111100000110011011011100000110111010010101010001000111001111111101000001111001000111111110110000110100001011001011111000101000110010100001000101010101101100011001110011011111000101010010101100100001101101000000011110011011011010001011100011001101010101111111100100000100100110010111100101110110011111000100110110011001000000111000110001000101100100001111001110011110100000001010001100001110111101000001010011110110101001110110001111111110011101100110101101110000010110100010000001111011011011001011101101101101110101000011101000000011100111110100101111001010001110100010111001000010010111001001010101000000010011111001010100111110000011000010011111010110011101010011111111000010011100001101111010010110011101110100100110011110010110100011100111010111111110101100100011000011101000111001000001100100001011101100110010000101111111110001001111110011001011100101110101010010100010100010110000111001111001011110000011010011101000100110000111110100101110111011001001110010110011101000001101111110001101111011100000011011111100100101110100111101111000100000001111011000101100010001010000000010101010101011101100000100000110101110100100100110000110101111011101001011011010110101011010100110010111100100100100011101111101110101101111011110011001011101011110000111100011110011100101001011111000111010100001011111100101101101011011011010100100110011000010000111011110001000100000101000001001001110110111110101101000100101110110000110111101001000111000011100101001011101010100011101111000101101110100001001110010111100000101001110110011111011001111100111001010010010101111000100001001001010000100000011111011100110101101101001010101101111010100000010000001101110010111011110001111110100100111100101011110000001000111100101010101011011101011011110011010011011011000000110010011000111100000110100010100011001011000010010011011111010101011000100100101100100001000111101111110101100001110001110010010110101001100100010011100000010010111000100101111101010110001111101001010010011001101111001110111110011100000000100001100111100001101010101110011110110011100101110010011100001001001110000011010011110111011000000001101010101101111010110111111010111110010100110101001100100100111100101110100010111001101101101110001100111110111101111101111111110010001110010000110110010101110010000110010111000001011111000011101100111001011010000100101110000111110001110101010110101010101001111011011011111011010010101101001011010001010101000010011100110111000011100111101001010111011111111000000011111111011110000001101001100011001111000101001100111110000100011111000100101110000100011101110110000101011110110001000111100011000000110001001010111001001010011111111010001011011111100111000100001111111100001001101001111011110110000010010011010010110101011110101111011000111111000111110010110110010100111000011101001011111001101001000010110110101100101001101110011101000001001110000111111110110000101111011100000000000100001001010100110110101011010010100000101010011011010011010000110010011101001110011100011001111000011010110110111000000110110101000011111111111111010111000000011101100111110000000101010000010100110101110110100111101010111100101001101000111101100011100110001010110100101100111111000011111110010101010011100111001110001010111000001111011101000011111111001010011100101011001100101100111010111011011000100000111110000100010110100110001001010100110101111011010111011100111001111010011000101110110110011100010011101010110000100101110111000100000001010110101000010010000010100000011011010110100000010011010011000001111010100101111111100011110011100110000100001000100110111110000111111100000110111101010110111111100100111000100010000101101100001100111010111011110110110011101101100110111111001111111110111000101111101111011000100011001011111 \ No newline at end of file diff --git a/Lab3/random_text_uniform_two_point_05_distribution_codetable.bin b/Lab3/random_text_uniform_two_point_05_distribution_codetable.bin new file mode 100644 index 0000000..b2914cf --- /dev/null +++ b/Lab3/random_text_uniform_two_point_05_distribution_codetable.bin @@ -0,0 +1 @@ +{_EOF: (2, 0), '0': (2, 1), '1': (1, 1)} \ No newline at end of file diff --git a/Lab3/random_text_uniform_two_point_09_distribution.bin b/Lab3/random_text_uniform_two_point_09_distribution.bin new file mode 100644 index 0000000..c3348fb --- /dev/null +++ b/Lab3/random_text_uniform_two_point_09_distribution.bin @@ -0,0 +1 @@ +ïÿÿþîÿÿíïÿÿûÝ÷ÿû{ÿ÷Ýÿýÿÿÿßÿûÿÿïÿÿÿ¿ûÿÿÿ÷ßþÿÿÿïûûÿÿþÿÿýÿþÿþÿ÷ÿÿïÿÿÿÿÿÝÿÿÿÿþÿÿÿ»½ýÿßÿµÿÿÿÿÿÿ×ÿï÷ïï÷ÿ¿÷þßýÿßÿûÿ¿ëÿõïÿÿÿ^ýý×û¿ÿÿÿÿßÿ¿ÿÿÿ÷ÿýßë_ÿýûwþÿúÿÿÿûÿÿû¿»ÿÿýûþ¿ß×ÿ}ÿÿÿÿÿÿýï¿ÿÿßÿÿßßÿ÷þÿÿÿÿöÿ÷~ïÿõÿûÿÿ×ÿú¿ÿþÿþÿÿÿ×ÿï÷ÿþýÿÿoÿÿÛ½ÿþßþ¿ÿý®ïÿÿ¿ÿû½ÿßÿÿßÿÿÿÿÛÿß÷þýûÿýÿûÿ÷þ¿ïß¿ÿÛûÿ÷ÿïßÿ¿ÿ÷ÿÿïÿÿÿþûÿÿ÷ÿÿÿÿýÿÿýÿþ÷{ÿÿ¿ÿ¿ÿÿïÿïÿÿÿÿÿûû¿þýß¿ûÿÿÿßÿûÿÛßÛwÿþÿÿÿÿþß½ÿûÿÿþ¿û¿~ßïßý]ÛÿÿþûÿÿÿûÿÞ½÷¿ÿÿÿ¿ÿþÿÿýÿÿûÿýßÿûûÿ·ííýÿÿûïþÿÿÿÿï¿öÞ÷»þßÿÿÿþßÿnÿÿ¿ÿÿÿÿ¿¿ýÿÿÛýþÿý·ÿûWÿÿ}÷½ÿÿÿÿýßÿýßÿÿÿ÷þþ·ÿïÿÿÿþ¿ÿýÿÿïÿ_úÿõ»ïÿÿýþÿÿ¾÷ÿýíÿý¾ÿÿÿÿoÿûÿ¿ÿÿÿÿÿýÿÿÿÿ¾ÿÿ~þ¿ÿÿÿï÷÷öÿÛÿZïþÿýÿÿ÷¿ÿþÿÿÿ½ýûÿúÿÿ¯ýïÿ÷ÿûÿý·¿þÿßÿýÿÿÿÿûÿûÿþÿÿ}¯ßÿÿ_ÿ÷ú÷þÿúõÿþï÷ýÿÿ¿ÿßý¿ÿþÿÿÿýÿÿÿþ·ÿÿ¿þÝþëÿ÷þûÿÿ½ïþûÿë÷ûþößÿûû÷mýõþ¿ÿoÿÿÿßï÷ÿ÷ÿÿ¿þÿí÷ÿÿßö׿þ÷ÿõïÿÿÿ¿ÿ¿ÿÿÿÿÿÿÿÿÿ¿ÿîûÿÿ÷ÿÿþÿýïÿ÷ßÿûÿþÿÿÿÿþ×ýÖÿ÷ÿÿ¿oÿwÿßÿþÿÿÿþÿÿ¿ÿÿïÿ~ÿÿ¯ûÿÿ~ÿ÷ÿÿþÝÿþ÷ûßýþÿÿûßÞýý÷¿ÿýÿÿºÿþÿ¿ïÿßk{ÿÿ¿ÿûÿû×ÿÿ{ûÚûþÿ¿ÿûÿÿïÖÿõýÿÿßþïÿûþûÿÿ¿ß÷ÿûÿýÿÿÿ}ÿÿÿÿÿÿÿ¿¿ÿ¿ÿÿ¿¿{ÿÿÿÿû뽿ßÿîûö÷ÿ}¿ûÝÿßïýÿýëÿÿÿïÿÿÿ÷ïÿÿÿþÿÿÿïûÿßÿÿïÿÿÿßÿÿ¿ûuÿÿÿÿÿßÿ¿ûßÿÿ÷ÿ^ÿûÞÿÿÿÿ¿ÿ¿ÿÿß¿ÿýÿÿû¿ïÿ÷kÿûßïïýû_½ÿþÿÿÿûþÿý¿ÿÿ÷ÿÿþÿÿ¿ÿþýß·ßÿ÷ÿÿÞýïÿ÷ûÿÿ÷ßßÿ÷ÿý{ßïÿÿ÷ßÿ÷þþ÷ÿÿßûëÿ}ÿ÷ÿÿÿýûÛÿß÷ß½ûÿûÞ«ÿïÿúÿ¿ÿÿßþÿ÷÷{ÿ½¿ëþÿoÿÿÿU½û÷ÿÿÿµ÷ÿûýß·ÿïÿûÿÿÿÿÿ{~ßþïû÷ûÿÿÿþ÷ÿ÷¾ÿþßýþÿß×ÿþÿÿ¾¯ý·÷ÿÿÿ½ÿöÿßÿß]]ÿÚÿßÿßÿÿ¯ÿÿﯷûßþÿ÷ÿ{ÿý÷ÿ¿ÿÿïÿûÞÿ·oïkÿÿÿÿßýïÿ«ÿû¿þ÷ÿûû¾ÿ¿ÿÿÿÿïÿþÿïýÿÿÿÿÿÿ{ÿïßÿÿÿo÷ßïÿÿßÿÿ{ÿÿúë¾ïïÿÿïþÿûßþûÿÿwÿÿïÿ÷ûú½ÿ÷ß÷÷ÿÿÿÿÿïÿýýÿÿÿû{ÿÿ{ÿwû¿÷÷ßÿÿ×þÿ·ÿþýþ÷þþ÷×ÿïþíÿßû¿ßÿêÿÿµ¿ï¿ÿ¿þÿ_ÿÿ¿ïwÿÿÿÿÿÿÿ}ÿÿûïÿ×ÿÿÿ÷ÿëÿÿþÿ~ÿÝoÿ}ÿ·ÿ÷ÿÿÿþÿÿoÿ¿]ÿ»ÿÿwÿûþÝÿÿíýï¿ïýýÿÿÿÿï×úõ÷ÿ¿~ï{ÿÿÿoöß¿ÿÿÿÿ¿ýþîýýýûÿ÷÷ßÿýÿíÿÿßßÿÿßÿÿ{ÿ¿ÿÿÿ¿ýÿ}þÿÿ÷þûÿßõÿÿý¿þïÿÿÿïÿïþÿîÿÿ÷ýÿ¿ÿÿÿûÛ÷·ÿ~þÿ·ÿïÿûÿÿýÿý¿ßÿþÿ÷ÿÿþýÿ¿ßÿÿÿúÿÿÿÿþÿý{ý÷ÿ¿ýßÿÿÿ}ýûÿÿýÿÿÿÿn÷ÿþÞïÿû÷ÿþÿïßöÿû¿ÿÿýÿÿÿß_ïÿ¿ýû÷ÿWßÿïýïÿõýׯÿÿöýÿÿþÿý¿ïÿ¿ÿþúþýÿÿÿ×ÿÿ¿}Þ¿ÿßßÿÿÿÞÿ¿ÝÿÿÞ¿¯×ýÿ¿ßÿþöÿÿþÿÿÿÿßÿûÿÿýýÿÿ÷ÿÿÿß¿ÿßýÿÿÿ×ûÿ½¶ûý÷ýÿÿÞÿÿÿ»ÿÿÿw}¿ÿ÷ÿÿû{ÿ÷¿ûï~ÿßþÿÿþÿ»ÿwýÿ¯ÿÿzþ¿»ÿÞïýÿÿ¯¿ßÿï¿ÿÿß·ÿ]ïþÿÿÿwÿ{ÿûßþÿ¯ÿÿÿ÷ÿïÿû￯ÿ¯õÿÿë¿ú»ÿÿÿÿÿÿýÿ¿þÿß¿û¿÷ÿïÿÿ¿÷ÿ÷ýûÿ÷þÿÿÿÿÿï¿ëÿþÿÿþÿÿýÿÿVûþÿÿÿýÿï÷÷ÿþÿý»ßÿwÿïÿþ÷¿ýû×Ýÿÿ¿ßÿûÿï÷ß¿ÿÿý¾ÿý{ÿÿo÷¿öÿ¿ÿ¾­õþßÿïû¿ÿþý÷ÿÿÿÿýþïÿ÷¿ÿÿßÿ÷ÿï{¿ÿÿÿûÿÿÿï¿ÿï}ÿÿïÿÿÿ»¯ÿ׿Õÿÿmwÿ÷þ÷¿ÿÿïÿÿþÿoÿÿûÿÿÿÿíÿ÷ß÷ÿÿ×ÿÿýÿÿÿÿïwÿ¿ÿß_ÿûÿ¿ß·í÷ÿÿw÷¿öÿÞ¿ÿýþýûÿÿ¿þÿïßÿ¿÷ÿÿÿûûÿ÷ÿÿkÿÿ·þïÿÿÿÿ»ÿ¾ÿïïÿÿÿÿßßÿïûýïÿúþßßþïß¿ÿÿ_Ý¿÷ÿÿÿï¿¿oÿý¿÷î¾ýÿÿ÷ÿÿ÷ÿÿÿ{ÿÿÿßÿïÿ÷ÿÿßÿÿïÿÿÿÿÿÿÿ}ÿÿÿÿû¿ÿ÷¿_ßûÿÿÿvÿÿÿÿÿÿÿÿÿÿß½ÿý÷ýúÿýÿÞõÿºÿßýÿßÿÿýÿýÿöÿ¿ßÿûßÿÿýï÷ÿÿÿÿÿ÷ÿßÿÿÿïý½¾þÿÿÿÿÿýþßÿ¿ÿwÿÿ÷ÿ}ßÿî¿ÿÿÿÿÿ¿ûÿýûÿþÿú×z÷÷ÿÿïïú½ýÿÿÿþÿÿÿÿÿöÿýõÿÿ¿ÿÿÿÿõÛõÛýÿÿûo÷÷·¯÷·ÿÿï¿ÿÿýÿµÿîþÿþ÷×õÿÿÿÿýþ÷ÿÿÛ×ÿûÿûßÿÿþý÷ûÿÿÿßßïïõ¿ûÿÿÿÿÿÿÿÿ·ÿÿûßßÿß¿ÿý·÷þÿÿÿ÷÷÷ÿ½ÿïÿï¿ÿÿ÷¿¿~ïÿþïþßýûïÿÿÿ÷ß¿ÿÿÿÿÿÿß»ýÿ¿÷÷ëßwÿÝÿÿ÷þÿÛþµßûÿïÿÿÿÿßÿÿï»ßkýÿÿïßïßÿÿÿ¿ïëûÿÿÞÿ¿ýÛÝÿÿ¿ÿÿÿÿÿÿÿÞ¿ÿïÝÿÿÿ÷ÿíÿÿû¿ÿÿï¿wýÿÿýïßÿÿÿ×÷ÿÿþÿõÿïÿ¿þ÷ÿÿßÿöÿÿÿµ»ÿþýÿÿÝûÿþ¿ÿ¿ÿ¿ÿÿ¿ÿÿ¿¿»ÿvÿïêþö÷¾ßÿýþÿîßÿÿ~ïÿÿïÿÿÿÿÿý¾¿ÿÿ_ûßýÿÿÿ¿»ßýÿÿ÷ûÿÿÿÿ¿ÿßßÿß¿ÿÿÿöý¿ÿÿïÝýÿ÷ÿþÿÿïÿÿýÿÿÿïÿ¿þÿëÿ÷ß¿ÿÿÿ»ûþý¿ÿÿîÿ÷ÿÿÿÿ¿ý¿ÿýýýÿÿßûö¿ÿÿûýo÷ûÿûïÿÿÿÿþÿÿ¿ÿûÿÿÿÿÿïßÿûëýÿÿÿÿÿÿî¿ß¿¿÷}ÿßë÷ÿïöûï÷¿oþþíÿÿ÷ÿ~ÿ÷ÿÿÿþÿýÿÿÿïÿÿÿÿÿÿû÷ÿwÿ}÷ÿýÿÿíûû}ëû¿ýßÿÿÿÿýÿÞý¿ßÿÿkûÿÿÛo÷ïÿÿÿÿÿ»þû÷ÿÿõýÿýßÿÿÿÿÿßÿÿÿÿÿï¯ÿÿÿÿþÿÿwÿÿï÷ûýÿþßûþÿÿßëÿÿëÿÿÿÿÿÿÿï¿ÿÿÿÿ÷Ýÿýûÿÿþ÷ý{oþýÿúÿkÿÛý½ýþïþÿÿ÷÷»ÿßÿûïÿ{þÿ÷÷Ú÷ýÿ{ý·¿ÿÿþ÷ûÿ¿¿ÿÿÝþßÿ÷ÿÛÿÿÿþÿïÿÿÝÿÿßý½ßÿûÿ_ÿÿúÿÿýýÿß_÷ÿ_ÿÿß®ÿþÿ_ÿ_ÿþÿÿïÿÿÿ÷ÿßÿßÿÿ÷ûÿÿÿÿïÿßïëÿÿÿ~ÿþÿû÷îÿþ÷Woÿÿ}ÿÿÿßÿþÿÿÿýÿßÿÿ»ÿ÷ÿÿÿ»ûßþ»ßÿÿþûÿïÿÿÿÿýýÛß~÷ÿïþÝÿÿûïÿÿýÿ¿¿ÿÿ÷þÿÿîÿ~ßÿÿþÿÿßÿ÷ÿÿÿÿÿÿÿ¿ÿÿÿÿÿÿõÿ÷ýïÿÿþÿÿïûý¿÷¿ÿÿÿÿÿýÿÿßýÿÿÿ¿ÿÿ·ÿÿÿ÷[÷ÿßÿï÷÷¿ïÿÿÿÿß÷ÿÿûÿÿ÷ÿýÿÿÿÿûÿÿßuÿýûþÿ÷þÿÛþýÿÿÿÿÿÞ¿ÿÿ~ßÿzßÿÿïÿûÿÿþý÷ÿÿZþÿý÷ÿïwÿÿÿß»ÿïwýkþÿÿþ×ÿÿî¿ïÿ¯ýýÿ÷ÿýwÿÿÿÿïõÛû»ïÿþýïþßÿÿm·ÿß_wÿÿ¿ÿíÿ÷Þÿÿïû÷ë÷ÿïÿÿ÷ïÿïîÿÿÿ·ïýÿþúýÿÿþÿý÷{ÿÿýþ»ÿÿÿïÿÿÿûÿ¿ÿíÿÿ¯¿ÿÿÞß~¿ÿÿÿûÿÿÿÿïwûýÿßÿÿÿ÷½¿ïý~÷ÿÿÿï¿ÿÿÿýýþÝÿÿ¿_}ÿÿoÿºÿ·þÿÿûÝÿÿ{×ïûÿÿÿÿþÿÿÿÿïúÿïÿÿþÿû¿ÿÿÿï÷ÿïÿïÿïÿý¶Ý»¾¿ÿþÿÿî¿ûû÷Ýëÿÿ÷ÿÿ¾ÿýïþÿÿ÷ûÿÿßþïÿÿíÿÿoÿÿÿþõÿÿ¿·¿ß»ÿÿÿþïÿïÿûÿýÿÿþ»þÿÿýýÿÿÿï¾ÿÿÿõûßßÿ¿ýß»ûïÿöý{îÿþÿ^÷ÿ÷ÿ{þÿÿûÿûÿî÷ïÿÿ­~ÿÿîþûÿû¿ßÿÿû¾¿ë÷ÝßÿîÿïÿÛ¿þïßýþÿÿÛoößÝ÷ú÷÷ÿßûÿ¿ÿÿÿÿ¿ÿÿÿ·ß[¿¿÷ýÿÝ¿ÿÿ¿¿ïëýïýþÿýÿ»ÿþÿÿkÿÿÿÿÿÿ÷ßÿïþÿïÿ×ÿÿÿÿ¿ïÿÿ·Û÷¿ÿÿÿÿþÿÿÿßÿûÿÿÞþÞÿÿýÿÿ¿}ß÷ÿÿÿýÿ½ýÿ¿ÿûþÿÿîÿ{íþöÿÿÿýïÿþþÿ÷ëÿ÷¿ß¿ÿÿ¿ÿ¿ÿ÷ÿïûûÿ¿ÿÿÿÿÿwÿëÿ÷ÿ÷ÿßÿÿÿýõ¿ÿÿý÷ëÿÛÿýÿÿïþ÷þ­¿ÿÿÿÿÿý÷ï½ÿÿ¿ÿßï¿ÿûû~½×·ýÝßïÿ÷ÿ»÷ß÷ï¿ëïÿßîÿo_÷ÿ¿ßÿ¿ÿÿÿßï·ÿÞïÿ÷ýÿï×ý{÷»ý¿ûÿÿ¿ßÿÿïÿÿÚïûÿþÿÿÿÿÿÿ¿þÿýýÿk¿ÿÿÿ×ýÿÿÿÿïÿÛþÛïÿþÿÿýþÿë×ÿÿÿÿw{ßúÿûýßÝÿÿ·ÿëßÿÿÛ}÷÷wÿÿÿÿýÿ_ÿÿ¿_ûýÛûoÿÿnïÿþÿÿÿÿßýÿÿûÝû÷ßþÿýûïþïûßÿï_ïÿÿÿÿÿ«ÿÿÿÿý~ÿÿûïÿ÷¯ÿúþßÿÿß¿¿¿nßZÿîÿ÷ÿÿÿ÷wÿ}ÿýß×ÿúïûþûÿÿýkûÿß÷ÿþïÿÝÝþïÿîï¿»þþ÷ÿïÿÿÿ÷ÿÞÿÿÿÿÿþÿÿíïýÿïÿý÷ÿÿÿ»ÿïÿ¿îÿÿþÿßþÿîÿÿþÿÿ÷ÿíþÿ}ÿÿ¿ÿÿþÿßÿÿÿÿÿïÿýÿÿÿÿÿÿzÿþþÿÿÿÿþþïÿïÿÿûûÿÿÿÿ÷ý¿ÿ¿ÿþÿÿþÿßÿÿßo÷ÿÿýûïûï¾ÿÿ÷ÿÿÿ÷ÿÿÿ×ÿÿÿÿ÷ÿÿëÿþÿß¿ÿÿÿÿÿþÿµÿßÿÿÿßÿÿÛþýÿßþÿß¿uÿÿÿÿ»ý_kÿ÷ûÿÿûïïÿÿÿÿÿïýÞÿ}ïÿÿ·ýÿÿÿ·¿·ÿý×÷þëýÿíý¿¿ÿ÷þþÿÿÿ_ïÛÿÿßÿûßþíÿÿ·ÿ{ÿÿÿþïÿ½¿ÿÿÿïÿ½ÿúÿÿÿÿÿþßÿÿÿ{ÿÿÿïëÿÿïÿýÿÿÿ¿ýÿú¿ÿÿþúûÿÿÿ¾ÿ÷ÿ_û¿¿û÷ýÿÿ¿¿ÿÿÿûÿÿÿû¿ÿþ¿ïÿýÿýÿÿ~ÿÿþÿÿÿÿûÿÿÿÿoÿ¿ûÿÿïÿþÿÿÿÿÿ»þßÿß¿ÿîÿûÿ¿ßïÿÿÞÿÿÿ÷ÿÿýýþÿÿÿïÿïÿÿûÿÿÿß÷þ¿ïú¾ßÿõÿûwÿÿÿßÿþÿþÿý¿ÿ÷¿ýýýÿÿÿwÛÿÿïÿ_ÿÿÿ÷ýúÿÿÿÿÿÿ¿ÿÿßÿ½ýÿÿÿ¿mêÿ½÷Uÿ}ÿ÷ÿÿþþû}÷ýýÿþÿÿûß]ÿÿ÷÷ÿí_þÿ¿ÿ}ÿÿo¿ÿïûÿ¿ÿïÿßþûïÿÿÿßÿß÷ÿÿ÷ÿïÿîÿÿïýÿ÷ÿÿ¿úÿÞÿýïÿõþ÷ÿÿßþýÿößïÿÿwÿîÿÿÿÿºþÿßýþ½ÿÿ»ÿ¿÷ûïßÿÿþÞÿþÿêßÿýÿïÿûþÿþÿÿÿíÿþßþ¿ÿ»úÿýÿÿÿÿÿþÿÿßÿ¿ûÿßÿ÷ÿÿÿÿÿ}ÿÿ½ûÿïÿÿÿþÿÿ÷ÿýÿ¿ûÿ÷ÿÿÿ}ýûÿÿïïÿÿ¿þÿ}ÿýÿþ·ÿÿÿ~Þ÷ÿÿûÝÿïÿ¾ûÿýÿÿÿÿÿÖÿÿí¯ÿÿÿ÷ûþíÿÿÿû¿o½÷»ýÿ~ÿþÿÿÿïýÿïÿ{ï¿ÿýÿýÿÿûÿÿþ¿ÿ÷÷ÿ÷ÿÿÿ÷ÿÿÿýÿÿoïûoîÿÿÛ»þ»ÿÿÿïÿÿýû¾ÿÝÿõÿÿÿïÿÿý¾ûû÷÷ÿÿ÷ïûÿÿ¿ÿÿïÿÿûÿëý¿÷ÿ_÷{Ýÿ»ÿÿ÷ûÿßïû»ïýÿÿÿßïÿÿþûÿ~ÿÿÿÿÿþûßþÿ÷ï÷ýÿýïÝïûû¿÷ÿßÿýÿÿúÛïÿõ»ÿ÷}ûþÿ¿ïÿ×÷ÛÿÿÿÿÿÿÝþÿÿÿûÿ÷ÿý¾ßÿ߯ÿoÿïýÿÿÿïÿÿß_ÿ¿ÿÿÿý÷¿¿÷ÿ{ÿÿßúßíÿ¿ÿÿû¿ÿïÿÿÿïÿÿÿßýßÿ~ïÿ}ÿÿï×Ýÿõÿ÷ÿ»þÿ~ÿû¿þþïÿ÷íÿÿ÷ÿ~ÿýöÿí_½¿ßÿïëõÿÿÿÿÿû¯ý¿ÿÿÞûßÿÿÿÿÿïÿÿÿþýýÿ÷ÿÿÿûÿï¿}÷ÿûÿþÿÿ{ÿÿûÿÿÿÿÿÿÿwÿÿßÿÿ½ÿûÿûÿ¯~ÿÿÿÿÿþÿ÷ÿûïîÿýþÿÿ¿ïßßÿþÿÿýÿÿ½ÿÿßÿÿÿÿÿõïûÿÿÿÿýÿÿ¿ÿÿûï·ýþÿÿÿÿþûÿ¯ÿ¿ïýUïÿÿ_þíûÿþß¿ÿÿ÷ÿÿ»»þýýïï÷ÿÿßÝöÿÿþ÷¿¿ÿÿýëÿß×ÿ¿_ÿÿÿ÷»þÿûûÿ÷ÿ[ÿÿÿýÿÿ¿ïýÿÿý«ÿþÿÿÿÿÿÿýÿßýÿÿÿÿ¿ýÿÿÿÿÿÿÿÿÿ¿ÿ÷ÿ÷{ÿ¾ÿÿÿÿþßÿýïûÞïÝïÿÿ¿ÿo¯ÿÿûÿÿÿÿÿý¿ÿÿ»÷߯ÿïÝÿÿÝÿÿþßÿÿõÿzíÿÿÿûÿÿÞþ¯ÿûÿÿ}ÿõ÷ýÿ¿oÿýûïÿÿÿÿÿÿÿýûûû¾ßÿ¯ÿÿ÷ÿÿ_ÿßÿÿ÷ÿ¿÷~ÿÿÿÿ¿þÿõÿÿÿÿÿÿßÿßýïÿûÛïÿÿßÿÿÿÝýþûûÿ÷ÿÿ~ÿÿýÿýþß׿ûÿÿûþÿþûÿþ»~ÿzþ½·ýoÿûß¿þÿÿÿþû»ºþýþïÿÿ÷ÿûýÿßÿÿÿûÿÿúíÿÿÿÿÿý÷ïÿÿûÿÚÿßÛ¿ÿÿ{ÿÿÿo÷ßÿþÿÿÿÿÿÿÿÿïÿïþÿÿÿï÷ÿÿ¿ÿÿûöûß¿¿¿·ÿÿý_ÿ¿ÿþÿ»ÿÿûÿ¿¿¿ß¿ÿßöÚîÿwßýÿÿïßïÿû÷þÿ÷ÿÿÿÿ»ÿý¿ÿ»ïïÿÿÿÿ¯ß¿ÿÿ÷ïûÿ¿ÿßýÿûï¿þïßþíï÷ßÿÿÿûÿÿ¿ÿÿþ¿÷ÿßþÿÿ×ß¿ýÿ÷ÿÿÿßý×þÿ÷ÿÿo¿[ÿÿÿÿÿ}¯÷¾ßý¿ýßõÿÿ¾ÿÿßïß¿÷ÿû÷ßþú¿ÿzÿ¿ûÿýßÞýß»·þ÷}Ýïÿÿ÷ÿoýÿ¿ÿïõÿÿþÿþÿÿßÞßýßÿßW÷ÿÿþÿÿÿïöÿÿþÿë_ÿïÿÿßþÿïïïßßýýÿÿïÿÿÿÿ¾ÿ¿ßöÿïÿÿïïwþÿÿvßïÿ÷ß¿÷ß¿ÿÿ{ÿ÷ßûýÿÿÿÿÿ~ÿÿÿ¿ûýíÿÿû½ÿÿöþÿ¿ï}ÿÿß~ÿºÿ÷ï¿ÿÿÿïÿÿûßÿÿÿÿýïýëÿÿÿß÷ïÿÿÿÿÿÿíîÿÿþÿ÷ßÿßÿÿ_ÿ×÷ÿýïÿÿïûµûÿoï{ûûÿ¿¿Ýßÿÿ~ÿÿÿ}ÿÿýýÿ¾ïÿÿÿßßýïÿïZÿÿ¯û¿_ÿÿÿÿöÿýÿßÿÿþþÿÿ÷ïÿÿÿýÿÿ¿ÿÿÿÿõ~÷ÿÿÿßÿwÿÿÿÿþïýÿßmÿÿþýÿïÿ¿ÿíÿÿÿïþÿÿÿÿßÿíÿï÷öÿÿþÿÿï_wîþýþÿ÷÷þßýÿÿëÿÛ¾ßþÿÿîÿ¿þÿÿþßÿþþýïÿþÛ}ÿ{þßÿý¿ÿÿ_ÿ¿ëþßÿÿþý÷»ûÿÿß¿ÿ÷ÿßÿÿ½»ÿÿûÿïÿÿÿÿ~ÿÿýý÷ÿßÿ¿ÿ÷ÿïûýûÿÿÿßÿ÷ÿÿÿÿÿ{ÿÿý÷ÿÿÿ¾ÿ×ÿÿÿþÿÿïÿ÷þýÿívÞÿ¿¿ßÿíÝÿ}ûÿÿÿþûÿûöÿÿ÷ÿýÿ¿ß¿ÿßÿwÿþíÿýw÷÷ýÿÿþëßu½÷ÿÿÿöÿþÿÿ}ÿÝúßÿýÿÿûÿïÿ}ÿ÷ÿÿÿÿþÞßÿÿÿÿÿÿûþÿûÿïÿÿÿÞ»_ûÿ«ÿÿßÿû~ÿ¿ÿ÷ÿ÷÷ÿÿÿÿÿÿ÷ÿÿ¿ïÿÿ¿ÿÛÿþ¿ÿ^ÿÿÿoû÷¿ýÿÿýÿÿ¶×û_ûÿÛÿÿÿþþÿïýïýßÿ÷ÿýßÿÿÝ¿ÿþÿÿÿýý÷ÿõÿÿû÷ßÿ·ÞÿÿµÿßÿÿûÝ{ÿï÷ÿïÿ»ÿÿýÿÿûûûïþßë¿÷ïí¿ûÿ÷ÿÿýÿÿÿ_ÿÿÿ¯ÿÿÿ¿ýÿÿÿÿýû÷÷ÿïÿ}ßÿÿßÿÿÿÿÿÿýÛÿ÷ÿÿÿýÿÛºÞÞÿÿÿÿ¾ë÷ÿýû÷ÿþÿÿïþ¿ÿþÿßûÿ÷÷×~ÿÿïýýÿþÿÿÿÿ{þ÷þ¯ÿÿßÿ÷ÿ_oýÿíÿ·÷~þÿêûÿýýïßÿÿîÿÿÝïÿÞÿÿÿÿý¿ÿýïßÿ¯¿ßÿÿÿ÷ÿÿþÿÿ»ÿÿ»ïÿÿÿûÿßÿ¿ÿþÿ¿ßÿÿþïíÿýÿ÷ÿ÷ÿ»ï¿ÿý¿ÿýß¿÷ß¿¿û¿÷·ÿÿ¿÷¯ÿÿïÿýÿûÿÿ{½ÿÿÿÿÿÿ÷ßý×ÿÿýÿÿÿÝÿûûþÿþ÷ÿ¿÷ÿýÛÿÿÿÿÿýßÿ÷ÿþ¿ÿýßÿ~ÿý÷_ÿÿWÿõþ¿ýÿÿÿÿÿþúÿÿ÷ÿwýÿÿïÿûÿßÿÿÿÝ÷õÿÿþ»ÿÿïýÿÿ÷û¿ÿÿ¿ÿÿûÿÿßÿÿÿ¿ÿ¾÷×ÿoÞÿÿ÷¿ÿþýýßÿÿ÷õïÿÿÿÿ·ÿþïÿÿûïÿîß¾ûßÿÿïûýýÿ{Þ÷ÿÿoïÿÿ~ÿÿÿÿÿÿûwõÿú¿ÿ÷ÿÿÿ÷}ÿ¿ÿïÿ¿ÿÿÿÿÿÿÿïûÿÿý÷ïßÿÛÿÞÿýÿ÷nÿÿ÷ëþÿÿÿÿïÿ¿ÿ÷ÿÿßïÿÿï]ÿ¿ÿÿÿÿÿÿÿïþ¿ÿû÷ïÞÿoßÿÿ»ÿÿßÿûÿßï¿ÿÿÿûïÿ½ÿÿÿÿÿýÿÿ¿÷ïw÷ÞÝÿÿûÿÿýöÿÿÿÿÿößöýýý÷w¿zÿÿÿÿûÿÿýßÿÿÿ¯ÿÿõoÿÿÿÿÿíý×ïßÿÿß÷ÿÿ¿î¿wþ÷¿ûßÿÛÿÿïÿÿû¾ßÿïÿÿ÷ßÿÿß޻ׯ}ÿï{ÿ÷¿ÿ÷ÿÿÿ»ïÿÿÿÿþþÿþïíÿþûëÿÿÿÿÿÿÿ¿¶ïïßÿï߯ÿûý¯ÿÿÿïíïÿû÷ÿÿÿ¿÷ÿÿ÷ÿÿÿïÿÿÿÿÿþÿÿÿÿ»ÿÿÿÿÿÿ¿¿û÷{ÿ÷ÿÞÿwÿûßÛë×ÿþûÿöÿýþýÿÿÝýÿÿÿÿïÿ¾ýÿßûÿ¿ÿþÿÿïßÿwþÿß­þþïþÿÿý×ÿþýûÿÿýÿÿïßÿûÿßÿuîûßïÿß¿¯ÿïÞÝõÿÿÿþ÷ÿÿÿÿ¿ÿïëÿÿ¿ÿoÿûµ¶ÿÿÿÿ·¿o~ÿ÷íÿÿýÿ÷ûÿÿÿý_ßÿ}ß·þ÷õ÷߯ýÿÿï÷ÿÿïÿ¿÷ÿïÿïýïþÿÿÿÿÿÿÿÿßÿþÿïÿýÿßßÿ¿û¿û÷ÿÿÿýßÿ÷ÿÿþßýûÿÿýý¿ÿ÷ÿ÷¿ÿþÛÿß¿þûÿ~ÿûþ÷ÿûÿÿÿûÿÿ÷÷ÿþÿ¿í×ß{ûÿýÿýÿþûßÿÿ÷ÿÿÝ÷ÿÿýýÿïþ¿ûÿý×ï÷ÿÿûýÿÿßÿ÷}ûþßÿïÿÿÿu}ÿÿ¿ÿßÿÿÿû¾ÿïÿÿþ÷ÿÿýûëúÿÿÿ¿÷·ÿ¿ÿÿïn«ýÿ¿ÿûÿoÿûïÿÿÿÿï}·ý¿ÿþÿÿÿÿÿÿÿ_ÿÿÿõûÿÿÿ÷þÿÿþ÷ïÿ¿wû}÷÷ÿÿÿïÿÿ¿ýÿÿÿݽÿÿ¾ßÿÿ¿ÿÿî÷ßþÿõ¿¿û¯þÿ½ÿ·¾ÿÿ÷ÿÿïëþÿÿÿï¿ÿïÿÿõûûÿÛÿÿÝÛÿÿÿþï½ÿoÿÿ¿ÿ¿ÿÿÿ÷ÿÿÿÿ÷þÿÿÿÿÿÿýßï÷ÿï·ÿÿÿÿÿÿ}ÿÿ¿ïÿÿýÿÿþÿÿÿÿÿÿÿ÷úïÿ¯ÿÿ¿ÿÿöÿÛþÿÿûÞÿÛ÷ÿ¿ÿ¿ÿÿþß¿ýÿ÷ÿÿÿ¿ÿûïõ»ÿÿÿµ·þýÿïßïûÿÿ_ÿÿ}ÿÿ¿ÿÿ¿ÿÿ׿ßïÿëûÿß½ÿßûïÿÿ¿ýÿÿ¾ÿÿýÿþûþý¿ûÿýýÿïÿþ¿{ýÿß÷ÿÿÿßÿýïÿÿÿÿ÷ïÿýoÿÿÿÿ¿ïûûßÿÿÿþÿÿûýß¿ßÿÿÿú÷þïÿ¾ÿû»ÿÿÿ¿ÿÝûýÿïÿýÿÿßßÿïÿÿ÷÷ýÿÝÿo­¿û¿ÿÿÿ»ÿõÿÿýÿ¿ÿÿßÿß¿ÿ¾ÿßïÿ÷ÿÿïÿÿþßÿßÿöïÿ¿ýÿÿÿþÿßþÿ÷ÿÿÿþÿíß÷}ÿÿ¿ÿþÿî½ÿÿý÷þÿ÷û_ÿÿÿû÷½ÿÿÿÿÿÿÿý¿ÿßõëïïýÿÿÿÿÿÿïÿ×_ÿýÿ÷ßÿÿ{ÿ÷ïÿþÿÿÿÿÿÛÿ×ÿï÷ûýÿ_ÿÿýWÿýÿ÷ÿ¿»ý÷ÿ}ÿÿÿþÿïÿ¿ÿýÿÿïßÿÿ÷ÿÿõ¯þ÷~ÿ¿¿ÿÿÿÿÿÿÿÿÿÿÿÿ¿ïûÿÿ_ÿÿÿ½ÿwÿ]ÿÿÿÿÿÿþûÿÿßß×ßþßßÿ]êýÿÿÿûëÿÿÿÿÿ¿ÿÿþ¿¿õþÿÿýÿû÷ÿÿÿÿ¿ÿÝÿ~ï÷÷û·ÿßÿ¿ÿûÿÿÿÿ»ÿÿïõïïÿÛß¿ÿýßkþÿÿ¿ÿo¯ÿÖÿÿýÿÿ÷¿ÿwûÿÿÿ¯ï{}ïßßý·ÿÿÿ»{ÿÿïûÿïïûÿ÷ßÿ¾ÿÿÿÿÿÿïûÿÿÿßïÿÿÞýÿÿûwÿûÿÿ·ïý¿ÿúÿÿÿþïïÿïþÿ¾ÿë¿ÿýÿÿÿÿ½ßÿ{þï»zÿÿßÿÿ¿ÿÿýÿýÿ¯ÿÿÿÿÿî»ÿßÿýßÿÿûþÿÿÿ÷ÿ½ÿïþÿÿÿûÿïýþûÿÛ[ûßÿmÿþÿý¿ûÿïÿßÿ÷ÿÿÿ÷ïßÿÿþÿÿß¿ÿÿÿýÿûßÿ¿¿ÿßÿû½ÿ×ï÷ÿÿû÷{ïÿïúÿÿÞþÿý{ºýßÿýÿÛßýÿÿÿÛÿÿïýýÿoÿþÿßþÿÿÿþûÿþÿ}ÿÿþÿíÿÿÿÿêþ÷ï~ÿß¿ÿßÿíûû·ÿíßýÿÿÿïý÷þÿïÿÿßÿÿÿýþþýýýÿÿîÿ¿ïÿwûïÿ{ÿ÷Úÿýû÷ÿÿþÿ¾ªûíÿÿ¿ÿûÿ¾ýÿÿÿßÿûÿÿÿÿûûÿowÿÿýÿ_ÿÿýÿÿû÷ÿÿýÿÿÿ÷}þßÿß¿^¿¿í®ûÿÿï¿ÿû{ÿ÷½ïýÿ»ÿ~î¿ÿÿ»ßýû¿ÿ½÷ßïÿý÷ÿÿµÿÿÿ÷ïþþÿ÷vÿý¿ßÿßÿï_ÿÿÿÛÿÿÿÚûþþßýÿ¿ÿ¿ßÿÿ÷ûÿþïÿÿÿÿïÿÿß{þÿÿÞÿþ»÷ÿõûÞßÿßÿý÷ÿÿúï¿ûßÿÿß·¿Þ¿ýÿÿû¿ÿÿþ¾ÿÿýÿ×þ÷ÿÿþÿÿÿýïÿîßÿÿ÷¿ÿÿÿÕÿ÷ÿ÷ÞýïûÿÿþþõÿýÞÿûûýýíÿÿÿ¿ÿÿÿ»÷vßÿÿÿïÿ¯ý¯öý÷þÿë÷ýßýÿþ¿þÿÿÿÖßïï¿¿mÿÿ_ÿ¿ÿûwß¿ÿÿÿÿÿwÿÿÿÿÿëÿÿý¿ÿÿ÷ÿïÿßÞÞÿÿßÛ÷íÿÿû¿ÿþúÿýÿÿÿïýÿõÿï÷ÿïÿÿÿÿý÷ßûÿÿïýÿÿÿÿ¿ûÿ¿ÿß¿¿¿µÿûÿ¾ïÿÿïßÿÿýûõ¯ÿý÷ïÿýÿÿÿ¿þ¿ÿ_ÿö÷wÿÝÿ¯ûÿýúÿïÿûýïÿîÿ_¿ÿÿ¿ÿýÿÿúÿïÿßýöÿÿû~ÿmÿ¿þÿ÷¿ÿÿÿûÛ¿ïÿ÷ÿýÿ½þß¿Ýû÷ßÿÿºÿÿÿÿþÿÿ¿ÿÛ×ÿ¿¿ÿÿÿþÿÿûÿ¿ÿ÷ÿ~õÿïßûþþÿûÿÿ÷ÿÿïÿþÞ¿ÿþ»ÿÞ¿ûßÿ¿÷¿ïÿßßÿÿÿ÷ÿûÿý½ÿÿÛwýÿû{ÿÿÿÿÿÿýÿÿ¿ïþÿÿÿ¿ÿý÷ïÿÿÿýÿÿÿÿ¿þÿûïÿþûßûÿþýÿýÿÿ_¿¿î¿ûß÷~ÿûÿ¿ýÿ÷ÿ{ïÿöïÿÿï{ÿÿÿýÿûþÿÿÿÿÿÿïÿÿ¿îïÿ÷ïÿÿÿïÿÿÿîúÖÿÿÿ¿ÿÿûÿ»ÿ¿¿÷ÿþ¾ÿÿoÿýÿÿ¿ÿÿýïßÿ¿{ÿ÷ßnÿõÿ¿ÿ÷ÿß½ïÿoÿÿÿ~ÿ¾ß»wÿÿ¿ïÿþÿ_ýÿßÿ_ýÿÿmÿÿ¿ïÿ÷vÿ÷ÿõÿ}ÿßýÿþïûÿï»ÿ¯ïwÿ{÷{íßmßý¿ÿýÿÿ{þÿýßÿ}¯¿ÿíÿÿÿ÷þ¿÷ßÿÿýþÿÛ÷þÿÿ÷ßÿ÷þß÷ýÛï÷mýïÿÛÿ}þÿÿÿÿßÿÿÿÿûßýúþßÿ¯ýÿþ»õÿÿïíÿýÿwwÿÿÿÿÿßÿÿÿ÷ÿßûµ¿ÿýý×ÿýëÿþÿÿýÿúûõÝþïÿ·ÿÿÿÿ{ûÿÿ¿ïûþÿþÿþûÿïÿöý÷ÿÿÿÿÿÿïÿßÿþÿýÿÿÿÿ÷ÿÿ¾ÿÿwþÿÿÖëoÿýþÿ·þßÿ¯ëýïÿýßÿÿïÿÿýßÿÿÿÛýþÿÝïïïíõÿöíïûßn÷ÿ÷ÿ¿ûÿÝÿûûÿÿþÿßýÿý¿ú×ÿÿ½ûÿÿÿëÿýý÷÷ßÿÿû~ÿÿ÷÷¿þÿ×÷ÿßïÿÿßïÿ÷ýÿÿýïßþý¿ÿÿßßïýÿÿÿÿ_}ÿîÿÿ÷ÿýÿ_¿íÿÿïwþÿÿwÿÿÿþýÿÿ÷ÿßÿ÷ÿÿûïßÿwîÿõ¿ß·÷ÿ÷mÿÿ¿ï~÷ÿ}ÿ÷¿ÿý÷ÿïûÿÿÿÿÿÿ×ÛßïÿÿÿÿÿÿÿýÿÛýÿÿïïÿßÝÿÿï÷þíþÿ¿ýÿÿþÿÿÿÿßÿÿÿûÿíÿ½ÿÿöÿýÿýÿïÿ÷û¾ûÿ}û¯ÿÿýÿÿöý¿ûíû~ÿÿÿ{¿ïÞÿÝ¿ïÿÿ×ûÿ¿þõÿ×ÿÿÿúÿþÿýßwßÿÿëß¿ÿÿ¿ÿ·ýþÛÿ·ÿ¿ïÿþÿÝÿ×÷ßýÿÿßûÿþÿûïÿß÷ÿÿßÿÿÿýÿÿ¿ÿþÿþÿÿÿÿï~÷ÿÿÝÿûÿýÿÿþûýÿÿûÿþ¿ÿßÿ÷þÿÿßþ¿ÿ÷û÷ÿÿïÿþýïÝÿÿ¯ÿWûÿïÿÿïÿÿÿÿïÿýÿÿ{¿Þÿï÷ÿÿ÷ÿÿ÷ÿýÿÿõõÿßïÿýÿýûýßÿ÷wÿÿÿû¿û÷ÿ¾ÿ÷ÿßÿÿïÿÿÿöÿþÿÿÿýþßïïÿþþþÿû¿ÿýþÿÿ_÷ýÿûÿûÿýÿ÷÷{þ»¿ÚþÿïÛýßßÿÿ÷÷Ú÷ÿ~þÿïÿÿû¿¿ÿþ¿¿þýÿûïÿßÿ÷ÿÿÿÞûßÿþÿ{ëÿÿúÿÿßûëÿ{ÿõ{·{_~ÿýûoÿÿ÷ßýýÿßÿ{ÿõÿÿÿ÷ÕÿëÿÿÿÿÿþûÿÿÿöÿÿÿÿïÿßÿÞÿûïÿûÿÿÿ}oÿÿÿÿÿÿÿþ÷ÿ¿ÿÿþ½}ý_ÿÿÿßëÿÿÝÿúÿßýÛý^ÿÿûÿ¿ÿÿûÿ÷wÿ÷ÿ¿ïïwþÿÿýÿÿÿ~Û½½ÿïÿïÿßß÷ÿýßýÿß÷û¿ÿÿÿ×ßÿ½ÿÿ·þÿÿÿÿÿÿþ¾ÿÿ÷ý¿ÿÿÿïÿÿwÿÿÿÿ¿ß{ÿþÿýÞÿ¯÷ïÿßÿzþïÿ}ÿßÿ·ÿÿ_Ýþÿÿ÷ÿï¿oÿ÷ÿoÿ÷÷ÿÞÿÿwßÿÿÝïÿ_ÿÿýÿÿÿÿ÷¿ÿÿÿÿ×úÿÿÿÿoßûÿÿ¿ÿÿ÷ÿ¯ïûÿëý{ûõÿÿþÿÿ¿÷ýÞÿÿ~ý{ûÿÿ÷Ýÿ÷ÿÿßÿþÿýÿo¿ßûÿßÿÿýÿÿÿÿÿÿ÷÷ÿ×ÿÿºÛþþ×ÿþÿ¿nÿÿÿÿÿ{ûÿ×ßwÿßþ¯ÿÿÿ÷ÿÿÿÿÿ}×ÿÿ¿ïîÿ÷ÿÿÿÿ¿ÿÿÿÿÿîÿßÿÿ¿¿õïûûÿßÿûÿÿÿ½ý÷þý÷ßþÿÿ»ÿoÿÿÿ{ÿÿÝÿÿÿÿ¿þß¿_ÿ¿{¿ÿ¿ÿþÿÝ÷ÿû¿ÿÿû¯¿ÿ­ëÿÿ×ÿ¯ýÿÿ~ÿþï÷û¿ÿÿÿïûÿÿZÝýÿÿÿÿÿ~ÿ·÷ÿ×ïÿoÿÿþÿïÿúÿÿþÿÿÿÿÿÿþþÿÿ÷¿ÿÿþÿßýÿÿÿ¾ÿmÿÿïÿÛþï÷Ö÷¿ÿÛÿÿßïÿþÿÿÿîÿ÷þõÿÿ¿ÿï¿»·ÿÿÿûÿÿÿÿïÿýÿßëÿ÷¿ßÿÿÿÿÿÿÿÿÿíÿÿþßûÿÿÿÿ¿ÿÿ÷ýÿ×ÿÿ½ï÷þÿÿÿÿ¿¿ï·ÿÿ¿ÿÿÿÿ[ÿÿ÷ÿ~¿ÿõÿÿÿ{þïÿÿïûïû÷¯ÿÿýßÿÿ{ÿÿþ¯ÿëÿûþÿßïÿµÿ÷ÿß¿Þß¿ÿ÷wÿ÷ÿ÷ÿÿÿ»ÿÿßÿÿÿ·ÿÿûÿïý»ïûÿþëýÿÝúÝÿ×ß÷¾ÿÿ÷þÿÿÿîïÿþþÿû¿ÿÿÿ÷ï½ý÷ÿÿÿÿßþßÿþþï­ÿÿÿÿßÿûßßýÝþÿÿÿÿß[ûÿûÿÿýïoÿÛ~þêïßþÿÿýûûÝí¾ÿ÷îï÷ßÿÿýïÿÿÿÿ}÷ßÿûý»¿ÿÿ÷ÿúÿß÷÷ÿßÿ¿ÿÿï}ýÿÿßÿÿß÷ÿ÷¾ÿÿÿýûÿþï}÷ÿ÷ïÿýû÷ÝÿÿþÝÿÿöûþÿÿ}ûÿÿõïÿÿ¿ïï÷¿ÿÿû÷ÿÿÿ÷þý_ýöý½ÿ¿÷uûþÿ¯ïÿÿÿÿ÷ÿëþýÿÿ÷ûþîÛïÿû÷õo¿þû¿ÿÿ¿ÿûÿÞÿþõûß¿ÿßöÿÿÿ÷»¿ÿÿÕÿõÿÿï÷öÿÿïÿýÿ÷ÿûþÿöÿû¿þßýÖÿÿï{ÿÿÿ¿}ÿßý¿÷ïÿ÷ëÝýÿÿÿßÿûïÿ«wÿßÿïÿÿëûïÿ÷ÿ·ßÿソ¿ÿÿwÿ×ÿî÷÷ýÞïÿýýÿßÿûÿÿþÿÿÿõ¿ÿÿþûÿýýÿ¿Û¯ûÿÿÿßÿ»¿¿îÿÿïÿÿëoûÿïÿ·ïÿûÿíÿßûÿý÷÷ÿÿÿ_ÿÿú¿ÿï¿}ûÿÿ÷ÿÿßÿÿÿÿýûõÿÿýÝû¿ÿ_ûÿîþ÷ýÿïÿýíÿÿÿÝÿßïÛïÿÿýÿþÿú¿ûî÷ÿwÿÿ÷ß¿ßÿ_ßÿ¯ïÿ÷ÿÿïïûßßÿÿý·µÝÿïßßÿïÿÿß¾¿ÿÿÿÿÿ×ýÿÿßÿýÿ÷ûÿÿÿÿ÷ÿ_ßýÿûïíÿýûõýÿõ÷ïÿ¿¿¾½ÿýÿÿ¾ïßUÿÿÿÿûÿïÿÿÿûïÿÿýÿûÿÿïÿÿ÷ÿ÷¿ÿ¯ûë¿ÿýß¿ÿÿÿÿÿ¿ß÷ÿ¿÷ÿÿï¿ÿÿ«ÿþÿ¿ÿÿÿÿûÿ}ïûþÿÿÿûÿÿûöß×ÿÿïöû¿Ýþïöîºÿ·ûÿþï¯ÿ¿þÿÿÿûÿÿÿþÿÿÿÿÿ¿ÿ÷÷Þÿíÿûßÿÿ÷ý÷ÿû¿ÿ·¿ýÛ¿ÿû÷þÿÿÿþïý÷ÿþÿßÿýÿûþßo×þýþÛ¿ÿwþÿþÿûïÿÿÿÿ×ý]ÿ~ßÿÿ÷ÿþÿÿ»ïÿîýÿïßÿîÿÿïÿïÿ¿¿ûßÿÿÿß~¯ÿÿ¿þÿÿëï·÷ÿý~ýÿ÷÷÷¿÷ûÿÿÿ¿»ÿ÷þïÿ¾þÿÿÿÿýßÿÝÿÿÿÿõõï}ÿÿ·þýÿÿÿÿûÿ~ÿÿÿÿÿÿï¿úÿýßÿÿÿ¿Ýß÷ÿÿïÿþÿÞß÷ý½ÿÿïÿ¿ÿûï~ÿ¯ýÿÿ¿ÿ¿ÿ÷~ýþ¿ÿÿÿÿÿÿûÿÿÿûþÿÿïÿþÿÝ¿ÿÿ¿ÿwûÿÿÿÿýß¿ïÿÿÝÿÿÿíÿþÿþïÿÿïßÿÿ¿ÿÿýï¿ïßÿßÿþ¿ÿÿûÿÿÿÿÿÿß~ÿ¿ûý¿¯ÿýÿ÷ÿÿÿîÿÿÿïÿûÿ¿ÿÿÿÿnÿµÿÿ¿ýÿþÿ¿ûÿûÞÿ»ÿýÿûÿÿÿÿþÿÿÿÿ¿×ý¿ÿÿ÷Þÿÿßý{þ»ýûÿÿïßÝýÿÿ¿ÿ¯ÿ¿ïïÿÿÿoÿÿÿÿÿ½ßÿÿÿ¯¿ïÿþÿÿßÿÿÿÿÿÿïïëÿ¾ÿ÷ÿÿÿÿÿÿÿÿÿÿïýÛÿýÿþÿþþÿÿÿïþû÷ÿÿÿÿÿÿÿ¿ßÿÿ÷ÿÿmõï¾ï÷¿ÿÿÿÿÿÿÿÿÿÿÿÖÿÿÿÿÿ÷ÿÿ»ß÷ïõÿÿÿþ¿ïÿÿÿßßÖûÿûÿÿÿÿ¿ÿÿÿÿ]owÿÿÿïûÿÿÿÿúÿïû÷ÿÿ¿ÿïÿÿÿûïïýßÿûÿ^ûÿ¾ïý}í¾÷þÿÿïÿÿÿÿþûÿöí÷ÿ÷¿ïÿ÷ÿ{ïÿ·ÿúÿÛÿÿßÿÿÿûÿÿúÿÿ÷ÿoýýïÿÿ¿ýÿÿÿþÿÿÿûÿþý¿·ýÿþýÿÿÿÿíÿþþÿÿÿÿÿýÿÿÿ¿ïÿïÿþÿÿïûÿïÿÿ×¾ÿÿíÿÛÿÿý¿Ûÿÿÿ÷ÿÿ÷ÿÿÿÿþÿÿÿÿ×ÿ÷»÷÷wÿþÿÿÿÿÿ¿ÿÿßÿ÷û»ÿ×ßß¾Þÿïïÿwþû¿Þÿßÿþöïÿþÿû÷oÿ¿½ÿ{¾¿ÿ÷ÿýýïÿÿÿ¿ûÿÿï_¿ÿûïßïþßýÿûïÿÿ÷ÿÿ~÷ÿÿÿïÿ­ÿýÿÿÿÿÿþïÛþÿëïïÿ½ýÿÿ}ÿþïÿÿþíÝÿÿ~÷ÿþÿÿ÷ëþÿ÷¿÷ï»ÿÿýþÿ¿ûûÿ~ÞûÛÿÿþ÷ÿûïÿÿÿÿ]ÿßÿï¯ÿ~¿¿ÿ÷ÿû¿÷ÿîÿ~ïûÿï×ÿ¿ßûûýÿÿëo{[wÿÿýÿÿÿ¯¿ÿþÿÿ~ï¿ß÷¿×_ÿßÿß×þÿÿÿßÿÿßï÷ÿÿïïÿÿÿÿÿÝÿÿÿýÿoþÿú¿ÿïÿîþµÿ÷ÿÿÿÿÿýïÿß®¿ÿÿ¿ÿïÿÿÿÿûo÷ýÛÿ÷¯·ýÿßÿßÿÿûßÿûÛÿÿÿîÿÿ~ûÿÿÞ÷ÿÿ¿ÿ¿þûÿþý¯ÿýÿÿïÝÿÿ¿ÿÿûÿÿÿ÷ÿÿoßÿ¿¿^ßÿ÷ýÿÿÿþ»ýþÿúÿÿÿïÿÿmÿÿ÷ÿÿýú¿ÿûýÿûÿ÷ÿÿßÿ¿ÿþÿÿõ¿ÿûýÛ÷þïïÛ÷ÿÿÿwÿÿ÷ÿûwÿ{ÿÿþßÿöÿÿÿÿÿÞþÿÕ{¿¶ÿÿÝÿÿÿÿÿÿûÿû÷ÿ÷ïßÝÿëÿÿßÿÿ¿~ïÿÿßýþ¿ïÿîÿÿßýÿÿÿÿßßÿÿÿ¿ûÿûÿÝÿÿýïÿÿÿÿ¿ßÿï¿þÿïþÿ×ÿÿÿÿïïÿý½÷ÿÿÿwÿuÿ¿ÿßÿÿÿïÿ¿}þë÷o¯þ¿ïûÿ[õþÿ{ë½»ïÿû÷ÿî½ûþÿ÷ýÿ÷ÿÛþïþïÿÿ÷_ÿþÿÿÛþÿÿÿÿÿÿÿ¾ÿþÿïÿöÿÿýþÿwýûÿ÷÷ÿ~ï¾ûÿïÿÿÿÿÿÿýÿÿÿý~ïÿ¿ÿÿÛÿÿÿÿÿÿÿÿÿÿÿÿÿÿ÷_ÿ½ÿÿýûÿÿýÿ÷ÿþ¿ÿÿþ¯oÿÿÿýû½ÿwÿ}ÿ¯þ÷ÿûÿÿÿ÷ÿÿýýûÿýÿû÷ÿßÝÿÿýûÿÿöïÿ÷ºÿý_ÿ¿ÿÿÿïÿþÿ¯ýÿÿÿïÿ¿ÿ¿ÿ¿ï¿ÿÿÿýÿÿýÿÿÿÿÿßßÿýïÿû~ÿûûÝß¿ßÿÿï÷ýÿ÷ßÿýÿÿ¯ÿÿþ¿ÿßÿÿÿÿ¿þú÷þïý÷¿¿ÿÿÿÿýûÿýÖ¯ûûÿÞ·þ·ÿÿÿýÿïïÿßû÷û½÷ë¿ÿþû÷ÿÿÿ»ÿÿÿÿÿÿþÿÝ»ÿïÿÿÿÿ÷ïÿÿÿ·ßÿÿÿßÖÿÿÿþÿÿû×ÿw¿÷ÿ¿õÿÿÿÿïþÿþÿýëÿ¿ýßïÿïþ¿ïÕ}ÿÿßÿÿÿþÿÿ¯ÿß¿ÿïÿ¿ÿÿÿÿÿûûþþßï¿ÿÿßÿÿÖöþ½ïïßÿ÷ûýõ½ý¿ÿ¿ÿþÿÿÿÿÿ_ÿÿ{oûþÿÿÿý÷ïÿýÿÿ¿ÿßýÿÿßí¿ýÿýßþÿþ÷ûï×ÿý÷¿ïïýýß÷ûßÿýÿÿÿÿ¿÷ïÿÿ¿ÿûÿïÿ÷þîë÷ÿýöÞî¿ÿûÿ¾Úûÿ¿÷¿ßÿ·þÿïÿ·ý÷÷÷ÿßßûïÿ½ÿÿþ¿ß·ÿï÷ÿÿÿûõÝ¿ïßÿýÿÿïþ÷÷ßßÿ¿ÿûÿßÿÿÿþ÷ïÿÿÿÿû{ÿÿ®ÿ¿ßoÿþÛýûßÿÝÿýÿÿûÿÿßïÛÿ÷ÿ{ÿÿÿÿÿÞý÷ÿ÷úÿÿÿÿýÿÿÿïþÿïõÿïÿûÿÿÿÿWûÿÿÿÿÿÿûý·¿ÿ÷þÿÿ¿ÿßÿ¿¿ÿÿ×ÿÿÿß¿ßÿÿý·ÿ¿ýÿ¿ûþßÿÿÿÿ¿÷ú×}ûþ¿ûïÿÿÿÿ~ÿÿß¿ýþ÷÷¿ÿïÿÿÿ»þÿþÿÿÿ¿íÿ¿ÿÿÿßoïÿû¾ÿýëÿÿÿÿßÿÿÿo{ÿÿÿÿÿÛûïýßÿÿ½ïÿÿ¿ÿÿÿïûßýÿÿýÿÿÚÿÿÿûÿÿþÿÿûû¿¿÷þþþÿÿÿÿÿÿþ¿ßßûûÿÿÿûÿÿÿ¿ßÿ÷ÿ÷ÿ÷ÿûÿÿîÿßïÿÿÿÿÿÿï¿ûÿÿþ÷ýÿßÿÿÿÿýoÿÿýïû½ÿÿÿýÿ»ï¾ÿ÷ÿÿûÿÿýÿÿÿßÿ¿íßýÿûÿö¿ÿ¿ÿÿÿûÿÿÿÿÿÿ¿ÿÿïÿûÿ}ïÿ¿×»wïÿoûÿ÷ûÿßþÿû¯ÿÿß×ÿýßÿûÿþÞýÿÿþ¾ýÿýÿÿÿþ÷ýïÿ¿û÷¿ÿÿÿÿûÛÿÿþ÷ÿÿÿþíÿÿ÷ÿÿûïÿÿþÿÿÿþ÷îÿßþ¿ýoýÿÿß¿ÿoÿÿÿ÷þÿÿÿÿ^ûë÷ÿÿÿþÿ¾ÿÿÿïÿ÷ÿÿÿÿÿ÷½ïÿÿÿÿ·Ýïÿÿïÿöÿÿïÿÿ_ÿûÿÿþÿßÿïÿ÷ÿ½~ïÿÿÿÿÿßßû¿ÿûÝîÿýïõ¯ÿÿßÿ¯¿ýïïÿÿÿÿÿÿÿÿþýß~ï¿ÿý÷ûÿ÷ÿõÿÿÿÿÿÿû×ÿ¿Ý·÷ÿÿÿ[ýÿÿûý_ßÿÿÿ½¿»ÿÿûÿÿÿÿþ¾û»ÿ×ÿ÷¿ÿïíÿÿÿ÷ÿýþþÿ¿úÿû«ÿÿÿ·þÿýý÷ßýÿÿï÷ÿïÿÝýÞßß×ßoÿÿëÿÿÿß÷ßÞýûÿ¯ïÿÿÿ÷ÿþÞûý÷ÿîÿÿÿßïÿþû÷÷ÿ_ÿÿ»ßõÿÿ÷»ï~îÿÿÿÿÿïÿÿÿÿïûÿÝßÿÿúÿÿÿ÷ÿÿþÿßÿïÿ½ûÿÛíî÷ÿÿÿýßß»ÿÿßÿ÷þßÿýþöïÿ÷ÿÝÿÿþïÿÿÝ¿ÿ½ûÿÿýß½ï¿ÿwûÿÿ_÷ÿíÿÿöÿoûÿÿûÿÿÿÿßýýßÿÝÿÿÿ¾ÿÿÿ߯ÿÿý¿¯ÿïÿýÿÿþýwÿÿÿ¿}ÞÝ¿ÿ»þ÷ýÿÿþëÿÿ¾þõÿëýnÿ÷úûýëÿ÷ßÿ¿÷ÿÿÿÿïû¾ÿïÿý~ÿ¾¿·ÿÿïÿûÿÿÿ{ÿÿÿþÿÿÿ{{ýÿÿûîÿûÿþÿýÿÿÿÿßÿýûýÿÿÿÿnï~ÿÿÿÿÿÿÿïöÿ÷ûÿÿÿÿÿÞ¿ÿÿ{ÿÿýï¿ïû¿ÿßßÿÿÿûÿ_ÛÿÛÿý¿ÿïÿÿÿ}ÿÿÿÿ÷ïßÿÿýÿûÿÿ¿ÿûþÿÿ÷ïïÿÿûÿþÿÿÿ}ýÿÿýïÿïÿÿÿÿÿîï÷ïÿÿûûÿÿ¿ÿÿ_ÿßÿëþÿÿ¿ÿûÿÿ¶ýÿýÿÿ¿ÿÿïÿßßÿßþöþ×ÿÿÿýíõ÷ûþÿýßßûïÿÿþß÷ýÿõ·û¿ÿÿÿ·ßû_ÿ»ÿû÷ÿÿ_ÿßnÖ÷ÿþÿýÿÿÿþÿÿïÿÿýýÿÛÿßûÿÿÿÿÿßÿû÷·ÿûÿî¿ÿÿûß¿wïÿÿÿÿ÷ÝýÿÿÿÿÿÿþþÛ¿ÿÝ}ÿ·ûÿûûÿ×þúß÷ïßÿ÷ÿëþÿßߺÝÿßÿû}¾ÿÿßÿûÿ÷ý¿ÿßÿ¿ÿÛÛÿÿwÿõÿ¿ûÿÿÿÿëþÿÿ÷ýÿ_ÿ÷ûßßÿÿÿÿÿûÿÿÿîþïÿÿÿ}ûûÿo¿ÿ¿ÿÿ¿ÿßþÿ÷Û¿ÿîÿÝÚÿÿÿûþßÿ¿wÿÿÿþÿý¿÷÷ûÿÿÿ÷ÿÿÿßÿÿÿûÛûÿ÷ý{ßßÿß÷{¿ÿ}ý¿ëýûýýÿÿïþ÷ÿÿ÷ßÿßþÿÿÿ¯þß¾¿ßÿ÷ûïÞßÿÛûïþûÿÿÿ÷ÿÞÿýÿïÿÿýÿ{o÷ßïýÿ¾ýþÿÿ·îýßýÿÿÿíúû¾ÿ~ßÿÿÿýÿß÷ï÷ÿÿ{ý½ïÿþÿnÿ»ÿÿÿÿÿ÷ÿÿ÷ÿ×þïÿÿþïwý·ÿÿÿmßßÿÿÿÿÿÿ½ûÿÿßÿ^þûÿÿÿÿûý÷¿ÿ¾¿×ÿÿÿ¿ÿõ¿ÿýëÿ¾ºÿÿïûÿ¿÷öýï¿þÿÿÿÿÿÿïÿÿÿ×ÿþÿÿÿ½ý¾ÿ»¿ÿÿÿ¾ÿ¿úßÿþýÿõÿÿÿþþ÷ÿÿßúûÿÿûÿíÿöÿÿýýÿÿýÿ÷ÿÿ~¯ëöß½¿ûÿÿÿ÷Wÿ{ÿ¯ÿÿÿÿÿÿ¾þïnï¿ÿ÷ÿÿÿ·ÿýßûÿ¿ÿíÿÿÿÿ÷ûÿ¿ÿÿþÿûß÷Ýýÿµÿÿþÿÿÿßÿÿþÿþÿßÿÿÿ÷ÿþïþú÷÷ßÿÿýoÿþÿßÿÿÿÿ¿ïßÿ÷ÿÿ¿ÿÿïûÿÿ_ÿÿ÷ÿÿþþýÿÿÿÛïïöÿõþÿÿÿÿ¿ÿûíýþÿÿûÿÿ^ßûÿÿÿÿÿÿooÿÿßïÞþß÷½ÿÿ_ßþ¿}ÿÿÝíÿnÿÿ÷ï÷ÿÿÿþ·¿ÿ¿Ûþÿ{ÿÿïû¿ÿÿëÿÿÿïÿÿ¿ÿÿ¿ïÿÿÿ¿ÿÿÿïßïíßÿïÿÿÿû~¿¯ýÿïßÿ÷ÿoÿýÿ¿÷ÿûþÿÿÿïûÞ÷ÿï~÷ÿßÿÿÿÝýÿÿþÿ»÷ÿýÿïÿÿÿÿÿÿÿÿ÷ÿÿöë_ÿ÷ÿÿÿïÿÿÿ_ßÿuÿÿÿõ}þÿÿoýÿÿûß_ýÿ÷÷ÿÿÿß¿ÿÿÿÿÿÿÿ¿~ÿÿ_÷ÿÿ¿ÿÿ÷ÿÿÿþß·÷ÿÿýþ¿íÿÿýïÿ¾ÿÿÿþû_ßÿ÷û¯ÿßïþþÿ½ÿûÿ¿ý¿ÿßïýÿ÷ÿ¿ÿÿïÿ÷íÿÿþ÷û¿ÿÿ~÷^¿Þ¿ÿÿÿÿÿýû·ÿÿÿÿ¿þûÿÿÿÿ»öÿÿÿÿýïýÿ÷Ûÿÿöÿÿÿÿÿïÿû_ÿÿÿÿÿÿÿÿÿû¿¿ýÿÿÿþýÿîÿ¿ÿÿ_ÿþÿõëÿÿûÿÿÿïýÿþÿÿû¿ûÿÿ÷ïÿþ÷ïû½ÿ¿ûÿ½þÿÿÿþÿßûÿßûÿ¿ÿ×ÿÿÞÿúÿëþÿÿÿþÿûÿþÿÿÿýëÿ¿ÿÿÿ¿ëÿÿýÿï¿÷÷ÿïþÿë¿ÿ¯ûÿÿÿï¿þ¿¿ïßÿÿ÷÷ûÿ¿ïÿ÷ÿ_ÿûß÷ûÿÿÿÿßÿÿ_ïÿ÷ÿÿýþþÿÿï¾Û»ÿÿÿÿÝÿÿÿï÷ÿ×öþûûÿû×ßÿÿ_ÿÿ÷ûÿß÷þÿÿíýÿõÿýÿ÷ýïûÿÿÿÿýÿÿ¿ÿÿÿÿ¿ïß¿ÿÿ÷{½ÿ¿ÿÿ÷ÿïß¿¿ýúí_õ¿ÿ¯ÿÿÿÿÿÿþÿýÿßÿßûÿûý÷ÿÿ÷õÞÿïý¯þÿÿïÿÿÿÿ¿ÿþÿï¿¿ïÿþ÷~ÿ÷ûþþÿïÿþÿÿÿûß÷ÿßþ»ïÿ·í¿{÷ÿÿ}ÿÿ÷õÿýýÿïÿÿþþ÷÷ÿßûÿÿuÿÿ÷ÿ·oýýw·ÿÿÿÿÿÿÿûÿÿÿÛû¿ÿÿß¿¯ûûýïÿ÷ÿÿ¾ÿÿîÿ¿ÿ·¿þûÿïÿýÿÛûÿ×¾·ÿÿ×ÿÿïÿ÷¯{×ÿÿýÿÿÿÿÿÿ×÷ÿû÷·ÿû÷~ÿÿ¿·ÿû»þÿÿÿÿßïÿ÷ÿ¾¿¿ÿÿ¿wûÞÿõÿý½nÿݯÿ¾Ýÿÿÿÿÿÿÿýÿýÿÿÿßû×ÿ÷¿ßûÿ~ïý¿ÿÿÿÿÿ÷ïûÿïÿÿÿõúûßïÿû÷ÿßßþýýúÿýõ÷ûÿÿû½ÿõßÿïßõ»ýïýÿÿþÿï÷ÿÿþ÷õÿÿÿÿÿûÿÿÿïÿÿûþÿ÷ýÿÿÿÿï¿ÿúÿýÿ¾ýû¾¿ïÿÿÿÿÛ[ß®û÷û¿ÿÿß÷ûÿÿ¿ÿ¿ÿ½Ûÿýÿ¿ÿÿßßÿÿÿÿÿßÿmïïÝ[ÿÿßÿïÿßÿ¿úÿÿïíÿoþ¿ÿïÿÿÿÿ¿ÿ×ÿÿ½ïÿûÛÿïÿ¿~ÿßÿÿýÿïÿÿîÿÿ¿oîÿw¾ÿýÿ¿ïÿÿÝÿ÷ÿÿûÿ}ûßÿÿëþÿÿÿýýÿÿÿÿÿíïÿ¿ïÿûÿ¿ßßþÿÿ¿ÿÿßÿÿÿÿ¾ïÿîÛÿÿÿÿßÿ¿ý÷·ßõö¿ýÿÿÿÿÿ¿ïïÿÿëÝûýÿ÷þû¿Ûßÿÿÿÿÿÿßÿýÿþÿ÷ß¿Þÿß׿¯¿ÿÿ¿ÿ÷ÿÿÿ÷ßÿÿÿÿÿîÿ÷þÿÿÿ}ýÿoÿÿÿwõ_ÿÿþÿÿÿ¿ëþÿÿÿÿÞÿý÷þÿÿÿÿ×ÿúÿÿÿßëþÿß÷×ÿßÿÿÿÿÿýßÿÿÿýïÿïÿÿýÿÿûÿÿÿÿÿþþýÿÿßÿ÷ý÷½ÿ÷¿ÿ÷ûÿÿûûïÿÿÿýýÿûýÿÿïÿþßÿûþûþþÿßû¿ÿÿþß÷ÿïÿÿÿýþÿÿ÷ÿûþÿÿÞþ÷¿ïëïýû{ßÿýÿÿëÿßÝïßo÷ÿ¿¿ÿÿþÿÿÿ¿ßßþÿÿÿw÷ÿÿÿÿýÿ÷ýÿÿÿ®ÿ÷÷ïþîßÿýÿ÷÷ÿÿþÿÿÛÿÝÿÿûÿÿÿ~û¿oúÿïßÿÞÿÿýïÿÿßûÿÿÿ½ÿþïûïýþûûÿ}ÿÿ¿ß®ÿ¿¿ÿÿÿÿßÿûïß÷¿ÿÿ¿ÿ¿»Þÿÿûÿÿ½ÿî߯ý¿ûÿþÿÿûÿ¿ÿþÿßÿ÷ÿÿ~ÿþÿ½¿ûÿÿþÿïßÿ¶þûÿÿÿwÿÿ÷ÿwÿß¿ÿ÷ÿïÿîúïÿÿþ÷ÿïWÿþÿþÿûÿ¿ÿÿöûÿíÿþ÷ÿÿÿ_þ¿ÿ¾¿ûþÿ¿ÿ{ïÿ¿ïÿÿûöÿ׫ý¿ÿÿýÿÿýÿÿý¿»õÿ{ÿþÿÿÿÿÛÿßÿ÷û{ßöÿþÿ¿û¿ï[þÿÿÿÿï½û÷ÿ~þýßÿÿÿÿÿûßÿÿÿÿ¿þýÿÿÿïï÷ÿþÿÿÿÿÿÿßÿÿëïíëÿïÿßÿÿÿÿÿßýûw¯ÿ÷ýû}õïÿÿý÷·þÿëöõÿ÷ÿÿ÷ïÿýÿûÿë¯ÿþïû»ûïïß÷ïýÿßÖ¿ßþ¾ßïÿïÿÿþÿÿþ¿÷ý¿ÿÿÿÿÿïÿ¯ÿ¿ÿÿïÿ½ï¿ßÿÿ÷ÿÿ·þïÿÝýÿÿ÷ýßÿ½ÿûÿßýÿÛß÷zÿîÿþÿýÿÿÿÝÿ÷ïÿÿÿÿºÿÿßûÿÿûÿÿ¿ÿÿ¿ÿÿÿ÷¿ÿïý¯ÿþïþÿÿÿûïÿ߯¿ÿßÿ¿ÿÿoý××ÿûÿÿÿÛÿÿÿ÷ÿÿÿÿ¿ïÿýÿý÷ú÷ö¾þîî­ûëÿÿÿÿþÿÿßÿÿ¯þþÿÿwýÿïÿýí÷ßÿÿÿÿÿ÷ÿ÷ÿÿÿïÿïÿûÿýÞýÿ÷ûîÿÿÿÿßÝÞÿÿÿÿþÿ÷ÿ¿ÿÿÿÛÿÿÿÿÿûõûuõÿÿÿë}½ÿÿ¿ïûÿÿÿï÷w¿õÿß÷ûûÿýÿ{ÿÿÿÿÿöýþûýÿþÿÿÿ¿öÿÿ¿ÿûÿûÿÿßû¿ÿýÿûÞïÿÿýï¿÷ÿ¿ÿÿ¾¾÷ÿÿûÿ­ë÷êýûß¿ÿ»ÿÿÿëÿýýÿßÿÿ_¿ßûÿþ·¯¿ÿÿÿßÿÿ÷í·ýÿ»·û¿¿ßÿÿõÿÿýõÿïþÿÿÿ÷ÿûÿÿï×ÿïÿÿúíÿÿ÷ïíßÿþ¿ÿ­ÿÞ÷ÿÿ÷ÿ÷ÿ÷ïÿûîû¿û®ÿÿÿ÷ÿÿÿÿÿ÷¿ÿ÷ÿýþûßÿÿÿï÷Þÿïÿÿÿÿÿýÿÿwÿßÿÿúï×ïþþßÿÿÿÿ¿ûÿþîÿÿý×ÿÿþýïÿÿÿ÷ÿÿþþýÿÿzß÷ÿßþï÷¿{_ÿ¿ÿÿÿÿúßýïÝþûÿÿþûþÿÿÿ¿}ÿÿ÷ÿÿïýo·ÿþßÿ×ÿý÷ýþ¿ÿÿÿÿ®ÿÿÿÿÿþý»¿þÿ÷ÿÿßÿ¿ÿ¿ßÿßÿ~ûï^¯vÞûÿÿþÿÿnÿÿ_÷û÷îýÿÿÞûõÿÿýÿÿþïÝï÷ÿ¿ÿýÿ]ÿÿ¿ÿýÿ~ýÿÿ¿ûÿ÷÷ÿ÷ÿÿýûþõÿÿþÿÿ~ÿõþÿýû¿ïÿßÿ×Ûÿýÿûÿÿÿÿßÿ¿ßÿÿÿõîÿþÿÿÿþÿÿÿþïëÿþÿþÛÿÿþÿûßÝÿÿíÿëÿßýÿÿÿÿÿÿÿÿïÿïûï¿ÿ_úÿû÷÷ßÿÿÿ¿ÿýíÞÿëýÿÿÿûï½÷ÿÿÿßíïþÿ»ýÿ÷¿Þÿßÿßÿ÷÷þÚþ¿¿ýïûÿßÕÿÿÿû÷ÿþúýÿ·ÿ¾ýÞíÿÿïoÿÿÿÿÿZÿþïý÷ëßÿû÷ÿÿ¿¿ý÷ÿ¯ÿýýÿíÿÿÿ¿ÿÿÿÿÿïïûÿÿÿÿÿ¿÷¿ýïÿÿýß÷ÿÿÿÿûþÿýßÿßûúÿúßýÿûÿÿïoß¿þÿÿ}ÿý÷ßÿÿýûÿûïïÿïßÿÿöþß÷ÿÿöþÿ×ÿúÿþßÿûþÿÿ¿Ýÿÿ«÷ÿÿïÛÿÛ{ÿw¿Úÿ÷ÿÿ¿ÿÿÿß»¯îÿÿïÿûÿÿÿýïûÿ÷ÿ·ÿÿþ¿ÿÿÿÿ»þ¿ïÿÿßßûÿ}¿ýýÿÿÿÿÿÞÿÿÿßûÿ_ÿßoúÿÿûÿþßÿ_]ûþ÷×þÿ¿ý¾þÿßûÿÿ÷ïÿý½ß_ÿÿÿÿ÷¯ÿ¿ÿÿûýý}õÿÿßûþÿßý÷ÿÿïþ¾ýûÿÿþÿÿÿïÿÿý¿ÿÿÿÿÿÿûÿÿÿÿþßÿïÿÿ~ÿÿÿÿÿõßßÿÿûÿÿÿýûÿÛûÿÿÿÿÖÿû×ÿÿÿoÿÿÿ{ÿÿÿÿ¿ÿßýÿßÿþÿÛÿÿþÿ߯½û÷ýþÿÿïõïÿ÷ÿÿÿÿÿwÿÿÿýÿïÿúÿúÿÿ~ûÿý¿×ûúÿÿÿÿ¿_ßÕýÿÿÿÿ÷ÿßÿÿþÿÿÿÿ¿úýïÿ÷¿ÿÿÿÿoÿþÿþÿÿÿïûþÿ÷wÿÿ»ÿÿýûÿ÷ßÿÿÿ[ÿýÿß¾ÿÝÿû]÷Úïï×ûÿÿ~ÿÿûþ÷ÿ¯÷÷ÿo÷ÿýÿÿþÿ÷¿÷ýÿþïþÿÿþÿïýû¿ÿÿýë¿ÿýÿÿßûÿû]ÿÿÿúÿÿý¿¿ö¿ûÿÿß{î÷ýïÿ¿þÿ·ÿßÿÿïÿ}ûÿÿÿÿÿ{ûÿÿíÿ}÷ÿßýÿïûßíÞß¿ÞûÿïýÿÿûÿûÿûþÛýÿÿÿ×íöÿ÷ÿ×ÿÿÿ¿ÿÿûÞÿ÷ÿÿ¿û÷ÿÿûÿÿÿ÷¿÷õÿÿýÿõÿÿu÷ÿû­ÿÿ÷ÿõÿÿÿÿÿÿ÷ÿþ÷ÿöÿû_o{ßþÿ÷ÿ¾ÿÿÿ÷ûïÿë÷Ûÿÿþÿ¯¾ïýþßß¿{Ýÿÿþÿoÿÿ¿ÿÿßÿíÿþÿ÷þ»ßÿýïÿ½ûëßwÿÿÿ÷ûýïÿÿßÿßßï÷ßÿîÿ¿ûÿoû_¿¿ûíÿÿÿßûÿ¿ÿÿïÿÿÿÿ÷ÿÿÿÿÿÿ¾ÿþÿÿßÿ¯ÿÿ¾þýÿýÿýßûÿïÿÿÿþÿÿ¿öÿû}÷ïÿ~û¾ßÿïÿÿÿÿßÿÿ}ÿÿ¿ÿïýÿýïÿÿ»ßÿzÿÿ÷Ûûÿÿíÿÿ½ÿÿÿÿÿÖïÿw¿¿ýßÿ¾ÿõïíýÿþïÿÿÛÿ÷ÿÿûýÿÿÿþ¿¿ïÿÿýÿÿ¾ÿÿ÷}ÿÿßÕÿÿõýÿööÿ÷½Ûÿûû÷ß÷ÿÿ}ï¿ïþÿÿÿÿ÷ÿ¾¶»ÿÿþÿÿÿûÞ¯ï÷ÿíÿ÷ÿÝÿýÿ÷ûÿ÷ÿÿÿÿþÿ¯wýÿ¿ÿï÷oÿÿïÿÿûÿ¿ÿÛß»ßþßíëÿÝÿÿÿûÛÿïýþýÿßÿßýÿïßÿÿýÿÿÿ»öÿ¿ÿþÞï¿þÿïÿÿÿ»ÿ}ß¿÷ÿýÿÿúÛþþÿÿíÿÿÿ»ßÿ¿ÿþúöÿÿúÿÿ¿þ¶ÿÿ¿ÿ÷ÿ×ýÿ¿ûÿÿÿÝßÿÿÿßûÿïÿÿ~Ýÿÿ׿ÿ¿»ßÿûýßïÿµÿÿÿÿïÿ¯þÿßïÿÿ}ÝÿÿÿÿoÿýßÿßßÿûûÿÿÿÿÿýÿûÚßÿÿÿ÷Ýÿ¿ÿÿÿïß¾ÿ¿~ýïýÿþ¯ý×ÿÿÿïÿý÷ÿßë÷[·Þïïÿ¯_Ûûïÿ¿öÿëýý¿ÿïÕþÿûÿ÷ýÿÿ]ÿÿÿÿþÿÿ¿ûÿ¿ï¯÷ßÿ÷¾ÿ¿ÿÿÿ½ÿþïÿþ¿ïÝ×ÿ÷ÿÿ÷ÿÿÞ÷Û÷ÿûÿÿu׿þïÿ{úýÿýýÿÿÿÛÿÿ¿ÿúßû¿ÿûÿïÿ÷ÿëÿÿß}ýíÿ¿ÿíûýÿÿïïÿëÿûþûÿÿÿÿÿÿþÿÿïïÿÿÿ÷÷·î¿ÿ×þþïÿÿëÿÿ÷ïýÿ¿ÿµÿïß÷ÿßÿßÿõÿÿ¿ûÿëïÿÞÿûï÷îûÿ÷ÿ~ÿûþÿÿÿÿÿÿß½¿ÿïÿ½ÿû¿ÿ®÷ÿÿýÿßÿûþ÷û÷þÝwÿþÿîþþÿÿÿÿÿÿÿ~Þÿ¿îÿûýö»÷íÿÿÿ÷oÿýÿÿßÿßÿýÿÿÿÿ¯ÿßû÷ïÿÿÿÿÿÿÿ_·ÿÿûÿûÿÿÿÿÿûÿÿÿïÿÿýßÿÞÿÿïþÿÿïÿ}ÿ¿oûÿßÿwÿ÷ÿõÿûÿÿïýÿÿÿÿÿ·ÿÿ¿ÿÛÿÿÿ~ýÿýÿ÷ÿÿßÿûßï÷¿Þ½W÷ïÿöþþÿßïßo÷ÿþþÿöïûÿëß÷þßÿûÿÿ{ÿþÿÿ_ÿ¯ßûý÷ÿÿÿÿßÿûýÿÿ¿wÝÿ·ÿ¿ÿÿúÿï÷ÿ÷÷Ý¿Ýûßýÿÿ½ÿÿµÿÿÿ¿ß{ÿî÷¾ÿÿÿÿ¿÷ÿÿÿïýÿ¯ÿ·ÿßßoþÿwÿïÿ¿ûÿß¿ÿÿúÝûÿÿÿ÷ÿowûÿÿÿÿÿÿ¿ûýõïÿþ»ÿûÿÿ¿m¿ÿßÿßÿÿßÿ½ÿßÿßýÿÿþýÿÿýïÿÿ_÷ÿ÷ûþÿÿßÿÿÿõýÿí¿îïÿÿÿÿ÷ïþÿÿþÿþßïÿÿÿÿÿ÷þÿÿýßÿmþÿû÷¿ÿÿÿÿÿÿÿß÷ÿíÿ÷ÿÿÿïûß_ÿ¿ÿúÿÿÛÿÿÿßíÿÿ_ÿ÷ÿÿÿûßÿwßõÿÿýý¿_ýý¿ÿûÿýþïÞîýÿÿ_ÿýßÿ½ÿÿÿíÿÿþ¿ýÿÿïûÿÿÿÿïßÿÿþÿÛûû÷Ûÿÿÿÿÿÿ÷÷ïÿýoÿÿ÷ÿÿíþÿÿÿÿÿÿûÿ¯ÿÿ}ÿÿÿû÷»ÿÿÿýý¿oïïëÿûÿïÿûïûÿÿß×ûÿÿÿýÿÿïÞ×ýÿÿÿ¿÷ÿÿíÿþýÿûý÷oÿÿ÷¿{ÿÿÿ~ÿÿ¿û¿ïßÿ·ÿÿ¿ÿþÿÿþûÿÿ¿ÿþÿÿÿßûÿÿ½ûÿ­ý÷þÿ÷þÿÿßÿÿÿ·þÿÿÿïu¿ÿþÿ¿¯þïïÿýûwýÿ»ÿýÿÞ÷ÿÿþÿÿÿÿ÷þÿÿÿßÿÿûûÿÿýÿîû¿ßÿýýûûÿwÿ¿ÿ­·ÿßÿÿÿïÿ÷ÿ÷ÿzïíÿÿÿïÿïoÿÿíë÷ÿÿýßÿÿ}ßÿþ÷ÿ¿ÿÿÿûîÿîÿÿýÿþßÿÿÿßûýÿÿ÷ÿÿ­ÿÞ¿ïÿýÿÿÿÿþ×ÿÿßw¿ÿúïÿÿÿýÿþÿÿÿûßÿÝêÿÞÿßî¿ÿûïÿÿëïÿÿÿ÷ýÿþïwþÿþûÿÿÿÿûïÿþÿÿþ÷ï}¿ïÿÿÿþýÿ×íÿ_ÿß{ÿû¿þÿß÷^ýÿ¿ÿÿ߯ÿïýÿßýÿÿÿÿÿÿÿþý÷ÿÿöÿ¿ÿýïÛÿõíÿßý¿ÿÿÿ÷ÿÿÿþÿïûë÷ÿýþÿ÷÷ÿ÷ÿÿ÷ßÿ¿úÿwÿÿÿÿîÿßÿ¾ÿwÿß×ÿßýÿÿý÷÷ÿÝÿÿÿÿ»ÿ[¯÷nÿûýû¾ýûÿûÿïÿ÷ßÿÿÿÿßÿ×ÿÿÿß~ÿÿýÿßûÿû{ÿþýÿÝÿÿîÿ÷ýÿ»ÿïö¿ïÿÿîýÿÿþÿßÿÿÿýïÿÿý·÷¿¿Öößöÿû¿ýÿµ÷ÿÿïÿ÷ÿûÿÿÿïûÿÿÿÿû¯ÿ÷ßï¿¿ÿÿÿÿÿ¿úÿ÷ÿÿÿÿÿÿ¿ÿÿõÿþ¯ÿïïëÿ¿ÛîÛÿÿþîßÿÿÿÿïû÷ÿÿÝúÿÿïÿÿÿoûûýû{Öïÿ¿¯þÿÿý÷ýÿíßÿÕûÿÿïûÿíßÿßßß¿ûïÿÿÿ÷ÿÛÿþúÿÿþÿÿ_{ÿßïßÝÿÿÿÿ÷ÿîïíýÿ½þþÿuÝýÿï÷ÿÿ×ÿÿþßÿïÿ_ÿÿþÿ÷ÿÿ·ïÿïûïÿûÿ÷ÿöþþÿÿÿûýÿþïýúúÿÿÿúþß×{ÿíÿ¿wû}ÿÖþß{ÿÿÿïÿÿ¯ÿþÿ¯þÿ¿¿ÿ÷ÿß»ÿÿÿ¿ÿÿýÿêßþÿþýÿÿÿ½Ýïÿý÷¶ÿ·ï»ÿ¿ÿ¿ïÿýïÿÿîÿÿ¿ÿkÿ¿÷ÿ¿ÿûÿÿßýÿÿýÿþÿÿ÷ûÿ½ÿÿ}Ý¿¿ÿûÿ½÷ïßwýÿvßÿ¯ÿûõÿÿÿßÿÿú÷ÿÿ¾þÿÿÿ~ÿÿÿÿ_¿ÿÿûÿÿïýÿ¿÷½ïßß¿ß÷ÿÿÿÿ¿ÿïÿÿûvÿïûÿÿmÿÿÿÿÞ»ÿþÿÿÿÿ¿ÿÿÿÛÝß¿÷¿÷ÿ¿þ¿ÿÿÿýþûýÿþîÿúÿwÿÿ÷ÿßÿß~û~ûÿÝÿÿßÿÿûÿÿÿßÿýÿ¿öýÿ÷þÝûÿêÿ÷¿ïÿÿÿþÿÿÿ~ïÿ÷ÿû÷ÿÿÿ]ïÿÿ·ÿþúßþöÿÿ¯ÿ÷ÿþÿÿÿÿÿÿõ¿ÿÿ¿÷ÿýÕ¿û»ßÿ½ÿÿûÿþýþÿïÿÿí¾ß÷ÿ÷¿÷÷þÿÿÿÿÿÿ¿ýÿÿ{ÿÿÿÿþÿß¾¿ïkÿýÿýþ¿ý{ÿß¿ÿëÿÿþÿ××ßÿÿþïþ÷_ßÿÿþÿÿßÝÿÿwÿ÷û¿¿ÿûÿ÷ßÿÿÿ·¯÷oßÿwíïþþÿÿÿ¿ïþû¿ÿÿ×ÿÿï×ÿ÷ÿûý¿ÿýûÿ¿ÿ·÷ÿÿ¿ïÿúûÿÿnûÿÿïÿÿÿûÿÿþÿ¿ÿþÿþþÿ¯ÿßÿÿûÿ¿¿ÿÿïÿ¿¯ÿþÿÿÿÿýýÿÿÿÿÝíÿÿûÿßÿíÿÿÿÿ÷ÿ[ÿÿÿöÿ÷ÿ_ÿûß×ýþ¾ÿ¿ÿÛýÿÞÿ×ÿ÷ÿÿÿÿýïÿïß½ÿÿ÷ÿÿ¾÷ïí¿Ýÿïþÿÿµÿ߯Ú÷¿ÿÿÿÿöýÿÿ¿»ÿûþÿÿÿïû÷ýïýßÿÿÿÿû¿ÿÿýÛïÿÿ÷þÿïÿ÷ÿÿ_ßÿÿïÿýûÿÿÿÿÿÿÿÿÿ׿þß÷ßwÿÿÿÿÿûÿþïoÿÿ¿ÿ÷ÿÿÿß¾¶ßïÿÿÿÿÿúÿ÷þÿÿÿÿÿïÿûÿþÿÿûûÿþÿûÿÿýÿÿÿwÿÿ¿ÿ¿ÿÞ¿×Ýïÿÿ¾ÿÿÿ÷­ÿßûÿ~ÿ÷þûïÿÿßÿ¿¯ÿ÷ÿÿ×ÿÿÿÿÿ¯oúßÿÿßïï¿ßý·¿½ÿÿúÿÿ÷ßû÷ÿÿ¯{÷ÿßÿÿ½ÿ_¿ûÿÿ÷ï÷û½ÿÿýkÝßý÷ûÿÿ¿¯ÿßýíõÿÿ¿ÿÿ÷ÿïþ¿ÿýÿ÷ÿýÿýÿwûßïÿ}ÿöï­ßÿÿZµýÿï¿ßßÿ÷ÿþÿÿo¿Ý÷ßÿÿý¶ÿïÿÛïÿÿÿû{÷ÿÿ¾ÿÛïþÿÿûÿ¿ÿÿ¿ÝÿÿÿÿÞßïÿûîûÿÿÿÿ¿Ûÿÿûÿïÿïÿ÷~ÿÛÿïÿ×ÿþÿ[úûþûûûïûÿÿ߯ÿ¯Ûýÿ÷ÿÿÿ½÷ÿÿÿ×ÿÿûÿÿÿïÿÿúÿoþþï{ÿûßþÿþÿÿÿûßÿÿûÿÿþþßÿßýï÷ÿ¾ÿýÿ¯wëÿÿÿÿÿþýÞÿÿ¿ýÿ^ÿßÿÕ¾ÿÿÿÿÿ}ÿþ÷ÿïßÿÿ¿î÷¿oßõÿÿî¿ýÿoÿïÿÿïÿ}þþþÿ¿ÿÿ¿ýÿ÷ÿ}ÿÿ»ÿ½ïÿû½ß~ÿÿÿÿÿ»ÿÿ¿Õÿÿÿûÿþîïÿÿýÿÿÿÿ¶ÿýÿýûwÿÿþýß_ÿÿÿþïÿÿÿöÿÿþÿ÷ÿ{ÿ¿¿¿ëý½ÿÿëï¾÷ÿ½×}öþïûÿÿ_ÿÿûÿÿÿÿÿÿ÷ûÝ÷ÿûkÿÿÿ~»ÿ¿ÿÿÿîÿþûÿ®ÿ÷ïÿßßÿÿÿÿÿ»ÿûûÿûݾ¿ÿ÷ÿýÿÿ»ÿýwÿ÷ÿï{ÿÿÿÿß½÷Vÿÿÿÿÿÿÿ×þÿ÷÷ÿÿÿoïÿÿöîþÿþÿÿÿý¿ÿÿÿï¿ÿÿïÿÿ^ÿúÿ÷ý×ý·ÿ½û×ïîÿÿýÿ·ûÝ¿ÿ÷ÿÿ{ýþÿÿýíþÿÿïÿ¿ÿwÿýþ÷ßÿ¿þÿþÿÿïÿ·ûÿûÿ¯ßßÿÿÿÿÿÿÿÿ×ÿÿ÷ÿÿûÿ¿ïÿõÿÿÿÿÿëïß}ï÷ÿÿÿÿÿÿÕÿÿï÷ûÿÿïý¿ÿú¿ÿ÷_ÿßßÿëþûÿÿ·ÿÿ×k÷¿ÿþÿÿÿÿëÞÿþÿÿþýû÷ûþÿû{ÿÿþÝ¿ÿÿÿ÷ÿÿïÿþÚÿï­÷ßíõÿýÿ¿ÿÿíßÿÿÿ÷ÿûÿ÷ÿ÷ý¿ÿõÿÿÿÿûoþý¶ÿßkÿÿÿÿÿÿÿ÷_ÿÿ¿ßïÿÿÿ÷ßÿÝÿýþÿÿ¿ïÿþÿÿÿßÿýÿ~ÿÿßÿ¿ÿÿûÿ»ÿÿÿ»¿ßëßÿÿß¿ÿÿß÷ÿÿÛÿÿþÿ÷ÿÿÿÿ¯÷ÿÿÿ½ÿßþýûÿþß×þÿÿÿßÿïÿßþÿ߯¿ÿþ÷½÷ï_ßþÿ~ýßÿÛÿûïÿ¿ÿ÷ÿÿÿÿÞÿû_¿ÿ_þÿÛÿ}ûÿ½ïÿÿßWÿßýÿïÿÿ÷û¾íïïÿÿÿÿþööÿ¿ÿßÿÿÿÿ¾ßÛßÛÿþÿÿÿÿíÿÿÿÿÿïïÿÿ¿wþÿÿûÿïÿßþÞÿÿÿõïÝÿûÿûß÷ÿÿ÷ÿÿÿÿ_ÿöï»ÿ_ÿÿ÷í¿ÿ~ÿ÷ÿßÿ¿ïÿßÿÿßûÿÿ¿½¿ÿÿÿÿû¿¿·ïÿï¿ÿï¿ÿûÿwþÿþÿ¿ÿï×ÿÿûÿ÷ÿÿþë¿þßß÷úÛýýûõßÿÿÝßûï_Þßûÿ¿ï}ë¯ÿ÷ý÷ÿ_þýÿÿ÷Þÿÿõÿÿÿý÷ûÿÿ~ÿÿûýþÿÿ¿ûÿûµïÿÿö¾ëÿ·ÿ÷ÿ_ÿõÿÿíûnÿ{ÿ÷ÿÖßÿÿ¿ßöÿÿý¿oÿÕÿÿÿÿõÿÿÿÿÿÿ½ÿý÷ÿÿûÿÿ¾ïÿÿßÿÿÿëÿÿïÿþïÿï»ÿÛýþÿý¿ÿ¿ÿÿß÷÷¿ûßÿÿû÷ÿïÿÿÿÿ×vÿþÿÿÿ¾÷Þÿÿ¯ÿýß¿ÿýûû÷ÿûÿÿÿÿÿÿÿÿÿÿÿï¿ûÿÿ¯o¿ÿÿÿwÿûëÿýß¿ÿÿÿ÷ÿÿÿÿÿÿý¿÷ÿïþ½¿_ÿÿßýûÿÿÿÿÿÿÝýÿýÿÿû÷ûÿÿ¿ÿßÿ{ÿÿïÿÿþûÿï¶ýÿ÷ÿ¿û÷ïûÿÿýýÿ÷ÿÿ{ýßþÿ÷ÿÿÚ÷ÿß×ö÷ÿÿ¿ÿÿºÿÿ÷ûÿÿýÿ_ÿíï¿o}ÿÿþÿþÿÿÿÿ¾ýïßÿÿûÞÿ}ÿÝÿÞÿ¿ýÿÿïíÿÿÿ¿ï¿ÿ÷uëÿÿïûÿõûïÿ¾ÿ¿ïÿÿ÷þûÿ÷¿ÿÿ}ÿý÷ÿÿûÿõ÷ÿ×ßþÿûÿ¿ÿÿßûÿ¿ÿÿÿßo¾Ûÿÿý¿ÿÿÿßÿÿþïÿÿßþÿÿßÿÿÿwÿþþÿÿ¿ÿ÷ÿÿ÷ý½ÿÿÿ»ÿ_ÿÿöÿÿÿÿÿßíÿÿ½þÿÿÿýoÿ÷ÿÿÿý¿íßÿþÿíÿÿÿÿïÿÿÿÿÿÿ{¿ÿÿÿÿÿÿÿïÿÿÿ÷¿ûîÿ÷ÿïßÿ{ïÿýÿ¿ûýÿÿßÿÛÿÿÿîú÷ÿßÿïÿÿÿûïï÷¿½ÿÿïÿ÷ÿÿíÿÿÿÿÿ×ÿ¿ÿÿ÷ÿÿÝÿ½ûÿïÿû¿¿ÿÿÿý÷÷oþ¿ï¿ÿÿßÿÿí÷ÿÿ¿Ýÿÿ¿ÿßÿû÷ÿ÷ÿÿoýû_ÿß{ÿïï÷ýÿúÝ}ÿöÿÿþÿöýÝÿÞßßwÿÿwÿ_ÿÿÿïßÿÿÿý»ý÷íþÿÿí÷^ï¿úïÿÿßßßÿÿÿþÿvúîÿßÿÛÿ¯ÿÿ½ÿÿßÿêÿÿþÿÿ½¿ýýÿ½ïßÿ¿ûûÿ¿ÿÿ÷_ÿßÿÿíÿ¿ÿþÿ×ï×ý¿ÿ¿þýýÿ»ý½oï¿ïÿþÞïþþÿ¿ÿÿÿ¿íÿþÿ¿ÿÿÿïÿ_öïÿßëþÿþþúÿÿþþÿÿ÷ß¿ÿûþýÿÿÞÿÿÿÿÿÿÿÿÿ¿ÿÿïÿ¿¿ÿÿëÿ¿ÿ¿ÿÿï÷ëÿûïÿÿÿï®÷ÿÿ·ÿßÿöïÿý¿ÿßþÿ¯ÿwÿ¿ÿîïÿÞ¿¿Ûþÿûßÿ÷ÿÿÿþÿïûÿÿÿÿÿþÿÿýßÛÿï÷þû_ÿûÿýýýýû÷îÿ¿íÿÿÿÿ¿öûwÿ}ÿþ½ÿÿ÷{ýþÿßíÝÿ÷ßÿÿ÷·ÿÿwÿ{ÿÞÿÿÿµÛÿß¿Ýÿÿÿÿ¿ÿÿ¿Ûúÿÿïÿý¿þÿÿ~ÿÿÿßýû½÷ÿÿÿÿÿÿß¿wý}ÿÿÿ_¿ýþÿßÿÿûÿßÿýÿÿoÿÿÿÿ½ïÿÿÿÿ}ÿÿÿÿÿï»úÿßÿûÿ¿Þÿ¿»ß÷ßßÿÛÿ¿ûûÿoï÷ýÿÿß÷÷ÿÿÿÿÿÿwíûýÿÿÿÿ÷ÿÿßûíÿÿû÷ÿßÿþÿuÿþÿÿßÿÕ¿ÿÕ¿wÿ_þïÿûÿÿþ¿­¿ýÿÿÿÿÿÿ¯ÿÿïÿ½ÿÞÿ_ïÿ½ÿïÿÿÛ÷_]ÿû_÷ÿïûÿïÿõïÿ¯ÿïÿ÷¿ÿïÿÿÿÿÿý~ûÿïÿ÷ÿûþÿýÿÿïÿÿÞÿÿÿíû÷ÿõ¿ïÿýßÿÿýÿÿÞ¿ÿÿÿÿïÿ¾¿ÿþÿïÿßïýwÿûÿÿÿ}ÿïïÿßß¿ÿïÿýïÿûÿÿþÿÿï÷ÿ¿ÿßÿÿÿýÿÿûïý÷Ýÿûÿÿÿýÿ~Ú÷}¾ÿûÿ»÷ÿúõÿïöÿÿïÿÿÿwÿ×ÿÿßÿïÿÿ÷ÿýÿÿÿ_ïïÿÿÿÿïÝÿýÿû_ûïþûÿ÷ÿïþÿíëïû~ÿÿÿ¿ÿÿýÿÿÿÿþûÿÿÿwÿÿÿý߶ÿ½ïßÿ½¾ûýÿÿÿ÷ÿíëÿÿýÿ{ÿûþÿ­ÿï÷ÿÞÿÿÿÛßÿÿ»~þïýÿÿÿ÷ûÿÿûþ·ÿÿ¾ýÿÿûýßÿÿ½ÿÿßÿÿÿÿ÷ÿÿÿöÿÿÿþÿÿïÿ÷ÿÿýÿÿÿ÷ÿýÿ÷þÿþïÿÿÿûÿoßßýÿûßßÿÿÿÿÿÿûÿÿ¿þÿ÷ÿÝÿï¶ûêýÿÿïÿßûïïÿ÷ï÷ÿÿÿÿýÿ{ïûÿ¿ÿþÿý¯ïþÿÿïÿûuÿßï¾î»¿¯ÿÿÿÿÿïÿÿÿÿÿÿû÷ÿÿÿ¿ÿ÷þÛ»íýÿÿú¿ÿÿëÿÝûÿîûwÿÿýïþýúÿý½ÿÿýoÿ÷ÿÿý×ÿßßûÿÿþÿ×ÿþûÿ^÷ïÿÿûÿßïÿÿÿ÷õõþþö¿ÿý½ÿýÿÿÿÿ¿÷­÷¯ÿÿ÷ÿïþÿþ½÷ÿíÿ¿þöÿÿnÿÿë»ßûÿþ÷ÿïÿÿÿÿïïúÿÿ×þûß÷¿ÿÿÿßïzõßÿýÿ÷ßßßÿÿÿ¿ÿÿ}ÿÿÝÿ¿^ß÷ÿýÝ¿ÿÿÿ÷¿ÿÿýþïoÿýÿÿëÿÿÿþþ¿ÿîÿÿÿÞÿÿþÿÿÿß¿¿ý÷ÿ¿ÿÿÿ¿ÿÿÛ÷ÿÞý»ÿÿÿÿþýÿßö½ÿÿûÿ÷ÿÿïûÿïÿý÷ÿoÿÿßoÿÿÿïÿÿÿÝûÿý÷ÿÿÿßõÿîÿÿßÿÿ~¿ÿÿßßÿïûÿ¿ûÿïÿÿÿÿþýÿßÿÿÿýÿû÷¿ÿÿ¾ÿÿÿûÿwÛÿýÿßÿÿ¿ýÿýëÿÿÿÿÿÿ¿ÿÿõÿ¿ÿßþûÿïÿÿÿÿÿÿûÿÿÿýÿÿÿ¯ëþöÿÿÿßïûÿÿ{÷þþÿïýûûÝÿoÿÿý¿¿ÿÿýû÷oïÿwÿë¿ÿÿýûþÿÿýÿÿÿýû÷ÿÿÿþúÿ÷ÿÿßÿÿûþÿëýýÿþßÿþÿÿþÿÛÿÿßÿÝ÷ÿýï_ÿöûëßÿÿ÷ýÿýßïÿþÿÿÿúï~ßýÿ¯ÿºÿÿÿûÿýþý¿ÿûÿÿÿßÿßÿ¯îïÿÿ¯ÿ¾¿ÿÿÿÿÿÿ¿÷ÿÿï÷ÿ÷ûÿûÿÿÿÿÿ÷÷¿÷ßÿÿÿï÷ÿ÷ÿÿï¿ÿÿÿwÿÿûÿýýÝ_ÿßÿû÷ûoûÿÿýÿÿýÿûþÿýÿÿÿÿïÿÿ}ßÿ·ßÿÿÿÿÿÿÿû×ÿÿ÷¿ýWÿÿßÿÿ¿ÿÿÿ¿ýÿöÿ¿ÿÿÿÿýþßþþïßýûÿÿÿÿÿýýÿÿÿÿþýÿÿÞÿý¿ÿÝþÿ×ÿÿÿÿÿ¿ÿþþïÿ{ûÿÿÞÝ_ÿÿýÿýÿ÷ÿÿÞÿþÿÿßÿÛÿÿÿÿÿûÿýßÿöþïß]ÿÿÿo·ÿßûÿ»þ÷ýÿßßÿÿÿÿ÷ÿ·ß÷ýûÿÿÿÿßÿÿÿÿÿßÿþ÷ßÿÿïýýÿÿ}ÿußÿÿý÷ÿÿÿ÷ÿÿûÿÿ¿ý¿ÿÿ÷ÿÿûÿÿûÿÿÿÿ{úÿ_ÿýÿý¿ÿïÿßûÿÿýïÿþ¿ÿÿÿ¿ýkþÿý«×ÿßïÿûþ¿ÿýû÷öýÿ÷ûÝÿÿ~ÿßÿÿÿëßÿÿ¿þ·ÿýßï߯ÿjÿ½ûî¿ÿ¯þ÷ÿ÷ÿÿïßÿÿÿ¿ßÿ÷¿ÿýýû¿ï÷wÿ÷ÿ®ßÿ¿ÿ¿ûÿÿþûÛÿÿÿßÿîßû~ÿÿßÿ¿ÿû¿ý¿ÿ÷öûûÿ×þ߯ÿÿÿÿß¿oßï¿ïÿßÿÿþß÷ÿíÿïÿÿÿÿÿÿÿÛÝûÿÿo÷ÿ¾ßÿÿ}Ý¿ÿûÿß_ûÿþÿ_ýßÿ÷ÿÿß¿ýÿï߶¿ßÿÿÿþïÿÿÿþÿ÷ÿÿÿþ¿þÿÿÿ_ÿÿ÷þÿþßÿ÷ÿÿÿÿ¯¿ûû×ÿÿÿÿûÿÿÿûÿÿÿÿ·ÿwÿ~ÿÿÿ½ýß￯ÿÿýþû}ý÷ºÿÿîþ¿ëÞÿß{ßÿßïïýßÿÿ~ÿýûÿÿÿÿï÷ýßÿûÿ×ýÿïÿÿÿÿÿ¿}ûÿï¿ûÿ¾ÿÿÿß¿ûßÿý¾ÿ×ÿÿõþ÷ÿ¯ÿÿÿÿ÷ÿ÷ÿýïÿîÿÿÿÿ÷ÿ¿]ÿÿ÷¯ÿ~»¿¿¿îÿ¿ÿÿÿýÿýÿÿ½ÿßþÿÚû½ûßÿÿ}ÿïûÿÿ¿ÿ¿ÿ^ïýûþÿÿÿÿÿÿÿÿÿßïßÿnïÿþûþßõÿÿ÷¿÷ýÿþý÷ÿÿw¾ÿ÷ÿúÿÿ¿ûþÿwÿûß½­ïÿ»¾×ÿÿÿ÷ÿÿÝÿÿûûÿÿÿÿþÿïÿßïýÿÿÿÿÿûïÿÿ¿ÿÿ×ÿþûÿÿÿÿÿßÿ_í¾ýÿ}ÿÿþÿþþÿÿwþ¿½þÿýýÿÿÿÿÿÿý»þ÷ÿÿß­ÿýÿÿßõûß½ÛÿÿÝÿ×ÿÛ÷ÿ¿¾»ÿÿÿÝÿßõÿÿÿÿ÷ûÝßÿÿýÿÿÿ×ûÿÿWÿû}ýÿÿïÿ¿ÿÿ÷û×ÿÿÿ¿ÿÿÿÛÿÿÿÿvÿÿ¿ÿÿýÿÝÿÿ]öÿõ{ÿ¿û÷þÿýÿõíÿÿÿþÿÿÿÖÿÿwÿêþÿÿßÿÿ¿þïÿÿÿ]÷ÿÿÿ÷þ¿ÿï÷öÿoÿÿößÿßÿ¿¿û»ûýýþ×ÿÿ¯ÿ_þÿûÿþûÿþÿÿ¿ûÿ¿ÿßÿÿ¿ïëýýÿëûÿûÿ}ÿ~ÿµÿÞïÿïÿíÿÿÿÿÿÿûïÿ÷ÿÿßÿþÿÿÿ¿úûÿÿÿ÷ÿÿû÷÷ïÿúÿÿoïþï¾ÿïÿÿ÷ÿßÿý~¾¿ÿûÿÿÿöÿÿîßÿ^ÿß÷ÿÿÝïöÿßßïÿýß¿ÿþ½ÿÿÿÞ¿þÿíÿþþýÿûû¿ß¿÷ÿÿû¿÷ÿÿÿÿ~ÿýþî¾ÿßÿÿýÿïÿµûÿ¿þÿÿÿ÷ïÿýïýÿÿ¿ïßÿß·þÞÿûÿíÿû{ÿßß«ûûßÿÿÿþïÿÿÿÿÿÿÿß[ÿ¿ÿÿ¾ßý÷ÿÿÿïÿþßÿ÷¿ï÷ýþÿßÿÿÿßÿÿÿ¿¾ÿûÿÿ¿¿úÿû·÷ïÿßÿýÿÿÿý¿ý÷ÿÿÿÿ¿ÿ÷ÿÿïûýÖÿÿßÿÿÿÿÿÿûýûûõÿÿÿÿ~¿ßÿÿïÿÿßïßÿ{ïÿwÿöýÞÿÿ_úÿïöûÿÿÿÿßþÿý¿ûÿÿÿÿÿÿßþîÿÿÿÿÿ÷þÿ÷¾ÿÿßßÿû·íÿÿÿßï¿ÿûßÿÿïïÿ÷ÿïÿÿwßûÿþûþ÷¿ÿÿûÿÞÿýýþÿ¿þþÿÿþÿûïÿ»÷w¿ûïÿýÿß÷ö»}ÿûßïýÿïoÿû¯ý{ÿÿÿÿÿßÿÿßÿ÷ûÿ¿ý{ýßÿÿ¯÷ÿ÷·¿÷ý¿÷öÿÿïþûÞÿÿûÿÿÿÿ¿íÿþÿ÷ÿ»û¿]ÿýßÿ¾ÿïûþÿÝÿúÿÿÝßn÷ïÿÿûýßÿ·ÿÿ¿ÿÿÿÿÿÿÿïÿÿÿÿÿÿÿÿ_·÷ÿí÷ÿþ·ÿÿ¿þÿõûïûþÿÿÿÿÿÿÿþûÿïÿ}ÿÿÿû«ÿ¿÷ÿÿÿÿÿïÿýÿÿ{ÿÿÿÝßÞÿþî÷ÿÿÿÿÿÿþ÷Þÿ÷ÿÿï¿ÿûÿ×ÿÿ÷ÿïÿßÞÿÿõ÷¯þþÿïïÿ÷ÿþÿï¿ÿßÿuûÿýïûÿÿ_ÿþÿßúÿÿÿýÿÿ{ûÿÿûþ¯ïÿûÿÿÿîÿþÿíÿ×ÿýÿßþÿïÿ¿ûÿ÷ýÿïÿÿ]ýÿÿÿWÿn¿ÞïÕÿýÿëÛþý÷ÿÿßïÿ¿ÿßÿÿ÷ïßÿýþ×_ÿý¿ûþÿÿÿ»ÿßõ_ïÿÿïÿÿÿÿïÿ÷ÿÿ÷ïÿÿïûßÿýÿÿúï¿þÿ_îÿÿÿ½ÿÿ¿ï÷ÿÿÿþÿÿÿ_ºÿûýßÿýÿÿoÿûÿïþÿÿÿÿÞÿÿÿÿÿÿïÿÝ÷ÿûÿwûÿëßïÿÿßïÿÿÿÿ»¿ÿß¾ÿûÞÛýþ½¿ûûÿÿßÿþýÿßýÿ÷ÿ½ïÿïûÿÿÿ÷ÿöÿÿzÛ÷÷÷ÿßÿ¿ÿ×{÷ÿÿßÿ÷ûo÷¿ÿûû¿ïÿÿÿWû÷ßÿþÿÿÿÿ×ûÿÿwßûýÿ­·«¿ÿÿïßÿ»ëû÷ïÿßÿÿoÿÿÝûÿÿþÿÿÿ^ÿÿÿßûßÿÿÿÿîýÿíÿÿÿíÿïöß÷ýý÷ÿÿo¿×ÿo×ÿßÿÿýïßûÿûÿûûþÿvûÿnÿ½ÿûïýûÿÿõÿÿÿÿ¿ÿÿ¿÷÷_ßÿí¿ÿ¿¿ûß÷ûßÿïÿß{ÿÿûÿíû¿ÿÿ{ûßßþ¿ß÷ÿÛ¯ÿÿÿÿïú÷ÿÛÿÿß÷û_ö¿ÿÿ÷Ûÿÿÿßß÷þÿÿ¿õÿ¿ÿ·ÿÿÿÞïÿÝûþÿïÿÿíÿûÿÿÿoûÿÿßÿßÛÿÿÿÿÿÛÿÿßÿÿwÿÿþëÿÿî÷ï·ÿý¿ÿßÿÿÿÿÿßÿ÷ÿÿú¯ïÿÿ~ÿÿ_¿ÿ÷ßÿÿ×ÿûÿÿÿ÷ÿÿþýÝÿÿþ×ÿþû¿ÿÿÿÿîÿïûÿÿÿo÷ýßßÛßíÿ÷ýþ×Uÿûÿûÿß¿ÿÿþýß÷ûïÿÿ¯ÿþÞþþÿÿÿÿÿ¿¿½ÿý¾ÿÿÝÿÿÿþÿÿÿþ·ï¿}þïÿÿïßýïíïÿßÿÿýÿÿõÿÿÿÿ÷~ÿ¿ïÿ÷¯ÿÝïÿvÿ}þþÿ_öÿÿ¿ÿýÿÿ÷ûÿÿÿÿßõûÿïÿÿúïÿû»ûúú×õÿÿÿÿÿÿßÿÿÿþÿ÷ÿ÷ÿÞÿý»ÿÿïÿÿÿÿ¿ï÷¯ßÿÿÿýÿïÿÿ¿ÿ¿ÿïÿ÷÷ÿÿÿÿÿÿïÿÿþÿ~÷ï﾿ßÿÿoýõÿÿÿÿÿÿÿÿÿ~ÿÿßwõ÷ÿûÿÿW¿¿ÿïÿïÿÿÿþÿÿßÿ÷ÿÿÿ¿ÿþÿÿúÿ÷ÿÿÿÿßõÿÿÿßûîþÿÿ^ÿ÷o÷öÿÿþûÿëÛÿ¿ÿÿÿïÿÿ¶÷ÿÿ¯úúï¿ÿþûÿÿýÿûÿ¿ýÿïÿûëïÿß}ÿÿ÷ÿ¾Þþÿïÿßÿûÿ¿ûÿ¾¿ï¿ÿý{þÿÿÿÿþÿÿýÿûïÿïþß¿ÿ}ÿ¿ÿÿÿþÿýïïÿýÿÿÿ¿ûÿïÿïÿÿÿöýßýûïÿÿÿ¯ÿÞÿÿïýÿõþÿÿþÿ·ßû¾þÿÿ·ÿïÿþ÷ÿÿÿß÷ÿÿßÿ{þÿ÷ÿÞýýßÿïÿïÿýÿÿßÿÿÿÿ_÷]ÿÿïýþî·þï¿ÿûþûÿÿïÿÿÿÿßÝÿ{úÿÿï÷ï{ÿÖÿÿÿÿÿÿ¿÷ï÷ßþÿÿûÿÿ÷ÿí÷Ý÷ÿÿûÿ¿½ÿÿû××ÿûÿ¿ßÿ÷ÿÿÿ»ßûÿÿÿßÿûýßÿÿwÿÿïߺÿÿýÿëÿÿûÿÿÿÿßÿÿÿýÛÿ÷÷ÿÿÿ¿ÿÿo¾ýÿÿ¿ïÿÿÿöÿÿ¿ÿÿÿïÿûïý÷ýÿÿÿïÕ}ÿß¾ßÿïÿõÿïþ¿ßïÿ·ÿ_îÿúÝþþïßïÿ¯ÿÿý¿½ÿ¿ÿÿÿÿÿ÷ÿ÷ÿÿßÿÿÝßÿïÿßÿÿÿÿ¿ÿÿÿÿ¿ÿßÿÿßõýÿÿî×ïuûÿÿ¾ûÿÿÿûÿÿ¿¿ßþþÿ~ÿÿ÷ýïÛÿûý÷îßÿÿÿûÿÿ÷Û{ÿÿÿÿÿÿÿÿþßïÿõÿÿo¿ÿÿÿÿÿÿÿ}ÿýÿýï¿ÿßÿÿÿï¾ÿÿ×ßÿÿÿ÷Ýýÿÿ¿wûÿÿoÿ¿ÿïÿþïÿÿÿÿÿÿößÞÿïÿ¿ßýÿÿïÿ¿ÿÿÿûÿÿî¾÷ßÿ{þÿýýÿÛÿvÿÿßÿÿý¿÷ïßÿmþ¿ÿýÿ¿¿ÿßÿÿÿýÿïþÿ÷ÿÿÿÿ¿ÿûÿÿ¿ÿÿõ·»ûþïûu[ÿ÷ÿß_{¯þÿÿÿ÷þÿþ÷ÿÿÿîÿÿo÷ÿïýÿ÷ýÿÿÿÿ»ÿÿýßÿö×½ÿ׿ÿÿ{ßßoÿï½ÿÿÿþßÿþïÿÿÿÿýÿÿþý÷ÿÿ·ïÿÿþÿÞÿ¿ûÿÿ÷ïöÿßûêÿþýÿÿÿÿÿÿÿ¿÷¯}þûÿÿ¶þÿßþýÿíÿûÿÿÿïÿ¿þûßÿÿµÿÿïÿÿÿ~ïÿþÿÿÿöþÿûÿ¿ÿÿýëþÿÿÿÿþÿûÿÿ_ÿÿ½ïöÿïÿÿÿÿ·ÿÿïÿ^í¿ÿÿ÷¾ýïÿÿïöÿ÷oÿÿïïÿîûýÿûïÿ»ÿÿÿ¾ÿÿëþýýþÿÿÿÿÿ÷w÷ÿþ¯þÿÿý÷ßïþÿßµÿß½ÿÿÿßïÛþÿÿþÿÿÿÿëßÿÿßßÿÿýÿoÿïÿÿï÷ûûÿþïÿïÿïýïßßûÿûï»÷ÿ¾ÿïý÷ßÛÿÿþÿÿßþ÷ÿ½ýÿÿïß·ÿÿÿûïßÿÿÿ÷þï½ÿÿûß½ÿÿïÿþ¿ßßÞÿÿÿï¯ÿ¾ß¿ÿÿîÿßÿ{ÿÿÿýûýÿÿ½ÿÿ÷ÿÿÿwïßßûÿÿÿÿÿÿýïÿÿúíÿÿÿöÿßïÿÿþÿúïýÿïÿÿ÷ÿÿþßÿvþÿÿßÞ¿ÿ½ýûïïÿÿÿöÿöÿ½ÿý÷ïÿ÷þÿÿÿ÷ÿÿ÷÷þúÿ¿÷ÿïÿ÷îÿ×ÿûïÿÿÿ÷ûÿ÷ÿë×ýßÿý·÷ÿwÿ»ÿßýÿÛÿþõþÿßûÿÿëÿÿï÷ÿßïwÿ÷~ûößÿúÿïï÷ÿïï¿ïÿÿïïÿÿ÷ÿýößû»×ÿÿ÷¿ÿýß÷_¿ÿÿ×ÿ}ÿÿ[ýíÿÿ÷ý¿ýþÿýßÿ½ÿßÿýþ×ÿÿ¾ßÿÿïíûÿÿÿýÿ÷wÿÿÿû¿ß_ï÷ÿÿëûûïîïÿýûýïýÿÿýûÿ]ûÿÿÖÿþÿýýýûÿïýÿûÿÿÿßïÿþÿÿ~ÿþõû÷÷ÿÿïÿÿÿÿÿÿÿúßnßÿÿÿþïßÿÿ÷wíÛÿûÿÿþûÿþÿ¿ÿûÿÿÿ]¿öû¿ÿïÿÿ]ÿÿÿ½þýÿû÷zÿßÝÿÿÿ¿ûÿýÿýÿ¿÷ÿÿÿÿþÿ·ßßÿÿÿÿß{ý÷ÿï·þÿíÿÿ~ÿÿÿÿÿ÷¿ÿïÿßÿÿûÿÝÿý¿}ÿ¿ÿÿÿÿþÿÿ¿ÿÿÿþÿýý~ÿÿÿÿÿnÿÿÿÿßÿÿ¯·ÿþÿþúûßÿÿÿþ÷õ÷_ÿÿûÿÿ¿ÿûÿÿÿ¿ÿÿþÿÿ÷ÿýÿõ÷Þÿßßÿÿßÿßÿ¾ÿýþý·wÿÿûûÿÛÿÿÿÿÿßýþÿýÿ÷ÿßýþûÿïï÷ïÿþÝÿ¿ÿþ×ÿûþþý¾ß÷ÿÿú¾¿·ëÿû®ûÿÿÿ¿ÿý¾ÿûÿï¿î×ÿûoÿïûÿÿÿýýÿÿ÷ýÿÿwÿïÿÿ÷ýû¾ÿÿïÿÿÞÿÿý¿×þÿÿõÿÝß{ÿûþïÿ¿¿ïÿ÷ÿ÷ýýuï¿ÿþÿÿÿÿíÿ}ïÿÿïÿ÷ÿýÿ¿_ßïÿÿ_ýÿÿw÷ÿÿÿÿÿo­ÿýïû¾¿ÿÿÿ÷þÿÞÿÿþ«ÿÿ÷÷õÿõýÿÿÿ÷ÿïÿÿÿ÷ÿ_ßýÿÿÞïÿÿÿÿÿÿ÷ÿÿ»¿w}×ÿÿþÿ÷ÿ¾ïÿ^ÿï}ÿÿÿ¿ÿÿÿ¿ïÿÿwýÿ½ÿíÿ¿¿wö·þýþûÿÿÿÿïÿÿûýßÿÿÿÿÿÿwþ÷ÿ÷÷÷ÿýÿöÿÿ»ÿÿ}µ¿û¿¾ÿÿÿþÿÞßßÞýÿûëÝÿ÷ÿúïÿ½ëûÿûÿÿýÿßÿÿÿÛÿÿ¾úßþ¾û»ÿoÿïÿÿëÿÿÿýÿîÝïïýûÿßûÿÿÿ¿õ¿ÿ¿ïÝÿÿÞÿ¿ÿÞÿýÿúþïýþÿkû÷}ïÿÿ¿¯ÿþÿÿÿþ÷ýþß÷ÿïÿÿÿÿÿÿßÿ÷÷÷~ÿßÿÿÿÿÿÛ×þÿþïÿÿÿÛ_ÿÿþþÿýÿû÷þûw½þÿß¿ÿÿÿÿ_ÿ¶ÿÞþÿëßÿ¿û¯¿ÿ÷w¯÷ÿÿÿÿý÷ÿÿÿúÿõþÿÛ»ÿ{ÿÿÿßþïÿÿýÿßß}ÿÿ·ÿíþ÷ïëÿûßÿßõïïýßïÿ¿ÿ¿ÿýÿ÷Õ{®ÿíþÿ¿¯ÿÿ¾¿ÿ¿ÿÖ¿ÿÿÿÿÿÿßïÿíûþÿÿÞ¿ÿîÿÿÿoßÿÿ÷ÿÿÿþÿ÷÷÷ÝþïÞÿÿÿ¯ÿþÿþÿýÿýþûÿ¿ýÿ¿ÿÿþïÿÝÿÿÿÿÿïÿû»ÿÿû÷ûß×ÿþ¾ÿÿ¯öÿþÿÿýïÿÿûÿÿïÿÿþÿûÿÿÿÿÿÿ÷þÿÿÿÖÿ¿û~¾ÿÿ÷ÿÿßÿýÿÿ¿¿¿u÷ÿÿÿÿÞÿïÿþÿßßÿÿÿþÿÿÿ¿ÿýýÿýýÿÿß[ûûû¯öÿ¿ýþýÿ¿_÷ÿïÿûõÿÿßÿÿ¿ÿÿï÷ÿïþí÷ÿÿoûÿÿÿýëÿ÷ÿ}ÿÿÿû_ÿÿÿÿÿÿýÝîÿßÿÿþÿýÿþ×ÿw¿õ¯ûÿÿ÷þûÿÿûÿßÿ÷ýÿÿÿ÷ýÿÿuÿÿÿÿ¿ÿÿÿß÷ÿûÿ÷}ÿÿÿÿÿÿßÿ½ÿÿÿßÿÿÿïûÿÿÿþßÿûÿÿÿ_÷ÿÿëý¿ÿÿÿþýÿ¿ÿ÷û¿ýßßû÷ÿÿÿÿÿ_þÿ÷ÿÿÿÿíû÷¿ßßÿoÿ÷kþ¿û_¿îÿÿ_Ýÿÿßu·ïïÿïßÿÿûßþÿÿÿ}÷ÿßïýÿöÿ÷ÿÿÿÿw¿þëÿÿÿþÿÿÿÿÿÿ¿ÿÿÿîý¿ÿþÿÿÿÿ÷þþï_ÿßÿßÿÿ¿ïÿýÿïÿÿõÞûÿÿwÿþýûÿ÷ÿÿþÿÿÿÛýÿíÿ¿ßÿÿûÿßÿßÿÿþõÿûÿÿ}¾ÿ÷ýÿÿ¿÷ïßÿ¿ýÿ¿þþ¿ÿûïÿÿýÞ¿ûÿïÿ×û{ßÿÿÿýÿßþÿïï¿ÿ÷ÿ¿¾÷·ßÿ÷ÿýÿïÿÿoÿ{þþûßûÿÿÿþÿÿþÛÿo÷ïïÿÿÿÿÿÿÿÿûÿïÿÿÿÿÿ÷ÿúïûûÛÿ÷ÿÿÿÿÿÿÿÿÿÿ¾ýÿÿÿýÿï»ÿõ}ûíîþ÷¿ß¿ÿÿÿÿÿÿû{ÿÿÿßÿÿ÷ÿÿÿÿÿÿ¿ýþ¾Ûÿþïÿþÿÿßÿÿÿ¿÷ÿßý~ÿÿÿÿûûï½ÿÿÿßý÷ÿÿÿÿÿþÿ¿ßvÿÿþÿÿ¿ÿÿ_ÿ~þþÿÿûïÿÿïÿÚÿïûÿÿþïï÷ÿÿý×ÿÿÿýÿÿÿúÿûß½ÿ¿ßÿý¿ýµ{ÿÿýÿ]ÿßÛÿÿÿÿþÿûþ¿õÿ·ÿÿþÿÿÿþý÷~ïÿßÿný¿ÿÿÿÿÿ¿ÿÿÿëÿïÿÞßýÿßÿÿÿ÷Ûÿÿßûÿÿ¿÷ëß¿ÿ¿½ÿÿýÿï¿ÿÿÛÿÿý÷ÿëßÝ}÷ÿûþÿýö÷ÿÿÿÿÿÛ÷ßïý÷û¯÷~úÿ÷öûï¿ÿÿoÿÿ÷þÿëÿïÿ÷þß÷ÿþÿ{ï¿Þÿÿÿþ¿ÿÿÿÿý}þ÷~ÿÿÿ÷ÿÿßÿûÿÿÿûÿþÿî×ÿýÿþ·ÿÿï÷·ÿ¿¯ýÿÿûÿÿ÷÷ÿúÞþ÷ýÿÿ÷ÿýÛïúÿ¿ÿ~ÿþ÷÷÷ÿýûµ«÷ÿÿþßÿ}ïþþÿÿ_ÿÿÛýÿûÿoÝû¯ÿþ»ÿûÿ½¿ÿÿÿûÿÿÿÿíýÿÿûÿý¿ÿ÷ÿ¿»}÷¿ßÿÿûþÿÿÿï}«ÿ÷Þÿûþ¿ûÿÿÿ¿þÿûþÿ¿ÿÿöÿÿûÿÿÿõþÿúÿÿÿ}ÿï÷ûÿýÿÿ}îÿÿÝ÷¾ÿþÿ¯ÿ¿ÿÿÿïÿ¾ýþÿÿû¿½··ÿ½íïÿÿûÿÿ¿ÿÿÿ{ÿßÿÿßÿÿûÿ÷ÿÿïÿß¾¿õþþßþþïÿÿþï¿ÿÿ÷׿¿ïýÿÿÿ}ÿÿÿÿî¾ÿÿ÷oþ¿w¿þÿÝ÷ûý¿ÿÿêïÿÿß÷ÿýÿÿÿÿûýÿ¯ÿþÿûÿÿ÷õþïýÿÿßßýÿÿÿÿÿþÿÿÿÿßÿÿûßÿÿßÿõûÿÿýÿïÿ}ÿÿ¿÷ûÿ¯ÿÿßýÿnÿÿßþÿõïÿÿÿ÷û÷ÿý¿ÿÿïßýÿûß÷ïÿ½ÿëîýÿ÷ÿÿÿÿÿ¿¿ÿ¿ßÿ÷îÿÿýß÷ÿÝÿ÷ÿßÿûÿÿÿÿÿþÿÿÿýýïÿÿïÿÿÿß¾ÿ÷÷ïýÿ¯ýÿßöþûûÿûÿïÿþÿÿÿwÿÿÿÿûÿ·ÿû¿ý¾ß~ïß÷ý¾ûÿÿï¿ßÿýÿþÿïÿþßÿïÿÿþÿÿÿß¿÷ÿoÝÛÿëÿÿÿ÷ïÿÿ~»ýÿÿú¿ÿýÿßÿÿÿÿõÿÿïÿÿþÿÿÿÿÿ¯þßÿÿÿßÿÿÿÿíïÿÞÿÿ}ÿþ¿ÿÿý}ûýÿïÿ¿ÿ×ßÿÿþïßÿÿÿß×þÿÿÿÿÿ¿ÿïÿöÿÿß¿¿ïöÿÿÿ~ÿÿÞÿ{ÿÿÿÿ÷ïïÿþ÷×÷öÿýÿûýïÿû﾿ýÿÿÿ}ûÿÿÿÿÿÿÿÿûïïï÷ÿûÿýÿÿÿÿÿ¿ÿÿï÷ûÿÿÿÿÿÿßÿþÿúíþ×ÿúÿÿÿÿ¿û÷þþýõûÿÿßÿÿÿÿþûÿï÷ÿÿÿÿÿ¿oÿïþÿ¿ÿÿÿ¿ÿÿÿÿï{ÿ¿ÿöÿßÿÿÿÿÿýÿÿïûþÿÿÿïÿþß¿ÿ÷¿ïýÿ÷þ¿ÿÿûïÿûÿþ÷ýÿÿÿûûÿÿÿÿÿßÿßÝÿÿÿÿþë{ÿ¿ÿwoö¿}ÿÿûþïÿÿÿÿ÷ÿÿÿïïÿþûßw÷ý¿ýÿwÿÿÿýÿöÿÿÞÿïÿÿÿÿÿÿÿÿß÷ÿÿÿûÿ¿¿ÿÿûþïþÿ÷ÿïÿïÿÿûÿß¾Ýzÿýíûþÿÿÿ÷÷Ýÿþÿ¿×Þÿÿûÿíÿÿÿÿ÷ÿÿÿÿ{ÿÿû{ÿÿÿ{ÿû¿ÿÿÿÿ¿ÿÿïÿÛûÿÿûÞúÿ~ÿÿÿÛÿÿ¶ÿÿÿ¿ûïÿ¿úÿÿÿûßïÿ÷oþûnÿ_ÿßõßÿÿýÿÿÿÿ¯ÿ¿ÿݯïÿ÷þßÿïÿïÿ÷ßÛÿÿ}»ýÛþÿ½~¿ïýÿþÿ÷ÿ÷ÿÿûßßýûÿÿÿ÷¿ïÿýÞÿýßÿï}ýöÿÿÿ¾ÿý÷~ûû¿ÿÿÿïûï¿ïÿÿ÷¿ÿÞ»½ÿ×ÿÿ¿ÿþ¯ûýÿÛÿÿßÿ¿ÿÿßÿÿ÷ÿÿïÿþÿþ¿¿ÿÿÿÿÿïÿÿÿÿÿÿ¿ÿ¿ÿ¿ÿ¿ÿÿ¾íÿÿÿ¿÷îÿ¿õÿýÿ¿û¿ÿÿßÿÿýëûÿ®÷ÿÿo¿÷ÿûÿßÿÿý÷¿íûÿÿÿõÞÿÿýÿÿúûÿÿ÷¾û¿ÿûÿýõïÿöÿ~îþÿ¿¿ÿÿÿw÷¿×ï×Ýûÿ÷ÿÿÿûëÿÿÿ¿ÿïÿûÿÿÛÿÿûûÿý¿ÿïÿûíï÷ÿßÿÿ÷÷ÿïßþ½ýÿ÷ßÿÿû÷þÿßÞûïõÿwÿÿÿÿÿÿß{_ûÿ·ÿï»Ûýýûßïßÿßÿ÷îÿïÿÛ÷ÿÿÿ׿íý­÷ÿ¿ÿûþþÿß÷ïÿÿÿÿ¶ÿßýîúÿþÿÿß÷÷ÿÿ}Û÷ÿßÿÿ¿¿ÿÿ}ÿÿ¯ÿßÿÿ®¿ÿÿÿýÿÿ÷ÿßÿ~ß÷ÿý»¿ÿÿÿ~¿ÿÿÿÿÿõÿ_û÷ÿÿÿïÿ÷÷ßÿ÷ßÿÿÿ¿ÿûÞ÷ÿ÷ÿûÿÿ÷÷ßÿÿþýûÿÿïÿ¿ûýýÿ¾þÿÿ¿ïÿûÿ¾ßþÿÝÿÿÿ¾ÿÿÿÿßÿÿÿÿÿþïïÿÿûÿûíÿ¾îûß¿¿ÿ~¿¿¿ÿÿýÿýÿÿÿÿÿÿïïwßßïÿýwÿ÷ÿú߯ÿ÷ÿÿïÿ»ïßÿÿÿÿß¿ÿÿÿÿÿÿþßÿß»ÿÿÿïÿýÿûÿïÿÿ×÷ÿïoÿÿïÿûÿú÷ÿïÿûÿÿûþÿÿßÿ¯ÿÿÿïÝþþÿ÷¿ïÿïþÿÿÿÿ÷ÿß{ÿ¿ÿÿÿ×~¿ûýïïÿÿÿïºßûÿÿïÿ¯ÿÿ÷ÿýÿÿÿ÷ÿw½ÿÿwÖÿïßþÿ«ûÿ÷÷ïßûÿÿÿÿ÷ÿÿÿÿ÷ß[ýÿÿÝ¿_ýÿûÿÿÿÿÿ÷þßÿýýßûÿßÿ}ÿÿ×ÿÿ_ÿ·ÿïûýýÿïÿÿÿÿÝÿß÷ÿÿ_ÿ÷þÿ÷ßßßÿïÿÿûßû÷öÿÿÿûÿÿ÷ßÿ÷ß¿ÿßÿÿïëþïÿÿÿþþÿ÷ýïïÿÿßýÿÿwÿ÷ÿÿûÿ¿ÿû¶ÿ_ÿíÿÿÿÿþ÷ÿÿÿþ¿þõÿÿíþÿÿ¿ÿþúßÿïÝýßÿûÿþïïÿ~ÿÿ·ÿßûïßýÿÿÿÿÿÿûÿï¿þûÿÿÞ¿ßûÿî¿ÿ÷ÿÿÿÿ{Ûûÿëÿÿÿý¿÷ÿþÿÿÿÿîÿÿÿ~þ÷ïÿ÷ÿÿßÿÿÿÿßþþÿÿÿÿ¿ûý»íþÿûÿ»·÷ÿÿ¿ÿûÿ»þûwûÿþßÿÿÿ÷ßÿïÿÿ»÷ÿýûÿ¾ÿûßÿÿÿïïÿoÿÿþûþÞÿÿÿÿÿÿÿÿÿß¿ÿ÷ëuÿÿúï÷ÿÿ÷ÿÿÿûÿ¿ÿÿÿîÿÿ÷ÿÿ~ÿÿþý¿Öÿoýÿÿýÿ¿û~þýÿ~ÿûÿÿ÷ÿÿÿÿý½ÿÿÿþÿÿïÿ¿íÿÿï¯ÿßÿÿÿûïÛý¿þÿvíÿÿÿ×Ûÿû{û÷½î¿ÿ÷ÿûõ¿ÿ¿¿ÿÿ¾ÿÿÿßûÿWï÷÷ÿÿïÿ¿û÷ÿïÿÿÝöÞ÷ÿï¾ýßÿÿÿýÿï_¿ÿÿÿÿ¿þûûÿßúßßß[ÿÿÿÿÿÿÿ¿ýÿýÿýÿïúÿÿïÿÿ÷÷ïÿÿÿ¾ÿ_ÛÿßÿÿÝûÿ÷ÿý¾ßß¾ßß×ÿ~×ÿÿß»¿÷ÿÿ}¾ÿÿý·ÿÿÿÿïÿÿßþ¿¿ÿÿïÿÿ·ý¿ß¿û÷ý»ÿÿîÿ¿ÿ÷¿þ¿ÿöÿîûÿÿûÿþÿÿ·ÿÿÞ¿ý¾ÿ¿ÿÿÿîÿÿÿÿ¿ÿßÿÿý½ÿÿ_ßïÞÿýýßßÿÿÿ~ýÿÿßÿþßëÿþÿ¾ÿýýýýÿ»þÿýÿïõÿþÿ{ÿïû{¿Ýûÿÿ¿ÿïÿÿÿÿÿÿ¿ö¾÷ßÿÿÿÿÿ¾Ýï{ÿÿÿýÝÿÿöÿÿÿßûûÿÿÿþÿý}×ÿûö¿ö×ÿÿû~ÿ¯~ÿý»ïÿûïÛ÷ÿß¿ÿûÿßÿÿÿÿÿÿÿÿû÷ÿßßÿÿýÿÿëÿßþ¿ÿÞî÷ÿÿÿÿÿ¿¿ï¿ÿÿîÿ÷{ÿÿë¿þßÿÿÿ{ÿïÿÿÿÿ¿þ÷½_ÿÿÿÿýÿÿÿ÷ÿúþÿÿÿþîþþ·ÿÞÿÿû·ÿ÷ÿýÿÿïßûÿÿýÿÿ÷¿ßýÿÿ÷ßïßÿÿûÿÝßÿ¿ÿÿÿ÷ïÿÿÿÿÿ½ÿÿ~ýûýÿïõÿýÿ¯ÿÿÿÿ¿×ûÿÿ÷ÿÿo_·×¯ÿÿÿ~ïÿ_Ûïÿ¿ÿýÿþ¿­ÿ¿ÿÿÿ½þÝÿµÿýÿíïûýï÷þ¿ÿýÿýÿÿ¿ÿ¿ýýÿý÷ÿ÷ß¿}þþÿÿßßûÿýÿ¾îßÿþýÿÿïÿÞý½ÿöÿ¿ÿýÿÿíêÿoÿÿ÷÷ÿÿ÷ïÿÿßú¿ûÿÿÿÿÿïÿÿÿÿÞÿÿÞûÞ÷ýÿßÿÿýÿÝÿÿûÿÿ¿¿ÿ·ÿßÿÿÿÿÿïïÿÿÿ÷ÿÿûÿ¿ÿÿwÿûÿÿûÿýÿÿÿ÷ÿûÿÿÿÿÿýúÿÿÿuþþÿßÿÿÿûÿÿÿÿ¿þÿ÷»÷þÿÿ·ý÷¿ÿ÷ÿÿÞÿÿ·þþÿ¿¿·ïÿýïÿÿûÿ¿÷ÿÿÿþ¾ýÿ÷ýïûÿïÿ÷ÿÿÿûý¿ïwûÿûÿÿïýÿ¿ÿÿ÷ÿýïÿÿßûoÿÿÿÿÿ¿¿ûÞÿÞÿß¿½÷íÿÿ¿ÿÿÿÿß÷ÿÿûÿþïßÿÞÿë÷Úõÿï÷ÿÿ¿÷ÿÿÿÿÿïÿûßwÿýÿÿÿûÿÿßþÿ¿ÿ¿ÿ×÷þýÿþÿÿ_ÿÿõïþÿÿÿÿÿÿÿÿÿßþîþÿÿ÷~ÿþÿ½ÿýÿûÿÿÿïÿ_ÿÿïþýý{ÿúý»ÿÿúÿÿÿÿÿßÿÿ¿þßÿÿ»ÿ»ÿÿß{ÿÿÿýöÿÿÿï½ïÞÿÿÿÿ¾ÿöÿÿ¿ÿÿ×»ïÿ¾ý÷oÛ÷ÿûÿÿÿÿÿ÷ÿÿÿÿÿïo׿¿ÿßÿ÷þÿÿýÿÿþÿÿÿýýÿþÿÿ{ý[ÿÿÿÿÿÿîûûÿÿ÷ÿ¿Ûÿÿý{ÿÿÿýý÷íÿÿÿÿÿÿßÿÿïþÿÿõÿßÿ¿¿ÿþÿÿÿ÷ÿßÿß÷ÿÿö÷ï÷ýþÝýïï÷ýû÷o¿ûûÿíÿÿýÿ¾ÿÿÿÿu}ÿïúÿýöÿÿÿýïþß¿~÷ÿoÿÿ¿÷ÿÿÿÿÿÿßÿ÷ïýß¿ÿÿÿÿÿÿþ¿ÿ÷ï¯öþÿÿýÿÿÿÿÿÿþÿÿûÝÿÿïÿ¿ÿ÷÷ûýýÿûþÿÿ½ßýÿÿë_ÿÿ»ÿÿïûÿ¯ÿûÿ»ûÿoÿÿïýûÿþõïýÿëÿ¿¯ÿ÷Ûÿww¾ÿÿÿÿßßßûÿ÷¿îÿÿßÿÿûÿÿµû·ëÿÿ}»½½_÷ïÿÿþïÿÿÿ¿ßÿÿþí{ÿÿûÿÿþÿÿýûßÞÿõ÷ýÿ÷ïíÿÿÿÿÿ÷ÿÿÿ~ÿ¿¿ßÿ¿ÿÿÿ¿ß÷÷ÿÿWzíÿ~ÿÿÿÛÿÿß¿ï÷ÿ×ÿßÿ¿ÿþÿÿþÿÿÿÿ÷ÿ»ÿ÷÷÷÷½ÿïÿþïÿÿþÿþþÿÿßÿþÿ÷½ßÿûÿû÷¿ß«¿ÿ¿ÿßÿÿïïÿÿÿÿ÷¿ößÿÿÿÿ¿þ½ÿý÷õÿÿÿ{ÿÿÿÿ¿þÿÿÿß·ýÿûûÿ¿ÿ÷ÿÿíÿÿþÿÿþ¿ÿÿÿÝÿßÿíÿÿ÷ÿ~ÿÿ¿ÿþÿ¿þÿÖÿÿÿÿ_þÿþÿÿûÿÿÿÿïï÷Þÿïû÷ÿÿûÿ¿ïÿÿ¿ÿûÿï¶ÿïÿÛûÛûÿÿ÷ÿõýßÞÿßÿÿûïÿÿûÿÿ¿ÿýÿÿíõÿÿþïû·ÿÿÿï÷ÿß¿ûûïÿýÿßÿÿíÿÛ¿ÿ÷·ÿ~¿þÿÿÿ}ÿÝ}ßÿíýýýþûÿû÷ïw÷ÿß¾ÿýÿýÿ}ÿßÿÿ_ÿ÷¿÷ïÿþÿÿÿýÿß÷ÿþ÷ÿßÿÿ¿ßÿÿÿÿû]þÿÿÿ·Öïß×}ÿÿ¿ÿÿÿÿÿÿßÿÿß_ÿëÿÿ~÷ÿÿÕï¿ßÿÿÿÿ~ÿûÿ»õïÿûÿÿÿýÿïþýÿÿïÿýÿÿ}þÿû¿ÿÿþïþ¿ÿ÷ßÿïßïû÷¿ÿ~ýßÿ½ÿïïûÿÿÿ¿ÿï¿ÿÿí¾ûßÿÿ÷ÿÞÿÿÿï{ïÿÿþûÿ·ÿÿ¿ÿûÿ÷ÿÿý÷úïÿÿ×ÿÿÿÕÿß×ÿû÷þ¿ûÿÿÿÿÿÿýÿÞÿÿýûÿÿëýïïÿÿÿ÷¿ÿÿþÿÿÿÿÿvÿÿÿ×îûßÿÿÿþîýõûÝÿúÿÿßÿïÿÿþ÷ýþûÿïýÿíýÿ«ÿÿÿÿûÿ}ýÿýÿþÿ¾ÿýÿÿïÿÿÿûûõï¿ÿû·ûÿ½ßÿÿÿ÷ÿoûÿÿÿÿÿÿoýÿÿûoÿÿÛÿßßÿýÿß»÷þÿ×ÿÿÿÿ÷ÿÿ÷ÿßÿÿ×ÿïÿÿÿþïíÛÚÿÿÿýÿßÿïÿÿÿîýß¿ÿ½ïÿï¾ÿÿ¿ÿÿÿÿÿÿÿ÷ï÷ÿÿ~ÿÿÿ÷ÿÿïö÷¿ÿûÿ÷ÿÿ¿ÿÿûßÿÿÿ»þ÷ïÿýÿÛÿÿÿÿÿÿÿ_ÿßÿÿÿÿïý÷ÿÿ__Ûÿÿ÷ÿÿýûþýÿ¿ÿÿþ¿Úî÷¿ûÿÿÿÿÿßïÞþÿÿÿÿ÷ÿ÷ú¿ÿ¿ÿÿÿï}ûû½Û¿ÿÝÿÿïÿÿÿÿïßß}ûÿþÿ÷¿ï_ÿÿûßÿûûöývÿ÷þÿÿÿÿÿßÛ»ÿÿÿÿÿ¿ïûÿþÿ¿ÿûýÿÿ÷ïÛþþÿÿú÷ý_ûÿÿÿûûÿûßÕ¿~ÿÿ¿ÿÿ·¾þ÷¿{}ÿ«ï¿ÿýÿÿý}ÿÿýÿûÿÿÿÿûýÿ¿¿îÿßïºûÿÿÿÿþÿÿ÷ÿþÿûÿÿþºÿß÷÷½ÿ¿ÿÿ¿ÿþÿ¿ÿÿõû×ÿþÿþÿÿÿïÿßß÷ö»ÿÿÿÿÿÿ½mÿýÿþþÿ¿¿¿ë¯{ÿûÿÿÿÿ¿¿ûÿÿÿÿÿ÷ûßÿ¯Ýÿþþûÿþÿ¿¿ûÿ»ßÿý÷ÿ÷ßÿÿïßÿ÷ÿþ¿ÿÿ¿ÿzÛÝþßÿßÿþÿï¿ïÿ}ÿ÷ÿÿúÿÿÿÿÿýýÿþïÿÿÿÿ»ÿÿo¿ß·~Ûûÿo·ÿß÷ÿÿ¿ÿþ¿ÿûÿÿßÿÿý_Þÿûþ¾ÿþ¿¿ÿÛýÿÖßÿÿïÿýÿûßßoÿÿß÷êûÿ¿ïïÿÿößÿûÿþÿïÿÿÿÿÿÿõWÿÿ~½Wþÿÿïÿÿî¿îÿÿ¿ý_ÿ{ÿú¿ÿý÷ûÿÿÿÿ~ïÿÿÿ{¿ïÿß¿»ÿ¿ïëÿÝßßß¿ÿÿ½ÿïÿ½ßÿ¿ïÝûÿÿûýþÿ׿ÿ}{ßÿþÿÿÿ¯ÿÿ_]ÿoÿþîÿÿÿÿÿÿúÿ¿ÿÿ×ÿ¿¿{ÿÿ÷þÿÿÿÿÿÿûýýþÿßÿëÿ¿û÷ÿ]wßÿÿ¯ÿ÷ÿÿ÷{þÿ~ÿÿÿÿïÿû¿ß{ÿûÿoÿÿÿ×ïÿÿÿ÷íÞû_ÿ·ÿýÿÿÿûûÿ¿¯ïöÿÿýÿwûïÿûû¿ý÷ÿ¿ÿÿÿÿÿÿïÿ÷ÿûÿwï®ßÿßÿÿÿwÿÿÿïý÷÷ÿÿÿ»ïÿûßÿ÷ÿÿï¿¿ïï÷ÿÿýþ½ÿ÷oÿ¾ß¿ÿÿýÿ»¯ÿ÷ýßÿÿ~÷ßýwÿýÿíß¿ÿþÿoýþÿ÷ë¿¿÷ÿÿÿÛÿÿÿ÷ßÿ÷ÿÿöÿzÿëßûw_o¿ÿöÿoïßßïïïíÿoÿ÷ý}û×ÿÿÿïÝÿÿÿþÿþ¿]ÿÿýÿÿ÷ÿ{¿ÿÿÿÿþßÿÿÿþïÿzýýÿÿÿÿßÿ¿ÿÿû»ÿßïï÷ßÿÿß½ïÿÿ~ûþÿÿÿ¿¿ÿëÿßÿÿÿÿÿÿÿýÿßÿÿ÷ÿÿÿßÿßûûþÿÿÿÿ÷û¿þï÷ÿêÿÿ¿ýÿïÿÿÿÿoÿÿÿÿÿÿ}ÿþÿÿÿß÷ÿß¿ÿÿÿ¯ÿ»ÿÿÿÿïÿÿýÝÿÿßþßþÿÿÿÿÿ·÷ÿ¿ÿ÷þþÿÿþïÿ½ÿûÿþþÿÿÿ¿ÿ÷ÿ÷÷ýíÿÿßÿ»ÿÿûõþÿÿß¿ÿÿßýï÷ÿí¿ßÿþïÿûïþûýÿÿûí×ÿþÿ½þ®ÿÿÿöúï{ÿ÷ÿ÷ÿ¿÷ÿÿë×ÿÿ÷ÿþÿöþÿý~ÿþ÷õßþÿÿÿÿ÷ýÿýûýk­ýÿÿÿ׿ÿ~ßß÷ÿÿÿû÷¾¿ýÿÿÿýÿïÿï¿ÿÿÿÿÿï¿ÿû~ïÿßýßÿýÿÿ÷÷ÿÞßÿÿÿ¾ßû~ÿþ¯÷¿ÿïÿûÿÿÿÿïÿýkÿïÿîþÿýýßßÿûíÿÿïußû÷ÿÿÿÿÿýí_¿÷¿}þÿÿýûïíëÿÿÿÿ¶×ÿÿþ÷ÿÿ½ÿÿÿ÷ÿÿ¾ïûÿ¶ÿÿÿï¿ÿ÷»÷ýþÿÿÿ¿ýÿÿÿ÷ÿûÿûÿÿ÷ÿÿÿ¿þï÷ÿÿ×ýÿÿÿûýÿÿÿÿÿÿûÿÞÿßÿýýû÷{ïý¾¿wïÿ÷×ÿÿÿÞþ붯nÿý}·ÿÿßþÿïÿýÿþþïïÿï÷ÿíý¾þÿ{_ßÿÿÿûýÿ}ºÿûýûÿ¯õúÿ÷¿÷ÿÿï¿×÷¿×þÿõïÿýïÿþý¿÷»ûïÿïïýÿþ¾ÿÿÿí÷ÿÿíÿ¿ÿ{ÿÿûÿïÿÿÿÿÿ÷ÿû÷÷ßß×ÿ÷·ÿ»nÿ½·÷ÿß÷ê¿ÿýÿ¿ÿÿÿöýÿÿ¿îý_ÿÿ¿}ÿÿÿÿ×ÿ÷ÿû¿ïÿÿÿ¿ÿïÿÿÿßîÿßïÿíÿ_ÿÿÿÿûßþþÿ×ÿÿÿÿÿÿýß¿ïïÿ÷÷¿÷ÿ½ÿþÿ÷«ýÛþÿw÷Ûÿ_ïýûßÿ¿íïÿÿýÿýûÿÿëÿÿ»ÿÿïÿïÿÿû÷ÿÿÿ¿þÿÿßÿß¿ýÛ÷÷ÿþÿÿÿ¿÷û¿ïëÿöûþÿïÿoûÿÿÿÿÿßÿë¯ÿÿýÿ¶ÿ¿ÿïÿÿÿÿÿÿÿõ¿ÿ÷ÿïÿÿï¿ÿÿÿÿÿÿwÿ[u¯÷÷ýû¿ÿÿwÿï¿ßÿÿÿ¿ÿÿÿý÷ÿßÿoÿû_ýÿ¿ÿÿúßýûûÿûï¿ßÿûÿïÿïýßïßÿÿÿ÷÷ÿûÿÿ¿ÿûÿÿïûëÿÿû÷ûÿÿþßßÿÿÿÿÿÿ¿÷Ýÿÿýÿûûÿß÷÷ÿïÿÿÿÿ¿ïß÷¿ÿÿÿïÿÿÿ÷ßïÿþÿßÿ÷ÿ¯ÿÿýÿÿÿïÝÿ÷¿÷ÿÿÿ»ßÿ÷ý¿uÞÿÿÿÿÿooÿ¿ßÿÿÿÿÿÿ÷ÿûÿýÿo{ÿûÿ¿ÿÿ¿ýï¿¿öÿïïÞ÷ÿÿ¯ÿßÿÿÿÿÿÿïÿ÷ÿú÷÷ûû÷ÿÿÿÿÿÿWÿ÷ÿÿþ»þûßÿw¿÷ÿï{ÿÿýÿ·þÿÿ{ýÿÿÿÿÿÿÿýÿÿßïzýûÿýïýÿïÿïÿïïÿÿÿÿþÿöÿݯ·ÿÿÿÿûÿ¯oþÿÿþßßîÿ¯ÿßÿÿÿ¿þýÿþÿ¿ÿÿ÷ÿoýþÿþ¿ÿþÿÿ÷ïÿÿÿ¿û¿ÿÿÿÿýö¾ÿÿíÿÿûþ÷ÿÝûþÿÿõí¿ëÿÿÿ¿ÿÿwÿûþÿß»û¯ÿÿïÿïÿÿÿ÷ÿÿÕíÿûwßÿ}÷ÿþõýÿÿýÿý×ÿÿÿÿ÷÷¿ßÿÿßïÿÿþ¿¿ÿÿÿÿþÿoûÿÿ·þÿÿþÿ×ÿÿÿ÷ýïÿï_÷ß¾¿þý¿ÿïý÷ÿûßý¿ÿÿÿÿ»Ûÿÿÿ¿ÿÿÿýÿûÿöÿÿÿÿÿýÿÿ÷ÿÿÿÿïû÷û×ÿþßßïý÷ßûûþÿÿÿþÿûþÿÿÿÿÿÿßÿÿÿý¯o÷ÿ~ÿ÷ëÿÿÿw÷ÿ¿ûßÿÿ¾ÿÿÿÿÿïÿßÿ·ÿÿ¿Þëÿ¾ÿÿßýþ¿ÿÿºíÞúÛ¿ÿÿ½ßÿwëûûwûÿ¿ûÿÿÿÿÿÿíÿÝûíï»ÿÿÿ¿ú¿ÿÿ÷û÷ýÿ¿÷þßÿýÿíþÿÿÿ¿{¿ûßÿûÞÿÿßoëïß{þ·ÿ÷ö¿ýïÿÿÿÿ¿_öë·ÿÿÿ}×ûÿ·ß¿õÿÿ¿ýýÿý¿÷½{ßÛÿÿoÿÿÿÿýÿÿþÿÿïßÿý÷ÿ÷ÿÿ¿ÿÿÿÿzÿÿÿûÿû÷ßÿ÷ÿÿÿûÿÝÿûÿ÷ÿÿÿÿýþÿýÿÿïÿûÞ÷ûÿÿ{}ÿþÿ¿ÿÿýßÿëýÿÿþÿ¾ÿîûWÿÿÿÿõ¿ÿöÿïïúÿþÿÿÿÿßûßÿÿýûÿÿïÿ¿Ûÿßëõ¿ýïÿïßîýþ¿ïÿßÿßÿ¯ÿ¿ÿþï¿þÿÿÿ÷ÿÿëÿëÿÿÿ÷ÿÿ}«ý¿ÿîÿ÷ÿ÷ûÿÿöþÿÿþÿÿûú¿ÿßÿÝ_·þ¾Þßÿýûÿÿûÿÿÿÿÿ¯¯ÿÿïûÿÿïÿÿöïþÿÞïÿÿ¿»÷û×ÿÿíûÿÿÿÿß»ÿûÿ÷þÿößûÿ÷ÿÿÿÿ}ý×þ¿ÿõýÿßÿÿÿÿÿÿþû·ý¿×ÿýÿÿïÿÿÿþÿ¿÷ÿÿÿÿoÿ¿ïþÿÿ÷}ýÿþ÷ßÿ¿ÿÿ{ÿÿþÿÿýêþÿÿ÷ÿÿÿî÷ÿÿý÷ûÿÿí_ÿß»ÿ÷þõ¿ß÷ûÿþÿû×ÿÿÿßûýÿÿ×ÿ¿÷ÿþÿþûïu¿ÿýÿ½ÿ¿ÿÿÿÿÿëÛ¿ÿÿÿÿ~ÿÿÿÿÿõÿß÷uÿ÷÷÷ýÿ_ÿÛÿÿ¿ÿÿý¾Ýï÷ÿßûïÿÞÿ»÷ÿÿÿÞÿÿúîÿûïÿûÿßýÿÿû­ûïÿýÿÿ¯þö¿Öÿïïï×÷ûÿÿÿÿûÿßÿÿÿÿýÿýÿý}ÿÿûßÿ÷ÿ¿»ïïÿ¿ÿÿ÷ýßþ÷¾»ÿÿÿûßßÿýßÿÿþþþÿÿßÿÿkÿýÿ÷ÿÿýíþÿÛÿÿÿ¾¿ÿÿ{ÿûÿýÞÿÿûß÷ÿ÷ûÿÿÿûûÿÿÿÿµ÷ÿÿÿÿï¿ÿþþ¿ÿµßïûÿößÿÿÿïÿ¿ï÷úÿ÷ÿÿÿ÷Ûÿ¯ÿ¿¾ûýßýÿþ÷÷{îþîîÞþÿÿ÷ýÿÿïÿÿÿ½ûíþÿïÿÿÿ¿ÿÿ_Õÿÿÿýÿýïÿßßÿÿÿÿÿ÷ß÷ÿÿÿûÿÿÿ¿÷ÿß^ÿÿß¿îÿÿßÿ½ýý¿ÿÿÿÿÞßßýýw¯ÿÿÿ÷ÿ÷ïÿÿþ÷ÿýÿýÿ_ÿÿ÷ÿîÿ×÷ý÷ÿ¿ÿúïÿ÷ÿÛÿw¯ÿûûýßÿÿÿß¿ÿýýÿþþ¯ÿýÿûÿþÿþÿÿÿÿï­ýÿ¿ÿÿ^ÿÿ_ÿõ÷ÿÿÿÿûÿÿ¿ÿýÿúÿÿõÿûÿ¿ÿ÷ÿ¿ÿþíÿ½ÿÿÿú¿ûû~»¿þßÿÿý¿ÿÿ~ûÿ÷ïÿÿïÿþÿ{ÿÛÿþ÷ÿÿïþýûëßÛ÷ÿûÿïýÿÿ^ÿûÝÿÿ·ûûï½ÿÿëûÿßÿÿ÷ÿþ÷ÿwýßßÿ½ÿßßûÞýwßÿÿþ÷÷ÿÿþþßëßïÿÿßÿÿÿÿÿ[íÿÿ_ÿÿßýÿÿÿ¯ÿÿ÷ÿýÿÿÿûúþÿÿÿÿÿÞÿþÿÿÿÿ½íÿ½ÿÿ¿ÿ~þÿöÿýþûÿëþÿÿ¿ïïÿÿïÿÿþÿ¾ú»ÿÿïïÿÿÿûÿÿÿÿ¿ÿÿ[÷öÿÿ÷ÿþÿþûÿþ×ÿÝÿÿÿÿû÷¿þýÿÿï¿ÿ¿ÿßûÿÿû¿ÿÿþþþÿþûÿÿßÿÿï·ÿëÿßÿÿ÷ûß÷ê¿×ÿÿÿÿÿû¿ÿ_ÿöÿßýÿÿ÷ÿïÿþÿÿÝïßÿ»÷õï¿÷wÿÿÿÿÿÿúÿ»¿ÿÿÿ÷ÿÿÿßÿ¿ÿÿßïýýýwÿîÿïÿþ¿ýûþÿ¯ÿuÿýûÿÿ_ÿþýýïýÿÿÿý}ûïÿÿ»ÿ½þßßíßýÿÿµÿïÿ_ýÛÿÿÿûûÿ¿÷×ÿÿßÝÿÿÿÿßÿÛ½÷ÿßï_ýÿûwÿwÿþÿÿ_ÿþþÿÿÿÿÿÿ÷ÿ{ÿýûýï¾ßÿÝûþ÷ÿÿ÷ßýýÿß÷ßßÿ¿ïÿýÿïÿÿÝ÷ÿûÿÿïÿÿ÷ÿ×ÿï¯Þïÿÿÿÿwÿ½ÿÿÿÿÿÿ÷}ÿýÿÿÿÿ÷÷ÿß¿ï÷þ¿Þïï÷ýÿ»ßÿÿ÷¿ÿßwÿÿmÿÿÿ¯÷ÿûÿÿ_ï¿ÿÿÿ÷}ûÿÿÝûÿÿÿÿÛÿþÿÿþ×ÿÿþßÿÿÿ{ûÝýÿÿûÿÿÿÿÿÿÿÿݾÿÿ¯ï¿ÿûÿ÷ÿµûÿ_ÿ[ï÷ýßýÿÿÿ¿ýÿÿß¾ýÿÿïÿý½ýoÿÿßÿÿþÿþÿÿîÿÿ÷ýÿýuþÿÿïÿÿÞÿýÿÿÿÿÿýýÿ{·ÿÿ÷­ß_ßÿ¿÷ÿÛÿõïý÷ÿþÿýÿÿý¿ïÿûþÿÿ÷·ÿ÷wÿÿÿÿÿÿýÿúûÿý¿½ßÿûÿÿýß{}ÿûýÿûÿßÿïÿïÿû÷ÿëÿÿÿþÿÿ¾ýÞÿÿßÿÿÿý÷ûÿÿÿ÷ÿÿ»ÿÛÿïÞßïÿÿý×ÿÛÿ÷Ý¿ÿÿÿÿÛÿ÷wûÿÿÿþý½ûÿïÿûÿÿÿÿ¿ÿëÿÿ¿÷ÿÿû÷ÿÝïÿ·ÿûþ¯ÿõ÷ÿ÷ÿßþ¿ûßÿÿû·×þÿ¿ßû¯ÿÿÿ÷ßÿïÿÿÿÿÿ{ÿ×ÿoÿõÿÿßûïÿÿÿÛÿÿûö×ÿëÞ¿ÿÿï¿ÿï÷{¿ÿ·ÿûÿÿï÷{ÿý¿þÿ¿ûûÿ÷Ûïöûÿýÿÿÿû½ÿÿ¯þõïÿÿ}ÿßÿíûïûïúïëÿ¿ïÿÿýÿÿÿÿÿ¯ßþÝûÿ÷ÿ}ÿûÿÿÿûûûëÿ÷ÿûÿÿÿßÝ}ÿßïýÿÿÿýÿÿ÷¯ÿ¿ýÿÿ¿ÿÿýûÿûÿ÷ý÷ÿýÿÿ÷ÿÿÿÿ÷ÿÿÿ÷Ýÿïïûûÿïöÿÿÿÿÿïÿþíßÿ÷ÿÿ÷ÿw½ûýÿÛû¾ÿÿÿÿÿÿïÛ¾ÿÿÿÿÿÿï÷û÷¿íýÿÿ¯þ÷¶ÿ÷«õÿÿû¿þÿûÿÝýûÿÿÿÿïÿ¿ÿÿÿõÝÿÿõÿw}ÿÿ·ÿÿÿÿ}ýÖûÿÿïÿºï¿]ÿ¿þÿë¿¿ÿ÷ûÿûý¯ïÿÿ¿oý¿¿ïëÿÿ÷¿ÿÿÿïýÿÿw»Ýûûÿïÿÿÿÿïßýÿÿþÿßÿÿ÷ÿÿÿÿßo·ýÿ¿î¿ÿÿÝÿÿÿÿûÿÿÿïÿÿ{ÿÿÿ¿ÿþ»ÿýÿû½ûÿïÿßëÿÿÿÿ¾ÿÿößÿÿ¯ïÿÿû¾ÿÿÿÿÿÿªÿÿÕÿ_ÿ¿÷ï÷ÿþöÿÿßïïÿÿÿÿ¾ßë·ý¯ÿßßÿýÿÿÿ÷úÿþßÿÿþûßþÿïÿoÿÿÛÿÿß÷ýÿþýÿ¿ÿúÿ÷ýßÿoþÿÿ¿·¿¿ûÿoÿûûúÿ]Þÿÿþßÿÿwÿÿýÿêÿÿþÿÿ¿ûÿý¿îÿÿÿ÷¿ÿÿý÷{ÿß½ßÿ÷ý»ëÿïÿú÷ÿû»ýýÿÿï÷û¿ÿÿûÿïÿÿÿÕÿÿÝý¿ÿÿú¿ÿýÿ{ÿÿû¿_ÿ÷ÿýÿÿÿÿÿÿÿÿ~÷ÿÿÿßþ¿ýý}ÿ·ÿkÿÿÿÿÿÿþû÷ýÿ÷ûÿÿþïÿÿûÿÿÿ¿÷ÿûÿ·ÿ÷îýöÿÿëÿÿÿïÿÿ÷~ÿÞÿÿÿûßßßßÿÿßï÷ÿ¿õÿ¿÷v¿ÿÿýöûÿÿßÿÿ_ÿÿÿû÷ï÷ûû·ïýÿßzûw¿ÿ½÷¾ÿïýÿÿÿþ÷¯ý÷ÿ·þÿïÿïÿ¯ïÿÿý»ÿûÿÿý¾÷ïÿ_ÿûÛÿÿÿÿûýÿ¿ûþÿÿíÿ¿ûÿýõýþÿß{ÿûÿÿïöýÿ¿ûöÿÛúß_ûÿÝ·¿ÿ÷ÿÝÿþ·ßýÿúïûÿÿþÿÿûÿÿ~ÿýþÿ}ÿÿûÿÿÿÿÿÿï¿ÿÿÿÿÿ¿ÿ÷ÿÿþß÷ÿÿÿþÿýêýÿÿþþßÛ¾¾ÿ½ÿÿûûÿßÿëÿû]ÿÿÿÿÿïÿoÿïÿ{÷¿ößÿß÷ÿÿý¿oÿ¿ÿÿîß¿ûÿÿÿßýÿÿýþÿ«ýÿýß~ýÿÿÿïÿÿÿíÿõÝ÷ïÿïïÿÿß¿v¿ÿÿûÿÿ¿ß÷¿ïûÿÿÿÿïßþ÷¿ýþ¿ÿÿ¾ÿ¿Öÿÿÿÿßßß¿ÿ¯Þÿöû»ÿ×ÿï¯ÿÝÿ×ïïïÿÛ{ÿ¯ÿÿûïÿöëîÿýÿþÿÿ÷{ÿÿÿ×ïýßÿÿß×¾þÿÿ¿ÿ¾þÿÿ«ûî÷ûÿ¿¿ÿÿöï÷ýû÷ýÿÿÿÿÿïÿû¿ÿïÿ}¿ÿ÷ÿÿÿÿÿëßÿ¿ÿÿëýÿÿÿÿþ÷ýÿÿþýí}ï_ÿ÷ÿÿÿÿ¿wþÿ¯ÿßÿ÷·û¿þÿÿÿÿ½ÿÿ÷ÿÿÿÿÿÿþÿÿ¿ïÿ¿÷ßÿöýÿ·÷ýýÿÿûÿuÿÿÿÿÿ·ÿ»½¿¾ÿ~Ý¿_õÿÿ÷­ïßÿÿÿßÿÿÿ¿ÿÿ÷¿ýû¿¿÷ÿÿÿÿ¿ÿÿ·þÿÿ¿µÿÿ_ïï¿÷{¿×¾÷ÿ¿ýï÷þßïßÿ¿¿ÿÿëïÿÿý÷{ÿÿÿÿ}þÿÿÿ¿w¿nÿ_ÿû÷ÿÿÿþýýÿÞÿÕÿÿÿÿþÿÿßÿ￾ÿÿþíÿÿÿÿÿö÷vÿßÿÿ¿ßÿ{ÿ¿ÿÿ÷þÿïûÿÿÿ¿ßïÿý·ÿûÿÿíÿ¿ßïÿýÿÿþ¯ïöïÿÿÿÿÿÿÿ»ÿïÿÿþÿÿ÷ÿ÷ïÿ÷ÿÿûþþûþßßßßýÿ}ÿÿÿý÷Þÿþ÷÷ïÿþûÿÿþÿúÿÿ¿ÿÿßÿí¿~ÿÿúÿþûÿÿÿÿÿÿßÿÿÿ÷{ÿÿï¿ûÿÿÿë[·ûþÿÿÿÿõ}÷~ÿÿÿÿÿÿÿýÿî¿ÿûýÿÕÿßÿÿÿÿÿÿÿþ¿ýÿ»õßýÿ÷ÿûûÿþÿÿ¿÷ÿýÿÿÿÿýõþÿÿÿÿûýþï÷ÿÿýÿÛþïÿÿþÿ¿ÿ÷ýÿßÿÿï÷ÿÿÿÿÿþÿõÿý¿÷÷ßûûÿÿÿÿÿÿþûÿ÷þþÿ÷ÿÿÿûß¿û¿¿ï¿Þïþý÷ûÿïï¿ï}ÿïÿÿ½¿ýÿÿïÿÿï¿ÿÿ¿ÿûÿëÿÿÿÿÿÿÿÿÿõýÿÿû«ÿýÿÿÿÿÿÿ÷÷ÿûïýÿºÿßÿÿ¿ßÿÿþý»ÿ¿ûïÛÛû·þÿïßßÿýÿÿßÿ¿ÿÿÞÿýÿý¿w{ÿõÿïÝïßÿ_ïÿë÷ûûÿ½ÿÿïÿýÿûÿÿÿßÿ÷ÿÿÿÿûÿÿíuÿÿÿo×ÿÿïo~÷ÿoÿÿÞßÿÿÿõÿßÿÿÿëÿÿïÿÿÿ¿öïoÿÿÿÿû¿ÿ¾ÿß¾ßîÿÿÿÿûÿþÿýÿÿýÿÿÿÿïÿÿÿßïÿÿÿÿßïûþßÿÿÿWýÿïÿÿ·o_¿÷ÿ¿ÿÿÿ¿ÿÿÿÿÿÿõ÷ÿÿûÿ÷ïþ¿ÿ÷ÿßßßýíßïßßõëýûýÿÿÿÿþþ÷ÿßÿÞÿÿÿ¿ûÿïÿÿÿûÿÿ¿ýþÿýíÿßÿÿÿïß_ÿÿÿÿýûÿÿÿ~ÿïý¯÷Õÿßÿ¿þÿÿÝÿÿßß~Þ÷ßÿÿþþþÿÿÿßÿþýÿÿïÿÖÿÿ}ÿþÿÿÿÿÿÿwÿûÿÿÿ»ÿwÿÿÝÿÿÿ»ïÿÿýíïÿÿÿÿÛý÷»ÿÿÿÿÿÿ}þÿ¿þ×÷ÿ÷ïÿÿþ»ÿþ÷ÿ¿ÿÿÿïÿïõÿÿ¾ÿß½ýÿÿÿÿÿÿýÿ¯ýþþþÿßÿÿÿÿëÿ÷ûÝÿÿûÿÿÿßß÷ÿúïþý÷¿ÿý¿ûýÿÿßïýß×ïÿþûÿûÿÿÿûý¿ÿÿÿïöíÖÿÿÿÿý~¿ûïÿÿ¿öÿÿÿ¿ÿÿÿûßÿþ¿ÿí÷ýÛÿýÿßÿïÿÿÿÿÿ÷ÿ¯ß¿ÿÿûÿÿþþ¿ý¿þþï¿ÿöÿÿýßÖ¿ÿúÿÿßÿÿÿýÿÿÿ~úÿÿÿïýþÿÿÿ¯ÿ»ÿþÿÿß½ýÿ×ï½®Úïïÿýýÿýß_î÷ÿßÿÿÿÿÿý¿ÿ¿ÿÿýÿÿÛßÿÿÝ¿ÿï÷öí}ÿïûßÿïÿÿÿý÷ÿîÞßïoÿÿõ÷ÿÿÿýÿ¿þÿÿÿ÷oÿ·ÿýÿÿ¿ïÿíßÿÿ÷ýÿÿ¾ÿþÿûÿûÿÿþþþ­ëw÷w¿ÿÿÿõïïÿûÿÿÿÿÿ½ûýÿûßÿþ¿ÿýîÿûýï_ï¿ÿÿnÿïõÿþ¿ÿýõ}ûÿÿÿ½ûÝÿÿÿûÿý}ÿÿÿÿÿÿÿÿ×þÿ{þÿÿÿÝÿÿÿýÿÿ÷ÿ¯ÿúÿÿïû·{µýÿßu÷ÿÿû_ýÿÿÿÿûýÿÿÿÞï­ûÿßßÿÿ­ÿÿ÷ýÿÿÿ÷ÿÿû÷ÿûÿíÿÿÿýÿÿÿÿýõÿÿ~õÿÿÿþÿÿÿíß÷û·ûÿÿßþÿÿßÿýÿÿÿÿûÿÿÿÿ}ïÿõÿÿÿûÿïÿþÿýûo÷ÿ÷ïûûûöÿÿß}_ÿÿþßýßÿ÷ûÿëÿÝÿû÷Ûÿ÷ÿÿÿþÞýûÿÿÿ÷Ýÿÿ¿¿ÿÿ×ÿÿýßÿþþ½ÿïöÿÿÿþïþ÷ÿ÷ýûÿÿû÷ÿÿßÿÿßïïÿÿÿÿïÿý¿ßßï¿ÿïï»ÿßw÷ýßÿÿ»¿ûÿ÷îÿÿw×ßÿþ¯þÿ¿ÿÿÝþÿ¿ÿûÿÿµý¿÷·ï¿ýßÿþïîþûÿÿïýûÿÿÿúÿ_ÿÿßÿÿ÷ïÿ}ÿÿ~úßÿÿßÿÿý¯ÿÿ¿ßþ¿ïÿþï½ÿÿ÷þÿÿÝÿ¿ÿÿÿúÿÿ»ÿ÷ÿþ÷ÿÿïïÿ_þ¿þëÿÿÿÿÿ¿ûßþÿÿûÿûÿïÿÞÿÿû·ÿýÿÿ÷nûÿþÿÿÿþÿ÷ïïÿwÿÿÿÿÿÿÿÿÿÿÿÿ¿ûÿÿÿÿÿ÷ÿþûÿþÿïÿßÿý¯ÿÿÿÿmþÿïþïûÿÿÝÿÿþ÷¿öïÿÿÿÿû÷ß{÷·oïíþûûÿÿÿÿú¿¿ÿÿ¿ûßíÿÿÿßÿÿ½ÿÿÿ÷ÿ¿ÿ¯¿ÿÿýþöÿýÿÿÿÿöýÿÿÿïßÿÿû÷ÿß^ßÿþ¿ÿÿïÿÿ×ß¿ÿ¿ÿÿÿÿ¿½ÿßÿ¿úþþýÿ¿ß¿Öÿýÿÿÿÿ¿íÿßv¿ý÷ÿûÿßößÿþÿûïÿ_ßßÿ¾ßÿïÿû÷ÿÿÿÖÿÿÿÿÿÿÿÛ}õÿÿÿß÷}ïÿ¿ýÿÿÿÿÿûÿïÿöÿÿ¿ï÷ÿÞ¯úÿÿÿ÷ýÿÞ¿ÿÿÿÿÿ÷ÿ¿îþ¿ïÿßýÿÿ¯{ÿÿßÿÿïÿwÿ[ÿýÿïßÿÿÿÿÿÿþÿú»÷ïÿþÿÿ{ÿÿïÿÿÿï·ÿÿÿþ¯ÿïÿïÿýÿÿýßßýîûûýÿÿßÿûïmýÿÿ·ÿ߯ß÷ßÿÿÿÿýÿ÷ÿßÿÿÿÿÿýÿÿýÿÿýß÷ûÿßþïÿÿ¿ÿýÿÿÿï¿ÿ÷ÿ_ÿÿßÿý¿ýïÿÿ»¿ÿÿïÿÿÿßûÿ¾ÿÿïÿÿ÷ÿÿÿÿþû[ûûíýÿÿ¿ÿÿþÝ¿ÿ¶¿ÿßÿ¿ýÿíÿÿÝÿÿÿûÿ÷ÿúÿß÷ÿöÿÞÿïëû¿¿ÿþïÿßïÿßÿ÷ÿÿÿþÿï÷ÿûÿÿßÿýÿÿÿïÿßÿþÿÿÿÿÿïß~þÿû¯¿ÿÿÿïþÿÿÿï÷ÿïÿÿÿÿëÿ¿[ÿ}¿ß÷ýÿþý¿ÿÿïÿýûßÛûÿÿ¿ÿû÷ÿýÿîÿ÷÷ûµ½þÿÿÿÿÿÿÿûÿÿ÷¿ÿ¿½~þïÿëýßvïÿÿ¾ïþûÿ¿ßþíïÿÿý»ÿëoÿýÿÿ]ßûÛßÿßÿßÿÿow¿ÿûïïÿïßûÝþ¿ÿë~ÿÿÿÿÿÿû÷ûÿöýßÿÿÿÿÿïÿþÿ÷o¿·þ½¿íÿÿß¿ýï¿ýÿýýûÿþÿÿ÷{ÿúýÿÿïý½ÿ¿~ßýÿÿ¶ÿý×ÿÿn»ÿÿÿïÿïï÷ë»ßþÿÿýÿ÷ÿ÷¯ÿ÷ýÿÿÿÿ¿ïÿïÿ·ÿÿ·÷ÿÿUýþÿ÷ýÿÿo½ÿ¿Þ»«¿ÿÿ·ÿïÿÿwÿïê¯ûÿÿÿßÿÞÿ¿ÿÿÿ÷ïÿïûïþÿ÷ÿÿýïÿßþßþî¿ïÿßþÿÿÿýûûÿÿ¿ý÷ö÷ÿÿ{½ÿ®ý÷ûïïý¿ÿÿ¿îÿ¯¾þ¾ößënÛÿþÿÿÿ¿ÿ¿ïûïÿúÿ[ÿ¿ýï¾úß÷ÿÿÿïÿþÿÿÿÿÿß÷ÿÝÿ÷¯·ÿ·»ÿÿÿÿÛ÷~ÿÞÿÝûÿÿÿß·ïÿýÿ¿÷ÿÿÿÿÿÿýÿÿûÿÛýïßïþï÷ßÿÿÿýÿ{ýûÿöÿûýþÿþÿÿ¿ßß÷_ÿÿÿúÿþÿÿÿßÿ»ïûþ÷ßÿÿßÿÿÿï}û÷÷Ûïþÿïÿ_ÿÿÿïÿß¿ßÿþßÿÿõýûÿûýþ¯÷ÿ¶ßÿÿ¿ïÿÿûÿÿß¾ÿÿÿ÷ÿßÿÿëÿëÿÿÿÿÿû¿¶ÿïþû½ÿöÿúÿ÷ÿ¿ÿÿÿ{oÿûÿÿ»÷ý¿ÿß÷ÿþÛÿÿÿÿÿÿÿÿïÿÿ»ÿ{ûïßÿ{ýÿîûõßÿÿþÿÿ÷ÿïßÿÿþÝÿúÿßûÿßûÿÿ}÷ÿÿÿÿÿýíÿÿ¿ÿÿÿ½ï÷÷ýÿÿÿÿ~ïï÷ûÿ÷÷ïÿÿÿÿßïöûïë~ÿßÿÿÝÿÿ¯ûÿýïÿþöÿ÷ïÿÿÿÿ}ÿÿ¿]ÿÿÿûÿþÿ¿ÚýýûÿÿûÿöÿýûÿßýÿÕ÷ÿßÛÿÿßß÷þÝ¿¿ïïÿÿ¿ïÝ÷¿ßÿ»oÿ¿ïÿíúÿÿßÿýþÿÿÿÿÿþÛ×ÿ¿ïý¿ïýÿï¿ÿþÿïï¿þöÿÿïÿûõõÿÿÿÿ~ßÚûÿÿÿÿÿvïÿÿÿÿoÿÿïÿ_ÿÿÿÿûÿ÷·ßïÿ½ýûû÷×ÿ¿ßûïÿ¿¿ýûëßÿÿ÷k¿ÿïÿÿ[ÿýÿ¿ï½ýïÿßÛ¿w»ÿþÿÿÿí÷úþûÿ¿ÿï÷ÿÿýÿzýÿþöÿµ»÷Uýÿïï¿ÿ÷þ¿ÿßûÿÿÿÛÿ^ÿþýÿÿÿþÿÿÿýwÿ÷^¿ÿ÷ÿÿÿÿÿëÿÿÿ¿¯ÿ_w÷·ïÿÿÿÿÿ·ÿÿÿÿoÿ½ÿwÿýîÿÿÿ{ÿÿÿÿ½·ßÿýÿ¿ÿÿÿÞÿÿ÷_ÿöïÿ¾ÿë÷ÿ×ÿÿÿÿÿÿÿÿÿûÿýÿÿºûÿ÷÷·ß»ÿýûÿß÷ý«ÿöÿÿ{ÿîÿÿ÷ÿïþÿíÿßÿ÷ÿÿßß¿ÿÿýïßÿÿýÿýÿÿÿýûoÿÿÿþï}·ßÿë}ÿÿûÿ÷úßûÿÿÿÿÿûÿÿÿ¿ÿ¿ßÿ¾Þßÿÿ¿öÿû¿¿ßß¿ÿÿ¿ûÿÿÿÿÿÿÿû¾¿¯ÿ÷þÿÿ}ÿïÿ¿ÿõïÿÿ¿þÿ¿ýï÷ÿ÷{¿ö÷ý×ÿïÿÿÿû_ýïßÿÿ¿ÿÿíÿÿÿÿ¿Û}ûûýïÿ¿ÿ÷þ×ÿþÿÿÿïßÿýÿþýýß»÷ß¿ÿÿ÷v¿ÿõïþÿÿÿÿÿÿýÿÝÿÿïßÿïûí¿_ïÿÿ¿ÿÿßÿ}ÿûÿïýÿÿïöíýû÷ýÿÿßÿÿ¿ûÿûïþú÷~ÿÿÿí¿ÿ×_ÿÿÿ{ÿû¿ï¿÷¿ÿýûÿÿûßÿÿÿöÿoßÿ÷¾Û÷ÿÿû}ß÷®ßþýÿÿÝ÷ÿ½ÿ}¿ûÿ»ÿûû[ûÿ¿ÿÿÿþþÿÿýßÿÿ÷^ýÿÿÿÿ¿ÿ¯ÿ¿ÿ¿¾÷ïßþÿu{ïûõ÷ßïÿ÷ÿýíûÿ¿ýÿïÿÿÝÝý÷÷ÿïÛþÿ¿~¿ÿßÿÿþïÿÿï¿÷ß{þÿïÿÿ÷Õÿÿ÷ÿÿÿÿûïûÿ»ÿÿÿÿúÛÿÿïwÿÿÿ¯ïÿÿwÿþ¿ßÿ¿ÿÿ¿ßïÿÿÿ~ÿþÿ¿ÿÿ÷ýÿÿÛûÿÿïûÿÛÿÿÿÿßÝÿÿÿÿÿÿÿß¿öÿÿþÿÿßÿýwÿÿÿÿÿõýûÿÿÿÿÿïÿÿýÿþ¿þÿýþÿïÿÿÿïÿþýÿþÿÿ÷¿ÿûÿßïÿýÿý¾ÿÿ÷ïÿï÷ÿýÿþûÿïÿïÿÿÿßïþÿÿÿßýÿëÿßÿÿ·ÿÿ¿ÿßÿ}ݵýwÿýÿÿýßûûÿÿÿõ¿Þÿÿÿÿïÿ»ÿ»¿ïßýÿý÷ÿÿÿÿÿ½ÿÿýïÿþýÿÿÿîÿÿ¿·×÷]_ûÿÿÿÿÿÿÿÿ÷ÿï»÷ûÕÿ¿ÿíÿÿõ½ýÿÿýÿÿ{ßïÿÿÿÿûÿÛÿÿïß¿ÿÝïû[ÿÿÿûþûÿÿßÿþ÷ÿÿý¿ÿÿÿýÿþ÷Ýþÿÿûþ·û~ÿýÿûÿïÿÿÿþÿÿ·ÿï¿ÿ¿ÿýÿÿþ÷¿ûÿÿö¿ýïÿÿýÿÿÿïöÿ÷ÿÿýÿÛÿÿ¿ûþÿýßÿõ¾ûýÿ_ßýÿ÷÷ÿÿÿíÿ÷ÿÿûÿßÿÿý­û{í_ïýÿÿÿÿÿÿ_ýÿ¿ýÿöûÿÿÿ÷»ÿÿïÿ×ÿÿÿï÷ßýï¿_ÿÿÿíÿÿÿïÿõÿÿÿþÿïÿÿÿÿýÿþ¿ÿ[Ýýÿÿûÿÿ·÷ßÿ÷îÿûïïÿÿÿÿ¾ýïÿÿÿ¯ïÿÿ¿ïÿ~ÿÿþÿû¿ÿÿû¿wÿ¿ßþïÿÿÿÿÿÿþ¿ûýûÿÿÿþïÞÿÿýýûýÿÿÿ÷ÿýÿþÿµ{ú÷ÿÿûïÿÿ­÷ï¿ßÿþÛÝÿÿÿwÿÿÿ÷ß«ßÿþÿßïïÿûÿ÷¯·×Þÿßÿßûûÿïþÿï]½wþïÿßû÷ÿ_î«ýýÿÿÿþ¯ý×û»ÿÛÞÿ½ÿoÿÿÿ·ýþßïÿûÿÞÿ}þöÿßîÿÿÿÿÿÿÿÿÿ·þßÿÿÿÿÿþÿß¿}ÿk¿Ý·ûÿÿÿÿÿoÿ÷ÿ»ÿÿÿ¿_þÿ»ÿÿÿ¯ýÿÿoý¿ÿÿßûþÿÿÿÿÿ÷»ÿïÛû¾÷·ÿÿßÿ_ÿÿÿ»ÿÿÿÿÿÝ¿ïÿÿÿÿþïþÿÿÿÿÿÿ»ßÿýÿ~ÿÿÿÿÿÿ¿ïýîÿßÿßÿýwýÿÿÿÿßþýýÿõÿ÷ÿÿ­ÿÿÿw»î¿ÿ»ÿÿ~Þÿw{ý÷÷ÿÿï¿¿ûÿÿýÿÿßÿÿÿöÿû»ÿ»ÿïþÿ¿ïÿÿÿî»ÿÿÿþÿ¿ÿþöþßöÿïÿÿ¯Ûÿ¿[÷ÿûïïÿÿÿÿßý»îýïÿïÿûÿÿúÿÿÿÿÿ÷ÿÿ¿÷ÿþûÿ÷ÿý¯ÿû׿ÿÿÿëÿ½ÿþíûõ÷ÿÿÿÿ¿ÿ¿ßÿ}ÿ÷÷ÿÿßÿþ÷ý¿ÿ¿ÿÿoþÿûÿûÿ¿ÿÿÿÿÿÿþÿÿÿÿþï}ûÿÿýþÿÿßÿûþÿþÿÿÞÿÿÿõëöÿÿÿßÿïÿÿßnÿÿkûÿûÿ÷ÿµ÷îÿÿÿýûßÿ÷ßÿýþÿ~ïÿÿÿ¿ÿÛÿÿûß»ýïÿúûÿ{ÿõÿÿÿþþ¾ÿÿýûÿÝÿ~ïÿßÝÿÿïÿûÿ¿ßwûÿýÿÿ÷ÿÿÿý÷þÿßÿÿÿÝÿþ÷ÿÿþßþÿ»ÿÿ{ÿûý÷ÿþßýûÿÿÿ}¿þþÿ÷·ÿßöþïÿÿÿ«¿ÿÿúÿÝ¿ÿÿûßÿÿÿÿúÿ¿ûþ÷þûßÿÿ¿÷ÿ¿ÿûûÿï¿ÿþ¿õ¿ÿÿÿÿíÿýÿÿÿÿþûÿþõoÿ_¿¿{ÿÿÿÿßÿÿÿÿÿÿþÿÿýÿ÷ÿÿÿÿÿÿÿÿßþû¿îÿ½ÿýúÿÿÿÿÿ÷¿ÿ÷¿ýÿÿ¿ûÿßÿÿ_ÿÿÿÿ÷ïû÷ûÿÿÿïÿýÿÿ·Þûïÿßþÿÿß¿ÿÿþÛÿûö÷ÿïý¿ûýwÿÿ·ßÿßÿÿþöÿÿîßöþßÿïÿßÿýûÿ·~ÿïÿ{ÿÿÿ»ßïÿõÿÿþÿûÿÿÿßþÿÿßß_÷ýÿ¾ÿëÿûÿ¿ÿÿ{ÿ÷÷ÿýÿ¿ÿ¯ïÿÿÿÿßî¿ûÿÿ¿¿¿÷÷ÿÿÿÿÿþ÷ýûÿßÿÿÿûÿÿÿýmÿÿÿßÿÿûßþ÷ëÿ÷¿ÿÿý¿ÿ÷ÿýÿÿÿ¿÷÷ÿýûÿÿWîþÿßÿÿÿõÿ÷ýþÿýßÿ÷ÿßÿïÿÿÿß¿ïÿßû÷ýÿÿÿÿÿo¿ß~ÿÿßÚÿ·ßÿïÿ¿ïÿnûýÿÝþ»ï¿þÿßÿþû÷ÿÿÿíÿÿ¿ÿßÿ_ÿÿûÿÿþÿÿïß÷¿þÿÿÿûÿßÿÿÿëÿÿ÷ûþßÿßþ¿ÿÿÿ÷ÿwÿÿÿýûûîÿ¾ÿÿÿÿ÷õÿßîÿÿßÿýßÿïÿþ÷ÿÿÿï÷ÿ¿ÿú÷ïÿÿÿ¿ÿÿ¾ÿþÿßúÿýßÿûýÿÿÛß÷ýýÿ¿ûÿ­Ö«ÿÿÿÿýÿwÿýÿ~ÿ÷ýÿÿ}ÿÿßÿïþ÷öÿïÿ÷ÿïÿÿÿÿýû÷÷ÿû¿ÿÿß÷w÷oßïýÿÿ¾ß¿ÿÿíÿëûÿoÿï_ÿÿ÷ÿ·ß÷¿ýÿÿÿÿÿþþ¿ÿß÷÷ÿÿÿ~÷ÿÝÿ÷ýÿïÿÿÿ÷þÿÿÿÿ÷÷ÿÿÿÿÿ÷ÿÿÿßÿþÿßÿ÷þý}÷ÿÿ~¯ÿ½ÿÿ}ÿûÿ÷ýý÷ÿýÿÿÿßÿýÿÿ÷}ßÿÿÿÿÿÿ¿ÿÛíþýÿý{ÿÿ÷¿÷ýÿûÿþÿÿÿÿÿÿÿ÷¿Ýïÿÿÿýßÿßþ¿ÿ¿ûïÿßÿþýÿûïïÿÞ»þ÷oÿÿëû÷ÿûßßÿ»ÿ÷ïÿÿ¿ûû¾ÿÿ÷ï÷ÿÿÿýÿnÿÿ÷¿ßÿ¿÷ï¯ßÿþ·ÿïëÿÿýþÿÿ÷ÿÿÿÿ÷ßûþÿÿÛÿõïûß¿{ÿÿÿÿßÿßÿþÿ÷ÿÿþþÿÿ¿ÿÿÝ÷ßÿ^ÿÿûÿÿÿÿÿþÿÿßÿþûû¿ÿþïýÿþÿÿÿÿ×Ýÿÿÿûÿßÿÿm¿z½·ÿû¿¿õÞÿÿïÿïïÿÿ¿ÿï¿ÿýûö·¿ÿþÿÿÿïÿÿÿÿÿ÷ÿÿÿwÿï¿ÿÿÿÿÿÿÿÿßýÿÿÿý¿ÿÿ~ÿw÷ÿß÷¿ÿÿÿ÷íÿÿÿ÷ÿßÿÿûûÛýÛÿÿÿÿÿûýÿw¯ÿÿoÿ¿ÿÝ¿ÿÿÿÿÿÛýþ¿ïÿõûÿïÿÿ¾ýÿû¿ýÝÿÿßïÿÿõßÿÿ¾ïþþÿÿÿ½ÿößwý×ÿÿûÿÿýßÿÿ{ßÿßßÿþÿÿ÷ÿýÿÿÿýÿ÷þÿÿÿúïÿïoÿÿÿ¿ÿ~·ÿ_û¿ßÿÿþ¿¿ëýÿ¿ÿÿûïûþßÿûëïÿïÿ÷ÿþÿ~ÿÿûÿ¿ýwÿÿïïÿÿÿïþûïÿõÿÿûÿÞ·ûßý÷ÿ¿ßÿý÷÷ûÿÿþßÿÿþÿÿý÷ÿý¿ÿÿÿ{÷÷ÿ÷ÿßÛÿÿÿ_ÿïûîßÿßÿûïý¿Ýõßÿî¾ûîÿÿëÖ÷ÿ~ïßßßÿÿïÿîÞÿÿ¿û÷ßÿöÝÿÿýûÿïÛÿÿ÷ÿÿÿ÷î¯ÿÿ÷ß¿ÿÿÿwÿÛëwÿÿ¿ÿÿíÿ÷ÿÿ¿{ïûwï÷ÿ¿÷ÿÿ÷ýÿÿÿ÷ÿÿÿÿïÿWýþÿÿÿõëïÿÿÿïýÿþûýÿý¿ïþÿýúöþÿþÿ¿ýÿþÿþÿõÿûÿ¿ÿÿ]þ÷ý¿ýÿÿ÷ÿÛÿÛÿoÿÿû_ÿ¿¿ÿûÿÿþÿÿÿÿïÿßþÿûÿÿÿÿý¿þ÷ÿÿÿýßïû÷þÿ¿ûþö¿ûÿ¯ÿíßÝÿÿoÿÿ}ÿÿÿßÿþÿÿï¿ûÿýÿÿÿ÷ÿÿÿßûÿÿÿÿÿÿÿÿõÿÿïÿßûïþÿïÿûÿÿûúÿÿëÿ÷¿ÿþßÿÿïÿÿÿýûÿßÿ÷ÿ¿ý¿ïzýÿýÿßÿÿÿýÞßÿÿ÷ßïÿßßûÿ¯Wÿ¿ýÿ÷ÿÿÿú¿÷ßµ}_ÿÿ÷ÿÿÿWÿÿ¿ûû÷ßÿ¿¿ÿß¿ÿÿÝÿÝïÿÿÿû}ÿ÷ÿÿÿÿþýöÿÿÿÿÿÿßÿÿÿÿÿïÿÿßÿÿïßÿ÷íï¿ÿûn÷ÿÿûÿÝÿÿßÿþÿÿßßûßûï½ÿ¿ÿßûýÿÿýýÿýëÿûýÿoÞÿßûÿÿûþÿßÿßïÿÿïýþûûïýßÿÿÿÿþÿÿÿï¿ÿï¿ÿÿßý·þÿ¿ÿv¯÷ïÿÿþýþÿþÿÿÿÿûûÿßÿÿÿ¿öþîýßÿÿÿëýßïÿºýÿÿíÿÿÿ÷ÿÿ÷ÿÿ¿ßëÿÿ}ÿÿúÿÿÿþÿ¿þïßþþû¿÷öýÿÿÿÿ÷ÿ÷ÿûýÿ¿½ýÖÞÿÿ·{û½ÿÿþÿïÿÿßúïþÿÿÿþÛýÿ÷þïýÿÿ·¾ÿßÿÿÿÿÿÿÿßßïÿÿÿÿïÿÿÿ[úÿÝÿÿÿ¿ëþÿÿÞû»ÿ»÷ÝÿÚûûÿ÷÷ú¿¿ß½ÿ¿~ÿÿ¯ïýÿÿWßïßÿýïÿßÿ¿~ÿÿÿÿþýÿ×ÿÿÿÿßïÿÿß¿¯}ûÿÿýïÿÿ»ÿÿ÷ÿïß÷ÿÿ÷ûýûÿþ÷ÿ_ÿÿÞÿÿÿ¿ëýÝ¿ïÿßÿÿÿïÿÿÿÿ÷þÿ·»ÿÿÿû·ûÿßÿþíþ¾ÿßý÷ÿÿÿÿÿÿÿÿûÿÿÚÿ÷ûïÿßûíßïÿÿÿ¯}ÿ÷ÿ÷þ¿ýÿÿ÷ÿÿûÿûûßÝÿÿÿÿ÷ÿÿþÿþïÿ¿ßÿûÿöýÿÿß÷ÝÞÿûÿÿÿïûÿÿ×·ÿûÿûû¿öÿï~ÿßÿÝ¿öÿÿÿÿÿÿîÿº¾ÿÿÿþÿ÷ÿ¿þ¿ÿÿö¿ß¶ÿ}ïýëoÿÛÿý¿»÷}ÿÿÿýßjÿýþ×Ýÿÿ÷þÿþþ÷ÿ¯_Ý»ÿýÿ÷ÿû~ÿþÿÿÿÿ{ï÷}ßîþõûÿßÿ¾þï_ÿÿþÿýÿ¯ß»ÿý÷_ÿÿÿÿï¿ÿßÿÿßßÿÿÿýÿßïÿþÿïþÿÿwúÿÿÿûÿÿßÿÿÿÿ÷ïW~ÿÿ¿»÷þ¿ûï÷ÿöÿÿïÿïÿßÿÿßÿþÿÿûÿÿ¯¿ÿoßþ÷ÿßÿßÿßÿþíÿÿÿÿýíß÷¿÷ÿÿ÷ýß÷ßÿßÿûïßïï}ÿÿÿÿÿýûïûûß¿¿ÿÿ¿ÿßÿÿÿë÷»ÿûÿÿ¿÷ïÿÿÿÿïï÷Þÿþÿÿïö»ÿ÷ß÷ÿûûÿÿ{ÿÿÿ¾¿ÿÿ}ÿÿÿþ÷ïÿëþÿ¾ÿÿÿ÷ïÿÿþþÿ¿ßßûÝýïïÿÿÿþÿïï÷õ^þ÷ûÿþöÿ¿ûïÿý»ÿßû½ûûïÿÿÿÿÿÿþ×ïÿ½ÿÿÿ¿wÿÞÿïûÛÿûÿÿßÿþ÷Ýûÿÿ¿ÿÿýÛÿÿïÿûïÿêþÿÿÿ¿õû¿ÿÿïï¿ÿÿÿýÞÿÿÿý½ÿ¿ÿÿßÿþÿ¿þë»ÿÿíÿÿÿ¿ÿÿûû¿ÿÿÿÿoÿß×þÿÿÿ{ïúÿÿÿuÿÿÿÿÿÿþÿÿûýÿÝíÿþûþ÷ûÿþÿõÿÿÿÞ¿ÿÿ}ÿÿÿï¿¿ÿûÿþÿÿÿûûúûßÿ}¿¾¿ÿÿí®ÿ߶ÿÿßÿûÿ×ÿ÷ßÿ÷þ¿ïÿÿûÿÿ~ïÿ}ÿ·~ÿÿÿÿÿÿ{ÿß÷Ý·ûýÿÿÿÿ÷ýÿ÷ß·ûÿ÷ÿ¿ÿÿûÿÿ÷ïÿ»ßÿÿÿÿÿ¯ýþßÿÿÿ¿ÿïÿïÿûÿÿ¿ÿÿûÿÿÿÿ¿ß÷ÿµÛûûþßÿßÿÿÿûÿÿûÿÚïÝÿÿÝÿÿÿÿ·ýÿïÿÿõÿÿ÷÷ÿÿÿÿ}÷þÿÿÿ¿ëïßßÿ¿ÿûÿß½ûÞ¿ïÿ÷ûþ÷ÿýíÿw÷ý¶¿ÿÿÿ¾ÿÿþÿÿÿ}ÿ_¿÷ÿÿßwß½ÿ{ÿÿÿÿÿÿÿÿ÷ßÿ¿ÿÿÿÿû¾ûûþßÿþÿÿÿÿÿþÿßÿßþß{Ûÿûÿßÿÿïoÿÿûïÿÿÿÿÿßýõ{Ýÿû÷ÿíÿ¿ÿýÿÿýýÿÿßÿÿ¿ÿþÿ¿ÿ¿þÿ÷ÿõÿÿÿÿßýÿ÷ÿÿÿÿýÿÿ÷ÿûÚïõÿÿÿÿÝÞêÿ¿»þïþÿÿÿÿÿýýïûÿþþþÿÿúÿÿþÿÿ¿vÿ¾ïÿûÿ÷ÿÿïþÿÿ{ÿÿÿûûÿûïÿÿÿÿÿÿÿþ·ÿÿïßÿßßÿÿÿÿÛïÿ÷ûÿßÿÿÿ·ßÿÿÿÿÿûïý~ÿÿîïÿÿÿýß_ïÿþ¿ÿûÿwþþïÿÿÿ¿þÿ×ÿÿ{÷ÿþ÷ßÿöþ·ýµÿûÿ÷ÿþßÿßÿûÿïÝþïÿ¿ßûýÿöÿÿ÷ÿý×ÿÿÿÿÿß߯þÿßÿÿÿ¯ÿº÷ÿÿÿÿûÿÿÿÿÿýÿïÞþþîÿÿÿÿÿûÿßýû¿ïýïÿÿÿûûÿÿûÞÿûïþûß·ûþïÝïÞÿ¿ßþÿ¿ïÿÿõëûûÿÿÿÿýßÿÿ×ÿýkÿúýÿo÷»wÿ¿ïþûßúûÿý÷ÿÿýÿÿþÿÿ{ýûúÕýÿÿ÷ÿÿ¿ßû¿ÿÕþïÿÿ¿ßþÿïûÞïÿÿ÷ïÿýþýßÿÿßõÿë÷ÿÿ¿ïþûÿÿßï÷ÿÿÿÿý}ÿûÿ·þÿïÿÿÿ÷úÿÿßÿÿÿ»ÿÿÝ¿~ïÿýÿÿýoÿÿï½ý¿ßÿ¿ïïÿý¯ÿÿÿïûÿ»ÿûïþûýÿþûûÿÿÿû×ÿÿúîúöÿ÷wÿÿÿûÕÿþ÷ÿÿÿÿßõÿ¿ûÿÿßÿïÿÿ¿ÿßýÿÿÿÿþûÿû¿¿×ÿÿÿÿïïÿÿþûßÿÿßýÿÿûÝ¿¿ûÿÿý»÷¯þÿÿÿßï÷¿ÿ_ÿûÿÿÿÿwßûÿß¿ÿÿûßÿÿÿÿÿúÿÿ½ÿöõÿÿ÷ÿîÿÿÿÿÿ»ÿßÿÿþû¿û÷ïÿÿÿÿÿÿÿ¾ÿÿ÷ÿûïïÿ¿ÿ~ßÿÿÿÿÿÿ÷kûÿÿõÿÿööÿþÿîÿíýÿuïÿ÷íÿûÿ×÷ßÿÿîïÿý¿o÷ïþÿÿw÷ÿÿ÷ßÿ¿÷ýÿÿ·ýßÿÿþïÿ÷ïÿ÷íÿ÷ÿ½ïûß­_ÿöÿïû¿ÿ¯ßÿÿûûÿ÷ÿ¿ßýûþÿÿïÿÿÿ¿÷þûÿÿÿß¿ÿöÿÿÿßßÿýÿÿÿÿöÿÿ½ÿÿþÿÿ¿ÿÿëýÞÿÿÿÿÿÿß¿ÿÿo¿ÿÿ÷ÿoÿ÷þÿïûÛûÿ­ÿïÿÿþ×þïÿý{ÿÿÿÿýWïÿÿïÿï½îß~¿¾ÿÿÿÿ¿ýÿÿÿ_ÿÿÿ·ÿ_ß¿ÿÿÿïÿÿ¿ÿÿÿûûÿÿþïÿÿÿÿÿÿ¿ûýÿÿßÿý¿¿ýÿõÿûÞ¿ßÿÿÿß~þ¿ßÿýßÿ÷ÿÿÿ¾ÿÿÿÿ¿o¿ßÿÿ÷ÿßÿÿ÷×ÿýíû÷öõwÿÿûïÿïýþÿûÿÿ¿ßµÝ¿ÿoÿÿÿþÿïßÿ÷ßÿþÿÿ÷ÿÿÿÛÿ·ÿ¿_ÿýûÿûÿÿÿÿ^þ»þîÿïÿýÿõÿßïûÿÿÿÿÿÿÿWÝÿÿÿÿÿÿõÿ÷ï÷û÷ïûûÿÿÿûÿÿïßûÿï·ï¿ýÿÿßÿÿ÷½ÿýÿû¿ûûÿ[ÿÿÿÿÿïÿÿÿÿÿÿ_ÿÿÿ÷¯¯¯ÿûÿÿý»ÿÿÿÿÿÿîÿÿÿï½ûýÿÿï¿õ÷ýßÿïÿïÿ»}þÿþÿ½ßÿÿÛÿûÿÿ_ß{ÿÿÿÿÿÿÿö¯ý¿ÿ÷ÿõßÿÿÿßú¿îÿïßß{þÿÿ}û¿ÿÿþÿÿÿýßÿÿÿí÷ýï}ëíÿïþÞßÿýßëÿûýûßýÿÿÿÿ÷÷¿ÿûÿÿïÿþßý]ûÿ¿ýÿÿÿû¿ÿÿÿÿÛÿ¿ßÿÿÿ÷ÿþÿÿþúÿÿÿÿû÷ûÿÿÿÿ¿ÿÿÿýÿÿï¾ÿ»ÿþ÷÷¿_ýýÿÿW¿¯ßwÿýÿÿÿïÿûw¿ÿÿÿÿÿßÿÿÿþÿßÿÿý÷ÿÿíÿ¿ÿïûïíûß¿÷ÿ¾ÿÿÿÿï×ßû¿ÿmÿÿûÿÿÿïÿÿÿÿ¿ÿÿÿþ÷ÿÿÿÿ¿÷ÿÿ®ïÛÝûÿ¿ïõÿÿÿïýÿÿíþý¿¿ÿÿ¿ÿ»ûþßÿûöþÿëÿûßÿÿÿÿþûÿÿvþß¿ÿû¿þÿÿþÿ÷¿ÿÿÿ~ÿÿÿÿÿûßýÿÿÿ~ÿþýÝêþÿ{ÿûÝoõ¿ÿÿÿïþÿwÿ¿ßÿþ»ý¿ÿÿ¿ÿÿïÿÿÿûÿÿßý÷ÿýÿ÷÷{úïÿÿÿýßïïÿÿïþÿÝÿÿÿßÿÿïÿÿ»ÿÿßÿÿ¿ÿïÿýÿïÿÿoîý¿·ÿÿ¯½ßýýÿÿÝÿ÷öýÿÿÿÿÿßÿÿ¿ÿÿÿ»ÿÿýßÿÿ¾ýýÿþîÿ÷{ßÿ~÷ï×÷þ¯ÿÿÿïÿµ÷ÿÿÿßÿ~ÿßþÿû]ÿÿþýýÿûÿÿÿÿÿÿïß¿ÿþÚíÿýÿÿõû]¿÷ÿþ÷¿ûÿÿÿßßÿÿ÷ÿ¿¿ûöÿõýÝ·ÿ¿ÿïûÿÿÿÿûoß¿ÿÿÿ·ÿÿ¿ý÷þßÿõÿïÿÿ¾ÿýÿþúÿûûßÞ¿ÿ¿¿ï~ýÿõ¿ïûûßÿÿ¿ÿÿÿÿÿÿû¿ß·ÿýÿÿÿ_ýïÿúÿÿïÿ¾þÿÿ¿oÿý¾ÿßýï¿ÿ¿ÿÿÿÿýïÿþÿþßßÿõÿÿï·ÿ½ÿÿÿÿÿöÿÿÿÿmÿÿÿÿÿÿÿû¿ýßûÿßÿ¿ÿÿû÷ßÿÿ¿ÿûÿþï÷ÿ÷ßÿßýÿ·¿þþÿþíõÿÛÿþÿþßÿÿß¿¾¿ÿ¿_ÿûÿßÿýÿ¿Ûïß×ÿû~þÿÿÿÿ~÷ÿ÷{ýßÿÿßÿýÿÿýßû{ÿÿ¾ÿÿÿþÿþ¿ÿÿëýÿ÷ÿÿÝ¿k÷ÿ¿ÿÝÿÿ÷÷ÿÿÿû½ûþþÿÿÿ{ÿÿÿïÿ½ÿ÷ÿÿúÿÿýÿÿßÿ¿ÿïÿÿ÷÷ÿÿíÿ¿ÿÿûþïwûÿßêÿõÿwÿëþÿÿÿýßßÛûßÿßÿïÿ~þï~ÿÿûÿëÿûûßýÿïÿû¾ÿí÷÷ÿ÷ÿßûÿÿ~ÿïÿ¿ÿ¯ÿþÿ¿ÿÿÿß{þ®ÿþ¿ýÿÿÿ¿ï÷ÿþÿÿÿÿÿ·ÿÝÛÿßûÿÿÿþÿýÿßßÿÿÿÿÿïý«÷ÿÿÛwßþ½û÷îûÿßß¿ÿ÷ÿþÿÿÿý¯ÿí}~û÷ÿ~ÿÿïþÿÿ»îÿÿÿÿþµÿ÷}ÿïþÿÿý¿þÿÿýþ÷õÿþëÿÿß~ÿ÷ÿÿ¾õÿ÷ýïûÿû÷ÿý}ÿ~ÿ÷÷ÿÿÿÿÿ¿ÿÿûû}¿ÿÿïÿÿÿÿÿûÿßïÿÿÿÿ÷þÿÿ¿ûÿÿÿÿÿÿûßÿûý÷ÿþ¿þÿÝýûÝÿ×ÿÿ¿ÿÿÿÿÿ÷~¿ß÷ÿÿþýÿÿ¿ÿoÛýþ¿ûÿïÿ·ýÿïÿÿÿÿïûÛÛûÿ~÷ÿ¿ûýÿ¿ÿÿ÷¿ÿîÿûÿo}ÿ÷ïïÿþÿ½þþÿÿûý÷õúýþûÿÿnÿ{ºï½þÿÿÿûÿþßÿÿÿÿÿ½ÿßþÿßÿÿ×»ÿÿþþÿ÷ûý¿ßÿëÿÿÿïöÿÿÿÿý}ÿï÷ýÿÿÿÿwÿÿßÿû÷ÿïÿÿÿûûß×ßÖÿ÷÷»ÿÿ~¿oþûßýý÷÷ÿÿÛnÿûÿÿÿÿþß÷ÿÝÿýÿúÞ¿ß¿ÿßûÿÿ÷ÿýÿïßÿÿúÿß}ÿÿïßÿýÿþýïÿï÷¿ÿÿ÷ÿïÿýÝwúþÿ{þïû¿ýÿÝþÿÿ~ÿ¿^ÿýÿÿÿÿÿÿÿ÷¿îÿÿÿÿÛÿÿ{ÿÿßvÿÿ¿¿ÿÿÿûÿûÚîÿÿþÿ}ÿÿþÿÿÿÿÿý÷öÿþÿÿþúûÿÿ÷÷ÿoïþï»w¯ÿ·ÿÿûÿÿßÿÿÿßÛÛÿÞ¿ýÿßÿ÷þ¿¿î÷ÿþßÿÿþÿ~ïwßûÿ¿ÿÿÿïû·ÿÿÿÿÿÿÿÿ÷ÿÿïÝÿýÿýÿ÷{_Þýÿûÿ{ÿÿþþ¿ÿïÿïÿßÛÿþÿþÿÿßþýûÿïý÷­¿ïïÿúÿûÿÿýï¿Ýÿ÷oÿýÿ¾ßö¿»þýÿÿÿÿßþßo}ûÿÿÿÿ~ïßÿÿßÿÿ·ÿßÿþÿíûûïÿÿÿÿ¿ÿïÿþ¿×ÿûÿÿ÷ÿïÿßÿÛÿúýÿïÿûÿûÝÿ÷ÿïÿÿÿßýÿÿÿÿïÿÿÿÿþÿÝÿ½m¿þÿÿïÿ¿ÿÿÿÿÛ÷ÿ¿þÿ¿ÿ¿ÿÝëÿ»ÿîÿ_÷ÿÿýÿýÿÿÿÿÿÿþ¿Ýß¿ÿ÷¿íÿþßÿýZÿï¿¿ÿ¿ýÿýïïÿïÿÿ¿[ûÿÿÿÿÿï¿wÿßýþ·¿ÿÿÿoÿþ÷ýÿ÷ÿ½ßÿÿ_¿ÿÿÿwÿþÿþÿÿÿÿ½ÿÿûýÿÿþ÷ïÿÿÿ}ÿßÿÿÿÿýïÿûÿÿÿÿþÿÿÿ¿ÿõÿûÿï÷÷þ÷ï¿ÿÿûÿ»ÿßýßÛ½÷¿ûÿÿÿýßÿ÷ÿÿúÿßÿ^Ûÿ~ÿÿÿnýÿýÿ{ÿÿ·ÿ÷[ýÿÿÿÿýÿõïßÿýÿþÿ¿ûÿ÷þÿïÿ»ýþÿßÿúýÿ~ÿúÿß÷ÿÿþïÞÿÿÿÿû¿ëÿ÷ýÿþûß}íÿÚýÿïÿÿÿÿÖûÿÿÿþÿ¿ÿ·ÿ«·ÿßÿÿÿÿýÛ~ÿÿÿÿ½»÷Þÿÿý÷Ûÿþÿõÿÿÿÿ»úÿÿÿÿÿþÿï÷ýÿ~ÿ]¿ÿß}ïÿþïÿÿÿÿÿ¿ÿ¯×ÿëÿÿý÷ûÿ~þÚï¯ßþÿ÷ÿÿíþ¿÷¿ßïÿ~·ªÿþßÿÿÿÿûÿÿõÿþÝþÿ½¿ÿÿÿ{ÿÞû¯ÿý÷ýÿý÷×ë¾ÿÿÿÿ^÷÷ÿûßýÿÿ¿}ÿ{ÿw¿¿ý½ÿ÷®ÿúÿÿïþÿÿõÿÿÿÕ÷ûoï¾ÿÿõÿ÷ÿïÿÿ÷ÿßû·ÿß÷ÿÿÿýíÿþßëÿþÿÿÿÿÿßÿÝÿÿÿÿÿÿÿïÿÞÿÿÿûÿ»ÿÿ÷¾ÿßÿÿ÷ÿÿ~ÿÿÿßïÿÿÿýû÷ÿÿÿÿÿÿþÿÿÿýÿÝßþ¿ûÿý»ÿõýÿ_ÿ÷ÿýýýÿÿ¿ûÿÿ÷ÿÿÿÿÿ}oÿ¿¿÷ÿwÿoßÿÿÿöÿûþÿ®Úÿÿÿïÿÿÿ÷ý¿ýÿÿ»úïëÿ¿ÿß×ÿÿÿû_¿Þîýÿÿïÿÿ¯ÿûÿÿÿÿÿoÿÿÿþÿ¿ÿÿ÷ëßÿÿÿýÿ÷ÿþÿÿõ{ïûwßÿÿïÿ÷ÿÿûÿÿý¿ûÿûÿÿÿêÿÿÿÿÿ¿ÿÿ¿ÿýÿûïûÿÿþ÷þ¿ÿ¿ûû¿ÿïýoÿÿÿvÿûÿÿÿÿÿÿûúÿÿþÿûþÿÿÿÿýwÿÿÿÕÿßÿÿþû{þÿëÿ÷ÿþöÿ¯}þÿý÷ÿÿþÿÿÿý÷Ýÿ÷÷ÿ÷ÿþÿÿ{ÿûÞÿÿÿÿÿÿýÿ»¿ÿÿßþßÿÿíþïÿÿ½ÿû÷ÿ¿ÿúÿîûÿÿû_ÿ÷{ÿþÿïÿï~ÿÿÿûÿþÿÿÿï}½ÿÿÝýÿÿýÿÿ¯ÿþ»ûÿÿÿö­ÿýÿ¿wýÿßþûÿ÷ßÿÿÿþÿÿÿÿï¯ïûý_ÿßïïÿÿÿÿûïÿÿÿÿÿßíþ½ýÿÿ¿¾ÿýýÿwÿÿ¿ÿûýÿºÿö¿ûß·ýþÿïûÿÿÿÿï_÷ÿÿûýÿw×ÿþýÿÿÿÿÿÿ·ïÛþîÿuÿßÿûÿÿ÷ÿÿÿÿÿïÿïþ½ÿÿû¯ÿÿ÷ßýÿ¿¿ÿÿ¿ÿÿÿÿÿwÿ~þÿ¯ûïÿÿÿÿ÷ÿíïÿþþÿÿÿÿ¿ÿÿëÿ_ßÿÿýÿÛÿ¿Ûûï÷þÿÿÿoÿÿþïÿÿÿÿÿoÿ¿ïÿÿÿþÿï÷úÿïÿÿÿÿþïÿÿýÿÿÿÿ¿û÷ïïÿÿÿÿÿÿÞÿÿ÷¯ßÿÿÿÿ¿ÿwÿ{õÿûþßßÿÿþ¿ÿÿ{ýÿÿýï¿þõÿ÷ÿ÷ÿÿÿÿÿÿý÷ß÷ýÝýßÿ»ßÿÿ¿¯ÿ¯ÿÿ¿û¿ÿÿÿþû÷ÿÿ÷þ¿ïÿ¿ÿÿoÿþ߯ÿÿÿþï_ÿïÛþûÿ¿oÛß¿ýÿûÿ_ÿîöÿÿ÷ÿßß¿ßýÛýþýÿÿ¿ÿÿÿÿ÷ïÿÿ÷ÿÿ÷ÿß÷ÿÿßíÿÿßþÿÿÿ÷ÿûÿöýÿÿÿÿÿß÷ÿÿÿýÿÿþýÿ÷ÿ¿ßõÿÿ÷ÿÿþßõÿÛÿÿþÿ¿¿ÿßïÿßû÷ÿýÿÿßÿÿ»ýýÿÿýÛ÷ßÿÿÿ÷ß÷ÿÛÿÿßûßß{ûßÿ÷{ÿwý¿ÿÿ¶ÿÿý¿ÿÿ{ÛëÿÝÿÿÿÿï·íýýÿûûÿÿÿ½ÿÿÿï÷ÿwÿ¾ÿ÷÷ÿ¿ûß÷ÿÿßþ¿ÿÿÿ»·ÿÿmÿÿïÿßÿ÷ÿÿ¯Ýîûÿÿ¿¿ÿ÷ÿÝoÿÿïÿõÿÿÿÿ¿ÿûÿÿëûÛ÷{÷ÿß¿ÿï¿ÿÿöß¿þ¿¾ÿÿÿÿÿÿÿþÿ¿ÿÿÿÿÿÿÿÿýßýí¿ÿ·Ûßÿÿû¿ïÿÿ¾ÿßÿÿûwÿÿúÿ¿÷ÿÿÿ·ßï¿Ýÿßûÿÿ{»ûÿ÷ßßÿÿÿýÿ¿¿ïÿ·¯ºÝÿÿ[ÿï÷ÿÿÿÿÿ¿ÿ¯ÿÿo÷¿ÿû÷ÿ{þÿÿýÿÿÿÿ÷¯þïÿïÿÿß~ïÿþÿÿÿo¿íû¿ÿ÷oïëÿßûÿïý÷ÿÿ¿ÿþ¿¿ß·ÿÿýÿÿÿÿÿÿþÿÿÿþûûÿÿþÿ÷ýþÿþßÿÿß½ÿÿïÿß÷ÿûÿþÿ÷ßþÿ}ÿ÷ÿ÷ßöÿýÿýÿÿÿþ÷ÿý·ÿßÿÿßÿÿÿûÿ¿ÿïÿÿß÷û÷ÿÿÿ¿ÿÿ÷ßîþÿÿ½ïßnßï÷ûÿÿýÿ½ÿßþþûÿÿÿ¿ýþÿÿîïõ^ÿïÿ¿ÿÿÿ¿÷ÿÿý÷¿ýÿÿÿßo}÷¶ÿÿýÿýÿ÷ÿûÿÿ׿ÿÿíîÿwÿÿý­ÿ×ÿÿÿÿ¿ÿÿïÿÿ÷ûÝÿÿÿÛÿûÿÿïÿÿßwßÿýÿ÷ÿ÷ÿÿþ½ïÿý¿ßÿ÷ßûÿÿïÿÿÿßýÿÿ_»½ïûÿïÿêÿ[íýÿÿ¿û½ÿÿÿÿûý»»½ÿÿo¿Û{·ëÿÿÿûÿÿÿÿ~þëÿÿ_ÿÿûÿßÿýÿÿ¿ÿýÝþûwÿ¯ÿÿÿ·ÿÿÿÿþÿÿÿÿ¿ÿÿÿÛ÷ÿÿÿûûïÿõÿß]ÿÿû}ÿûÞÿÿÿ÷ÿýÿûýÿÿwÿÿ×ýþÿÿÿ·~þ¿ÿÿÿÿõßÿÿö÷·õ÷ÿÿÿÿ_ýÿ¿ûÿÿÿûÿîÿþÿÿ¿ÿÿï¿ÿ»ÿÿ¿ÿïÛ÷ÿúýûï÷ÿíï»ÿúõÿÿ÷ÿÿ¿ý÷ÿÿþÿÿÿÿÿÿÿÿþ»ß{û¿þÿÿÿÿÿßÿuÿÿÿÝÿï¿ÿýï÷÷ïßÿÿÿöÿÿû÷þÿþþÿÛÿÿÿÕß¿þßÿ¿þÿÿßúÿ¾þ÷ÿíoëÞÿýÿÿÿÿþ¯ÿÿÿÿ÷þÿÿ¿ÿõÿßïÿÿÿßþÿýöÿúÿÿÿýÿÿÿÿ½ÿÿþÿýÿ÷÷ß¿ÿÿÿÿÿý¿ÿïß¿ÿÿÿÿï÷×ßÿïõ÷ÿ¿ÿ÷ÿ¿ûÿþÿÿëÿ÷ï¿{ÿwÿýÿ{þÿÿýÿÿ÷ýßßÿÿûÿÿÿ¿ÿÿÿ¯ïÿÿÿÛþÿÿýÿêßÿ¯ÿï½ßÿÿwÿßÿÿ¿ÿÿÿÿÝ÷ïï¿ÿ¿{ÿïûÿÿÿÿÿÿýöÿþÿÿþÿÿïÿïþÿ«ûûý÷ÿÿ÷¿ýï¿Ýÿÿþþßÿû÷ÿÿÿ÷ßÿïÿÞÿÿýÿÿï¿ÿþÿÿÿû÷ÿÿþûïßÿ¿Þßÿÿÿþÿ÷ÿÿÿïö¿¿ÿ×ÿÿÿÿÿÿö÷ÿ÷¿ûûÿÿÿÿÿ÷ÿ¯ÿÿûýÿßÿ¿ÿÿÿþïuß÷ÿïÿÿ_{ÿ½ÿ¿ý÷ÿÝ÷ÿÿößÿÿÿûÿÿû½½ÿÿÿ¿ÿÿ¿ß×þ÷ûÛÿºÿ¾þÿÿïÿÿû[ÿÿÿßýÿÿýÿßßßÿÿÿÿ÷÷÷ÿÿûÿÿß÷ÿÿÿÿï÷¿¾ÿß÷oÿþÝÿÿÿÿ¿ûÿÿþû÷ÿÿïïßÿûþ÷ßïÿÿ¿ÿ~ÿÿÿ¾ýÿ½~ÿÿïïýßïým»úÿÿþ¿ßÝßþï¿÷¿ëÿÿ_ÿïöÿÿûÿÿÿ×ÿÿýÿíýÿ÷ÿÿýûÿßÿúÿÛÿýÞÿÿÿíÿ·úÿë¿¿þÿþßßû¿ïõýÿÿ×ÿ·ÿîïý¿ÿûÿ·÷»ýÿïÿÿ÷ÿÿßþÿoþú÷ÿÿÿïÿÿÿÿÿn¿ÿÿï¿ÿú÷ÿÿÿÿÿþßßïîÞ¾ÿ½íwýÛ÷ÿß_ûÿÿýþÿßÿÿßÿÿßÿûû{ÿÿÿÿýýÿÿíÿû¿¿ýÿzÿï}uÿÿþÿÝûÿ×ýÿ¿þ÷ÿûûûûÝÿ~ÿÿÿ}÷ÿýÿßîÿöÿÿÿÿ¿ÿßîëÿý÷ÿÿ÷ßÿ÷ÿïþûþþ÷oÿÿÿÿýÿ÷ÿÿÿÿÿ¿ßîßýÿ¿ÿÿÿÿ÷ÿûûÿÿþþúþÿ_ßþÿÿýýûÿþÿïïþßÿÿ÷þÿ¿ÿï÷ëûÿ÷ÿÿÿÿþïÿ{ÿýÿ¿ÿÿÿ¿ßß¿ÿïÿÿÿíÿÿ½ÿÿÿúÿûûÿ¯¿ÿ¿ÿÿþûÕÿßÿÿÿ¿ÿþÿÿï¿þ¿íý÷ö¿ûý÷ßþÿû÷ÿÿ_ÿÖûßßûÿÿþÝÿýÿûÿÿ»÷ïÿûþîï{n¿ÿý÷úÿÿÿ{ï¿ýzï«ÿýÿý¯Ûïïßßÿ¿ÿzÿÿ¿÷ÿßÿ÷¿ÿÿÿÿíîÿÿÿÝÿÿÿýûÿþÿÝýÿÿoÿÿÿ¿ÿÿ{÷ÿÿþÿÿoûÿþÿïÿÿÞÿ×îíûÿÿÿÿÿþï¿ÿßÿï¿¿ûý¿¿ûýýûÿûÿ÷ÿßÿûßßÿöß¾ÿÿ÷û{ÿÿoÿÿ¿õÿÿß÷ëþÿÿÿÿ÷¿½÷ï÷ÿþý÷ÿûÿÿßþîÿý÷ÿßûûÿûß}ÿ¿öÿýûÿÿÿÿÿÿïÿý{÷ÿû¿ûïïûýÿï¿ûÿïßýw¿ß¿ïÿÿ¿ÿ¿ÿ÷¿÷ÿÿ¾ÿÿÿÿû{êþÿÿÿþÿÿößÿÿÿ¿ÿÿ¿ûýÿ½×ßëÿÿÿ÷ÿíþíýûÿïÿÿÿÿýþþÿÿï¿þÿÿÿÿïÿÞûßßÿÿë¯öÿÿÿû·ÿÿÿý}ýïÿ·ÿÿÿÿ¿õoÿûÿÕÿÿ_¿ïÿþ¿Ýÿ¿ÿÿßÿÿ¾Ûÿíÿ¿·þþ÷~ÿþÿÿÿÿÿÿÿÿïýûßÿÿ¿÷ï­ÿÿ¿ÿßþÿÿ®ÿÿ¿ÿ{÷¿ÿÿÿ÷÷ýÿÿÿÿÿÿ÷ÿÿþÿ»ïÿÿïõÿÿþ÷ÿ¿ÿÿÿÿíõÿÿûý÷þÿÿÿÿoÿÿûÞûÿÿÿ÷þýß¿ÿÿÿÿ{ÿûÿÿßßï÷ÿýûþý·ÿß¿ÿûÿÿõÿÿwÿÿïý»ÿÿÛ}ÿÿÿ«ÿÿþÿÿÿû¿ïÿÿï½ÿÿ}ÿ¿ï¿ÿÿ÷ÿßÿýßýÿÿÿÿÞÿ¿ß÷ÿï«÷·ÿßþÿÿ××ß÷ëÿï÷ÿþ÷ÿþÿöûÿ÷ýýÿÿ×ÿþýÿõÿýþýûïÿÿ¯wÿÿÿÿ¿ý¿õÿÝÿÿ}ÿÿÿÿ÷ÿþÿÿïï÷ÿ¿ÿÿ¿«ÿ_þ×ÿý¿ûÿÿÿþ÷ÿßÿþßûûÿÿÿÿÿúÿÿ¿ÿÿïwýÿÿßÿßïýßÿöûÿÿÛÿíÿß¿ÿÿÿ¿ÿÿ¿·ÿ¿wÿÿ~ÿÿÿÿýÿÿÿÿÿÿïþþ¿þÿÿÿÿûÿïý÷÷þÿï÷ÿ~ÿÿÿ¿ÿÿßýú÷õ¿ÿÿÿÿßõíÿÝýÿÿÿßýý·ÿÿ_¿ÿÿ×ÿÿowïÿÿ÷ýÿÿÿ·ÿÿîÝÿ½ÿ÷ÿÿûÿíû¾ëÿûþýÿÿÝÿýÿÿþíïßÿÿÿÿïÿïýïÿÿíÿÿÿßÿ¿ÿÿýÿ¿÷ÿÿ÷ÿ¾ÿÿÿï÷ÿëÿÿúÿý{Û{×ïúÿ}þÿïÿÿÿÞÿïëÿ÷ÿ¿ÿoþ·ûÛÿÿÿÿÿ×ÿ{ïÿ÷ÿþýÿ÷}ÿ½»~Ûý×ûÿý÷îÿßþÿÿÿÿÿÿþÿëïÿÿÿýïûÿÿ÷ûßÿûý÷þÿÿûýÿÿûÿ÷ÿþß_ÿÿýÿÿÿ÷ÿÿ{ÿöýþÿÿëÿïïýÿ½÷ÿÿýýÿÿÿïíÿ¿ÿûÿÖ·ÿÿ}¿ÿÿÿÿÿÿïßÿïýÿwþßÿÿïÿÿÿÿþÿÿ½ÿ÷ÿþþÛÿûßïÿÿÿÿûÿïõ_ÿÿÿÿ÷ýÿûÿ÷ïû÷ýÿýÿ¾ÿ½ÿÿv»÷ÿÿÿ}ÿÿÿÿÿÿÿoÿþÿýßïÿÿÿ_ûÿßßûÿ}»o÷ÿ÷ÿþÿýÿÿÿýÿÿîÿýõí÷¾ÿ¿Wÿÿïÿöÿÿÿëßý÷ßÿýÿÿ¿ÿþ»¿ÿßþ¿÷ÿÿûß÷ÿÿßÿ½þýûÝÿÿßûÿßÿÿ¿þýÿÿÿÿÿûÿïÿÿÿÿÿþ¿íß¿ÿþî¿ÿîÿûÿ·¿íÿÿ¿w¿ûþßÿÿÿßÝÿþÿ}ÿÿ×ÿÿýÿïÿ÷ÿïïõúÿþ÷ÿûÿÿýÿÿý_ÿÿnÿ½ý×ÿÿûýÿÝ·ÿÿÿýÿûïúÿþõÿ÷ÿÿÿþÿ÷ÿÿë¿ÿÿÿÿ¿ïnÿïíÿû~¶ûþÿï÷û¿ÿÿÿÿï¿þêÿÿûþÿÿÿý­ÿ_ÿÿýÿ½¾ÿ¿¿ÿ¿ÿÿÿÿÿÿ¾ß÷ÿ¿ÿÿÿÿ¿¿ÿß÷ýýþ÷ÿ÷ý÷ÿÿþÿ¿ÿ¿ÿÿïýþÿÿßÿÿÿmïÿÿÿÿ}ÿûÿþßÿoÿÿÿïÿÿÝÿÿ¿íÿÿþýÿÿýÿÿïöý¿¯ïÿÿÿïû÷÷ý¿ý¿ÿÿÿ¿ÿ{ÿßþÿûïÿýï÷ÿ¿ÿÿïûÿÿÿÿ÷÷ÿÿÿÿÿ÷÷w÷ÿÿÿÿÿ÷ßîû¿ßÿþÿ½÷ïïûÿ÷¿ÿÿÿïë÷ÿÿÿÿÿûÿúöÿÿÛÿßÿ}ÿþÿÿ÷ß÷ïÿýÿÿ¿oþýÿuÿïÿíÿÿÿ¿ß_~ÿÿÿýý¿ÿÿÿþÿýûÿo»þÿÿÿ}õÿï÷Þÿvýÿÿõÿÿ÷ï·½_ûÿöÿÿÿûÿÿ{¯¿ûßÿÿÿÿ¿ÿÿ×ÿoÿýûÿÿïÿÿý¿ÿ¿ÿÿÿÿûÿÿÿï¿Ýû÷ÿþßÿÿÿÿÿÿÝ·ÿ~ÿÿ^ÿ¿}ßý×í·¿¿ÿÿÿýßþïûßÿßwõÿÿÿÿïÿ¿ÿþ¿ÿ}ßõÿÿÿÿ¿Þûÿ×ÿÿþïýû¿ÿÿÿÿßÿûÿ×ýÿÿÞßþþÿÿÿÿïÿþ÷·¿ÿîßÿýïÿï÷ýûÿ»ÿÿÿÿþÿûß¿ÿÿ¿ÿþÿÿïÝýßÿÿÿÿ÷·÷þÿÿÿßïïÿßþýÿ÷ïÿÿÿÿßÿÿý¿ÿÿÿïýþþÿÿ¿×ÿßÿß}ÿýßÛÿÿÿ¿ýÿÿ¯ú¿þïÛ÷ýÿýÿßÿÿ÷ïû÷ÿÿïÛÿÿëý¿ÿÿÿÿÿÿþ×öÿûÿÿ×ÿÿÿïÿ¿÷Þÿïÿ¿¿ÿßÿýíÚïÿÿ×ßþïÿÿÞÿ½ÿßÿoþþßÿû}ÿïoûÿÿßýïîÿ÷÷ÿÿoÿÝ÷Ûwÿß{ÿÿÿmõÿïÿÿÿïÿÿÿÿûÿÿÿÿûýÿßþÿÿÿÿÿ÷ÿÿ}Wûÿí÷ÿß÷ß¿þ¿¿ý÷úÿþÿþþëÿÿÿ«¿ûÿÿ¾õ÷þÝÿ÷½oÿ¿»÷oúýýû_Ûïÿÿÿþÿß¿ÿwÿþÿÿÿ_ÿß÷ÿÿýýßÿÿÿÿûûöÿ÷ÿþÿû÷ûÿ¿÷ÿÿÿÿÿÿÿÿþÿý×ûÿÿÛÿÿÿÿ÷ÿÿÿßí׫ÿÿþßÿ}wÿþ¿ÿþÿÿÿÿÿÿÛýýýÿýÿÿïß¿ï}ÿÿÛ¿¿{ÿ÷÷ÿÿûïþÞ¿_¿ûþöÿýÿÿ÷ßÿ¾¿ÿÿþÞßÿ÷Ýÿ·ßÿûýûÿÿÿÿ÷¿÷ÿýÿÿ¾ÿûßío÷ûÿÿýýûÿÿuÿÿÿýÿ¿ßÿÿßîþ÷ÿÿÿÿÿÿÿÿÿÿÿÞÿ}ïÿþÿÿÿýÿÿÿÿÿÿÿÿÿû÷ÿßÿýÿþþ½ÿ_ûÿÿ¿¿Ýÿîÿÿÿ¿÷¿ÿÿýÿþ¿ÿïÿÿoûÿïÿÿïÿßßþÿÿßÿ÷ýÿÿÿÿ_¿½ÿýÿÿÿ÷ÿ¯ïþÿ¿ÿÿÿ×û«ÿïÿoÿÿïÿýÿ÷ýþßÿÿ¿ÿþ¿Ûý÷ß¿ÿ÷ýÿÿÿýïÿÿÿÿÿÿ_ÿÿ÷ÿÿÿÿÿÿîßÿÿßÿÿ÷ÿÿý÷ÿûÿÿ¯ß¯ÿwÿõ÷ÿÿÿÿþÿ¿ßÿþýþûÿÝïýýÿýÿ÷ÿÿýþû÷ÿÿßw÷ÿÿÛþÿÚÿûï~ÿßÿÛÿÿ¾ßÿÛýÿ·wýýÿþû_ÿw«ÿÿÿoýÿúýÿÿÿÿÿû¾ÿÿûÿ¿ßÿû¿õßßÿ÷ÿÿ÷÷¿ÿÿÿÿß¿ÿÿý·ûýõî½ÿïÿÿ¿ÿÿþýÿ÷ÿýÿ}ÿÿÿÝ¿wû¿÷÷ýÿ}ÿÿ¾ÿÿÿÿ·þ¿ÿ÷ýÿÿû¿ýÿÿ}ûÿßÝÿÿýÛþïÿýÿÿÿïßÿþïÿÿo÷ÿÿßÿÿýÿ÷ïõýïÿÿïûÿ÷÷þÿÿÿÿï{ÿÿÿßÿÿÿÿÿ×ûûýúÿÿÿÿߺßÿÿÿ¯ïýÿÿÿÿÿíí¿ýßÿû_ÿïÿ¿ÿÿý¾ûÿÿÿßï_»÷ÿßûßÿ¶ÿÿß÷þýßÿþÿÿõ÷ÿ÷ÿ¿½o÷¿ÿÿÿÿÿÿÿý¿þÿÿû¾ÿÿïÿûÿ¾ïÿÿÿ¿ÿÿßúÿÿÿïÿÿÿÿ¿ýÿûÿÿÿîÿÿÿÿÿÿo¿ÿÿûÿ»ïþÿÿÿ·ÿß¿ýßÿ×ÿ÷ÿë¿ÿþÿÿÝÿßÿÿÿûÿÿûþÿÿÿþÿßoÿÿïïÿ×ÿÿÿïÿûÿÝ_ýïû¿¿ÿû÷ÿÿÿÿ·ÿ¿ÿÿ¿ïß÷öÿÿÿ÷ûÿ×ÿÿÿÿÿ¿ûÿÿÿÿþ¿ïûíÿÿ¾ÿûúõÿûÿ¿}ïÿþÚ¿ÿßÿÿïß¿ß{÷ÿÿÿ÷ýÿÿïÿ÷ïíÿÿ÷þÿþ÷þÿÿÿßÿýûûÿÿ¿ÿýÿ¿þÿþ¿ûÿ¿ÿ__ûÿÿþÿ¿ý¿ÿßÿþõÝÿþ¿÷ÿïÿýîÿß¿ûþûýÿï¿_ÿîÿÿûõßïÿÿÿ½ûûÿÿÿ¿ÿÿÛ÷_ÿÿÿÿÿÿo÷þ÷_÷ûÿýßÿÿÿÿÿ{Û¿Ýÿÿÿ÷ÿ·÷mÿÿß÷ÿýÿÿ÷¶ÿûÿÿýÿÿÿÿ÷ÿÿÿ¾ýÿÿÿßÿÿ¿¿¿úÿýýÿýÿýÿÿ×ÿÿÿÿÿÿÿûÿ}ÿ»oÿï÷ÿ¯¿ëÖÿïïÿë÷ÿýý·Õÿÿþÿÿÿÿßw÷ÿßÝÿÿÿîýÿûÿ¿ïÿÿÿ÷ïÿÿÿ¯ÿÿïÿÿÿÿÿÿ¯oÿÿÿÿÝßõÿÿÿÿûÿÿÿÿ÷¿ÿÿßîÿ÷ÿý­ÿµïî¿ß}ÿßÛÿ÷÷ïÿÿÿÿûïÿÿÿ÷ßýÿÿ~¿¿ÿ¿o¿ÿ{íÿ×ß{ÿß¿ßÿßÿÿÿoÿÿÿÿÿÿí¿¾ÿþßÿûï¿ïýÿÿßõßþ÷_ïýÿoÿÿÿÿÿÿÿÿëÿ»ÿ¾ÿ¿ïû¯ÿ¿ÿÿÿûÿ¿ÿ÷ûÿßÿýûÿ¿÷ÿîë÷ÿßëþýûÿÿÿÿÿûïÿïÿÿÿÿÿ½ýûÿÿÿWïýÿÿÿßÿ¿þÿ÷·ÿ¯ÿ¾¿ïÿ¿ýÿÿ¿ÿþßßýÿ{ýÿÿö¿ÿ÷÷ÿÿÿ¿ÿëÿÿÿÿýÿÞïûß÷ýÿÿÿßïÿÿÿ¿ÿ÷÷ÿûïÿ¾ÿ÷¿ÿ÷ÿÿÝÿÿÿ׿ûýk÷o»ûÿûÿ·ÿþþßÿÿÿÿmÿÿ·ÿïþßßýíÿ÷¾îÿûÿßûïûwýÞ¿»ÿÿþÿ¿ïïëï÷ÿÿïÿûÿ¿ÿÿÿïÿ÷ÿýÝïÿßÿÿûÿÿÿ¿ÿþûï»ÿíÿÿ¿ÿ÷ÿ¿ïÿßßÿÿõÿÿßýÿ¿ß}ÿÿÿþÿ¿ÿëÿÿÿÿÿßÿ¾ÿÿÿÿÿõÿ¿ïÿÿÿÝïÿßþÿýÿ¿×ÿûÿûß_þ»~ÿÿÿ÷ÿÿÿÿ­÷öÿÿ¿þÿÿßïÛÿÿöïÿ÷ÿ~ÿ¿ÿÛþÿ{Ýÿûþþþÿûwÿ÷_þÿÿûúþÿïÿïÿï¿ûïÿÿÿÿýëÿÿÿÿý÷÷ßîÿÿ½ÿ¿×»ÿ÷ïþßëÿßÿûwûþÿÿÿoöÿþÿÿÿûÿÿý÷ýÿ½wÝÿÿï÷ÿÿÿß÷¯ß¿ÿÿÿöïÿþÿ÷ÿÿ÷¿ÿúÿÿÿ÷¿ÿßÿÿÿßÿÝÿÿßþÿwßÿÿÿëÿÿïßßW÷ïû_ûþÿÿÿ¿ÿÿíÿ÷ýÿÿýÿöÿ×ïþÿÿÿÿÿÿÿûÿÿnû÷{ÿÿÿÿwÿ÷ûûûÿöþ÷÷ÿÿÿÿþÿýÿÿÿÿßÿ[ÿßÿÿÿõÿõÿ×ÿ~÷ÿþÿÿ÷ûïoÿûÿö÷ï^»ý~ÿïÞÿÿýÿ÷ßûþ½öýÿÿ{ÿÿïÿÿÿÿßnßþÿö·ßýëÿÿÿÿ÷ï½ÿÿÿûïõ¿þÿ_ßÿûýÿÿë÷ïï÷ÿ¿ëïïµßÿ÷÷ÿïûÿÿû¯ÿ¿ÿ¿þ¿¿¿ÿ{ßêïÿÿÿ÷ÿÿÿÿÿ÷ûÿÿÿÿÿþÿïÿÿßÿÿ¿í÷¯þÿÿö÷ÿÿÿ¿wûûwÿïÿþþÿÿþß{ÿÿ¿¿÷ÿÿ¿Ý¿ÿÿþ¿ÿ¿ûßÿûÿþÿÿßßÿo}ûÿ¾Þÿ÷ÿ»}ÿÿÿþÿûÿûÿÿÿÿïÿûÿ_ÿ÷þ÷ÿ¿ß¿ÿýï÷ïÿúïÿÿûïößÿÿþï¿ÿÿýßÿÿþþÿÿÿÿÿÝþÛþûÿï·ÿÿÿÿ×ÿßÿÿÿýoïÿ¿ÿûÿëwÿÿþÿÿï{ÿßÿÿïÿÿÿþÿÿßÿÚ÷ÿÿÿýÿÿoÿÿÿÿÿÿßîûï÷omÿþûßÿÿþÿßûÿûÿ}ÿî½Ûÿÿ÷ÿ}ÿÿÿßþÿÿÿÛßýÿëþÿþýÿÿÿÿ÷¿ÿÿÿýûûÿÿÿ÷½ºÿÿÿ{ÿ»þûÿïÿÿoßûûÿÿÞÿÖÿÖÿ¿ÿßÿ¯ÿ¯ß÷~û_ßÿþÿÿïÿÿÿÿûþÛÿ¾ÿ¿û_wÿÿýÿÿß¿ÿ¿ýïÿÿÿÿ¿¿¿ÿÿÿÿÿßýÿÿßÿßÿ÷ÿÿ¿ÿÿßýoÿßÿÕÿÿÿ¿ÿÿ÷ÿ¿ÿþÿßÿ½¿ÿ×ÿÿÿÿ÷ÿßÿÖÿoþÿÿõ¿ÿ¯Þ¿ÿÿûþßÿÿ÷}¿ÿû~ÿÿûoþÿÿûßýÛÿýÿÿÿï¿ÿ¾þÿþýÿÿ÷ÿþÿ÷ûÿ}ÿn«ÿºÿÿ½ÿýû¿ÿÿþÿþ·ÿÿ÷ßýþÿßßÿ¿÷ÿýß¿Þýÿÿÿ÷¿ÿïÿÿÿÿÛw¯¿ÿïî÷ÿÿÿÿÿÿÿÿÿûýÿ÷ûÿ¿ÿûÿ»ÿí{÷ÿÿÿßÿýÿï·ÿ÷ÿ÷ÿÿÿÿÿûïûÿÿýûÿÿï_ÿõßï¿ÿßÿÿwúÿÿßwÿÿ÷ÿÿÛÿÿÖÿ¿ÿ_ÿÿÿßÿÿ½ÿûûýûÿßûïýýÿ÷ýßÿîÿÿ¿ÿÿÿý¿ÿÿ½ï¿ÛÿÛÿÿÕÿÿ·ïûï~ÿÿýßßßõþïÿÿÿÿÿýý÷ÿïÿÿÿýûÿýÿþÿ¿ÿ¿Wÿ÷ÿÿÿ¾Õ·¿ÿý÷ýªÿýþ¿ÿÿ¯¿ÿÿÝÿÿþÿÿ׶ÿÿïÿÿî¯þÿ»ÿ÷ÿëïöÿþïÿÿ¿½ÿÿ·ÿïÿï¿ûÿ~¿»¿ÿÿÿ¿ýÿßû¿÷¿ÿ¾ÿßÿßþýßþÿ÷ÿïÿû¿ÿoÿÿßýÿßßïÿï{ÿþ÷ÿû÷ýÿWÿÿýÿþÿÿÝÿvÝ¿ÿÿ{ÿÿÝýÿýÿßûÿzÿÿÿÿ~¿ÿÿýþß÷õþß¿ûÿÞÿþ¶ßÿþïï÷ÿÿÿ}ûûÿõ·ÿýÿú¿ýÿ{ïþýþ÷ÿßÿ÷ÿýÿÝëÿÿ~ûßßþï_í÷¿ÿýëÿÿÿÿ¯Úÿ¿ÿU}¿ÿïýÿ·îûÿÿÿÿûÿÿÿýþÿëÿ÷¿ÝÿW»þíïÿú¿ÿ~ÿÿýÿý¶û÷¾ýý¿ÿûÿßÿ®ÿýÿþÿï÷_ÿ÷ÿÿþß¿ö¿ïÿýúûÿÿÿÿïîÿÿëÿûÿÿ½ÿþÿ×ÿÿÿÿþþÿÿ_÷ß¿ÿýß÷Ûÿÿïïÿÿí÷~ÿ÷ëë¶ÿëÿÿßÿþÿ¿þÿ_ïßÿÿ¿ýßÿÿÿÿÿþÿÿ׿ýÿ÷¿ÿýýïÿÿÿýþÿÿ¶ÿ»÷¿ÿûþ¿oÿ×ÿúíÿ¿ÿ¿¿¿¿ÿÿõþÿß}îþÿÿ¿{{ûßßýÿßûÿÿ^÷ýÿÿÿÿÿûûÿßýßÿû÷ÿÿþýýßÿÿÿïÛÿÿßÿÿÿÿý÷ÿwÿÿû_ë÷÷½ÿïÿÿûÞÚÿýû÷¿÷ÿÿßÿïÿ¿ÿíÿÿÿûûúÿýï¾ÿÿþ÷ÿÿ·÷ßßWûþßÿíÿÿÿýþýÿ÷ïû}ïûþë­ÿÛûþÿþÿÿÿÿýÿþïkÝßÿíßÿ~ÿÿÿïÿÿÿ÷½ýÿ÷¿û÷ýÿ÷¿öÿÿßÛÿýÿÿÿßÿþ÷ÿÿ¿ß·÷ÿß^ûýúßßÿ÷wÿ×ß~ÿÿÿßÿþÿÿÿÿÿÿõÿëÿÿÿï¯Úþûÿmÿß¿þ÷¿÷ÿ÷ÿ׿¿ÿûý½ÿÝÿÿÿ~ëÿÿÿÿÿÝîÿÿÿûÝÿ¿ÿ×~ß¿÷ÿÿ·{ÿûÿþ¿ýÿÿ¿÷ÿÿÿÿýÿ}÷ÿÿõÿÿÿ¿ÿÿÿÿÿ¿ÿwþÿ½ÿþßÿí»ïÿï»ÿÿûÿÿÿûÿúß¿ÿÿ÷ÿÿÿþïýÿÿï·ÿßÿÿÿÿÞ¿þûÝÿïÿÿ¾ïÿ½ÿÿ÷ÿÿÿÿÿÿýûÿ}öÿÿý÷ÿÿwýûßÿ_ß»ÿúýÿ÷ÿþßÿ½÷¿ßýïÿÿ[ÿßÝßíÿÿÿÿÿÿÿûÿßýÿþ¿ÿÿ÷ÿÿÿ÷¯ÿ÷ÿÿï÷ûÿÿÿÿ÷÷ÿÿýÿÿöÿÿþÿÿÿÿûõÿ¿ÿýï»ûÿÿï¿ÿÿ}ÿÿýû×·ÿ¿û÷ï{ÿÿÿýÿÿÿwë÷¿û¿ÿÿÿÿÿÿþï¿þ÷ß¿¿ûÿþÿÿÚýÿÿ÷ýíÿÿûÿÿÿÿïßoÿÿwîýÿÿýßÿÿÿ¿ýÿÿÿß¿ÿßþÿ¿ÿïîÿïÿÿýÿÿûÿûþÿ_ÿõ}nïÿÿýþÿßïÿÕÿÿîÛÿÿÿúÿ×ëÝõíý÷þïÿß¿÷ÿ÷þÿÿûïûþÿÿúÿûïûwÿûÿÿÿïÿ÷ÿ¿ÿÿ·ÿÿßÿ¿ÿ¿ÿþß÷ýûÿöÿWÞÿÿïÿýÿÿÿÿÿ÷îÿÿÿ»ÿ÷ÿï¿¿¿þÿÿÿ÷ÿÿýÿÿÿ×}ÿÿö¿ÿÿÿÿÿþßï¯ÿÿÿÿÞþ÷ÿÿÝÿ¿ÿÿÿþïïûÿ¾¯ÿ÷ÿ«ýÿÿû¾ïÿþÿÿþûþÿ÷ÿÿÿÿ_ÿÿûÿÞûÿÿÿïÿïïý¿ï÷ÿïÿÝûýÿÿÿþ÷÷¿ßÿÿï¿þ÷ÿïûÿÿïÿ÷ÿûwÿ÷_®ÿï¿ýÿû½ÿþöýÿý«ÿþþ¿Wÿÿ¿ïÿÿ»ÿÿÿÝÿÿÿÿÿ÷ÿÿ½{ýÿîÿÿïõÿýþÿßÿÿ_ßýýþíÿÿ·¿W{ïï÷÷ÿß~ÿ·ÿ÷ÿÿûþßë»ûÿÿÿÿÿÿÿÿÿÿÿ÷Ýÿû}ÿÿÿÿïßþ¿»÷ýÿ»¿ÿÿ_¶ÿÿÿþÿ{ÿÿÿßïúÿÿÿÿ½ÿþÿÿÿÿÿý^ÿïûÿïÝÿÿÿ]ï¿÷¿ÿÿÿÿýþý÷ßþÿûû¿ÿþÿ¿ÿÿÿþÿÿ÷ÿÿý½ÿ~ÿ¿û¿ïÿßÿ}ï¿_ï×ÿû¯¿ûþý{ÿïÿíÿÿÿÿÿýÿûîÿÿ®ÿïû«ÿûýßß¿ÿÿ¿ÿÿïûÿÿ¶ÿÞ¿_¯ÿþïÿû÷ïÿÿoÿÿÿÿýîÿ¿ûwÿÿÿÿ÷ÿ¿ÿÿÿÿÿÿ¿ÿÿ«ÿÿíwßýßï­ßû{ÿÿëÿëÿý»ÿþûßÿýÿÿßÿÿÿ×ÿwëþþëþÿß÷ÿÿÿÿÿÿûÿþýïûë÷ýîÿ¿ÿïÿÿïÿÿÿ½ÿûÿßÿöÿÿ¾ýÿïÿß÷ÿÿûÿÿÿ¿»ÿÿÿÛöÿ¿ÿÿ÷û~ßýþÿÿïÿý~ÿÿþõ÷ÿïÿû¿ÿßÿ¾ÿÿëûïÿÿßÿ¿ÿÿýÿÿÿ~þýûþÿÿÿ·ÿýÿû÷ÿþÿÿ½ïÿÿÿ¿ÿÿ_oûÝ{ïýÿÿ÷ýÿ¿ÿÿ~ÿÿïûûûÿßÿþÿ½ýÿÿÿÿÿ}ÿïÿÿÿíÿú÷ýÿûÿûÿÿwÿß»ºýýûïÿÿÿ¿Ûÿÿÿýÿÿíÿÿÿÿ÷ÿÿÿíÿ[ÿûßÿíëÿÿïÿÿÿû÷ÿ÷Ýßÿþÿûÿ÷÷þûÿÿ¿ÿÿßßûÿûÿýÿîÿÿÿÿÿîÿ÷{ÿÿïýÿÿÿÿÿÿÿÿúÿ÷ÿÿþÿ÷»¿ÿöþÿÿþÿÿýûÿÿ÷¿¿ýýúÿï¿ÿûÿÿþ÷úÿÿû}ÿÿÿÿwÿÿßÛ÷ÿÿþ¿ÿÿÿß}¿÷ÿÿ¿ýëÿÿÿúÿÿïß÷÷÷ÿÛ»ïÿÿïþÿëõþÿþÿÿÿÿÿ·ÿÿÿÿÿûÿî¿ÿÿÿþßÿßþ¿ýÿ¯«ÿvÿïÿÿîÿÿßÿÿûõÿÿïÿþïÿ¿ÿÿß÷ÿîÿýú¿ÿÿÿýýûÿßßÿûÿÿþÿ}ßÿï_ÿ¯ÿÿûþýÿ{ÿûÿûÿ_ÿÿëý÷ÿïÿßßïÿþ÷mÿÿÿÿ·ÿ¯÷úÿÿÿßï÷¿Þÿ÷ÿûßþý¿ÿÞÿÿÿýÿþÿ¿ÿoÿÿÿõÿÿÿýÿÿÞÿûÿ{¿ßÿÿ½þïÿ¿ÿÿÿ·ßûûÖÿ÷ÿÿÿÿý¿ÿ·ÿÿÿêÿþÿÿõÿõÿ·ûïÿï÷oÿÿÿßûÿwÿÿ÷ÿýºú÷÷ÿûÿÿ~ÿ¿ûûÿûÿ}ï¯÷ÿÿßßþÿßûÿÿûÿëÿÿ¿ÿÿ÷×ÿÿÿ_þÿûßÿÿÿÿÛûÿï{þ¿ÿ½¿ÿßÿöÿïÿÿÿÿïÿÿßþÿÿÿ¾ßÿßÛÿÿÿ¿ýýë¿ÿïÿ¿ÿ÷ÿÿûÿÿÿÿÿÿßïûûÿþûþÿÿÿûÿoßÿÿÿ{þÿ½¿ý¯ûÿÿÿû_ÿÿþÿþÿÿ}ÿwûí_þï÷ûÿ÷ÿûwÿÿ׿ï·ïÿþ¿þ¯ÿÿýûïÿÿÿÿ¿ÿß{·ûÿÿþ÷ÿÿÿïÛÿÿÿûýÿ¿ïßÿÿÿýÿoÿÿßý¿ÿ¿ÿþÿýÿÿÿÿ¿¿ýýÿ÷öûïõï×û¿ÿßÿ÷ýýëõýÿþßÿ¯×ÿoÿÿýÿï¯÷þ¿ÿÿß~ßÿýþþÿ¿ßÿöÿÿýïÿÿÿÿï~ßþûÿûû÷¾ÿÿÿÿÿÿÿÿÿÿÿÿïÿûúÿûû}ÿßû¿ßÿÿýÿþÿÛ÷¯þ¯ýÿÿÿúíû×ÿ÷ÿÿÿÿÿÿ÷_ÿþÿÿÿwÿÿïÿßÿÿÿû÷ýÿýÿ÷þßÿÿþ¿ýÿÿëëÿ÷þý¾þßÿÿï¿þÿûÿ÷þþïÝÿÿÿ­ÿßþÿÿûÿÿþ÷÷þïÿÿ½¿ÿûýÿÿÿºßÿÿõýßÿÿ÷ï÷ÿÿ÷ÿßÿ÷_¾ÿþþßÿßýÿÿÿ^ÿ}¿~ÿúÿÿ_ÿÿ÷ÿþÿÿÿ~ÿÿÿÿÿß·÷¯ýÿ}ïÿ½ûÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿþþ÷ï¿íþÿþÿ÷÷ï÷ÿÿÿÿþÿþþ¿ÿýwþÿýÿõýýÿÿ¿}_¿ÿþÿý÷ÿ÷ÿû}Þÿ÷ÿÿþÿýÿ¿ý÷¿ÿÿÿÿ¿ÿÿïÿî¿ÿïûÿÿÿúÿÿo½~ïÿÿÿýÿoÿÿÿÿ÷þÿ¿ÿÿõÿÿÿÿÿÿûÿÛÿ¿ûýûúþþÿ~½÷ÿÿ¿Ýý÷ÿÿÿÿßÿûÿº¾ÿÿÿ¿÷ÿÿÿ¿ÿÿýÿïÿÿß¿ÿÿÿ»ïÿ÷ÿþÿÿ¯¿ÿûïûÿÿïÿÿ¾ÿ½ýßÿÿÿÿÿÿ÷ïÿÞÿÿÿÿoÿ÷íÿÿÿ×ÿ^÷îþßû¿ÿßïÿß÷ýßÿÿßÿ÷ÿwõý¿ÿÿÿÿÿÿßï·×ÿÿÿÿ¿ÿÿ¿÷ûý×~ÿÿîÿÿÿïïÿÿÿÿýÿþþÿÿýÿÿ÷}÷ÿ¿ÿÿÿ¿ÿÿu¯þÿ÷ÿÿûÿ÷ß÷ÿþÿïÿÿ¾¿ûÿ}÷ÿÿ½ýÿýÿÿÿÿïÿíþÿÛûÞÿß¿ûÿ·÷ÿÿûýÿÿ¯ÿê¿íûÿÝÿïÿÿûÿï¿ÿßÿ÷ßÿÿÿÿwûwýÿÿÿÿÿï¿ÿß¿ÿ÷ÿßÿßÿ÷ÞÿÿßÿÿÿßûÝÿÿÿwýÿÿß{ûû÷ÿÿíÿÿÿßß}ýÿßÿÿÿÿï÷ÿÿ¿ÿÿÿÿõÿ~ÿû÷ÿ÷¿ÿîûÿýÿÿ¿ýÿûÿ÷ÿÿÿÿÿûÿþ¿ïÿÿ÷ÿÿ¿þ¿ûß^ÿ÷ûß¿ÿÿ÷ÿÿ¿ÿïÿßýÿÿÿ¾»¯ÿûÿ½ÿ{»~ÿ÷÷ÿûïïÿþÞÿþ¿ÿÿÿ÷ýÿÞÞûÿÿoÿÿ÷ëïÿÿ_ÿ÷ÿÿ÷ÿÿûïýßÿÿï¿ûÿÿïÿÿ÷ýÿßÿ·ÿû¿÷ûýïß¿¿ÿûoïýÿûï¿ÿþïýûÿ÷ÿÿÿÿÿÿ÷ÿöþþÿÿÞþþ¯ÿûÿ÷ÿÿû¿ÿÿÿ×·ÿÿïöÿÿÿÿý·ïþûÿÿ÷¿ÿÿÿÿïׯÿÿú¿þöÿÿÿÿû}ÿýÿÿÿwýÿÿÞÿ÷ïßÿýÿÿÿûïý_ÿÛÿÿÿÞÿûïûþ÷ÿÿýÿ»ÿ¿ÿ_ûýýÿÿëÿÿÿ÷»ÿÿÿûÞÿÿÿþûwÿ·ÿÿ·ÚïýÿÿÿïÿÿÛßvÿûÿÿõÿÿÿïßÿ߯þÿÿ¿÷õÿûÿþÿ{ÿÿÿ~ÿ¿ÿÿÿë½ßÿÿÿÿ{ÿÿû¾ÿýûÿÿ¿ýßþÿþú·¿ÿïõßÿ»ÿ}ïÿÿßßÿÿýë¿þïÿÿëÿû÷ûÿÿï÷ßÿÿþÿÿÿÿßÿïÿïÿÿwïûïo¾ïýÿýÝÿÿþÿÿßþï[ÿÿýÿÿÿî÷ÿõÿþÿÿýÿÿÿ¿ÿ¯ÿÿûÿûöÿÿßýÿë÷¿÷ûÿß¿ýÿïÿï¿ÿÿ_ÿýýß÷÷þÿßÿöÿ~¿í½ïÿ¿¿ÿÿÿïÿÿÿþßß÷÷ßÿ¿ÿÿþ¿ýÿÿÿûßþ¿ÿwÿïÿÿÿ¿_ÿÿïÿÿýßÿýwïÿþ¿ï÷ý÷ýîÕÿß÷þþýÿÿ·þÿÿÿïÿý÷ïÿÿûÿþÿÿÿï÷÷ÿßþû¿Ûÿÿ÷ÿÿÿÿëÿýûïÿÿÿ÷wÞÿï}ÿÿÿïÿÿûwîÿÿÿÿÿÿÿïßÿ뻽ïýîûÿÿ»¿ÿÛ¿ÿí¿ïÿÿÿûþýÿÿï¯ûýÿþÿÿÿ÷ûÿÿý¿ßßÿÿ]ÿÿûûþ÷oÿÿûÿÿÿÿ¿÷ÿûÿÿÿ·ÿÿÿÿ÷ÿÿÿûúúÿÞýû¿¿ýï÷ÿßÿÿýÿ­ý}ýýþë¿ÿþÿûÿw~ýÿÿ¿îÿýþ¿ýýÿûý×¾ÿÿÿßÿÿûÿÿÿûÝÿÿï¾ýÿ¾ÿÿûÿÿºßÿ¿¿ÿ÷½÷ÿÿ_÷ïÿÿ¯÷×ÿßßÿïÿÿÿÿûû_ÿ¿¿ÿÿÿûÿÿûÿÿþíÿßÿ÷ïw{_ÿ¾÷ý¾ÿÿïþÿÿÞÿûÿïý~ÿûÿÿoÿý¿ÿÿÿÿþ¿ÿÿ×ßßÿÿû÷ÿ¿ïÿÿÿ÷ýºÿ¿ûÿÿºÿÿÿþýïî÷ïß÷¿}ý÷ÿ»ýÿÿÿÿýÿ[ï÷ÿïÿÿÿÿÿïßÿÿß·ÿÿûþ¿ûÿÿ÷ÿÿþûÿ¿ûûÿûÿ¿ßÿ÷ÿÿÿuÿÿïÿÿ¿×þÛÿÿÿÿÿÿûÿ÷ÿ_ÿþÿÿuÿþÿÿ÷ÿïþû»ûßúÿÿß_ÿîÿÿÿÿ÷ûÿÿÿÿ÷ÿ¿ÿÿßûÿïÿÿ¿ï¿ïÛ¿÷{¿îïÿÿ»~Þßûÿÿ÷ÿÿõÿ~ûþ¿ÿßÿß·ïïýßÿoûöÿÿ÷ÿ¯ÿ¯w_ßÿÿÿÿûï»ÿÿÿÿ÷Þþïÿÿÿÿë¿mþýÿÿïÿïÿûÿ·ýÿÿûÿÿwíÿë^ÿßÿÿÿýÿÿÿ~ý¿ÿÖÿÿÿÿïÿûÿ~ï¿÷þÿÿÿ÷ÿwíýýÿ×ýþþþ¿ýÿÿûÿÿÿÿûïûÿÿÿïÿÿûÿýÞ¿ÿÿýÿ÷ÿ¯ÿÿï¿ÿýßßÿÿúÿÿÿÿý½ßúÿÿÿÿÿþ¿û»»ïÿþ»ÿÿÿÿÿýï÷ÿýÿÿÿÿÿý×ÿÿÿúïïßÿ×ÿû½ÿÿß¾ÿ~ÿÿ÷ÿ¿ýÿÿßþ¿ÿ¾Þÿöÿÿïõ·Ý÷ÿÿ÷¯ÿÿïÿþß{ÿÿîÞÿÿÿþÿÿÛ×Þÿÿÿÿÿÿÿÿÿþÿÿÿûÿÿëû¿ÿûëýõÿþýÿÿÿ¿ÿÿÿýýÿïúïÿÿÿÿ÷ÿÛ¿ï·ÿÿÿþ¿ÿýÿÿÿþïÿýïÿýÿ¿þïÿÿûýïïïûïÿÿÿÿÿ¾ßßÿÿÿÿï¿ÿÿÿý¿ïÿÿû½ýÿï×û¿ýÿþÿÿ÷ÿßþÿ÷÷ßßïÿÿýýÿ÷ûÿ¿ýÿß»ïÿ{ÿmÿûÿÿ÷÷ýÿ{»ÿ÷ÿ_ÿÿÿ»ýýþÿ_··þýû·ïÿÿßÿþÿÿïïÿuþþÿßÿÿûÿïÿ÷ÿÿýï}÷úýÿ{ÿ{ÿûÿÿÿþÿÿûÛ÷ÿÿ÷ßëÿÿÿÿÿÿÿúÿÿÿÿÿßÿÿÿÿÿÿþûïÿÿ{ÿßýýoßû_ÿÿ¿ßÿÿ÷Ûþßÿÿ÷ÿÿ¿ÿÿÿ÷ÿîïÝÿÿ¿ûþßÿ¿÷ÿû¿ÿï¿îÿÿ÷w{ÿÿÿÿÿÿþïïÿÿÿûþ¿¿ý¿¿ïÿÿ÷vÿ»Þÿû×ÿÿõ¿ý~ýïÿ}ÿþÿoïÿïÿÿÿÿîÿÿÿÿÿÿõþÿïþÿ_ÿÿÿ¿ÿ¯ûýÿþýÿï¿ÿõÿÿÿþÿïo¯þÞÿÿÿÿÿÿíÿÿÿßþïþÿÿÿßïÿïþÿÿþþÿýþÿÿÿÿÞýþÿÿÿÿûwÿÿÿÿÿ÷z¿ÿÿûþýÿÿ¿þÿß¿ÿûÿß÷ÿÿíÿ½ÿ÷zÿÝÿÿÿþ½¿ÿß¾÷ÿ¿ÿûþï{û·ÿÿý¿ÿ·ÿÿÿÿý¿ÿµ¾Ûÿÿûþÿ÷þÿÿþ÷¿ÿïÿý¿ÿ×ßßýï¿ÿïÿûÿþ÷ÿïÿ½ÿ÷¿ÿÿµÿûû¿ÿýïÿ¿ßÿýÿþûõÿýþÿûïÿÿ{ÿ¿ÿÿ÷ÿÿÿÿ¯¿ýýÿÿÿ÷ÿëþÿÿÿýÿÿþöÚßßÿûÿýß¿ÿÿÿÿûíÿÿÿ¿¿ÿÿÿßÿßÿúÿÿÿÿïýÿÿßÿuû¾ûþûýýÿÿÿÿû¯ýÿÕÿÿþ¿ÿÿÿ·þÿ÷¿ÿ½×ýûÿÿÿÕ{¿ýýßwþïýïþßïßÿÿÿÿÿûÿý¿ÿnÿÿïßßµÿýûÿÿ÷ýþ÷ÿþýÿþ÷ÿÿßÛÿûß¿ÿßÿ÷ÿ÷ÿÿíÿÿþïÿ¿û­ÿÿßÿÿúÿ÷ïÿÿïÿÛ}þÿoýþ¾ýÿÿÞÿßÞöÿÿÿÿÿÿÿÿ÷÷ÿïþßÿï»ÿ÷ÿÿßþÿ¿ÿîÿÿ÷ÿÿÿÿÞþßÿýýÿ÷ÿÿúÿoÿýÿÞÿïÿÿ÷ÿûû~¿ëÿýÿÿ÷÷ßÿÿÿÿíÿßÖÿÿÿýßßÿÿï¿ïÿÿïÿûÿÿÿßÿßÿîÿ¿ÿ½¿þÿÿÿÿÿÿßûþÿïýþ÷¿ÿoÿÿ¿ÿÿÿÿ¿ýÿ÷»þïýïû÷÷þÿÿ÷ÿÿoÛÿïÿþ¿þßÿÿëÿ×ÿ÷û}ÿï¿¿ûÝÿo¿ýÿÿ~¿ïÿö¿ÿÿïÿïßÿ¿ÿëÿ¿ÿ÷ÿëßÿ_ÿÿý¿ÿkÿïÿß~ÿÿßÿ÷ÿÿÿ÷ÿ÷ßÿÿ~ß¿ßÿÿýÿûÿëûÿ^ÿÿ¿ÿýÿÿÿÿÿÿýÿÿ÷ßÿßß÷®ýýþÿõ¿ýûïþÝÿßïûßïÿÿÿûÿíÿÿÿßnÿÿÿßÿwíû^ïþÿÿÿý·þ¿þýÿÿ×ÿû÷ÿÿm÷þÿÿõÿû÷ÿþïý÷ÿÿîÿßßÿÿûÿÿ¯ÿýíÿÿ¿×õþÿÿÿþÿÿÿõßûßÿïûÿ÷ÿïÿÿÿ¯÷ýûý·ÿÿÿïßÿþÝÿÿÿÿÿýïÿßÿÿÿþ»÷ÿ®ÿïÿúÿÿ÷ÿÿÿÿû»ÿß¿ÿûÿÿwÿýÿÿÿÿÛÿ·ýÿûÿkûõÿ»þïßÛëÿþÿÿ­ÿýÿ÷ûÿýÿÿýÿÿÿÿöß¿ßÿÿÞÛÿÿ×ïÿ×ýÿÿûÿûïÿÿÿ{ÿ¿þû÷}ÿ¿ßûÿþûÿýýßëÿ¿ûýÿÿûÿÛÿÛÿ¿¿ÿýÿ¿÷ÿÿÿþ¿{û½ïýÿþ¶ÿ¿ÿß÷ÿ_ÿ÷ïÿÿ~ÿúÿÿ¿ÿÿþýÿïûïûÿÛÿýÿ¿ûû¿ÿûÿ·ÿÛÿþ¿ÿÿûÿõýß¿ÿÿº»½¿ÿÿÿ~ÿ÷ÿþÿÿ·÷ú¿ûÿïû¿ßmÿÿõÿ~ÿ»¿ÿûÿÿÿýûÿÿþÿÝßÿûßßýïîÿÿÿýÿÿÞþûÿýÿÿ¿ÿÿÿÿßÿÿÿïÿÿ÷ûúûßúÝ÷ÿ÷ÿþÿÿÿÿÿßíûoÿÿÿßýÿÿÿïÝÿýÿ¿ÿîÿÿ÷öþûû»~ýÿÿ_ÿÝÿÿíÿ÷ÿÿûÿý÷½¿÷ÿÿ×ÿÿÿÿ¿öûÿÿíßÿÿ¿ÿýÿÿûÞÿÿÿÿÿoïÿ½oÕïëÿ¿ÿÿï»ÿþÿÿ÷ÿÿ÷ÿï¿×ÿ÷íÿoîþÿïïÿÿßý¯ßÿÿÿÝ¿ßýÿÿÿÞßÿÿÿ߯ÿÿ¿ÿûÿýÿýÿÿÿýÿÿýÝÿ÷ÿÞÿÿ¿ÿûýÿþßþûï¯îýÿÿëÿÿûÿÞ¿Ý¿õïÿÿÿ¿ÿÿÿÿýûÿýþ÷ÿÝþÿÿíïÿßíÿïÿÿýÿÿïÿýÿ÷ßÿßÿ¿ýÿëÿõÿÿß~»ÿÿÿÿúÿÿ×û¿ÿÿëÿÿÿ÷ÿßÿïÿûÿÿ®ÿßÿïöÿîÿßÿ÷»ÿ¿ýßÿÿýÿýýÕ{ÿÿÿÿýÿ_ïÿÿëÿý÷ï÷¿ßÿý¿ÿÿ½ÿïÿûþÿÿÿÿÿÿ¯û¿¿ÿþÿÿÝ¿ÿý×ÿ_ïÛÿÿßÿÿ¿ýëÿÿþï÷ÿ÷ÿoÿÿ÷ÿÿ_ÿÿýõý×ýßÿýÿÿÿÿÿ»¿ÿÿ×ÿÿÿý¿ïÿýÿÿý¿¿Ûþÿ{ÿûûÿ÷ÿÿÿþïßûïïûÿÿûîû¾öÿûûÿÿÿýûþþßÿßï~ÿÿýÿíí¯ÿÿýÿÿÿ÷¿ÿßÿ¿¿÷ÿÿïöÿÿÿÿÿïïþ¿ÿÿÿ÷÷ï}ÿýÿÿÿÿûÿ¿ÿÝ¿ÿÿþÿû÷¿þÿöÿÿÿÿÿÿïÿÿßÿÛªýÿÿÿûÿïÿÝ¿ÿýÿíÿÿÿÿÿ·ÿÿ_ýÿß¿ÿÿîßÿ¿®ÿÿßÿßßûÿÿ¿¿ÿÿÿÿÛÿ¯þþÿÿÿ÷û{ÿÿÿýûÿßßÿÿÿÿöÿÛýÿïûîûÿÿïþÿÿÿ~ÿÿ½ÿ¾þÿþ¿ÿÿ¿ÿ¿~û½ÿÿ¯ÿûÿï¿ÿ¿ÿïÿÿÿÿÿÿ¿ÿþ÷ÿÿïÿÿ~»÷ÿï¿ÿý¯Ûÿÿ÷ÿÿÿÿÿÿÿÿïÞþÿþÞÿïÿÿÿýÿ÷{ÿÿÿûÿµÿÝÿÞÿÿþ¯ÿßýûo{ÿÿþ÷Ý÷ýÿ÷ÿ¿ÿ÷ï»ÿÿÕÿþ·ÿ¿ýþÿþû÷ÿÿÿ¿þïÿï÷ß÷ÿ¾ÿýýýþïïîþÿõß¿¿ýïû÷¿þïßþÿ¾þÿÿÿÿ÷¿õÿoÿ¿ï¿ÿûÿ_ÿÿÿÿÿÿÿßÿßûûÿÿÿÿßýÿÿÿÿÿwÿÿÿ¿ýÿöÿÿÿÿý¾ýÿ~ûûö÷õßÿûïýûþÿÿÿßÿßÿ¿ÿÿÿ¿ÿwþÿÿÿÿÿÿíuöÿû½õÞÿïÿÿý¿ÿwý»{ûÿïÿýÿßýÿ÷ÿý÷÷þÿÿÿýÿ~ÿÿÿÿÿ¯÷ÿÿ½ÿÛ¿ÿÿþÿûßÿÿýÿÿ¿ÿÿÿÿÿÿÿýÿÿÿßÿ×ÿþïÿÿþÿ{¿¿¿þÿßÿÿwÿÿß¿ßþÿÿÿýý½ÿWÿ¿ïþ¿~ëÿ¿þÿÿëÿÿû¿÷ÿöÿÿÿ¾ÿßïßÿ_ûûöÿÿÿÿÿÿíÿÿÿÿïýÿßÿýþÿÿÿÿî÷ÿõwÿÿ¿ÿûþÿÿÿþßÿýýÿýö÷÷Õ·ýÿïßûïÿïÿÿÿÝÿÿ÷Ûÿÿ¾½¿ÿÿÿ¿ÿïýþþïÿÿßÿÿßþýÿÿ÷ÿÿþþÿÿÿþýÿ÷ÿÿöÿÿëýÿÿÝÿþûþÿßÿö»¿ÿ÷ÿï»Þÿ¿ÿï¿ÿ¿ïÿ¯ý·ïÿÿïþ÷÷¿÷ÿ¿wïûÿ{ÿï÷ûßïÿßßÞÿÿ½Ýÿ¿ÿï·ßÿÿ¿«ÿÝïöûÿýõ¯ÿÿÿûÿ¿öÿ_ÿÿýý¿ÿûßÿÿßÝúÿoïÿÿ¿ÿÿÿÿýßýÿýÿÿýÿ¾ÿ{ÿÿwß®ÿÿÿ×ÿÿ÷ÿÿýïÿ¿ÿÿmÝßÿÿÿ÷ýïÞ×îýÿýÿwÿ»ýÿß¿ýý¿÷ßÿÿÿÿûÿÿÿÿÿÿÖÿû_÷ÿÿÿoû_ÿß~þ»ÿÿÿïÿÿ½ÿÿïûÿÿ__ûïÿÿÿ¿ýÿÿÿÿßïÿÿ¿÷ýûþÿÿîßÿÿÿÿîÿÿïÿÿÿÿß~¶ïÿïÿÿ¿ûÿÿû×¾ÿ·ÿ×ÿÿ½ûÿ¯ÿÿöïïÝûýÿýÿ»ûÿûûßÿïÿßÿ÷ÿÿÿÿÿýÿþÿÿß¿»þ÷ÿûÿÿÿÿ¿ÿïÿÝÿ¿ÿûþÿÿýýß~ýÿß¿ÿÿÿÿÿïÿïÿß¿ÿÿÿÿÿ¿ÿúÿßÿ}ý¿ÿïÿ¿ûÿ}»þÿ÷ÿ÷_ÿÛÿûÿ¿½þÿÿÿÿïþþïÿýÿúÚÿÿþÿÿÿþÿÿÿÿûýÿÿÿÝÿ÷÷¿ö·ß÷ÿ¿Þý÷ÿµÿÿ¿Ýÿëÿßî×ßÿÿßÿýý¿ÿûþßÿþïýþÿÿûÿïÿ¿ûÿ¿ÿÿÿÿ÷ï}ÿÿþ¯÷ÿý÷ßý»õÿÿ½¿ÿ¿ïûÿÿþÿ¿û­ûÿþßþÿÿÿþ¿ïïÿ÷ÿÿÿÿÿÿÞÿïþþÿÿýý÷þÿïÿþÿÝßÕÿïÿý÷ûÿÿÿÿÿïÝ¿_ÿÿÿÿÿÿ÷ÿ÷÷ÿÿú÷ÿÿþÞÿßßÿÿ¿ÿ~ÿßÿÿúýþÿúÝýßÿïýÿþÿõ¿þûÿÿÿþÿ÷ÿÿ¿þýÿÿÿÿíÿÿÿÿßý÷þíÿÿÿÿ~ßö¿o½ýÿþ×Þûÿÿÿÿ÷ßwÿÿÖÿýÿýÿÿþÿþÿÿwÿïÝ÷ÿÿÿï¯ÿÿ÷ýöÿþþþÿÿÿïÿÿÿÿÿÿ¿ïÿ¾Úÿûÿý¿ïÿýÿÿÿÿÿÿÚßÿÿ¶÷ÿ{ß½ÿýßûÿ}¿Ýÿïÿÿÿÿÿÿÿÿ¿ÿ×÷ÿßÞßßÿÿßÿÿþ÷ÿÿÿÿ}ÿû¯ÿßÿÿ¿ÿÿ÷ÿßïÿþÿÿÿÝ«ÿÿ¿ûßÿëÿ¿÷ÿÿÿ¿ÿÿÿÿ¿ÿÿ×ÿÿÿÿÿÿû¿þÿþ¯ßÿÿýï_Ýÿ·ÿÿ½ÿûþ¿}ýÛî¿ÿ÷ÿÿþï{½×ûýÿÿÿ}ïÿ÷ïïúïÿÿ}ûßÿÿïÿÿûÿÿÿÿÿÿÿÿÿÿßïû÷¯ÿÿ÷þ÷ÿÿwÿÿïÿÿ»ÿÿû¯ÿ·ÿÿÿÿÞïûÿ}ÿÿÿÿÿ÷¿ÿÞÿÝ¿ÿÿßÿßý÷ÿ¿ÿÿß¿ÿýÿÿÿÿý¿ÿ¿½ÿíýûöÿÿÿßû¿¿ß½ÿÿ{ÿ¿ÿÿÿ½ÿ¿ÿÿßÿÿßÿÿÿÝÿÿÿ_ïûkýÿÿoýÿþÿî¯íÿÿwúÿúÿûÿ¿þÿßïÿß¿ýû÷¾ïÿÿÿÿ·ÿÿ¿}ÿþÿûÿÿÿÿ÷ÿßÿýÿýÿÿßÛïÿ÷õÿ¿ÿÿïÿÿÿïþßÿþ÷ÿÞÿÿ÷ÿ÷ÿÿÿÿÿ÷ßÿ¯wÿ¿ÿþ÷ÿÿÿÿûÿÿïÿÿÿ÷¿ÿýÿÿûû½ýÿÿÿßÿÿïýíÿþÿïïïÿ¿¿ûïwÿ÷ÿ½ÿÿÿÿÿýïïúÿïÿûÿõÿ_ÿÿÿÿÿ¾ÿ¾ÿíÿûÿÿÿÿïïï÷þþÿÿÞÿÿû¿ÿþþ½¾ÿ÷ÿÿÿýþÿû¿ö÷ÿ¾ÿÿûÿÿÿÿ¿ÿÿýÿ¿¾ÿÿÿÞÿ÷þÛïÿ¿ïo÷þýý¿ÿÿÿþÿõßÿ¿ïÿýßïûÿ¿ÿýÿ{í¿ÿÿûûïëÿÿýÿÿÿÿ÷ÿûûï÷ýÿÿÿ¿þûÿ÷ÿ¯íÿÝþÿ¾¿÷n¿zÿ_ýÿ¿ßÛÿþÿ¿ÿÿÿÿÿÿ^ÿëÿÿ÷ÿýÿÿÿÿÿÿÿ_þ¿_ÿÿÿÿïÿû¿¿þÿßýÿÿÿÿÿ}}ÿÿßï×ÿÿÿ¿ß¿ÿýÿþÿÿ½ÿÿ÷ÿîÿïßýÿÿúÿÿïýÿÿïÿÞÕßûïûÿ¿ë÷ÿÿýßÿþÿïþÿÿþÿÝÛÿþýÿ÷ïÿûïÿ÷ÿÿûÿÿ¾½ÿ{ÿÿÿÿûïÿÿßÿÿÿÿÿÿÿû÷ëÿßÿ¿ÿïûÿïÿÿÿÿÿÛÿÿÿ÷ÿÿÝ¿ÿÕþúÿÿ·½ÿ¯÷ÿûÿ÷ïÿÿÿ¯ßßÿûïýÿÿÿïþ¾ÿÿ«ß{ýÿ¾ÿÿ¿ÿÛ÷Ûÿïïÿÿûÿûÿûûûßßÿßÿÿû½ïýïÿÿÿÿÿwÿÿß÷ÿÿïßÿýÿ]õ¿þÿ÷ÿÿû¿ÿ»¿þïÿÿûÿÿ×{ýÿýúÿÿ×ÿýÿþî»ÿë¿ÿ÷ÿþÿÿÿýûÿ÷ýÿþßÿþûÿ[ÿ÷ÿÿÿû÷ÿÿÿ×÷ÿÞÿ¿õ¿¿ÿ¿ßÿÿûßöÿÿû÷ÿûÿÿßÿöÿëß»þïÿ_ÿ÷þÿÿÿ}ÿûÿîÿß½û]ÿþþÿýúÿÿþïÿÿÿ{ß÷ïÿ½÷ÿÿýÿþïÝþþÿÿû_þ÷ÿ÷ÿßÿÿ¿~ÿÿ¿ÿÿÿýÿöÛ·ÿ¿÷þÿ{¾ûÿýÿÿ÷oÿ~¾¿ïÿÿß÷wwoÿÿÿÿÿÿÿî¾ÿíûûÿî¿ÿßûÿÿïÿÿÿ÷ÿwÿþÿþÿ÷ÿÿÿï¿ÿÿÿÿÿÿÿÿïÿÿûÿÿÿÿÿÿëïÿýýÿþßïÿÿÿÿÛÿúÞÿßÿÿïýï}ÿ_ÿßý¿ÿÿ÷ÿÿßßý]ÿÞÿÿÿÿ»¿_¯ÿûÿÿ·ÿþÿÿÿÿm÷ûïÿ~ÿÿ½þÿoýÿÿþÿÿÿþýÿÿßÿýß÷ÿ××ÿû»ÿÿÿÿÿþûÿýý~ÿ¾Ýßÿ÷ÿÿÿ¿ÿ{ûÛ{íõ¿ïöþÿÿï­Ûûÿÿ¿¿ßßÿÿÿ{ÿÿÿÿÿÿ¿ÿßÿ½ýëÿoÿÿ_ÿÿßÿ÷ÿÿÿîÿÿýûïÿÿÿÿý·ÿýÿÿ׿ÿïÿÿûÿûï¯ûÿ÷ÿûÿÿÿÿïÿÿþþ»ûÿÿþöÿÿûÿýýÿ¿þÿ_¿ÿýþþÿýÿûïëßÿÿ¿õkû½ÿÿÞýßÿßÿÿûÿßïß÷ýïÿÿûÿÿÿ½ýÿßÿ¿ÿýíÿÿÿþ¿ïm½ÿöÿþÿÿ¿ïíÿ¿ûÿëÿÿþûÿwß¿×ïÿþ¿ßûwÿ×ÿßÿÿÿÿÝõïý»ÿ÷ÿþÿþßÿý¿öÿÿ÷ûÿÿÛýÿwûÿÿ¿ö¿ÿÿÞÿÿÿßýïõÿý÷ýÿþýÿÿÿ¿»ÿßÿÿõïþÿ÷ÿÛÿÿ÷ÿÿ~ÿÿ÷¿÷ý{ÿïÿý÷¿¿~ûþÿÿvßû÷ÿÿÿÿ÷ÿÿÿÿïÿ¿Ýûÿßÿÿÿ×ÿûÿïÿþ×ï_ß¾ý÷ß»¿÷ýþÿßÿ¾ÿÿÿÿÿo÷þÿÿÿÿûï¿ÿÿÿW{{öÿÿý¿ÿwÿßÛûýûÿÿþýÿÿ¿ÿ÷ûoÿÿÿÿÿ¯_÷Úß¿ÿÿÿÿþÿÿÿþ¿ÿ÷ûÿ×ûýÿÿÛÿ¯½×oÿÿÿûþ¿o¿÷ÿÿÿýÿõûÿïÿïÿýûÿûýýûÿëÿÿÿý¾¿~½÷ÿþþÿÿÿÿ¿¿ÿÿÿÝÿ·ÿûßýÿÿoÿ¿ïÿ÷[ÿïûÿÿÿ÷ÿ~þÿýúßþõ·ÿß½ÿ¿û÷ÿÿÿÿýûÿÿÿ¿þ½ÿß¿ÿ¿îÿíß÷ÿû÷ýÿÿîïûÿÿÿïÿßoÿþÿÿ·ÿ_ÿÿ}ÿßßÿûû¯ÿßÛ¿ûÿïûßÿÿ÷}÷ÿþýÿûþÿÿÿ¿Ûïïÿÿÿÿÿþÿÿÿýýÿ÷þÿ_ÿ»þÿýÿïÿÿÿ¿ÿÿÿ×ÿïÿ·ÿ×ïÿûÿÿ¿ý{oþýß÷ïÿýÿÿÿýÿßþþÿÿûýýþÿ½ÿÿÿû¿{ÿÿÿí¿ûÿÿïÿýþ¿÷ÿû÷ûÿÿÿûÿÿ·û÷¿ÿûÿÿÞÿßÿíûýÿÿïÿûÿ»ÿïþ÷ÿïþßÿÛûÿÿÿ¯¿wßÿ÷ÿÿÿûïÿ~¿ÿÿÿ÷ÿÿÿïÿûÿwßÿõÿÿÿoÿýÿýÿÿÿ÷ÿõÿýûÿÿöÿÿÿÿÿÿû÷׿ÿÿß¿ÿÿöýß÷ïí÷ûÿÿ÷ÿ÷þï÷ïþÿ¿ÿÛ÷Ýÿÿþ¿wÿßÿûÿýÿÿÿßÿÿßÿÿÿÿûÿÿÿÿÿÿÿÿÿÿßÿû·ÿÿÿÿÿßþû½~ÿöÿßßÿÿ¿ÿïÿÿÿÿÿïÿûû¿ýÿÿ¾ýýýÿ¾÷ûw×ÿßïßÿÿÿ[úÿ¿ëýþûïýÿï×ÿ{þßûÿÿþÿÿþÿßïÿûýn¾ÿþý÷ÿýÿ¿ÿÿÞÿÿ×ÿïíÿíÿ¯ýÿÿÿßÿþûÿÿÿ¿_ÿÿûÿÿïÿ~ÿÿmýÿß{öïÿõÿ÷{ýÿÿûßÿwÿêÿûÿ½Þõÿÿ¾ÛÿÛÿÿ~ú÷ûÿýïý¿ûþ÷û÷ûûÿÿýÿ×ÿ¿ÿÿíÿ¿ÿþßÿ÷ÝÿÞ»ÿ÷ÿþÿõÿýÿï¾ÿÿþßÿ÷ßîï¿ú··Þÿ·ßûÿßÿ¿÷ÿûÿï÷û¿ÿß}ÿßýÿïÿÿ÷ÿÿïÿwÿÿÿÿÿ÷ýÿÿýßÿÿÿß»ïþÿßÿÿÿÿ¿ÿÿÿÿÿÿÿÿÿï÷ÿÿûûÝÿß·wÿÿï¿ÿï¿þ¾ûoÿ¿ÿûþÿÿÿ¿þÿÿÿûÿÿmÛ»ÿ¿ÿ÷ýýþÿ¿·ûÿýÿÿÞÝ~ÿ¿ÿ½¿ßïÿÿÿÿß÷÷ÿßïÿýÿßûßýÿßÿÛÿÿûÿöýÿ~ÿÿÿ÷ßÿÿë¿ÿÿwþÿ¿ÿÿÿÿ¯ûßÿÿß®þ÷ûÿÿÿïÿÿÞÿõÿÿÿú÷ÿûöþÿ÷ßÿýÿ»ßÿÿÿÿßÿßÿÿÿÿÿþþ¿û÷ïþûw÷ÿýßÿÝÿþþ¯ÿÿ÷ûÿÿÿß¿ÿ÷ÿïýÿÿßþßûÿ÷íÿþ¿ÿßýÿÿÿïÿÿÿ÷ÿÿÿíÿûß÷ï»ÿÿ{ÿïÿ¿ïÿ½ÿÿÿÿÿÿÿ×ÿ÷ÿ»ÿýúÿ÷ýßÿÿÿ¿ï¿õþ÷¿ëÿ}ûþÝÿ¿ûÿÿoÿþÿöýÿ_ÿÿïÿëÿúïÿöÿÿ¿ÿÿÿïÿÿÿÿúÿûÿ{ÿÿï_ÿûþÿÿÿÿÝ¿ÿÿöÿÿÿÿßÿ¿ïÿÿþ¿ÿÿÛÿÿÿÖýÿßÿþÿÿ~ÿýÿþïÿÿþÿÿýûÿÿ÷ïÿê¯ÿÿïÿûÿÿ~¯ÿ¿ÿ^ÿÿ¿îÿÿ¯ýûûÿ½ÿÿýýÿÿßÿï¿¿ûïÿöÛÿÿÝ÷ÿ÷ßÿÿþÿÛÿ÷ïÿÿÝÿÿÿýûÿöû÷ÿÿß¿ÿÿßÿÿ÷¿ßýÿÿÿ}ÿÿûÿïÿÿÿÿÿÿÿ¿þÿÿûÿöÿÿýöÿÿÿÿÿÿÿÿÿ~ÿÿ»ÿÿÿÿûÿÿ¿ÿÿûÿºýÿÿÿÿÿïÿ_ÿÿþ¿ßßÿûÿv÷ÿïÿÿßÿÿÿþßÿ¿_þïßý_ÿÿ¿ß_ÿ÷ÿ÷ÿÿ¿ûûöÿÿí÷÷ßÿ_÷¿ÿÿ¿¿ÿßÿÿv¿ÿÿ½ÿß¿ÿÿ÷ÿÿ»¿÷þïûïûï¯ïÿûÿß¿ÿÿõÿ»ÿû¿þÿÿÿ÷ÿÿ¿û·ÿÿïÿïþýþÿ¿½¿kÿ¿ÿ®ïßÿþ÷ÿß»¿ÿþ÷ûjï¿íýÿýÿÿûÿÿßÿïÿ¿¿{ÿÿßÿ¯ÿÿÿÿÿÿ÷ßÿÿÿ¯ÿÿ_ÿÿûýÿÿþ×ÿýõÿÿýÿÿÿÿÿÿ¿ýÿÿ¿Ûÿßßwÿÿýÿÿÿ}ß¿÷ÿÿÝÞßûÿÿõ~÷ûÿÿûÿÿîýÿíÿÿþÿÿÿÿþßÿï»ÿú¿ïÿßþÿÿ÷½ÿwýÿÿíÿÿúÿÿÛþïÿþ¿ïÿÿûþ÷_ÿoÿ¿ÿúÿïÿÿ÷{~ïöÿÿ÷¿ÿÿwÿßÿ{ÿÿÿÿÿÞý¿ïÿÿ÷þÿÿÿï÷ïûÿÿï÷ÿ÷¿ýïÿþ¿ï¿îÿïÿï{ÿÿÿïïoïßþÿÿÿïßöíÿ½wÿÛß}ÿwÿßîÿÛÿ×ÿÿíïû^¿~ßþ¿¿ÿ¿ÿÿÿÞÿÿýÝßÿßÿ·÷ÞîÿýÿÿÿÞ½ÿ¿ÿWÿ÷ÿzÖýÿýß}ÿ¿ÿÿßûûÿ¿ÿÿ~ßÿ»ÿÿÿÿ¯½¿WÞÿïÿïÿÞúÿÿÿïõû]ÿÿÿþÿë~÷ÿßÞÿ×úÿû÷ÿßÿÿ¿ÿþÿÿßÝëÿÿÿý{÷ÿï÷ÿýýÿÿ¯î÷ÿûïÿïß~Ýïÿûÿ¾ÿûÿÿÿþûûÿöÿÿÿÿ¿ÿ¯ßïÛïíÿÿûÿÿÿýïûÿÿµïöþÿÿû¿oÿûoÿÿÿïßÿþÿßßvÿõÿÿÿÿÿÿëÿÿÿmþþûÿÿÿ¿}÷ÿÿÿÿÿßÿÿïï}ÿ¿ýÿÿÿûÿþöÿÿÿÿ¿ý»ïßÿýÿ~úþÿÿÿö÷þÿÿßÿ·ÿÿÿ[ÿ¾û­îë~ß]ÿÿ¿ýÿÿÿÿmïÿ¿ÿÿ÷Û»ÿýý÷ÿ¿Ûïÿÿÿoÿûþÿÿ¿÷_·ÿ_ÿÿÿÿïûÿßußÿ¿ßëÝýïþÛÿÿÿß{÷ÿÿûÿ¿ûý÷¿ÿ{ﯷÿÿ×ÿÿõõþ¿ÿþíÿý÷ÿ_ÿïïÿõ¿ÿÿ¿ßþ÷ý¿ûÿ¿ýþÿÿþÿöÿþ»ûÿÿ¿ÿÿÿÿÿ¿ýÿþÿïõÿþ¿]ÿûÿÿþÿ¿ëÿÿÿÿ×ÿÿýÿõÿßÿ»ÿÿÿýÿ»¿ÿ¿ÿ¿þÿÿ¿ßíÿ»ÿÿïÿÿ_ßûï¿Û_ÿÿÿõß¾ÿ¿ÿÿ¿÷úýÿÿ¿ï÷ýýÿÿÿ÷ÿÿíûî¿ûÿë÷ÿÿõÿûÿÿÿ~ýïß÷õÝÿÿßïïþÿÚûÿÿ®þÿÿ÷ÿÿÿßýÿÛýþÿÿÿþÿýÿÿ¿÷ÿýÿýÿ¿ýÿÿÿÿÿ×ÿÿÿ¿ÿïÿ¿ûßúÿÿ~ÿÿÿÿÖÿÿÿï¿ÿÿ¶þû}{þÿûýÿïûûûÿ÷×ÿÿÿ½ÿú¿ÿÿÿ·»oÿÿÿ{ß¿oÿ·ÿÿûþõÿÿ·ÿ÷ý~ßnÿïïûÿ¾ÿý÷¿ïíÿÿÿ}ÿÿÿ¯ÿýýÿýÿ÷ßÿÿÿÞûÿÿýÿ¾·ßëÿÿýÿ{ýÿý¿ÿwÿ÷ÿ·ÿÿ×ëÿïÿÿÝÿýoÿÛÿ¿oÿÿÿÿÿÿÿÿýþÿûºûÿýïîÿÿÿûÿþÿÿÿÿÿ÷ÿÿÿÿÿßÿwÿýþÿûÝÿÿWÿýÿýÿÿÿÿÿ½ÿÿõ¿ÿ÷ÿßýÿý¿]öÿ÷þï¿ïÿÿÿÿ¿÷÷ýßÿÿÿÿÿWþû¿ß÷íÿßýÿÿÿÿ¿÷÷ÿÿïþÿýÿ¿ûÿ}wÿÿÿÿÿÿýÿÿÿÿû×ûÿÿû¿ûÿ_÷ÿýÿÿýÿïþïÿÿ÷ÿ÷ÿ_ß¿ÿÿ¿ïýÿÿÿÿÿ×ÿÿÿïßû¿ÿÿÿÿÞ߯ÿýýÿÝÿÿûýßÿ_¿Õÿÿïßÿÿÿ_ÿßÿ¯úûûÿïÿÿÿÿÿÿÿÿ¾÷ÿÿÿï¿ß_ß_÷ÿ»ÿÿ¿ÿÿþÿïÿÿ¿÷ÿ¿÷ÿÿ¿ÿþßÿÿïÿÿÿ¿ÿû÷ýoûÿ½ï¿ÿÿÿïïÿ÷ïß»¿ïßþÿÿëÿßÿÿÿõûþýÿÿÿþÿþÿÿÿêÿ¿ÿwÿÿ÷ßÿÿÿÿÿ}ÿþïÿµ÷þûÿ¿ûÿýÿÿÿ¾÷ïþÿÿûïúÿÿÿ·ÿÿÿÿÿú¶ýÿÿû¿ÿÿÿÿõ~ÿ»ÿÿÿï{ÿíÞßÿÿþÿýÿýÿïïÿÿûÿÿÿßÿßÿ¿û¿ÿÿoþÿÿwÿoÿÿÿýý¿ûýÿ¿ÿÿß÷ÿÿëÿÿ{ÿßÿÿ¿ïÿßÿÿûÿþÿõÿÿ½÷ÿÿûÿÿûûïÿþ¿ÿ}ûõ¿ßÿ¿ÿ÷ÿýÿÿÿÿÿÿûw÷ÿû¿ÿÿßëûþïÿïÿûÿÿþþ¿ÿÿÿïëÚßûÿÿ÷÷{ÿïÿÿÞÿÿÿ÷ÿÿß÷ýþýÿÿkÿïÿÿߺûÝÿýÿÿÿÿ¾þû·ûûÿýïÿÿÿßÿÿ¯þÛÿõ÷»ÿÿßÿ»¿½ÿíÿîÿ÷ÿßÿï¿ÿÿþÞÿïwÿûÿþïþÿ}ÿ÷ÿÿÿÿÿ¿ÿÿíïïÿý÷ÿÿûÿû½ÿý÷÷]ÿÿÿûþ÷ÿûõýþßþ¿ÿ÷ÿ÷ÿúÿ÷ÿmíÿ_ÿÿÿÿ÷ÿÿÿßúþ¿õÿïûÿÿýÿÿ¿ÿÿïîÿÿû{ûÿý÷ÿÿþþÿûû^ïÿýÿö×ÿý¾ûÿÿÿÿÿ÷ßïÿÿÿÿÿûÿýÿýÿ×ûßÿýÿÿÿ¿_nÿßûÿ÷ÿßÿu¿ÿÿû¯ÿÿ½ÿïõþ»ÿÿï·öÿÿûíÿïÿÿÿÿ×ÿÿÿoëÿþ¿ÿ÷·ýïÿÿÿÿÿÿÿÿÿßÿíÿ«®¿ûßÞÿ¿ÿ_úÿÿoÿÿëß÷½ïÿ_ÿ}úÿÿ÷÷ï»÷oýÿßûÿÿ¿ÿ{ï{ÿÿÿþÿý¿¿ýïÿÿÿþÿö¿í÷¿ïïÿÿßýþßÿÿûýûwë÷ÿÿýÿÿÿ×ÿ·÷ß×ûÿ÷ÿßÿ¿uû÷ÿûÿÿÿ_¾ÿßÿÿÿ¾ûwÿÛÛî×}ÿ÷÷ÿßþÿÛÿ¯ß÷ïÿ÷ÿ»mÿÿÿÿëÿÿßÿßßÿõÿ÷ÿ¿ÿ¿¯ÿëÿï¿þÿÿwÿÿÿûÿÿÿÿÿÿûÿï~ûÿÿ{úÿoÿÿßÿ¿ÿÿýÿÿíÿÿÿ¿ÿÿ¿ÿÿßÿÿÿÿ¯ÿöÿÚÿÛÿÿ¿ÿÿíëÿÿÿwÿÿÿïûþÿ·ûßÿÿûÿïÿý×ýÿÿÿÿÿÿý÷ÿÛ÷÷ÿÿÿþ÷îÿÿÿÿîÿßÿvï÷ï¿¿ýïÿÿ¿¿þÿÿÿÿÿÿÿÕíÿ¯÷ÿÿÿ½¯÷ßÿûÿÿÿÛÿþ¿Úÿïÿ÷ÿ_ÿÿÿïÿÿÿû¿»ýÿÿýõÿ¿}ÿïÿÿý¿×ÿÿÿÿëÿ÷ÿßÛï÷ÿ×ÿÿýýÿúõúÿÝû÷ëÿ÷ýÿÿëþÿûÿÿÿíïûÿöÿÿÿÿ÷ýÿö÷ÿÿßÿÿÿ÷ÿß¿ÿÿ¿ÿßÿ}»ÿÿoÿý»ÿýÿ÷÷ÿëÿûÿþÿÿõÿÿÿïõÿÿÿÿÿÿÿþ÷þ¿ûßÿÿÿÿÿ÷ÿÿ¿ßûÛÿÿwýÿ{ÿýë~¿ûÿþÿÿÿß»ûÿ÷ÿoÿõïßïÿþÿõÿÿÿÿûÿÿþ÷ÿúÿÿÿÿÿûÿÿÿþß÷ÿÿÿ½¿ÿïÿÿïÿÿ¿ýÿ~ÿ÷û÷ß¿ûÝÿþÿÿÿ¿þÿ·ÿÿ÷ÿíÿûÿþÿw_þÛ×÷ÿþÿïûÿÿîïÿûÿ}ÿ¿ÿþÿÿÿÿïÿÿÿ{oÿÿÿïÿ÷ïÿ¿½ÿö¿ÿßÿÿÿÿÿÿîû­ÿÿÛÿþþûÿÿÿíÿ÷ÿÿÿÿö¿ÿÿÿí_÷ÿÿÿÿ÷ûÿë¿ïýþ¿ÿßµÿíÿÿ¿ûïo¿ÿÝßÿßÿûÿ÷ÿþÿÿ¿»ýëû~»ÿï¿ïîÿÿÿÿßß÷ßÿÿÿþ¿ïï¿ÿûÿ÷ÿ¿ÿ¿ïÿÿ÷mÿÿûû÷ÿýÿÿÿÿ·ÿw~ÿ¿ýßïÿïëïûþÿÿ÷ïÿ¿¿¿}÷ÿÿ¾ûÿßïÿößÿ¿ÿ¿ÿ¾ÿ}ÿï~Û÷Ûýýÿýÿÿÿÿûÿ÷ÿßÿÿývûÿÿ¿÷»¿ÿëÿþÿ»íÿûÿïwÿÿï¿ûÿßûë÷_ê¾ÿ÷õÿþîÛÿÿÿ÷×ÿûßûïþßÿÿÿ÷ÿÿþÿ÷¾÷ÿÿ¿ßÿïúÿÿÿÿÿýþúßÿûßÿÿÿÿÿÿýíÿÿþÿÿ{ïÿ×÷vîþÿïÿúÿ÷ßûýÿßÿÿþþÿ{÷ûßÿÿï}ÿÿÿÿûýûÿÿ÷ÿïÿïïÿ÷ÿÿÿýÿï÷ÿÿû÷ýýßúÿ÷ßÿ»{úû÷ÿöûûß{ÿÿÿzÿÿïÿ÷ÿïþþþÿ½ÿÿûÿïÿ}ßÿ~ÿ»_ÿýýÚÿÿÿÿ»·þûÿÿÿïýÿþÿÿ¿ú÷ÿÿ}þÿÿûÝÿ÷¿ÿßÿý÷^ýÿÿÿ_¿ûßûÿß÷ÿûÿÿÿÿßûÿïïûÿÿïúÿïÿÿÿÿþÿíßÿþýÿÿÿ_ÿûÿÿÿÿ÷ÿÿÿÿþÿûÿoïýÿÿÿßÿû__ÿÛÿÿÿÿÿÿÿþÿÿþ÷ûÿÿëïÝûÿÿÿ÷ÿ÷ÿÿÿ½ÿíÿßÿþ÷ëï÷ß÷ÿÿþÿÿýÿ_ÿ¿ÿï÷ßïÝÿ_Û}÷þÝ{ÿûÿÿÿûwû_ßÿëÿÿûÿÿÿÿþÿ}ýÿÿÿýþÿÿýýÿÿï­ÿÿÿÿïÿÿî÷ïÿþ·÷ÿÿÿÚýÛÿ»÷}ÿßý÷þïÿÿÿÿn¾ÿ÷ÿûÿÿûûÿoûïÿÿûÿ¿wûÿÿ¿ûíýÿ÷ÿþÿÿÿ¿[wÿÿ¾ÿÿïÿýÿÿ÷ÿo÷úßÝþ÷ïÿ÷ýýï¿ïþÿ×ÿßÿÿû÷ÿîÿßÿÿÿ»ÿïÿÿÿïÿÿîþýï÷÷ÿ÷ÿÿÿþïÿ÷ßÿÿÿVýoï½ïûÿÿÿÿï¿÷ÿÿÿÿÿÿÿÿÿÿÿþûÿÿÿ¾ÿÿÿßÿÿïÿ÷ÿßý~ïÿ¿ßÿÿÿûßÿÿîÿÿÿ¿û»ÿÿ÷ýÿÿý¿ÿÿÿõýÿïýÿÿþþÿÿÿÿ·ÿûÿÿÿßïßýÿ÷ÿþÿ^ÿÿÿÿ÷ÿþÿýíÿ¯÷ûÿÿëÿÿßûÿÿ¿Û¿w]ÿ÷íÿûß÷ÿÿ÷ßþÿûïÿ÷ÿÿÿ÷ý_û÷ÿíÿý×ÿÿõ÷ÿßÿÿÿÿ¿ÿÿwÿÿúýûþÝÿûÿÿÿÿý¿ÿÿÿÿÿÿÿÿýÿÿúÿÿÿï}ÿÿÿÞöÿÿÿ¯ÿ·ÿÿ¿ú¾öÿþßÿ÷ÿþ¿þÿÖÿÝ{ÿÿ¿ÿÿ¯wýÿïÿßÿþÿßïÿßÿÿÿÿÿÿúÿw»÷ÿßÿÿÿßÿþþÿ¯þÿÿ¿_ÿÿÿ¿ÿÿßÿÿýïßÿÿwmÿÿþÿ½ïÿÿßÿ÷ÿÿÿý×ÿÿÿÿwÿÿ¿ßÿ½¿ý÷¿ÿïÿÿÿý׿ÿÿïý÷ÿÝÿÿïÿûß¿÷ÿÿÿÿþ÷ÿÿßÿÿÿßÿÿÿ¿ÿÿ¿ßû÷ýÿÿúÿûÿþ÷ÿÿûÿßwÿ¿ÿß÷ûÿ_ýÿÿÿÿÿÿÿ¾¿ïï÷ÿÿûÿßÿÿÿÿÿÿÿþûõûÿÿ¿{ýÿýûýÿû~ÿÿÿ¿ÿÿÿßÿÿþßßÿÿß÷ïûîÿÿÿýÿÿß¿ÿÿïÿÿþ¾÷ßÿÿûßþÿÿßÿý«ÿ÷þûÿÿûÿÿÿÿÿÿºûþßßÿïýß¿÷ÿÿ÷ý«ÿÿïïÿîÞýÿÿ}ÿ¯ýïÿÿÿ¿÷ÿÿ{ÿïÿ¿ÿýÿïÿwÿþÿÿÿÿ×ÿÿþÿ¿þëÿÿ¿ÿÿÿÿÿÿÿ¿ÿ¿ÿÿÿÿÿvÿnÿûÿß÷ÿÿ÷ÿÚÿÛ÷ÿýÿÿû}÷ÿÿÿÿÿßÿ÷ÿë÷ÿÿÿ¿þïÿ÷ÿ÷ûÿÿÿÿûÿß_ÿßï÷ÿûí»ßÿý¿þÿîÿþÿ¿~ÿ¿ÿïÿ~ÿÿÿÿÿû¿ýÿÿÿý¾Þë÷÷ûkÿþûïþïï÷¿ÿ_û÷oÞëûÿëÿþï¿ÿý÷ÿ½ÿß÷ÿÿýÿÿoÿÿÿïÿþÿþý{ÿß}ýÿ}ÿÿûÿÿÿÞÿÿÿÿ÷ÿÿû÷¿ïÿÛÿºµÿïÿ¯¿ÿýÿvÿÿßÿ÷ýÿßýýwýÿ÷ÿïÿÿýÿ÷¿ÿûÿÿÿÿÿÿÿýõÿ»÷¾ÿÿÿíÿ¯ÿÿßïÿßWw½ïÿÿ÷ûÿÿÿÿÿ¿ÿÿÿï÷ßÿÿÿûÿûÿÿÿÿöÿ÷wý×þÿÿ¿ÿÿþûÿÿÿÿÿÿÿÿþûû¿ûÿÿÿºÿÿÿÿÿþÿÿïÿþÿÿÿ¿ÿîÿÿÿÿÿûÿÿ÷ÿßûýÿ¿ï}þÕûÿþÿ÷¿îïÿûþÿýûÿîïÿÿþ÷ÿÿoÿþýÿÿÿÿÿßÿßÿÿþ×ßÿë߿߯û¿÷ûßÿï»ÿÿÿÿÿÛ÷ÿýÿÿÿÿþÿÿÿ¿ÿÿÿû¿ßÿßý¿ÿ÷ÿÿ_¿»ýÿï÷ýÿýÿÿÿýïÿÞûþÿ_ÿïÿÿÿ{Þÿÿßïÿýÿÿÿÿ¯¿ÿÿ{ï¿þ÷ý÷¿ßÿÿ¿ÿÿÿÿÿ¿ÿÿÿÿÿÞ»ýÿÿÿ¿¿ßÕÿ¿ÿýÿþÿ¯ÿ÷÷÷}ýÿßûïßÿÿÿÿÿÿwÿoÿýï¿÷ÿ¾ëïûïÿ÷ýÿÿ½ÿýÿÿÿÿßÿï÷ûÿÿï«úþþïÿÿýïï»÷ÿÿþ¿ÿýÿÿ}ûÿõýûíß×ÿ÷ÿýÿûýþÿ¯û¿»ÿ¿ÿ÷¿¿ÿÞÿÿ[ÿ÷ÿßïý¿þÿÿ÷ÿýß÷ýÿýßýßÿÿÿïÿÿßßÿÿÿÿ_ÿûÿwÿÿÿÿ{ÿûþ÷ïýÿ÷Ýÿßïÿêÿÿÿ¯ýþ¿þÿþÿÿ½ÿÿïÿÿÿï®ÿïÿÿßýöÿë¿ß½ÿýßÿ¿ÿÿÿÿÿßÿÿÿ÷ï¿ßÿ¾ïÿÿïÿÿÿÿïÿÿ¿ÿÿÿß¿ÿûÿßÿþÿ÷ÿþÿÿÿ}þ÷~ýÿÿÿ¿ÿïÿýÿïÿßÿÿÿïûÿzÿÿÿÿßþý_ÿÿÿ÷ÿÿþýÿ÷ÿ¿ÿÿûïÿ¿ÿ¿¿ÿýÿþûÿþþÿýï¿ß÷ÿÿÿ¿ï¿¿úÿþÿ¾ïí¿}ÿÿ¿ýÿ÷ÿïÿûÿ÷ûïþÿïûúûÿÿÿßýÿÿþÿ¾ÿÿÿïÿÿëwÿ»·ýÿ÷þÿúÿ}÷ÿïÿ÷ÿî×ÿÿÿýÿÿÿÿßÿÿ]~ÿÿÿÿÿýÿ÷íÿÿû÷ÿÿÿßßßÿÿÿþþöÝÿß¿ýßý[ÿîÿÿÿÿûïÿýÿÿïÛÚÿÿÿÿÿëþÿÿþýïÿïþþýýõÿ÷ÿÿÿ¿ÿÿÿûýÿÿÿûÿûÿÿÿj¾ÿÿuÿÿÿïÿýßÿõ÷»¿ïþí{ÿïÞ·ÿïÿÿÝÿÿÛ¿Þÿþÿþ½ÿÿßýïÿÿÿÿWÿýï}ÿÿÿÿ¯ßþÿÿÿþÿÿÿ¿¿ß¯ïýÿ·îÿÿÿÿßÿ÷ÿ¿ú¯ÿÿÿûÿï½ÿ½ÿïnÿþýÿ»ÿûßý÷ïîßïûûÛßoëýÿÿ¿ÿýß~ý¿ûßÿ¾ÿïÿÿÿÿßÿÿ÷ïß¿ÿ¯ÿÿïûûÿÿÿ{÷ÿÿÿwßÿÿßÿï÷¿ÿÿÿÿûú¿u]ÿÿõýÿÿÿÿÿëïûÿûÿû¾þÿÛ¿ÿÛwýßûþ¾¾ÿÿ¿Ýÿûÿûÿÿÿÿßÿ÷ÿÿÿÿûïßëÿÿþ÷ßýwÿÿþÝýïÿÿÿ¿ïÿ¿ëÿ÷ÿ{ûÿïoÿûïµÿÿößoÿÿÛ÷¿ý½·ÿ÷ûýÿÿÿ÷îÿÿïÿï¿ëÿ¿ÿßï·ëÿÿÿÿïÿïîßÿïÿë¿ïíß¿÷þÿûïîÿýþÿÿûëßÿý÷ÿÿÿßÿÿÿÿý¿íÿþÿÿÿ¿_þ¿ÿ¯ÿûþ·¿þÿÝý÷_û_¯ûïý÷ÿÿïÿûÿÿúÿÿ·ÿÿÿÿÿÿ¿ÿï¿ûÿßÿûºÿ~ÿ÷ÿßßýÿÿÿÿî½Ûÿÿÿß¿÷ýý¿ÿûÿï¿õÞÿÿûÿÿþÿÿÿÿßï÷ï}ÿÿûÿÿûÿÿíÿÿÿûÿëÿï¿ý¿ÿÿÿo÷ûÿ¿ýÿ»¿ÿïÿÿÿûÿÿþÿ÷ÿöß÷ÿÿýïûÿßûÿÿßïûþÿÿßê¿úÿÿÿßÛo¿ÿÿÿÿÿÿþÿ÷ßûïÿýÿûïÿÛïßÝ÷ÛÖ¿¾ïÿ¿ÿïîþÿÿþû÷÷ÿÿýÿýÿûûý÷ýÿ÷o×ÿÿÿýÿ×ï÷ÿíýÿ~ÿïþÿ÷ÿ÷ÿÿ¯ýÿÿÿÿÿÿûÿÿï÷ÿÿÿïïÿýý¿÷¿ÿßÿ×ÿÿûÿÿïnÿÿÿ·þíÿÿÿÿ·ö»ÿ÷ÿÿÿÿþû÷ÿ÷Þÿïÿÿÿÿÿßÿwÿ÷oÿõþÿû÷ÿÿÝïÿýÿëÝÿÞÿ÷ûþÝÿþÿýÿ¯ÿÿïûûþÿÞ×ëÿê÷ÿÿïûÿÿöþ¿ÿÿ÷¿ÿþÿûþûÝÿ~ûþ¿ÿÿýõûÿÿþ÷ÿ×ÿÿºßÿÿÛûÿÿï¾ÿÿßÿÿï~ßÿïÿwýûÿÿÿÿß¿~¯ÿ¿ÿïÿïÿ»ÿÿþïß}ÿ·û¿ýÿÿß÷ÿßûÿïÿÿõï¿ý÷ÿÿýÿÿÿþ÷ÿûïïÿÿý¾ÿûÿþÿ÷ýÿÿþï÷ÿÿÿþÿÿëõßÿýÛÿw×ÿw¿¿÷ÿûûÿûÿûÖÝþÿÿû·ÿýÿÿÿ¯ÿûÿÿþþïßïÿÿïÿïöýÿßÿÿÿßÿÿýÿÿí_þ÷ÿwÿßÿë·ßÿÿÿÿ¿÷ÿÿ»ÿïw¿ÿþýýoîÿÿíïÿ÷wÿý÷¿ÿÿûïïÿÿþïßßïþÿÿÿþÿ»ïßþïÿÿÿ¿ÿßÿÿÿÿßö¿÷·»·ÿ»ÿ{{ÿÿ¯ûÿý×ï÷ÿÿ½ÿßÿïß÷kuûoÿÿï{ÿûÿÿýûkÿß×÷÷ÿûúúïßÿÿ¿ÿúëÿÿûÿÿþ÷ïïÿÿÿo{û÷ûÿýï÷îþßýßûëþþßÿÛÿÿÿýÿÿïý÷¿þý÷ýÿ¿ÿ¿þûýÿÿÿÿïÞÿ¾ÿ·}÷ÿÿ߯ö÷ÿúÿîÿïÿÿÿïþþ½ÿ¿öÿÿÿþÿÚÿÿÿ½ïýýþý÷ûÿïÿÿÿÿßûõß÷¿¿÷ÿÿûßÿÿ׿ïþÿÿþÿïýÿÿßýÿýûûîÿ½ý¿ßoÿßÿÿÿÿßÿ·þ¿¿ïÿí_ýïÿûþÿþÿïÿþÿ÷Þÿû÷ë_ûÿÿÿö÷ïÝo÷ÿþÿÿÿÿïÿßý÷úïþûþïýÿÿÿÿ÷ÿÿÿ~ïßoÿÿÿþ¿ÿÿýöÿïÿûûÿï[ÿ÷ÿÿïû÷ÿÿÿ}_¿Þÿ¯^þ¿ÿÿÿÿÿ¿ÿÿÝÿþÿÿwÿþÿ¿û½ÿÿÿÿß߯ÿýÿ÷ÿÿþßÿÿþÿþ÷ÿÿßÿûýï½÷ÿûÿ{ÿ÷ûÿïÿ÷÷ÿïÿûÿÿÿîûÿÿÿ÷ÿõÿÿÿþÿÿþÿ¿ÿÿÿÿþ¿ýÿÿýÿÿûÿ¿ÿßýßÿýÿÿÿÿÿîýýýûþ÷ýÞíþÿ}·ÿßþÿïÿþÿ¿¿ïÿÿÿÿÿÿþÿõëÿ÷ûþÿûÿþÿÿï½ÿ·¿ï_ýýÿ}ÿ÷ýýþÿïÿþ÷¯þïýÿþÿÿõÿÿÿÿÿÿÝÿ_¾÷ÿûÿïÿýÿïÿÿõÿÿßÿÿÿ÷ÿÿÿÿýÿÿÿÿ¿ï÷ÿÿÿÿûÿÿÿßýÿþïÿÿëëÿÿþÿÛoÿ÷ÿÿÿ¿»ÿÿëÿ¯ÿÿïÿûÿ_ÿ÷ýUýÿÿÿÿÿÿÿÿßÿÿßý·»ßvýÿ¿ïÿ¿ÿÿ¾ÿÛýÿÿ¿ýûÿÿÿ_ÿ¿÷oûý~ÿöÿïïÿmÿÿÿ÷ßÿÿûÿÛÿ÷ÿÿÿwÿëÿÿÿÿÞîþý÷]ß×ÿ}ûÿ¾ÿßÿÿþßß}ÿÿû÷¾ÿïÿÿõÿ¾ÿûÿÿû÷þÿÿÿÿýý_ÿ¿þÿÿý_¯ÿÿý÷ÿÿßÿýÿýÿýýßÿÿÿ¾×ûÿÛúÿßýÿûÿï¿¿÷ë»ÿë÷ÿ¯ûÿÿþ¿ûÿÿÿÿÿÿÿÿÿßÿÿïÿ¿ï¿ûzÿ¿ÿÿÿöÿ¿ÿÿÿÿßÿ}þÿöÿÿýÿÿ·ßÿ÷}½ÿëïÿÿßþþûõý×öÿßÿÿþßíÿ{ýýÿûûÿÿÿ÷{ÿÿÿýëÿûÿ¿û»ßÿîÿýÿ·ÿÿÿï¿ÿÿÿßÿûÿÿÿÿ¿ÿÿÿ÷ïÿþ÷Ýÿõïÿûûîíÿ{ÿÝÿ{÷ûþûý÷¿¿ëêÿÿëÿÿÿþ÷ÿÿÿû÷þ¿þÿÿÿýþþ·÷¯ÿÿûÿÿþ¯{þûþÿÝÿþÿÿþÿÞß_ÿÿwß¿Ýÿßÿûÿÿÿïúßÿÿÿÿûÿÿýþþûþûÿÿÿëßÿý¾ÿÿÿ·ÿÿý~ÿ¿÷ýÿÿßÿßÿmÿýïÿïþþ÷ÿÿÿýïÿÿ}¿ÿÿÿÿëÿÿÿÿý¿ÿ¿ÿw}þÿÿÿÿÿ¯¿ÿ·÷½ÿÿÿûÿëý¿ïÿýÖ÷ïÝþÿ¿ÿÿÿþÿÿ÷ÿïïÞûÿ¿ßÿöÿÿÿÿÿ÷ÿýï÷ÿ~ýÿÿÿë÷ÿÿÿÿ¿ïÿýßÿýÿÿßÿ¿ßÿ¾ÿÿ_÷ßÿþïýÿûÿÿ¿ÿßÿ»×ÿÿþûýïï{ßýÿïßÿÿÿÿÿ_ÿÿÿÿÿ¿ÿÿýÿûÿÝû¿ÿßÿÿßÿÿûÿÿÿÿß¿ÿ¾ÿßë¿ÿëÿo{ÿÿ­ÿ¿ÿ»ÿïÿWÿ»ßÿïïûÿÿû»ßï¿ßÿÿÿÿÿÿÞÿ÷ýÿÿûÿÿÿÿÿ÷ÿÿûýÿÿ÷ûÿ~ÿÿÿ»¿ÿ{ÿÿÿÿÿÿßÿÿ÷ÿû»ÿ¿ÿÿûÿ]ÿïÿ·ÿþÿÿû¿¿»ý¿ÿ÷îÿûÿû¿~ëý¿ÿýúþýÿï¾ý~ÿïÿûkÿÿýïÿûÖÿÿÿÿßßþýúÿíÿÿÿ·ÿû¿ßÿ_þö¿ýßûÿÿ÷¾ûÿÿ½ÿÿúÿþÿÿÿÿÛÿý÷ÿÿÿÿÿþýﯿ»ûÿÿÿÿÿÿï÷¿þ÷ýÿÿ«ÿÿÿ»¾÷ÿÿÿÿû÷¿ï¿ÿ÷~ÿÿ÷ßÿîþÿÿíoîÿÿïÿþë»þ¿ÿõÿÿß¿ÿÿÿûÿÿßýíÿï¿¿ÿÿÿ¿·ÿÿÝÿÿýÿÿïÿÿÿþÿûÞÿÿ÷ýÿþ¿ÿÿ÷ïÿý¿ÿûÿ~õÿïÿÿÿÿÿÿÿÿëÿÿßëÿ¿ýïÿý÷î¿ÿýÿ÷ÿ}÷ïÿÿûnûßÿ¿þÿýþ¿ÿÿÿÿ®ÿÿÿ¾ßþï¿ßÿý¯µÿÿëûöÿÿÛÿÞÿßÛ{ýÿýÿÿßÿûºÿÿþÿÿï¿ÿÿ·þöÿÿÿÿûÝÿßûû¿ÿûÿ÷ÿÿÿ÷ÿÿÿÿÿ÷ÿÿ½ÿÿ¿÷n÷ÿ÷w¿ÿëÿßÿÿýÿÿÿÿßûÿýÿ¿ÿïîëÿ×¾ÿ½ÿ×ÿ÷kÿÿïþÿþÿ¿ÿÿïÿ×ÿï¿ÿïÿÿÿýÿÿþÿ¿÷ÿÖ¿ÿí×ÿ¿¯ÿ¿ÿÿÿÿÿï¿¿¿ÿÿ¯êÿ¿ÿÿÿoûÿÿÿößÿÿ÷ÿ¿¿ÿÿïîïïûÿïïÿÿ¿ÿÿÿÿßÿýÿÿþÿÿÿÿÿÿÿõÿ÷ÿÿ^¿ßû~þ÷ÿÿÿ÷ïûîÿ÷þÿþÿïÿ¿¿ÿþÿoïßuïÿþÿÿÿïþ¿ÿÿÿ¿ÿ÷ëýÝÿÿþþþÿÛë÷ÿÿýûÿÿïÛ÷ÿÿïÿ¿þÿÞÿÿ½ïßÿÿÿÝïÿÿÿ¿íÿÿÿ÷ÿÿÞ÷÷¿ÿÿÿÿûÿýûûûÿýU÷¿oýÿýÿ÷ÿ÷ÿÿïÿÿÿ~ÿýÿÿÿÿÿýÿÿú½ÿ»×ÿûÿÿ_ÿÿ÷ÿÿ»ÿÛîÿÿÿÿ·ï}ÿßÿÿ½ÿÿ¿÷ÿÿÿïÿÿÿÿï÷ým÷ïÿÿÿý÷½ßû¿ýßþþ¿¿¿ûÿ¿÷ßûÿÿÿÿ¿þ½ÿýûþÿûÿþÿÞ÷ÿïÿÿúÿÿÿïîýÿõÿþÿû÷¿Ýûûûÿû¿ÿ­¿ÿÿ·ÿ{»ëý÷_ïÿþÿÿ¿ÝÿÿîÿÿÝ}oÿÿÿûýîÿßÿõÿ¿¿wýÿoÿÿÿÿ÷¿ÿþõï_ïûÿþýïÿûýïÿßïýÿ¿ûÿÝýÿ{ÿßÿÿþ÷þÿÿ¿ÿßÿÿïë÷Þýýÿ¿ÿ×ÿ¿ÿÿÿßÞÿß¿¿ÿÿÿ{¿÷½ÿÿ_ï¿íÿþÿÿýÿûï×ÿßÿÿÿÿþúÿýýÿÿÛÿÿÞßÿ·ë»Õÿoßßÿÿßÿÿûúÿûûÿÿÿ¿ÿÿvÿßÿ¿ß¾ÿÿÿ·ûÿÿÿ¿÷½ßÿûûÿ÷ýëï}ÿWÿþÛý_ßÿÿ¿ÿý÷÷ÿÿÿÿÿwïû_}ÿ¿÷ÿ}ïÿÿÿÿ}ߺïþûÿÿ÷þÿßÿÿûïw½¿úßýÿÿû»ÿýÿÿÿ¿ûÿÿïõÿ÷ÿ¿ÿÿÿ÷ÿÿÿþûï¿ÿßßÿ{ÿÿßû}ûûýýÿÿÿ¿ÿßýý¿ÿ¿¿öÿÿï}÷ÿÿÿ¿¿ÿÿÿÿß÷ÿÿÿ¿ïÿßûßïÿ»ÿ½ûýþõ÷÷ÿßûÿÿÿÿýÿûÿÿûÿ}ÿï¿¿¿ýßõ{õý¯·ßßýÿÿÿÿÞßÿÿþÿÿoíÿ®ÿÿ[ÿ¿ýßÿÿ¾ïÿ¯ÿßÿûÿÿoÞÿ_ÿÿ^ÿÿÿÿÿúÿÿߺÿÿýûëÿýwÿ¿ýß¿ÿßÿÿ÷Þßÿÿÿ¿þÿï¿ÿïÿÿo÷÷ÿ÷ÿúû¿ÿïÿ÷ßÿúÿÿß_ÿ¿ÿÿÿýÿÿ÷ÿöýþÿ½×ÿÿÿýÿß»ÿÿÿýþûïýýïßýÿÿÿ¯ÿþ¿ïÿÿ¿÷ÿþÿÿû÷Ý»þÿ½zÿÿÿÞÿ÷ëþû×ÿþÿÿïÿÿ÷ÿßÿÛûÿÿÿïÿÛÿÿÿÿúÿýÿÿÿÿwÿöÿû¿ÿÿÿÿ÷¿ÿÿýÿßþ÷ÿÿß÷÷ÿÿîýÿÿû}ïÿïwÿ~ÿßÿ¿ÿû÷ûÿÿïÿûïþõÿÿ÷ÿï×ÿýßÿÿßÿþÿýÿ÷¿ÿýýïÿýßÿþ÷þÿß{ÿýWÿßßûÿÿ÷ÿïï¯ýÿ_÷ÿÿÿÿßÿ߯ýûÿûÿÿß×ÿ÷ïûÿßÿ_÷ÿûëÿßúþûÿÿ÷ÿÿý¿»ý_ÿÿ¿{÷ÿwïûÿ_ÿýÿíßo{ÿý·ûÿûÿÿ}ÿÿýî×ßÿïöïÿÞÿß÷ÿÿýÿÿõïõÿÿÿÿ÷ßÿÿÿïßÿÿíÿ}ÿÿÿoÿ÷ÿÿßÿîï¿ûÿ¿÷ÿûïíûÿÿÿÿ¿¿ÿÿþ÷ÿÿÿþÿ¿¿ÿÿûþû÷{ÿ÷ÿ}ß½ÿÿÿþÿö¿·þÿÿ¿»~ëßëþëýÿÿïýßÿïþßÿ_oëÿ÷ÿÿÿÿÿ÷¿¿ÿßïÿþÿ~ÿÿïýÿÿÿÿý÷÷ÿ¿ÿÿÿþÿûÿþÿÿÿÿÿîíÞö¿ÿÿÿÿÿÿßÿÿÿß÷ÿýÿÿÿÿÚÿßÿ÷ÿ¿½÷Ûÿÿßÿû¿ÿÿÿÿÿûÿÿÿÿÿÿÿÿÿÿßÿÿ÷ûÿþßÿÞ÷ý~ë÷ýÿÿ¿þÿýýïÿþÿïÿûÿÿÿÿÿ¯þïûÿÿý÷îÿþï÷×ïÿÿíÿÿßÿïÿ÷ý¿ýí÷ÿ»ûÿï¿·ÿÿÿûûÿÿÿþö«ïÿ¿ûÿÿßÿÿþïþßÿ×ÿ½ÿ÷¿×¿oÿÿ߯ÿÿÿû÷þ¿ÿÿÿþÿÿÿÿÞÿ×÷ÿÿÿÿ÷Öÿÿÿýëwÿþßßÿkÿÿûÿ¿ýÿ·ÿÿþûûý¿ÿ÷ÿÿûÿýßýÿûÿÿ¾ÿ×ýÿýßÿ÷ÿûÿþýÿÿÿÿÿÿÿß÷ÿÿ÷ÿvÿ÷÷ïýûwûÿý÷ÿÿÿßÿÿ¿ÿßßßÿ¯ïÿÿÛ^¿ÿß¿ÿµïïß½ÿÿÿûïÿ·ÿîûÿÿÿÿÿÿÿïßß×·ÿûþÿ÷ýÿ¿ÿûûÿ÷÷ïïÿ{ûÿ¿ÿÿÿ½õýöÿïÿ¿ÿÿ¿ÿß¿ÿ÷ÿÿû{÷ÿÞßÿÿý»ÿ¿ýÛ»þõý_ÿû¿ïÿýßß÷ÿþÿïÿÿÿÿïýýÿÿÿýï¿Õ÷ÿÿÿÿÿÿýÿÿþÿ¿ÿ÷íÛÿÿëÿw}ý·úÿÿw¿ÿÿwÿïïÿïîÿïïþí¶ÿÿ»ÿ¿ýïßÿýûþûÿÿÿÿý¾×ÿÿÞ÷ÿþÿûÿûj¿÷ÿÿûë·ûß¿ÿ¿ÿÿûÿßûÿÿÿßÿ¿¿ÿýï½ï÷÷¿ÿÿÿÿï¿·½ÛÞÿÿ¿ïÿÿïÿÿÿ÷¿ï÷_ÿÿÿûÿ¿ÿß_ÿ¿ýÿÿïÿÿ½ÿö¿~ÿÿÿÿÿÿÿÿïþýÿßÿþÿÛûþ÷ÿÿÿþ×{ÿÝßÿÿïþ¿ÿÿÿßÛÿÿÿ÷ýûÿÿïýÿÿ÷ÿÿÿÛÿÿ÷ÿûïúÿýý¿ï¿¿¿ÿÿ÷ïÿýÿ÷~ÿÿÿ÷ýûwÿûÿÿÿïÿÿ÷öíÿÿûûîýÿýÿÝÿÿÿþÿï¿ýýïÿýÿþýûÞÿõýßÿ½ÿÛÿÿÿÿíß¿¿û{ûÿïÿýþýÿ¿ÿ~¿ßÿÿÿÿÿÿÿÝÿÿûÿÿûßÝýÿ÷ÿÿßÿßïÿûûÿÿÿ{ÿÿÿÝÿýûÿÿïßÿÿëÿUÿõ¯ÿ_ûÿÿÿ¿ÿßÿÕþßÿoýþ¿Û÷Þÿÿ·ýþÿûÿþÿþúÿÿþ¿ÿ¿ßÿþ½ïë¿þÿÿÿÿïþÿ{ÿÿÿýÿÿÿÿýíýÿþ÷ÿýÿÿïÿ¿ÿûoݯ½ÿûïþÿíÿ¿ûÿÿÿÿßëïýÿïÿÿïÿûÿ{¿ûÿïý÷ûûÿÿÿßÿ¿~ÿ¿ýýÿ÷þîÿÿÿïÿûïïÿÿýÿ¯ýïÿûÿÝÛ÷ßÿ»ÿß¾ÿ»þõÿýïwßÿÿ×÷ú÷ÿßmÿÿÿÿÿß÷ÿýÿÿõõþÿÿÿÿÿ·ÿ¿ýoÿÿÿ÷ÿÿÿÿÞ¿ÿ»ÿÿÿ~ÿß÷ÿÿWÿßïëÿÿÿþýÿßÿýÿýÿÿþÿþÿ÷ÿûÿöÿÿÿþ÷ßÿÿïÿûþÿÿÿÿýû«¯ïï½ÿÿÿ¿ÿÿÿ÷ÿßÿ¿¿ý÷ÿ½ÿ¿¿ýÿÿÿ¯ý÷ÿß_¿ÿ¿ßýÿïþû·ÿÿÝ÷ÿÿÿß_þþÿÿÿ¿ïýÿÿÝÿ÷ÿý¿ÿö·ïÿÿÿïþÿÿýÿû¾ÿÿ½¿ûþþÿÿöÿ¾·ÿÿÿ¿ûÿ}ýÿÿÿÿ}÷ÿßÿÿÿÿ~ÿýwÿÿßûÿÿÿÿßÿûþýþßý¿ÿÿÿýîÿÿÿÿúÿö¿ûÿÿ÷ÿïÿþõý÷¯ÿ»ûÿÿ߶ÿýÿ¿ÿÿëÿÿÿÿÿÿÿ¿ÿÿýþÿÿþÿ¿ÿýÿ]¿ÿÿÿÿ¾ÿ_õÿïÿÿÿÿÿÿ¿ûûßßÿëÿÿÿ¾÷ÿ¿ÿßÿ¿ÿÿÿýÿÿý{úû¿ÿýýÿßúÿÛÿïÿû¿ÿÛÿßÿï¿ÿýÿ»÷ïýýÿÿÿÿÿ¿÷ÿÿÿÿþ÷ßïÿßÿþ¿ß÷ÿÿÿÿûû÷÷ýý¿ûïÿÞÿÿ¿ÿþîÿûïÿÿ×ýÿ¿ÿ·ÿ~ÿÿwÿÞÿ÷ÿ·þûûÿwïÿïûû¿ÿÕþÿíûÿoþÿÿþÿûÿ¿ÿÿÿÿõÿ½ÿÿ÷ýÿÿõÿöÿÿûúÿ÷ÿÿ÷ßÿ÷ÿÿÿÿûÿßþÿÿûÿïïûÿ÷ÿ¿µoÿÿý{ÿþ÷ßÿý÷ïÿÿßßßmïýoÿÿþþ×[ÛßÿZÿÿÿÿ¿ïÿÿÿþûÿÿÿßÿýßÿÿÿ÷ý÷ÿÝêß÷jÿ÷{o{ÿÿõÿÿ·ÿÿÿÿÿïï¿ÿm¾ÿûþßþûÿÿ¿ÿÿÿ¿ïÿÿÿößÿ÷þ÷ÞþþÿÿïÞ¯ïÿÿÿßþ÷ÿûÿýï÷ûÿÿÿÿýÿÿÿÿÿÿûÿÿßÞÿïÿÿÿÿkÿëÿÿÿþ¿ÿÿþßýÝÿ×ÿ¿ïßÿûïßÿÿÿÿûþßÿÿïÝÿ¿¿þý÷ÿ¶ýû׿ÿ÷ûþÿÿÿïÿÿÿßݾÿÿþ÷íÿuÿÿïÿ÷»ï÷ÿ¾ÿÿß¿÷ÿ¿ûûßÿ÷ÿýî¯ÿ~ÿþ»ÿþÿ¿}ÿÿÿ½íÿ÷ÿÿÿÿÿÿûÿÿ~ÿÿÿ¾÷÷·ýû÷ÿßתÿÿÿïïÿ÷wÿ~¿ßÿû¿¿÷¿ïoÿÿïÿýÿýÿß»ÿ»·÷[ÿ·ÿ¿ÿÿ¿ÿÿ×ÿÿ×ÿÿÿÿÿûï·ÿ÷ÿÿýß÷ÿÿÿÿÿÿýÿûþÿßÞþÿÿïþÿÿýz¿ÿ÷ÿÿÿý·®ÿÿoïÿýûÿÿýwÿû_ýýÿßÿýþõûÿï÷ÿûÿÿßïï÷ûÿïÿÿÿ¿ÿþÿÿ¿÷ïÿïý¿½ÿÿ­÷¿«÷íû×ÿï~ÿßÿÿÿ÷ÿý÷¿ï÷ÿÿÿûÿÿÿýÿ¿ßÿï·ÿßÿïÿÿÿuÕÿßÿÿÞ×ÿ÷ÿÿ¿ÿÿ¿þÿ÷þïþ÷ÿÿÿýïÿþß{ÿÿ_ß÷ÿÿ÷ÿÿÿÿïÿ×ÿÿ¾ÿÿÿÿßÛ¿ïýÿÿÿÿ½ÿÛþÿ÷ÿÿûÛýÿÿßûÿ»ÿÿýïÿÿ¿ÿ÷ß·ÿÿÿ»»ÿ_ßÿ{ÿÿ{íÞûÿwûÿßÿÿÿÿßõ¿ÿÿßÿÿ÷÷»ÿýû÷ýoÿÿÿïý¿oúþïÿÿÿÿýÿýþÿÿÿÝïÿßëÿßÿßw}ÿÿßoïß¿mÿýßÿÿõþÿ¿ûÿ}ÿ×»÷ÿÿûÿÿßïïýÿÿý÷÷·þýÿÿîÿïÿÿúÿßoþÿþÿÿÿÿþþÿûÿ·ÿÿÿïÝÿ¿ßïþÿoºÿ÷ÿßÿ¾ÿÿÿwþÿÿÿÿÿ¿ï¿þÿûÿÿÿ__·ÿÿÿÿ÷ÿÿ¿ÿ÷÷ÿÿÿÿÿ×ûÿûþýÿ¿ÿß~ï½}ÿûÿ×ÿÿÿÿûûî÷þÿö¿ÿÿÿoÿÿßÿÿÝïÿ¯ÿýÿÝßÿÿÿÿ¿÷ßÿßÿݺßûÿÿÿ÷ýþ«ÿÿûßÿ÷ÿïö¿þÿÿÿýïýÿÿÿÿýÛ¿ÿþ¿ýÿúÿß÷û¿ûûýúýÿÿþûýþßïÿßþ¿ÿÿÿ÷úÿÛÿ»ÿÿÿöý_ýß×Ûÿûÿþýïûßý÷×ÿÿÿûÿþÿþÿÿÿÿÿûÿÿÿÿÿ×ÿÿÿÿÿÿ÷ÿÿßÿݯÿëÿûÿõÿÝÿõÿÿÿÿïoÿßÿÿß«ÿÿÿÿÿµûÿÿÿýÿûÿÿ¿ÿýÿ×ÿýþûÿÿýÿÿÿúÿÿÿÿÛß¿ÿýý¶ÿï÷þïÿÿ÷ÿÿÿÿÿþ¿ÿ¿ÿÿïûÿ¿_¿ïßÿÿÿ÷þÿÿþÿßþýßûÿÿ»ÿÿÿ¾ßÿÿÿÿÿÿÿ»Ý÷¿ÿÿ~ÿÿßúÿþþ¿ïÿ÷ÿýÿÿÿÿïÿß¿¿ÿ÷ûîÿýÿ¿ÿû¿×¿ïþÿÿÿý¿ý÷û_ÿßýßûþûõÿßÿwý}ÿÿ{ÿÿëÿîÿïÿÿþÿÿÿß~ßÿ{ÿ¿«ÿûýÝ÷Ûîßÿýíîýÿÿýÿïÿÿÿÿÿÿõþÿíÿýûÿûûýÿûïÿ¿ÿÿþ¿ÿÝÿïÿ÷ÿþÿ¿ûþþ«ß÷ÿößÿÿÿÿÿÿk¿þÿ»ÿÿÿÿþÿÿßïÿÿ÷÷ÿ÷ÿÿûWÿÿïýþßÿþÿÿ¿ÿÿÿÿûßÿýÿß_ßÿÿ¿ý¾ÿÿÿ¿¿ÿÿÛý·ÿÿûûïý{ÿÿÿÿWõ}ÿïß{ßíÿÿÿþýÿÞþÛ½ûß÷ý·ÿÿý¿¿÷ÿþ¿¿ý÷ßÿû÷ý¿ÿ÷öýÿÿßÿÿûÛwÿÿÿÿ¿÷ÿ¿ÿîýÿÿÿÿÿþÿÿûÿÿïÿÿßî¿ÿíûýÿÿÿ·ûßÿÿ÷¿ÿÿýþ÷ïÿÞ¿ÿÿþÿûÿúÿÿÿÿý÷ýï½ÿÿÿßÿÛïßýÿÛûþßßw×ß÷ÿûõºÿö÷ýýÿÿ_ÿÿÿþûÿÿÿ÷ÿõßßýþýõÿÿÿÿßÿÿ·÷ýûÿÿþÿÿýÿÿÿ÷¿ÿýÿßú÷ÿÿþ¿ýÿ¿ýßÿþþÿÿÿ¿ï·÷wwÿ¿»ÿîÝ¿¿þÿýÿzûÿý÷_þÿë¿ïõwïÿÿÿÿÿúëÿ··ßÿýoýÿïÿÿÿWþÿ¿ÿÿÿßÛÿûÿþÿÿÛÿÿþþ¿ÿÿÿûÿÿýÛýÿ¿þ¿ÿÿíÿÿÿÿÿ÷ïý÷¿ÿ÷oßÿÿû·_ÿïÿïÿÿûÿû¿ûßÿï¿ßÿÿÿÿýÿÿÿÿïßûÿÿþ¿ÿ¾ûÿßïÛÿÿ{ÿßÿõþúÿÿ÷ï_ÿÿ÷×ïïß÷ýû÷ßÿÿÿßö½^ÿÿÿý{÷þ¿¿ÿoÿßÿÿÿßÿßïÿ÷ÿÿÿÿÿÿûýþ¿ÿþÿïþ¿ÿ~ÿWûÿÿÿÿÿÿþÿÿþÿuû÷¿ï÷ßïýÿÿÿÿÿõýݽõßýÿ÷Ûÿ¿ûÿïþÿßúýÿÞ»}þÿÿýÿÿÿýÿý÷ßÿ÷ïÿÿÿöÿÿÿÿÿÿÿýÿþ¿ÿÿÿýÿþý÷·{uïÿÿ¿÷ï¿ûýßþ¯ÿïïÿÿýÿÿûÿÿßß_÷{ÿþÿûÿ÷ÿÿï¿ï~ÿÿ÷ýîýïÿýýÿÿ·þÿÿÿÞï÷öÿÿÿÿ·ÿÿûÿû÷¯ÿþÿûÿþ½ûíûÿ¯ÿûÿÿîÿû÷ûûÿÿ¿ß½ÿ×÷öÿýÿûÿÿÿûÿ¿ÿýûßÿ¯ûÿÿûÿÿÿÿïuÛÿýþÿÿýÿ×ßÿÿÿß÷¿ûÿ¿þßÿßo×ýÿýÿÿûíúÿïÿûþßûÿ¿ÿýmþÿïÿûÿÿÿÿÿûÚ»ÿÿ¿ÿÿÿ}ÿÿÿýöýÿÿÿÿÿÿÿï÷ýÿÿßkîûÿýýÿÿßÿÿ÷þýû÷ûûßÿîþßïÿÿßþÿÿÿÿïÿ÷ý_ÿ÷Þßÿ¿¯{ßïÿÿÿïï~ÿûÿÿ¿ûÿß÷ÿÿúþÿÿÿûþÿ¿~÷¶ýÿÿýûßÿÿ·ïýßÿÿ·ÿû÷ûÿ}ÿÿÿÿÿÿÿÿÿýÿ¯ßÿýÿÿþÿo÷ïÿÛÿÿÿÿ·¿ÿÿÿÞÿÿÿ÷¿ÿÿÿÿoýû¿ÿÿ÷îûûîþÿïÿÿÿûÿÿ÷ÿíÿ{ÿÛÿÿûÿïÿÿÿ·ÿÿûÿÿÿÿÿÿÿÿ÷ÿûÿ¿×ûßÿû}îïÿÿÿßÛÿÞÿÿÿûýÿï·ÿÿÿýþÿÿÛÿûïî¿ïÿûÿûÿÿ¿ßÿÿ»ÿÿÿ¯ïÿÿ÷ýßï¿ÿÿÿ¿ýÿýÿëþûïÿÿïïÿõþýÿÿÿÿï¿ýþÿÛïÿÿÿÿïÿÿÿþÿ·ÿ¿ÿÿÿÿþÿþÿ×ÿûûÿÿÝ_ëûÿÿÿÛûÿÿÿÿÿ÷ÿ½û÷ßÿ÷_û÷{½ÿÿ÷ï÷ëÿÿÿ¿ïÿÿï}ßÛÿÿûÿÿÿ÷õþõÿýÿýWÿÝßÿþÿþÿÿþÿÿ÷ÿÿÿÿõ^ÿûïÿÿýïÿ¿ÿÿ÷ýÿÿ÷úÿ÷wÿî½w¿ºýÿÿÿÿÝþÿýÿþï·ÿÿÿÿ¿ÿýûÿÿ÷ÿÿ÷¿þÿ]ÿÿÿÿÿûÿÿÿÿûwþûûÿÿÿýÿýþ¿÷ÿÿÿïÿÿÿÿöÿ~ÿÛÕ¿ï¿ýÿoö½ßýïûþÿÿÿÿ»_þÿÿÿï÷ÿ»ÿÿ¿¶ïþÿßÿÝÿ¿ßßÿþý¿½®þýîúßþþÿÿÿÿ÷ÿÿï÷ÿû~þÿÿ÷þÿÿÿÿûï÷÷þ¿ÿÿÿ~¿ï÷ÿÿÿÿÿ~ÿ÷ÿÿÿ¿ÿÿÞÿõÿÿÿoÿÞÿ÷¿ßïý÷ÿÿÿoÿÿõÿïÿ·÷ÿÿÿÿwÿ·ÿÿ~ÿÿïÿÿûþÿþÿÿûþÿýÿÿÿÿÿ¿ÿÿÿÿÿßÿßýïþÿÿßÿÿÿÿß»¯·÷ö½öý¿~¯¿û¿¾÷wïÿÿÿÿÿÿßÕÿÝÿí¿ÿßßÿûûß÷ÿ¯Þß»÷ÿÿÿÿß÷ýû÷ÿÿÿÿÿ»ÿï¿ÿýÿ÷û¾¿÷ûzýÿúÿ׿¿ÿ÷ÿ÷ÿßÿûþÿ¯û¯Ûýïoïûÿÿïÿÿ¿Ýoÿß×÷÷÷þþÿÿÿÿïï¿ÿ÷ÿþß÷ÿÿÿ»þÿÿï~¾ÿÿï÷ßß_ÿµÿÿýÞýÿÿÿÿÿÿÿÿïßýwWþïÿÿÿßûÿßÿÿïÿþÿÿúú½Ýÿýßÿÿÿýû÷~ÿÿû}½õ¿ÿ÷ëïÿÿÿÿÿÿß÷ï÷½þ¿¯îÿÿ÷þßþ¿»÷ÿÿÿÿÿÿÿï¿ÿÿÿ¿þÞ¿×Wÿ»ÿ÷þÿÿÿ¿ÿoÿÿ¿ÿÿ¿ÿÿû·ý~ÿÿ¿ï÷¿ýý÷ßÿ÷¿ÿûÿÿýÿÿþÞÿÿ½ÿþ÷ÿÿëûÿÿoÿÿÿÿ½ÿ¿þÿßoõíÿÿÿýûÿÿï¯ÿÿÿßßïÿßÿÿûÿßï÷ÿÿ}ÿïÿÿÿÿþý¿ÿïßÿ÷z÷ÿÿÿÿÿ]÷îßÿÿûïÿÿíýÿÿÿíÝû»ÿ÷ûÿû¿ß÷ßÿû¿ÿîýÿÿÿÿÿÿÿÿ¿ÿ¿ûþÿÞûëþ«~ûÿÿÿÿÿëý~ÿ¿×÷ÿ¿ýÿÿîÿÿÿ¿ÿÿÿöÿÛ÷ûÿýÿÿþûþÿÿ¿ÿÿïíÿÿÿÿÿoï­÷ÿÿï¿ÿïÿÿÿÿÿûúïýÿûÿþÿïÿïÿÿÿÿ÷ëëÿÿÿõõÿïÿÿý½ßþÿÿûûÿÿýßíÿÿ׿ïÿÿÿÿïVÿÿ¾ÿÿþ¿ßÿÿ}þÿû÷ÿÿÛÿ÷¿ýÿÿwÿ¿þ¿ÿÿï׿ÿÿ{¯ÿÿöÿÝýßÿÝÿýïßÞï·ÿÿÿýÿûýï½ÿÿöÿúÿÿûïîßÿ~þÿöÿÿÿÿßÿÿÿßï¿ÿÿýÿýîýþÿïÿþûï~ÿÿÿ·¿ßï×½ÿÿßþ÷ÿîÿÿÿÿþÿÿûïÿúÿÿö¿ßï÷ÿÿÿÿ¶ÿÿïÿÿÿÿÿßûþßÿûÿÿÿßûÿ¿ÿÿîÿíþÿÿÿß¿õþÿÿß¾Ûýýÿÿ÷ÿ×ÿûÿÿÿÿÿÿÿÿÿÿÿÿßßý¿ÿúûïÿ¿ûÿÿÿÿýÿý¿Þÿÿÿ÷¯ÿýï¿ÿïëÿïÿÿ¿þ»õÿÿýÿÿÿÿÿÿÿÿïßÿýíî·ÿÿí¿û_ßÿÿíÿÿÞÿî÷ëßþ·ÿ÷úþßÿÿíÿÿûïÿWïþïÿÿÿÿÝÿÿþ¿ßÿÿÿ­ÿûÿÚûû¿}ÿÿÿ¿ÿÿï¿÷¿ÿ·ÿÿÿÿÿ}ïûûý~ÿý¿wýÿÿÿßÿ÷ýÿ¯ÿ¿¿ûÿßþß¾ÿ¯×¿ÿýßþîÿûÿ¯¿ÿÿþýÿûýÿÿÛûkÿÿÿ÷ÿÝïþþïÿÛÚÿ×ÿÿÿÿþÝÿºï÷jöÿÿÿÿºßÿ÷ïÿûÞýýÿÿÿÿÖßÿÿÿÿÿûûk¿ÿûíÿÿýÿþþþþþûíûÿÿÿ÷ÿÿÿ¯ßý¾¿ïÿ·ÿÿ»ýÿÿþßÿÿýÿÿý¿ÿïÿÿþýþ¿÷þßÿûÖÿÿÿÿëÿ÷ÿýuÿ½ÿîý÷ÿßÿÿ¿þ÷ÿ¿ÿÿÿÿÿûÿõÝíµÿÝÿÿûßÿÿßÿþþºúÿߺÿ÷ÿÿÿÿÿuvþ÷ýÿÿÝþÿ÷ïûÿþßÛÿÿ÷÷ÿ÷ßßÿÿûþíÿÿ÷ÿßýï÷ëwÿÿïÿÿÿïw¾þ÷þïûÿÿÿÿþÿÿÿßÿÿÿþÿÿïÿ÷ýÿÿÿÿßûÿÿ¿ß{÷ÿ¾÷Ûÿÿÿßýû}÷ÿ}ÿÿïÿ¿{ï{ß¿þ¾ï÷÷ÿþÿÛïÿþûþÿû¿ÿûÿûýÿþÿÿïý¿þÿÿïûÿÿÿ¿÷ûÿÿÿß÷õÿ}þÿÿïmoþÿÿ½ÿÿÿïÿÿÿõûûÿ÷ÿýÿïþþÿÿïþÿû¿ßý½ëwÿÿ½ÿ·ïÿÿmÿÿÿÿÞÿÛ{ÿûß}ï÷ý»ÿþßûößû¯ßÿþµßoÿ»¿ÿýÿÿÿïïëþÿÿÿÿîÿíÿÿ÷ÿÿÿßýþ÷oÿïýÿþ×ÿþÿÿÿÿÿÿïÿÿýÿÿÿÿïÿûûÿÿ÷~ïÿþßÿïßýÿï÷¾»ÿßÿÿÿÿûÿÿÿ÷ÿÿÿÿÿÿ÷ïýÿþíÿÿ÷ÿÿÿý÷ûÿÿß{ÿÿ׿ÿïýÿÿõ¿ÿÿýÿÿÿÿ_ïÿÿÿÿþïþÿÿþíÿÿÿÿÿÿûÿÿÝ»ÿÿ¯ÿÿÿÿÝÿß¿þþëÿßÿï}ÿÿÿÿ·þý¿¯ÿßÝ·÷ÿÿ~÷ÿ¿ÿÿ¾ÿÿúÿÿß¿¿ÿÿïÿÿÿÿû¿ÿêÿßÿÿýÿíÿÿÿßÿÿÿûõ[ÿÿïÿÿÿÿûÿú÷»ÿÿÿÿ¯þïÿÿÿûßoÿ}ûïÿý{ÿ{ÿ÷¾½ßû÷×þõ÷ÿ¾ÿïûßïï¾ûÿÿ÷ÿoî¿ÿ÷ûÿû~ÿß¿ÿßßþ½¿ýÿÿ÷ûß÷ÿûÿ÷ïÿÿ÷ÿ¿÷ÿïÿÿýÿ÷ïÿõßÿÿßÿÿÿßÿÿÿ}ý_öþõÿûÿÿÿßÿÿÿÿî¿ÿÿþýýýÿÿÿÿÿÿÿÿ·ÿý¿ýûýÿïÿïoþÿÿÿûÿÿÿÿÿïÿ÷ßÿû]ûßÿ¿ÿûþ÷ïÿÿÛýÿÿû×·ÿÿßýÿïýÿÿûÿÿÿÿ¿ÿÿÿ÷ÿÿÿ÷ÿÿ÷¿ßûÿ÷}þÿþÿýßÿÿ½îÿýïþÿÿuÝÿÿ_¿ÿÿoßÿÿÿÿß÷îÿÿÿÿúÿÿÿïõöûÿû¿½ïþÿÿÿÿÿýÿïÿëý_ýo{ÿÿÿïÿÿÿÿÿú÷{¿ÿÛÿý¿ÿöÿûÿÿÿÿûÿÿþÿõÿýÿ÷{~ßïûïÿÿÿïÿÿÿÿÿïßÿÛÿwÿ¿ýÿÿûÿÿÿÿïßÿÿúßýßÿ¯ÿÿû¿¿ÿ·ÿÿuÿ÷ÿÿïýý«ÿ÷ÿ_íïwÿÿ÷ÿûÿ÷ÿ¿ÿ¿ïõÿÿ{ÿÿýÿßoÿÿÿïÿþßþ÷ÿÿö÷»ÿ·ÿwïûÿß·ÿï½ÿÿÿ÷·ÿÿÿï÷÷Ýÿÿïí»ûÿÿÿÿÿþïÿÿÿÿõÿÿ¿ÿÿÿû¿ßý}ÿÿÿ_ïï}ÿ÷ÿÿûÿÿÿßÿß÷ÿÿÿÿ¿ÿýûþëþÿëûûÿÿoÿÿÿþï~ßÿ÷¾ÿÿýÿÿÿ_ÿÿÿïÿýîÿÿÞ÷¯ßýýÿÿïý¯ïßûÿþÿ½ÿÿÿÿïÿÿîþï÷÷ÿ÷ÿÿûÿ÷ÿÿïþïöÿþÿÿ¿ïÖßÿýÿíïÿþÿÿþþÿ÷ÿ¿ÿûÿý¯ûÿÿÿþÿý¿¿ýß~½ÿöþÿÿÿûÿÿ÷ÿÿÿÿÿßÿïÿ÷ÿþÿÿûÿÿÿÿÿºÿþ÷ÿ÷ïÿÿÿÿûÿÿÿÿûíÿ÷¿þÿ×ÿÿÿýÿïþïþïþû÷ûÞÿÿÿwÿ÷ÿoÿÿ×Þïÿÿýÿÿþýÿþÿßÿ¿ÿ÷þÿÿÿþûúÿÿoßÝÿ÷ÿÿþÿÿÿßýýo÷ÿÛïÿ½ÿûÿÿëÿÿÿßÿÿ÷ÿÿ¿×ÿÿ¿ÿÿÿÿßÿÿûÿß¿×þïýÿßÿïÿ_ßëýÿÿýïÿ÷ÿûnÿÿÿÿÿÿýÿþÿûÿÿ}ÿ÷oÿþÞþÿ÷ÿÿ÷ï÷ÿûöþÿÿû¶õ}ÿ¿ûïÿ{ÿýÿÿÿþûÿÿÿÿïÿÿÿþÝ÷þÿÿÿÿ÷ûÿûÿÿû¯ïþÿï·ÿÿÿÿï~þßÿÿ¯ÿÿ÷ÿÿö¿}Úÿÿÿßÿïïÿ¿¿ÿïïÿûÿÿÿ¿ûýëÿ÷ÿÝýÿß¿ÿ·þÿþÿÿÿÿîÿÿïÿÿÿÿÿ_ÿÿÿÿÿÿýýþýÿÿÿÿÿ÷o{¿þÿÿýÿÿßßÿÿþÿûÿÿßîû÷úÛ{ýÿÿÿïýÿÿýÿ÷Õû¿ÿÿþÿÿýÿÿßýÿÿÿÿÿÿÿÿÿÿ÷öÿÿûÿÿûÿ~ÿßÿÿÿÿÿÿÿÿÿÿëþýÿ¾ÿÿÿöÿÿûÿÛ¿ÿ~ÿ~ÿÿ¿ÿÿ½¾ÿÿÿÛ»oÿßÿýÿýÿ~ýÿÿÿÞÿÿÿÿöß÷ýÿþÿ_îÿ}¿ýÿïßÿßÿÿ¿õýÿÿÞ÷ÿ{ïÿïÿïÿÿï}ÿþýÿÿþýÿþÿÿÿÿÿïÿëßßÿ¿ÿÿþÿÿÿ_ÿÿ¿ÿÿßë¯ïÿÿöýÿþ¯þÿÿÿÿûÿ»ÿÿÿÿîûÿÿÝÿÿÿ~û÷ÿûï{ÿÿÿïßÿÿÿÿßýþýÿÿÿÿ¿þþÿÿûÿïÿö×ÿÿÿïû½þßßÿÿëþÿÿÿßïÿÿÿÿ}¿ÿþïÿÿÿßýýÿÿ÷ÿ÷ÿ}÷ßÿÛÿÿßÿÿÿÿÿÿûÿ·ÿÿÿÿ×Þÿÿûÿÿÿ~ÿ¿íß_þÿß®ÿÿïÿÿ÷ÿ¿Ûýÿýûÿÿïþ½wû{ÿÿþÿÿ÷ÿÿþ÷ÿÿÿßýÿßÿÿûÿïÿoÿÿßÿÿÿÿÿýÿ÷ýõÿï÷Ûûÿÿÿýÿ÷ëýÿÿþ¿ûïþ¿ïÿÿ¿·ÿ~ßÿþÿþß®÷ÿßÿöûÿ~ß÷ý_ï×ýïþÿÿ÷ïúÿ÷¿ww¿õ÷ÿ÷{ÿÿ¿ÿþÿ¿ÿõßÿûÿÿÿÿû·ÿ÷ßÿ¿¿ÿöûÿÿ¿Öÿÿÿÿ¿ÿúû÷ÿÿ¿ÿ¿÷ÿ_ÿ¿ÿþÿÿÿ÷þïÿÿÿöß×÷_ÿÿ~ÿûÿþþÿþ¿½÷ÿ^ÿÿ^ÿ÷wÞ·ÿýþûû{÷ß·÷ÿÿï÷þÿ÷ÿ¿ÿÿ{¿ïûÿÿÝ¿þïÿ}ýÿßÿþÿýûþÿ¿oÿïûÿýÿ¿ûÿ¿[ï¯ÿÿýÿ}ÿÿûÿþß÷ÿ÷ûÿÛÿ÷wÿßÿýÿÿÿÿÿ¿ÿýÿÿÿßþûÿëþÿþ¿ÿûÿÿÿíí÷¿ÿÿß×ÿ÷ï¿ÿýÿÿýÿÿÿýÿþ÷ïÿÿ÷ÿûÿûþÿÿßÿûßÿýÿÿÿßÿ¾ýÝÿÿÿÿÿÿýö÷Ýÿÿÿÿÿÿý¯ÿ÷ÿÿ½ÿwïþßÿÿ×þ÷ÿÿÿÿõßûÿ¿ûÿÿûÿûïïýÿþÿúÿûûýÿíÿ~Ýïÿÿ¿ûÿÿûÿÿÿÿ»ÿÿßßÿÿþ»ÿïÿÿßÿëßÿýÿÿßÿ_ýÿÞûÿÿïûÿÿßÿÿÿÿ÷Õÿöÿûïÿ¿ÿÿÿmíÿýßÿßÿÿ}ÿ÷o÷ûßïûoÿÿÿ¿ÿ]¿¿ßß÷ÿýÿêÿ·]þÿÿ¿ÿÿûïï_ÿÿÿûïßÿßß÷¿ÿ÷ÿïý÷ßýÿÿÿÿÿÿÿßÿ÷ë÷ÿß¿ÿöÿß{ÿßÿÿÿýþÿ{ýßúÿÝÿ¿ÿïý¿ïÿ÷ûÿûÿÿÿþ¿ÿÿÿÿ×ïÿþ¿ÿÿÿÿû÷úÿÿÿ÷ýÿß½Ûïÿ»ÿÿß½ïû÷ÿÿïÿûýûÿÿïýþýß¿þÿÿ¿ÿÚ·ÿÿÿûÿþÿÿýßÿûÿÿ{ÿÿÿû­ÿÿöÿßÿÿÿµï¿ïý½÷ÿÿÿ·wßþ¯ÿëÿÿïÝÿÿÿßÿþÿýÿ{ÿõýÿÿÿíÿÿ÷ÿþ÷Ûÿ÷ßÿ¿ÿ~ßÿ÷ßßÿÿÿõÿöÿýÿß÷ïÿïÿÿÿßîßÿÿÿíÿÛ¿ÿ÷þë­}ÿ¯{ÿÿÿÿûÿÿ½ÿÿûý¿»ïý¿ÿÿß¿ûÝï¿ÿÿÿþÿÿÿÿýÿßÿÿÿÿíoÿÿÿýÿÿûþûÿ_ÿþïß½ýþÿ»¿÷Þÿok½ÿöý÷ÿû¿ß¿ÿõÿÿ·¿ÿÿÿÿÿïÿÿÿW÷ÿÞÿÿýºõÿ¿ÿÿÿ÷ëÿûÿÿëÿÿÿûþÿÿ¿û÷Ûýýÿÿÿÿïÿ¿ÿÿÿÿÿwÿ·ÿïÿÿ¿ýîÿûÿÿÿo»ÿÿ·ÿÞÿÿýÿÿÿoß¿þýþþÿ_ÿÿÿ÷¿ÿþßïÿ¿¿»ÿ÷oëûÿýÿÿþºýÿÿÿý¿ÿï·ÿ_þûÿýÿßÿÿÿõûþÿïÿþýÿûÿ÷þûÿoß¿ÿÿïýûÿïÿýÿÿßoÿÿþ«ýÿÿïÿÿ÷ïÿÿ~ïþþ×ÿÿþß}ÿÿû¯ß{ïýÿ÷ßýï¿¿}¿ïÿßßÿßÛ÷íwþÿïþÿïÿÿýúÿûÿÿÿÿ¿ûÿÿÿïÿ¯·ÿzÿý×ÿßÿÿ]÷ÿnÿß¿ûíÿkýÿÿÿÿÿîÿ÷ÿÿ¾ß·ÿõ¿ÿÿÿÿwÿÿß¿ïÿÿûýÿ·ÿÿßïÿ÷ÿ{ÿ÷ïßÿÿßÿïýÿÿ÷ýýöÿûÿ¯þÿÿÿÿßÿÿû}ÿïýÿ¿ÿÿëëÿÿÿÿÿÿÞûý~ßÿïûÞ÷ÿëÿÿÿÿþõÿ¿ëÿÿ_ÿÿÿÿÿë}ÿ×ûÿÿýoÿõÿûÿÿÿï¿ûÿßÿýþÿÿÿÿÿÿ[ïþûÿÿ÷ûÿÿÿÿûëoÿ¿ßo÷ÿßßÿ_íþÿ·ÿÿ¿÷ÝÖ÷ÿþýïÿ^ïÿÿÿÿþÿûÿïÿÿïúÿ÷ïÿþïÿÿïÿÿÿÿÿýÿïë¿¿ÿþÿßÿûþ÷ÿÿÿÿÿÿþ¿ÿÿîÿ¿ÿÿ÷[ÿwÿïß¿þ¿ïÿþßþ÷_ÿï¿ÿ÷÷÷ÿÿ¿ÿÿÿÿÿÿºÿþï÷ÿ÷ý[ÿÿ¿ßýþÿÿû÷úÿûÿÿßÿÿÿ}÷÷ÿÿÿÿÿÿ¾ßÿ®Ûÿÿöÿÿÿÿ·ÿ÷ÿ÷ÿÿïÿý÷¿ÿß¿Ûÿÿ÷¿ÿÿÿÿ¿ýßßûý¿ÿÿÿÿÿ~ûßÿ¿ÿÿ÷ÿúÿ÷ß÷¿~Ûöÿÿþõõÿÿwÿÿÿß×ÿÿÿÿÿÿÿßßÿÿ÷ý÷ÿßï÷ûû÷_÷ýÿÿý¾ÿÿÿÿý¿ÿßÛÿÝÿÿÿÿý¿ßýþÿÿïýïÿÿûïÿÿÿ÷ïÿÿÚûÿÿîïÿýÿ¿ÿ»ßÿßýßÿÛ·÷ÿýÿ÷ÿÿýÿÿÿ÷ÿ·ßÿÿýöýÿÿÿÿßßÿÿþÿ½ÿ÷ÿÿÿß÷ýÿÿzÛÿöÿÿÿÿïÿÿ÷ÿþÿ÷ûw{ÿÿþÿ¿ÿößïÿÿÿ®¿þÛÿ~ÿÛ_Ýÿ~þý½ÿÿÝïÿÿý}·ÿ÷ýÿþßÿï¯ßÿ¿¯ÿÿýÿÿÿÿßÿßëÿýß·{ÿþÿÿ¾ÿÿ÷ûßýÿßÿûúÿÿßïß¿ÿ÷ïÞÿÿÿþ×ßþÿÿÿïv¿ÿï¿ÿoýþ÷ÿíÿßûßÿ¿ÿßÿ¿ÿïÿÿÿÿÿwßÿÿÿÿûïÿïÿÿÿí÷ÿ¿ýÿïÿÿïÿû»Ýëÿ÷ÿýÿÿ~ÿÿÿýÿÿ¾¿÷ÿþþþÿÿßïÿÿ¿ÿ÷ßÿoÿÿÿûýÿ÷ÿÿ÷ÝýûÿßþÿýÿÿÿÿÿÿõÿïíýÿëÿÿÿïÛÿïÿ¿ÿú÷ûÿÿÿÿÿÿwÿßÿïÿûÿïÿÿ¿ÿ¯ÿßýÿïÿýõþõúÿúÿ÷ÿÿÿß¿÷ÿþ÷û~ß÷ûÿÿÿÿß¿_¿÷ÿÿÿÿÿÿï_ÿw¿ÿïëÿÿÿÿÿÿµÛþúÿÖÿÿýûÿõ·ÿÝïÿÿ_}ÿþ¿ûýû~ÿÿ¿ÿûÿþÿïûïÕëßõÿÿ÷ÿïÿýÿ÷ÿý¿ÿÿuÿúÿÿ÷ýÿÿzýÞýÿþÿûwîÿ[ÿÿïÿþ¿ÿ_íÿïÿûÿÿ·ÿÿÿ¿þÛÿÝûÿïÿÿíûïïÿßýÿÿÿ÷ÿÿÿßÿßÿ¯ÿþ¿ý÷¿ÿ¿¿ûÿïÿÿÿÿÿ»ÿ¿ßï¿×ÿÿÿýÿ½÷ï¿ÿÿÿ¯{ÿÿ¿íßÿÿ¯oý¿Ýïß÷÷ÿþÿÿþÿý½Ýÿýÿ×ÿÿÿÞÛÿý¿ïÿÿÿÿÿÿo÷ÿÿßÿïïÿÿ¿öÿïÿÿÿï÷ÿÝûþÿÿ÷ÿÿû÷ÿßýÿÿ{ÿûïÿÿÿÿÿûÿÿÿß÷ÿÿÿïûýÿÿÿ÷Ý÷ÿÿÿûÿÿ¿wÿ_×ïû_ýÿ{oÿûÿîÿÿíÿÿÿßî¿íÿ¿ýÿÿÿûû·ÿûÿï¿}ÿÿÿþÿÿÿ÷ÿÿßûÿú¾ßûÿÿÿþý½míþ÷ûÿÿÿÿÿÿ¿»ý·oöÿ½_ûÿïÿ¿ÿûÿþïïûÿß»ÿûÿÿÿÿÿ÷[ÿý¿ï»v÷¯ÿÿûÛ÷ýïÿÿûwû¿{ÿÿþÿÿÿýÿû¿ÿëï¿ßÿûÿ÷ÿÿÿÿÿöûÿõ¿ÿ{~ûÿßïÿ¿úÿïÿÿÿþß÷oÿïÿû÷÷ßï_ûÿßÿýß÷ý_þÿÿÿÿýÿýßý¿ößþþÿuþÿ»ÿûwÿÿ¿ÿÿ¯¯ÿÿÞÿýïwëýïýÖÿÿÿÿûûþû÷û»ÿwÿÿÿÿÿûÿß»ûÿÿÿÿÿþíþí~ÿëýÿ¿ÿí­¿ïwÿöÿïÿÿ¿ßÿÿÿÿßÿÿ¿ÿßÿíß¿þîÿïßÿÛz¾ÿ®ÿÿÿ×÷mÿÿÿÿÿÿýÿ¿ÿ¯ÿÿÿïß÷¿ÿîþþÿõ׿ÿÝÿÿÿÿÿßÿ}¿ý߯ÿÿ¿ÿÿÿ¶ÿ½ÿÿÿþÿ·ÿïÿÿí÷{÷þ÷kÿÿþÿþ÷ÿÿÿÿÿ÷ûûþ÷ÿÿû{ûÿÿÿwÿ}Õßýþÿßÿÿýßÿïÿ¿ûÿÿþÿ{ïÿÿëýÿÿ÷ÿÿÿßëÿÿîû¿ïÿÿÿÿÛÞßÿ÷ÿßÿ·ÿÿûÿ÷ÿÿÿÿÿÿß}þÿuÿ÷ÿÿþß»þÿÿÿ_½ï·¿ýßÿÞýýÿßÿÿÿÿýï÷ûÿ÷ûÿÿÿwþßûÿþÿÿÿ÷ÿÿÿû­ÿïÿÛ÷ÿï÷ÿ{½ÿïßwÿÿþÿßÿëÿÿÿ¿ÿ¯Ýþýþÿÿßþûÿÿÿÿwýÿ÷ß×ÿöÿßÿÿÿïÿÿÿþÿÿÿßÿÿÿïÿþÿÿÿÿÿÿÿÿû¿íýÿÿöÿ÷ÿ÷ÿßÿÿÿ÷¿ÿ÷Þ÷ÿïÿÿï»ÿÕÿÿýÿ¿ÿÿ¿ÿ¿ÿÿú¿¿ýÿþÿÿßûý¿ÿßýÿ÷ïÿ÷÷íÿ÷ÿÿÿ÷_ÿÿÿÿÿþ»ÿ¯ÿÿ¿ßþÿÿë÷úÿwÿÿíïýëÿmÿû¿ÿý÷ÿÿïÿß×ÿÿoÿÿÿÿÿßþÿíÿÿÿ÷ÿ÷½öþíÿþþ÷ÿÿÿÿû«ÿÿßï÷÷¿ÿÿÿþÿÿ¿w×ÿÿÿ¿ÿïþÿÿþ÷÷ßÛÿÿ}ÿÿþßÿÿÿÿïÿÿýÿÿÿÿþÿÝûïzïÿ¿ÿûÿû{Ý÷ûûÿ÷ÿÿþÿ]ÿ÷÷ÿïÿýÿÿÿýý«íÿïÿþ½ÿÿþÿûíÿÛ¿ÿÿý÷ÿ½ÿÿÿýíÿ÷þÿëÿßÿïÿÿÿ÷ÿû~ëÿÿ¿ÿöÿ}ÿûûÿ¾ÿÿïþßþÿ¯ÿû¿ÿ½öýßßÿïþ½ÿÿûÿÿýÿÿÿï¿ßý½Ýõÿÿÿ¿þ¿ÿýÿ¿ÿÿ¿ÿÿíþþÿÿÿþÿ½ÿÿûÿÿÿÿý÷ÿÿÿÿÿÿÿÿÝÿÿÿÿïÿßþýÿîÿûß»þÿþÿï÷÷ûÿ¿þÿÿÿÿú¿ÿÿÿÿÿ÷þ÷ÿÿÿÿÿûïÿÿÿßÿßÿ¿ÿýýÿÿ¿ÿÿÿï·ÿûÿýwþÿïÝö¿¿ýýßûö÷ÿÿßÿÿïÿÿ÷ßwÿÿÿþûïÿïý÷ÿíÿÿÿßÿïÿþ÷ÿÿß÷÷ÿÿ~÷Ýÿûûÿ¿ÿÿÿïþÿï¿ÿ¿ÿÿÿï¿ÿ~÷}¿ï}ÿÿûßÿõÿÝmß¿}ÿÿ¾ÿÿÿÿÿÿÿþÿûë¾ÿïïïÿýÿ÷õëÿÝïÿïÿßïíÿ¿ýÿÿþþÿÿýýïÿÿÿíÿÿ¿ýÿÿ~»ÿ×ÿwÿþÿÿÿÿÿýÿ÷ßýÿÿ¿îÿÝÿ÷ÿÿÿö¾ïÿ»ÿÿÿÿÿÿþýÿÿÿê¾ÿ¾ïÿ÷÷ÿÿûûÿûýßÿ»ÿÿ}í¿ûýïýýÿ÷ÿ¿¿ÿ_ÿöëÿÿïÿÿÿÿWï÷ÿ÷ÿÿ÷÷ÿ÷÷þÿßïïÿÿ÷þÿûÿÿÿÿÿ¿÷wÿÿþÿÿõßÿ¿÷¿ïÿ¿ÿÿýÿýÿûÕÿÿýûßÿÿÿ¿ïÿÿÿßïýýþÿÿ_ûýÿÿÿÿýÿÿ÷ë®ßÿÿÿÿÿÿïßÿïÿÿ~ÿïÿ÷ïÿÿÛÿÿuïï¿ÿÿÿÿÿÿÿÿÿ÷ÿ¾ßÿïÿýíÿ÷ÿWÿûûýÿûÿýöýýÿýÛÿû[ÿÿÿßÿÿ¿ÿ÷þÿÿwÿßïßÝïÿÿýÿÿÿÿo¿þÿÿÿýÛÿÿÿÿÿÿßÿÝÿÿßïÿÿ¿ûÝÿ÷÷ûn÷ÿÿþßöÿÿ¿ÿûÿ÷ýïÿýÿÛ¿ýßÿúÿÿÿÿÿûýï÷÷~ÿÿþýûÞÿÿ{÷ÿßûÿÿÿßß{ÿÿßÿýïÿõþîýºß¿ÿ¿ÿ÷¿ýÿÿ»ßûÿÿÿÿÿ]½ý¿mÿÿÿÿýÿÿ¯ÿÿ¯ÿý÷ûÿþßÿ_ÿ÷ÿ÷wï÷ÿÿ×ï׿ÿßooßÿþûûÿíÿÿûÿ}»ïïÿÿ÷î÷ÿÿûýÿÿþÿïÿÿúÿß»ÿ¿ÿ»þÞßÿ÷½÷ÿ÷¿ýÿÿþÿÿÿÿÿßÿ^¿ÿÿþ¿¾ÿßÿßïþÿ÷ßÿÿÿÿ~ÿÿÛ÷÷zß÷ÿþý¯~ÿþÿþÿÿ¿ýÿÿïÿÿöý¿u÷¿ÿýýýÿÿÿ¿ýÝïï¿ßÿÿþïÿÿÿÿïÿß¿ÿÿïÿý»ïÿ¿ÞÞ»ÿÿ]ÿßïûïÿþõÿûoïÿûûÿ¿ûÿÿÿïîÿÿþÿÿý÷ïÿ¿þ÷½ÿÿÿ~ÿÿß÷úûÿÿÿïþûÿÿ{ÿúÿÿÿþÿÝÿ÷ÿÿÿÿûýÿûýû¿ÿÿöÿÿÿýþÿ}_w¿ûÿÿÿ¿~ÿ¿ÿ~ÿþ½ÿÝúÿÿû¿ßÿÿÿ¯ßÿ÷ï{ÿÿï~ÿÿ÷ûÿÿÿÿ¿ÿÿÞß¿ÿ÷ßû·ÿÿÿýÿ÷ýÿïÿÿÿÿÿ÷ÿ÷oßÿëýÿÿûÿýÿÿßßÿÿíýoîþ׿ý¯ýÿ_ÿÿ¿ÿýÿÿûßÿû¿ûÿû·¾ïýýÿÿÿ^¿}ÿÿÿûëÿÿÿþÿÞÿïïÝÿûûÿýÿïÿ÷¿ÿoÿÿßï÷ÿÿÛnßþÿÿÿ¿ÿÿþÿÿÿÿû»·ûþûÕÿþÿÿÿíÿ÷ÿÿwþÿþßßÿÿ¿ýÿßïû¿þïÿû÷ÿÿþÿÿ¿ÿÿÿÿÿÿÿßöß~ÿ¿¿ï¿ï÷ÿwÿÿÿ¿ÿ߯öÿÿþÿïþÿ_ÿÿïÿÿ¿ßwÿûÿßÿÿÿû¿¾ßûÿÿÿ{ÿÿÿÿÿÿoßÿÿ÷ÿþïÿ¾¿~¿ÿïûï¯÷߯÷÷÷~úßÿÿúýÿ¿ÿÿkþÿþýÿÿþÿßÿý﾿ÿWÿÿ÷ßÿîïÿßßÿÿÿ÷ÿí÷ÿï{ÿëïþúÿû÷÷ÿÿÿ×÷ý÷öÿÿúÿýýÿþþÿÿÿ¿ÿßûëÿÿýßÿ÷ÿÿÿÿÿ½ÿþ÷ÿoïïû÷ÿßûÿþÛýÿ¿öþÿÿ÷ÿûÿÿßÿÿÿÿÿÿúýÿÿýÿï~ïþÿÿûÿ_ßýþþÿÿýýûÞ¿úõÿ_ÿÿÞÿÿßÿþíÿïÿÿÿÿûû»ÿÿ¿ÿÿýÿÿïÛÿÿÿþÿ~ÿÿÿÿÿÿÿ¿ÿ~îþ÷ÿþÿýïë߯·¿ý½¿¿ÿÿÿÿÞßûþÿîßûÿ¿÷þßwÿïßÿïûý¿Ý÷{ÿÿoÿÿ·¾ûß~ÿÿëûÿÿÿÿýþÿÿ¿ÿ÷ÿ¯®¿ÿ÷ÿ÷ÿûÿûßÿÿïýÿÿïûþþþÿ¿ïÿµßÿÿÝûïÿ·ÿwÿ÷ÿÿîßÿ¿ÿÿÿÿÿÿÿÿÿÿþÝßßÿÿÿÿûÿo¿÷_ßÿÿßý÷ÿ¿ûÿßûÿõÿÿï¯}÷ÿÿÿÿþÿÿþÿÿ÷ÿþÿ÷¿ÿÿÿßÿë÷ÿõ¿ÿ_ýýÿï¿ÿÿïûú÷ÿÿÿýûöÿÿÿÿ÷ßïý¿ÿÿßýßÿÿïo»ÿZßÿÿûýÿÿþï÷ÿÛþßÿz÷ûÿÿïïÿýÿûûÿ{ýýÿÿÿÿw¿×÷{ÿßÿßÿýÿ÷þÿÿïÛÿ¶þÿïßwÛß÷þÿÿÿÝ~ÿþÿÿÿß÷ïûïÿÿßÿíÿÿßïþÿÿÿÿ¿[ÿïÿÛë¿ÿÿþÿÿÿýûÿþÿïÿßÿ¯_ýÿïÿÿÿýþÿÿÿßÿ~ÿÿÿÿÿwÿÿÿ~ßÿ÷÷­þÿïþûÿþû¿¿}ÿûýÿÿÞÿ¿ÿïÿþÿÿÿÿÿÿþïû¿þïÿÿÿûÿþ¿ÿÿþÿ½ÿÿÿÿÿúýïûïßþÿ÷ÿýÿÿÿßÿÿÿ¿÷ÿ¿ÿÿÿÿÿ÷ÿûÿ¾ßÿÿÿïÿÿöýþÿÿÿµÿ×÷}ÿ½÷þýïÿýÿßkÿïÿßÿÿÿ¿÷ÿï¿ßÿ}µÿÿÿÿþÿÿnÿþÿ÷ÿÿwõÿ½ÿõïÿÿÝÿvÿÿÿÿÕÿ½ßÿýûÿÿ÷þßÿÿýÿïÿ÷ûïÿï¿Öÿÿÿÿÿnÿûÿÿßýý½ÿýÿûí~úÿÿÿößÿ~ÿÛýýíÿÿ÷ÿ¿ÿßÿÿî÷ÿÿÿÿ½ûÿýþÿÿÿþÿÿÿÿï[×õzÿÿÿÿûÿßÿý}ÿûýÿÿÿß×ÿßþÿÿ¿¿ÿ×ÿÿßõï¿ÿïÿÿïÿïÿûïÿ¿ÿþÿ÷ÿý¿ÿûÿÿÿÿÿ{ÿõÿÿßï¿ÿßwûÿýýïÿÿ÷ÿÿÿ÷ßwÿ÷ÿÿû»ÿ¿{÷¿ýÿïÿ»ÿ¯ßþÝïïÿÿ×þÿÿþÿþÿÿûß¿ï¿ÿoÿÿß÷ÿßÿÿ¯ÿþÿÞïÿýÿ¿ÿÿûÿÿ÷ÿûûÿwÿïÿßÿÿ÷ÿ÷ÿïßÿÿÿ¿·ÿûïþºÿÿÿÿ~ÿûÿÿÿ÷ÿ÷÷ÿ¿ÿÿÿ÷ÿÿûßÿÿ÷ÿ÷ÿûûÿúûûþýÿû·ÿ]ÿý¿÷ÿïÿýÿûÿýÞß¿ÿÿÿÞÿÿ×ÿþÿÿßÿÿßwÿûßÿý¿ýÿ[ûïÿÿ¯¾¿ßÝþýÿÿÿýÿÿþûÿÿÿýûïÿÿÿ¾ßï÷ÿß¿þÿÿÿþîïÿýÿÛõÿûßÿ¿¿ÿÿÿöÿþ÷ÿ¿þýÿ»ëýÿÝÿÿýÿÿÿÿÿßþïÛïþ½ÿ¿ß¿oûÿßw_ÿÿÿ¿ßoþÿÛoßÿûûÿ÷ßo¿ßßÿoýïßÿ¿¿ÿÿÿîÿÿÿÿÿßïþ¯ÿoßÿ÷ÿ÷ÿöß÷ÿþ¿ÿúÿï÷ýßoýßÿÿýûÿÿÿÿß¿ÿ÷ÿÿÿÿýÿÿþ¯÷ÿÿßÿÝûÿ¿ÿ¿ÿßÿ¿ýÿÿþûoõû÷ý÷ÿÿÿÿïÿûÿÿÿÿÿÿ÷ÿÿÿÿÿÿÿÿÿ¿ý÷ÿïÿvþÿ_ÿÿ¿÷ÿÿÿþýß¿ÿûÿÿÛßïwÿÿÿÿï¿¿ÿúßýÿÿÿ¿ÿíÿïï÷ÿÿßûÿÿÝÿÿÿÿÿÿÿý½ÿûÿÿÿÿ[ÿïÿßÿÞÿûÿ}öûÿ}ïïïÿ¿Ûûÿý¿ÿûû½ÿõÿÿÿÿýÿ÷ÿþÿßÿ÷ÿÿþþë¿íß÷ÿïÿ¿þýÿ÷ÿêÿï¿îÿÿÿÿÿÝÿþÿÿ}ÿûÿöÿÿÿÿÿÿÿÿÿÿ»ÿÿµúûÿÿÿûÿ÷o»õnï¿ßÿïÿÿÿ¿·÷ÿ÷ÿýþÿ÷ßÿ¿ÿÿÿ·ÿÿþÿÿßúÿ}÷ïþÿÿÿÿÿýÿÿþ¯ÿþÿÿ÷ýÿÿ¶÷ïý¿ûÿÿÿõÿýûÿ¿þÿ{÷ÿï½ÿûÿÿÿÿÿÿß¿ÿûö÷ÿ÷ÿÿÿÿ¿¿¿ÿýï¯ÿïûý¿ÿÿÿÿkÿÿÿÿÿoïûÿÿÿÿ߯ÿÿÿÿïÿÿÿÿ_ÿª÷ÿ÷Þûÿþÿÿÿ¿ßß¿ÿûÿýw¿þÿ~ÿý»ÿÞÿßÿßý¿ïïûÿïýÿÛýÞïoûû÷ß¿ýÿÿÿÿoþÿÿÿûÿûïý×÷ÿÿ¿¿ûý÷ÿþ»ïö¿ÿßÿw·þÿÿÿ¯¿þÿÿÿÿ»ÿÿvýþÿÿûÿÿÿÿ_úÿÿÿÿýýÿÿÿýÿÿ¿×ÿßÿÿÿïþþþï~ûûßw÷ÿw÷õÿïÿÿÿÿ÷ÿ÷¿ïÿÿ½ýÿÿÿÿÿÿÿýÿïÿëÿßÿï¿ÿßÿû÷ïÿïöû÷í¿ÿÿÿ»ÿ÷ÿÿÿÿÿÿûÿßßÿÿý¿ÿÿû÷ÿî®ÿýÿÿûÿmÿ¾ÿû¿ÿÿÿÿÿÿ¿wþßÿ¿ÿÿÿÿÿïÿþ÷ïÿÿÿÿ_wµýÿÿû¿ÿýß¿ÿÿÿÿÿÿÿÿ·ÿÿÿÿ¿ÿÿûÿûÿ¯Þ÷¾÷ÿÿÿ¿ÿ»íÿ÷ÿÿýÿÿß÷÷¿¿ÿýÿÿ{ÿ÷oßþÿïÿÿÿÿûýÿÿÿýÿÿ»ÿÿûÿÿÿþÿÿ÷¿÷ÿÿþíÿÿÿÿÿýÿÿÿ÷~ÿîÿÿß÷ÿÿß÷¿þÿÿ{oÿÿÿ»¯÷­ÿ½ÿ÷ÿëûßÿÿÿßÿÿûÿ_õÿ¿ïß¿ÿßÿÿ¿ûþÿÿýßÿ¿ßïÿßïþÿÿßýÿþûýïýÿûÿÿÿÿïÿ_ÿÿÿýÿþïþ¿ÿþÿßÿÿÿÿÿß¿ßÿß÷ûÿÿýÿ¶½ý}ïÿÿÿoÿÿ½õ¿¿û×ëßÿÿßíwÿÛÿþÿï½{ûÿ¿ýßÿÿ¿ß¾ÿÿÿoßýÿ¿ÿý÷ÿ{ïÿÿÿÿëÿ¿½ïÿÿ¿ï¿û½ÿÿoÿ·ÿýÿ}ÿ_ßýÿûÿÿþ¿ÿÿïÿÿÿ÷ÿ¿»¿þ»ÿÿwÿÿö»ßÿëþýýû÷ÿÿÿ÷þÿÿ¿_ÿÿÿÿÿ}ÿöÿ»þÿÿï·ÿ÷ïÿýûß÷ÿï÷ÿû¿ÿÿßÿßëÿÿßÛ÷þïýÿ_ûÿÿÿ¯ÿÿÿz¿ý~ÿÿÿÿ«ëWÿÿ_ÿÿßÿÿïÿßÿÿÿêïýÿÿýÿßîÿÿÿûÿÿïoÿ÷ß¿þÿwÿ÷ÿûß¿¿ÿßïÞÿß¿ï÷ïÿÿßÿÿ÷÷¿ûÿÿÿÿÿõÿÿßß÷ÿÿµÿÿÿ÷ß¿ÿÿÿÿûÿÿëûÿûö÷ßÿÿÿÿûÿ~ÿÿïÿÞÿ}ÿÿÿÿÿþ¿ÿÿ÷ÿ÷ÿï[öþÿÿýÿÿÿ÷ÿîû¾þÿÿßïÿûþÿïýÿÿÿÛûÿõ÷ÿíÿÿ¿÷ÿÿ_ý{¿öÿ¿÷ÿûýûÿÿýÿÿþþÿ»÷ÿþ¿ÿÿ¾ûûÿ÷ßöþßÿ»ÿÝûÿßÿýþû·ÿþßûÿþÿÿ_¿¿ïÿþÿÿÿþïÿï÷_ÿoÿý¿ÿÿÿÿÞÿö÷¿ßßïÿÿwî¿ÿÿûßkÿÿÞ¿÷ÿÿýÿûíþßÿ¿·ïÿ¿÷ÿÿßßÿÿïwÿÿÿÿÿÿ¿ÿßÿ¿ÿÿÝ¿ÿ¿ÿÿ¿ÿÿÿÿÿÿßÿÿÿ¿ûÿÿ}ß¾ÿÿÿïÿ÷ÿÿûýÿÿÿÿßÿÿ¿ÿ÷ßþ¿ÿíßï¿ÿßïÿÿÿÛýïïÿÿÿßûÿÿ}¯¾ÿÿÿÿ¿ûÿÿ¯ÿÿÿ½ÿïþ÷öÿÿÿîÿÿýÿûÿÿý÷÷ÿþýÿÿÿþÿýÿßÿÿÿÿÿßÿ{ßßþÿïÿßÿï¿÷ÿÿÿÿ¿ïïÿ÷ÿÿ~ÿ¿mïuÿ}ÿ×ÿßÿûÿ¿ÿ{ÿÿûö·þúÿïýöûÿÿÿßÛ½¿ÿÿ÷¿öýÿûÿûßïÿÿÞÿÿöÿ¿ÿ®¯Ûþûÿ¿ÿþýÿÿ¿ÿÿ÷úÿßÿöýïþ÷ßõ¿ÿmÿÿûßýÿþý~ÞïööÿûÿëÿïÿÿïÕÞï_þ¿÷÷ûÿýöÿ¿W_ûû÷÷ÿßï¿ÿ¾ïÿÿïÝïþ¿ÿÿ·ÿÿÿ÷ÿßþ÷ÿïÿûÿïÝýÿÿ¿ÿ{ÿÿ_ïÿÿ÷ÿûþþ÷ßzÿÝßÿ÷ßïëþÿÿýÿ¿¾ÿÿÿÿ¿ÿÿÿ·ÿÿïþÿÿÿþÿÿÿßÿïýýïßÿÿÿÿ÷ÿßÿÿ÷¿ÿÿþúë~ÿïÿ¿ýÿßÿÝ÷ÿß÷ÿ~ßß»ÿÿÞÿÿÿoÿÿÿÿÿûýÿ÷ÿíÿþýÿÿþýÿÿ÷_ÿ¿÷ÿ¿ÿÿÞëßïÿÿÿþ­w¿ÿÿ}ýý·ÿÿÿÿÛ¯¿ÿíÿÿþß½ÿ¿ýÿ_¯ÿþ÷¿¿ÿþ¿ýïïÿßÿÿÿ×ÿÿÿÿý{öÿÿÿßÿ¾ÿÿÿÿ×ÿëÿßÿkïÿÿûÿ·ý¿ÿÛÿÿýÿÿïýûýÿÿÿÿ{ÿÿ¿÷ûÿÿ÷_ÿÿÿýÿ¿ÿ¾ÿûÿÿÿÿÿÿÿÿÿýÿ¿ÿ÷Ûÿ¿¿þþÛÿÿÿÿÿÿÿïïÿûßÿÿ÷þÿÿÿïWßÿ¿îþÿÿÿ»÷ÿÿÿÿîÿûÿÿõÿÿßÿýîöÿÿÿÿÿÿïÿÿûßïÿïûß}ßÿ×ÿwÿÿûÿÿþ¿ÿ¶ÿÿÿÿÿwÿÿÿÿýÿÿïÿoþþÿÿÿÿÿûÿÿÿÿûÿßý^ÿÿÿÿ¿þÛÿþï÷ïû_÷ûÿþ¿_Ýÿ¯þÿ÷ûÿûß{ÿoÿïý¯_î¿ûÿÿÿûÿïÿïõýÿß÷ÿÿïßïþÿïýÿûÿÿÿ®ÿ¿ûÿÿÿ¿ïïÿ¿ï»ÿíÿï¿ûßÿïwÿßÿýÿýýýÿýmþûßÿÿïþûÿ÷ÿÿ¿ÿÿÿßûýÿÿþÿÿÿþÿþÿ»¿ÿïßöûþþÿ¿ÿ·ÿýÿ¶÷ÿÝÿÿû~¿ßº÷ß÷ÿÿúýßÿßÿÿÿÞ¯ÿÿûÿßÿþÿÿûûÿûÿþßþÿ¯_ýþïÿþÿþ¾ÿúïþÿýÿ¿ÿïÛ¿ÿûÿÿÿ»û½ûþßîÿÿÿÿ¯ÿ·îßÿ×÷ÿÿï¿Þÿûÿýÿ{ýÿÿïûïÿÿÿÛwÿÿûý¾ûßÿÿÞÿïßÝßÿÿÿÿûÿÿÿÿ÷ÿ÷ÿûÿÿßÿ¿ÿýÿ¿ÿÿÿßÿÕßÿÿÿþÿþïþ÷¯ýþÿÿûÿ½¯ÿwÿÿÿÿÿÿ¾¿ÿÿ®ÿïÿÿÿý÷ÿÿ÷ÿÿÿûßßÿýÿÿýÛÿÿëûÿÿýÿÿÿýÿÿÿû¿ÿþ÷»êßÿ÷þÿÿÿÿïûÿÿ÷ÿÿÿîÿÿÿÿ¿þ¿ÿïÿÿþýÿÿûÿëÿÿïÿ½ÿÿÛÿÿÿþû­ÿÿýþïÿ~ÿÿïÿýÿÿþþý¿ÿþÿÿÿûûÿþÿÿ¾ÿûßÿÿïïwÿ÷öÿÿ÷w÷ÿwÿ_þÿÿÿï¿ÿÿÿûÿýÿöÿÿÿß¿ïïÿÿßwÿûïïÿÿþÿÿÿ÷¿×þûÿÿÿ÷ÿÛÿÿ÷ÿÝÿ¿ÿ_÷ÿþ÷ÿÿÿßûß÷þÿÿÿïû×ÿÿÿÿþýÿ×]öÿÿïÿïÝÿÿ½þûî÷ßëÿÿþýÿßÿþ¯ÿ¾ÿý÷ÿþÿþßÖÿïÿýÿ¾ûÿýýÿýÚÿ¿þÝÿ÷ÿÿÿÿõ¿ßÿÿ¿ý÷ÿÿÿþýÿÝú÷ë÷ÿþýþÿïúþíÿûïïÿÿþ½ÿ¿ÿ¿þÿÿï}ÿÿýÿõÿÿþßÿ¿ßÿÿÿûþ÷ÿÿÿ¿ßþ¿ý¿ÿõûÿÿ»÷ß¿ÿ{Ûý¿ÿÿۿ߶ÿÿÿýöþÿï¯þþÿö¿}ÿÿÿ÷wÿ÷ýï«ÿýÿÿÿÿÿÿÿÛ·ÿÿwïÿúýý÷wÿÿÿÿßÛ÷ÿþÿÿûÿý¿×ÿÿ{ýÿÿÿÿÿÿ·úÿÿïÿ¿÷·ÿÿÿû¿ÿÿï¿û¿ÿßßÿÿÿþÿïýßýÿÿÿíßýßÿß_÷ÿnÿÿ÷ýûÿ¿ÿ¾ý÷ÿý¿ûÿÿÿßÿ÷×ÿÿÿßýþß÷ÿÿþÿîßÿÿ}÷ÿÿ÷ÿí¿ÿõº¿ÿþÿÿÿ¯ÿîýßßÿÿ¿ÿþÿÿÿÿ¿ÿ×÷·½ýýÿÿÿÝï}ýÿïÿÿ·ÿÿþÿ¿ýßÿÿßÿÿÿýíÿïÿÿïÿßÿ»ïßÿþÿ¿ÿöÿÿÿûÿßûûÿýÿÛþÿÿß»wïÿ{ÿÿÿÿÿúÿ»ÿÿÿÿ»úÿþÿÿÿÿÿïÿÿ÷ÿ~ÿÝÿ}ýï¿ÿÿÿïÿþ÷ÿûïÿþÿ¿ÿþÿÿÿÿêýv÷}ÿý¿ï}ÿïÿß·û÷ÿÿýû÷ýïÿûÿßÿÿokÿÿþÿÿÛÿ{ÿÿÿ»ýûïÿÛÛÿwÿÿÿÛïÿvÿÿ~ûÿû÷ÿÿýßßÞïïÿÿÿþÿ¿ÿ¿úß¿ÿÿÿÿÿÿß~ýÿ·ûÿÿoÿÿßûÿÿÿûÿ^¿ûïßÿþÿþß¿ÿ·ßÿûúÛÿ¿ÿÿÿï[ÿ÷ï¿ÿÿßþ¯ýÿ÷ÿßÿWýÿÿßúÿÿ¿ÿÿïÿþÿÿÿÿûûëý÷ÿßûoßïÿÿÿÿÿwþÿÿýßï¿ÿýÿþÿþÿ_ÿÿÿû»ÿþïÿ[ÿÿ¿ÿûÛ}ÿýÿÿß¿÷¿ÿÿÿíþþÿÿ×ÿÿ¿ÿÿßÿ÷ÿÿ}ëÿÿþÿïýþþûÿÿÿÿÿßÿÿï¿ßïûýöÿÿûÿÿÿ¾¿ÿÿÿÿ¾¿ý_ÿþÿ¿uÿû}½ÿþÿûû¿ÿïïßïïþ÷÷ÿÿÞÛÿÿÿÿ·ÿÿïÿÿÿÿßÿÿ»ýÿÿÿÿÿýÿÿ¯û¿ÿÿÿÿþïÝïÿ¿þû÷ÿÿwÿ~ÿÿþÿÿúýýþÿ÷ößõ¿ÿþý½ÿýÿÿoîßÿÿýÿýÿõÚÿÿoÿmÿ÷ïþ¿÷ÿnþÿÿÿ¿öÿoÿÿÿÿÿÿ¿ÿýÿýÿïïÿÿþÿÿÿ¯ÿÿÿÿÿö×ÿÿï¿þýÿ¯ß¿ÿ]ÿÿ¿ýÿÛÿÿÿÿÿÿÿ¯ÿÿÿßþßßÿÝÿÿÿÞýÿïû÷¿ÿûþßÿÛÿÿÿþûþ¿úÿïþÿÿ¿ÿÿÿÿÿßýÿßûÝýÿ÷ÿÿÿÿþÿÿ¾ÿ½ÿ¿û¿þûÿÿÿÿ{ßßûw¿ÿýÿýßïÿÿ~ÿÿÿ}ïßÿïï~ÿÿ¿þÿÿÿ¿¿ÿïûßÿÿ÷¿Þ÷ÿÿÿíÿÿýýßwýÿÿÿÝÿÿwë¿vÿ÷ûÿÿßÿÿÿÿßÿþÿþ¿ÿÿÿûÿ÷ÿÿëÿýÿûýÿÿÿ÷¿ÿ÷ÿ÷ïïÿÿï~þýþÿúÿÝÿÿÿ÷ÿÿ¿ÿÿÿ¿ÿýÿÿþûÿÿ÷ý¿ÿÿû¿¿ÿ÷ÿÿû»ÿÿßÿÿýÿÿ÷ÿÿÿ÷ÿï½ëÿÿþÿý÷ïÿ÷÷»ïÿ×ïõ×ÿÿÿwwûÿß÷ïûÿÿý_þÿýþÿÞÿ½û¿¶ÿûÿß¿ïµÿÿíþÿÿÿ¿íÿþÿþÿýÿÿÿõÿÿï÷ÿöÿþþï÷ÿ¯ÿÿÿ·ß_ßÿÿÿ~ÿïßÿ÷ÿýÿÿÿÿÿÿÿÿÿÿÿÿïÿýßÿöýïÿÿ÷¿ÿÿ¿ÿÿÛÿÿöþíÿÿÿÿÿÿÿýÿÿëïÿÿÚÿûÿ¿÷ÿÿïÿ÷»ï¿ÿßû÷Ûÿû½ÿÿûÿÿÿûþ¾¯ÿïïîÿÿÿÿÿ÷ÿýÿ¿ÿÝÿû{ÿ¿ÿßÿÿïýÿÿ¿ÿ÷ÿßßÿ{ßûûþû¿ÿÿõßÿÿý÷ßÿÿß_ïïÿÿÿÿþÿýÛÿÿûïÿëýûÿÿÿ¿ÿÿÿþÿûÿÛïïÿþßÿÿÿ¯¿ÿßÿÿ__¿ÿïÿîÿÿÿß÷ÿ¿¿ÿþ»ÿÿÿ߯ÿÿÿ_ÿÿ¿ÿÿß÷ÿëÿÿßÿ÷ÿýßÿß¿ïÿÿÿÿþÿÿÿþÿÿÿ¿ÿÿÝëûý¿ß¿ÿßÿ}ÿïÿÚÿïÿÿþî½ÿßÿÿݺ¿÷¯ýûÿï×þþÿ¿÷ÿÿÿßßý¿ßíþÿëýÝÿÿßÿÿÿÿ÷ý¿{~ýÿÿþïÿÿ¿ßÿ·ÿßß]Ûÿÿß¾÷ÿûßÿÿû¿¿ÿÿïÛ[ÿÿûÿÿß÷ÿúÿö½þû÷}ÿÿëíÿÿÿÿûoßÿ÷ÿÿßÿÿÿþÿÿÿÿûõ¿ÿ¿ÿÿ÷ÿÿÿÿýÿÿÿþÿÿïýÿÿÿwoÿûÿöÿûÿþïÿëÿÿïîÿÿöþ·ÿï¾ÿíÿïýûÿÿ÷ÿ¿ïïÿ«þ·ÿþýß»¿¿ÿû¾ûwÿûÿÿï¿ï×ÿÿÿû{÷o­ÿÿûýßÿÿÿÿÿÿÿ}ÿÿë~ï¿ÿûýþþÿÿÿÿÿÿÿýÿÿ··¿wÿÿÿ÷ûÛïÿÿÿ¯ÿÿ¿ÿ÷wß·ÿý¿ÿÿÿïýßÿÿûï¾ÿ¯ÿÿþýÿ¿ßßþÿöÿûß÷þÿþÿ¾ÿþýo÷ÿÿÿÿûÿzÿÿöÿÿöÿÿÿÿßoÿÿþ÷ÿwþþÿûÿýÿïûÿÿÿÿÿÿ}ÿÿûÿÿ¿ÿ·ÿý¿¿ÿ÷ÝÿûþûÿûÿÿÝÿ[õ¿û÷ßÿ­ûýÿÿÿß_¿÷ÿÝýÿ·¿ÿßÿÿÿýÿÿÿÿ÷ûýÿÿ{}ÿÿõÿÿÿ÷ÿ¿ÿûþ÷ÿûÿÿ¿ýÿþûÿÿÿþÿßÿ·ÿwÿÿþÿÿÿ}ÿ÷ßýÿwýÝý¿ßýÿý÷ÿ»w¿ûûÿÿ}ê÷ûïÿÿ­ßýÿÿßïþÿÿÿÿÿÿÿÿ·ÿÝÿ¿þ×ÿÿÿ¿ÿßÿíÿÿÿÿÿÝÿûÛ÷ÿþÿþþÿÿþÿÿï}ÿ_ûÿêþÿíÿÿÿÿÿÿÿÿ½ÿþß¿oÿþûïïÿÿÿï÷ûÿþÿÿÛûÿÿ×ïÿÿÿÿÿÿýÿ}þý÷ÿo÷ûÿÿ÷ýÿþÿþÞ¿úÿÿ»þ¿ÿÿûÿöïïïÿÿÿÿ¿¯ûÿÿ÷ÿëÿÿÿÿþúú÷{ïïßýÛ÷ÿß÷ÿ·ëÿ¿þûï¿ûßvÿÿÿuûÿÿÿßÿ½ÿÿû·×ûÿÿ÷ÿ¿ÿïÿÿýÿÿ_î¿vûÿÿþ¿ÿ{ïÿÿ¿ÿ½ÿ¾ïÿÿÿþî½ýûÿþÿßÿ÷ûÿ}¿ÿÿßïÿýöÿÿÿïÿÿÿÿÿÿÿÿÿ×ïÿ÷þÿÿ÷ýÿÿ÷÷õÿ»ÿÿÿßÿ¿ïýûÿþ¿ÿÿÿïÿÿíþïûß¿ûÿÿÿþÿ¿¯ûý~ÿþÿÿµúÿþßÿÿïoßë_¿ÿÿÿÿþÿ÷ÿÿ}ÿþïþ»ÿÿÿîÿþÿ¿oÿÞÛ÷ÿ»ÿ×ÿÿßý¿ßÿÿÝÿÿÿõýïÿÿû»ÿýÿïÿýÿýýÝÿßÿÿÖÿÿýÿÿ·×ÿÿ¿ÿ¿÷ï¿ÿÿýýÿíÿ¿ÿ¿~ýïÿïûÿÝþÿþ÷ÿÿþßÿÿÿûÿwuÿÿÿÿßûþþþÿïßÝúÿ÷ÿßÿûÿÿ¿¿ïÿ÷ÿÿßÿÿýÿ÷Ý¿ÿßÿßßÿÿ_ÿÿÿÿëÿþÿÿ~ßýïß÷ûþÿÿÿûÿßûÿÿû_½ÿÿÿÿ½íïÿïÿÿÿÿÿ¿þÿÿ¿ÿÿÿÿÿÿ¯ßÿÿÿû¿Þþ÷ÿÿõÝ÷ÿûïýûÿ¯ûÿÿûÿÿÿÿ¯ÿïÿ¿ÿ÷ÿÿÿ½ÿ÷¿ÿú»ýýÿ«ÿßÚÿ¿¯ÿýßÿ}ßÿþ¿õÿ¿ÿÿ¿ÿ÷ÿo{ÿÿ½÷ýî÷ÿ÷¿ßöÿÿ·ÿ¿÷öÿÞÿ×ßÞÿßÛÿÛÿÿÿ÷ýÿßÿ¿ÿÿÿþÿ¿ÿÿÿ÷ÿÿÿß¿ï÷ÿûÿï~þ¿ÿÿ½÷ßûÿÿßÿ¿ÿÿwÿÿÿ÷ÿï½Wÿÿÿ½ÿÿ÷ÿ÷þþþ¯Ûß÷ÿ}ÿýÿÿÿÿýë¿ÿÿýïß»÷}ÿï_þÿÿ¯ÿÿ~þÿÿÿÿ¯ûý¿ÿ~õÿ÷÷ÿÿÿÿÿ½ÿÿ÷¿÷÷ÿïïÿßïÿ¿ÿ¿ïßoÿÿÝíïnÿï¿ÿ÷ïýÿ¿ÿûÿÿ÷þÿ¿½ÿîïÿÿûþÿ÷߯ÿÿ¿ÿÿýÿÿÿÿÿýþÿ}ÿÿ®ÿÿÿÿ÷ûÿ}·ÿ}ÿ÷ÿëÿÿ×ûþï÷÷ßýÿo÷ÿÿÿ½ûþïýïî÷ïÿßûßßûÿû÷ýýë½ÿýß_¿«ÿÿþýÿîÿßýnÿwßÿÿÿë÷¿÷oÿýÿÿÿÿíýÿ¿ÿ÷ÿý·ßýïÿïÿÿýÿûÿÿÿïÿÿ{ÿÿßûÿÿïýßïÿßÿÝ¿¿ÿþ»¿ÿÿÿ÷ßÿ¯ÿÿ÷ÿÿ÷÷ÿÿÿë¿ïûöÿ}ßÿïÿÿ·ïþþÿÿú÷ûþÿ¿ïÿí¿ÿ÷÷þß÷ÿÿÿÿ·~ÿÿ¾ÿýû{ÿÿþ½ÿûÿÿÿïÿÿ¿ÿÕÿÿßÿÿÿýû~ÿ÷þÿÿ¿ÿÿÿÿÿíý×ûÿ¿ïûºÿÿßÿÿ×{ýïÿßþÿÿï{ÿÿÿÿëýÿÿ×ÿßÿ÷ÿÿÿþÿÿß¿ÿÿÿ÷ö¿ýÿÿÿ®ÿÿÿ¿ûÿÿÿÿïÿÿÿÿßÿÿïßÿwÿÿßÿþÿîßoïûýÿþþÿßþïÿïÿ¿ÿïþ»ÿÿÿÞÿýýÿÿÿÿ÷ÿ÷úÿþÿöÿÿþÿÿÿß÷¿ÿÿúýÿÿýý{ÿÿþû~¿ÿÿÿþßÿûÿvÿ~ÿ÷ïûþýÿþÿ×ÿÿÿ÷ÿÿÿ¿½ÿÿý¯û{ûÿÿþïÿ·¿þÿÿýÿÿÿþ÷ß×ûÿÿÿïþÿÿÿÿß×÷ßÿÿûÿßß÷÷þÿÿÿÿÿÿÿ¿ÿÿ__ÿ¯ÿþÿïï¿ÿ×ÿÿýÿÿÿÿÿÿÿ[ÿßûÿÿwÿþíÿÿ¯ÿÿþßÿþ÷ÿÿÿÿþÿ÷»ÿÿÿßÿÿý¿ï¿ÿû~÷ÿþ·»ÿÛ~÷ÿïÿþÕþ÷÷߶þÿÿ½ßÿïÿïÿÿßÿûÿÿÿÿnÿÿ~ýýÿÿï¿ÿÿÿÿï÷ïþ÷÷÷ï¿ÿÿÿÿÿþÿÝýßÿïýÿÿÿÿ¿_ÿýýûþÿ÷ÿ÷¿ßÿÿ~úþ¯ÿ¿ÿ÷ûÿûÿïßÿ÷þÿÿÿýúÿíÿÿþÿûÿÿßûÿ÷·ÿÿÿýÿïÛÿÿÿÿëýûÞþÿýïÿß¿oïþßvÛÿýÖÿþÿÿûï¿ÿ÷»¿ÿïÿýîÿÿÿ«»ÿöÿoÿÿÿûþÿÿÿï÷¿öÿ¿þïÿÿú¿¿ý_}ûõÿÿþïûÿwßÿÿ¿ÿÿïëÿ¿ýÿþßÿûÿÿ¾ÿþïûÿÿíÿûÿÿýßûÿÿÿþÿ»¿ßý¿ÿÿýÿ÷ß½ÿÿÿÞÿÿûÿÿÿõÿ÷ýmýÿÿÿoÿï¿ÿÿ÷ßÿÿõïïÿÿÿý÷ÿÿ·ÿï¾þ¿ÿÿîþûÿ¾ÿûÿ÷ÿÿÿÿßÿïï÷ÿïëÿÿïí×ïýßÿïwþÿÿßú¿Û}ÿÿ~ÿýÿÿÿ¿ÿþýßÿßÿÿ÷ÿþÿý·þöýßþßÿÿÿÿÿëîÿÿïîÿÿ×ÿýÿÿÿþõî¾ÿýû¿öþÿÿÛÿÿýýÛÿïÿÿ¾úÿûÿ¿ýÿÛÿÿ¿ýÿþýúÞï÷ûß~ÿ¿ÿÿ÷ëßÿ¿ÿßoÿÛþÿ¿ÿÿÿöÿ¶ïûÛÿßßþÛþý÷·ÿûþÿïÿ¿÷ßÿÿÿÿwwïÿÿÿ÷ýnÿÿ÷ÿûîÿþûî÷ÿûÿ½ÿßÿþÿÿÿûþÿþ÷ÿÿÿÿÿÿ»ÿõþÛÿï¿~ÿ÷öïÿ¿ÿßoÿÿöÿ×þÿÿÿúß[ýÿÿÿþïÿÿÿ·®ÿ¿ÿÿþÿÿÿÿÿÿ½ïïßÿ»öÿÿÿýÿßÿ·ÿÿ÷ß}ÿÿÝÿûû¾ÿÿþýÿÿíÿÿÿÛï}÷ßwþõëÿþÿ¿÷ÿÿÿÿýÿÿ÷ÿÿ¾÷ÿÿoÿûÿÿoÿïþýÿÿþÿÿÿÿÿú×ýÿÝßßÿÿûûÿÿ¿ïþÿÿ¾ûÿÿýýïÿÿþ¿zÿÿÿ÷þÿÿýÿÿ¿ÿý¿ÿÿÿÿÿÿþýû×__÷^÷ÿûÿ÷ÿë÷ÿÚÿÿÿý_¾÷ÿïzûöÿ÷ýÿýÿþÿ{ÿÝßÿýÝßÿý¯÷¿ßÿÿÿ_·ÿÿúëþûýÿ¿÷ÿõÿÿ¿ú»ïûÿßûÿÿÿÿÿÿ~Ýÿ÷ýÿÿÿõÿõÿïÿïoþÿûý{Öÿÿÿÿÿýý×ÿÿÿû¯ÿÿÿïoÿû¯ïÿþþÿ¶ïûÿýïÿÿ¿ÿÿÿÿþï¿ÿ¿÷ÿö¿þÿÿÿÿ÷îÿÿúÿÿÿÿïýÿÿ÷ÿ{ÿÿÿþÿÿÿþÿÿûïëÿwÿ¿{ÿÿÿÿÿýþÿµ·ÿÿÿ}ÿÿÿÚý¿õÿößï÷ÿ¿ÿýýÿÿÿÿÿýö®þïþÿ¯ÿßýÿÿÿ÷ÿßÿÿÿ»ÿ_ÿÿÿÝÿÿÿÿÿÿÿÛ¿ÿþÿûÿÿýÿÿþëþî×ÿÿÿÿûÿïßþÿ÷]ÿ¿ÿÿþ¯þ¿þúûÿßÿ÷÷ûÿÿ÷ýÿÿÿÿÿÿß}ÿÝßÿÿÿ·ÿÿÿú¿ý÷ïÿ÷×ÿýßwÿÿÿÿ¿ïý¿ÿ÷ÿoöÿ÷ÿï÷ÿïÿëþÿïÿÿ¿ÿÿÿýÿýÿ½÷ÿÿëÿ÷ÿß×}ÿÿ~î÷ÿ_¿¿ÿýþÿ¿ïÿÿ¿¿}¿ÿÿÿÿÿ¿¾ÿûÿ{ÿÿ»ÿþýßÿÿ»÷ÿûZÿ¿ûß_þûÿûÿûÿ÷þþÿÝoýõ{÷ÿÿïÿö÷÷÷ÿßýÝÿ÷}ÿÿÿÿõûþÿÿÿûïÿ»ÿ{þïÿßÿÿÿ÷ÿ{ÿÿúÿ÷_¾ÿ¿ÿÿ~ÿþÿ¿ÿÿÿÿþï¿ÿÿÿÿßþÿÿ÷ú¾ûû{ÿÿýÿÞÿÿû÷ÿþÿõïÿÿý¾ÿßÿÿýýýÿ÷þþÿûÿÿ÷ß÷ÿÿÿÿþÿÿíþÿÿÿþÿÿ¿þíýíÿnûýÿ¿ÿ¿þÛþ×ÿÿ¿ÿÿïÿþ¿ÿß{ýÿÿÿwÿÿßûÿýÿoþÿßÿÿÿ÷ûÿÿÿÿý÷ÿÿßÿûïÿëïûßïïúýßýïÿ÷ëÿÿÿÿ·ÿÿïÿ÷þÿÿÿïïÿ÷ÿÛÿïîßÿöÿïÿÿÿÿÿ÷Þ¿}oÿÿ{ïÿÿýîëÿû¿þ÷ßÿÿÿ¿ßÿûÿÿ¿ÿûÿÿwïÿ×{ÿþ¿ÿÿÿÿ·ÿÿÿûÿïÿÿÿ¿ûÿß÷ý~ÿ}ÿïý¯ÿ¿÷þ¿ÿÿïÿÿ¿¿ÿÿÿÿÿßÿÿûU¿ÿÿýÿúûÿ¿ûÿÿûÿß÷ÿÿûÿýþïÿï]ýÿÞý¿ÿþÿ÷ÿÿÿÿÿ_ÿÿÿßÿÿ{ïÿëÿÿÿÿÿ÷ÿþýýÿß÷oÿßþÿíÿÿÿ}ïÿÿÿÿÿßÿÿßýoÿÿÿûÿÿûÿmß_ÿÿÿûþÿÿþ¯ßÿÿÿßýýÿöýÿ÷ÿû÷÷¾ÿûýÿïÿÿÿ~ÿÿ¿ûþÿÿ¾ý÷¿ÿßßÿÿþÿÿûÿ¿ßÿÿ»íþ¿ÿýý½ÿÿ]ÿÿÿÿÿûÿý¾ßýïï¿þû¿ÿîÿÿöÿþ÷ÿ¿ÿ»ÿÞýïÿþÿÿÿÿûïýþÛÿÿÿïÿÿþûÿ¿wÿÿûÿÿû÷ß½ÿ¿þßß÷ûÿÿßÿÿÿ¿ú¶ï¿þ÷ÿý¾ÿÝÿïÿÿÿï_ÿÿÛÿÞÿú¿»ÿÿÿþÿïÿï÷ÿÿÿÿ÷ÿÿÿý¿ÿ÷ÿÿoÿûÿÿÿû¿¿ÿîÿÿÿýÿÿÿoßõ÷ÿþÿ÷ú¿ÿÿÿÿ÷ÿÿÿý¾ÿÿÿýo¿ÿî¾Þÿÿÿÿÿ÷ÿßþ¯ÿ¿ÿÿÛÿÿûÿ¿ÿÿý÷÷ÿ~ûßÿß÷ÿÿßÿÿÿÿÿûÿïïÿ¿ïÿýÿ÷ßûþ¿ÿÿÛ߯÷½ßß¿ÿûßûÿýÕÿÿÿÛÿÿ¾û¿¿ýÿÿÿÿëï½÷ÿ¿ÿ¿ÿÿÿÿÞþýÿýý¿ÿ÷ÿÿÿ{ÿï÷þÿÚÿÿ»ÿÿwÿÿýÿþï÷Ûûÿÿÿÿÿÿýß½¿û»ÿÿûÿû»ÿÿ¿ÿÿÿ_ïÿuÿÿÛÿ÷÷ÿï¿ÿßµýþÿÿþÿýÿýõÿÿÿÿïÿÿÿÞÿÿÿïýÿþÿÿßÿÝÿ÷ÿëÿý÷ÿ·ßÿÿÿ÷ÿþÿÿÿß¿ý÷ÿûÛÿÿÿöµÿþû÷ÿû»÷ÿÿÿþþïÿþÿï½ÿÿ½ÿÿ¿þ¿ýÿ÷ÿwÿ÷ÿ¯ß»ÿÿÿÿÿÿÝÿï¿¿»ÿÿÿÿwï¿ïïÿÿïÿÿÿÿï¿ûÿþ÷ÿÞÿÿÿ¿ÿßÿÿÿÿÿ¿¿ÿÿúþõÿÿ÷ïÿ¿ÿÿÿ÷ÿÿï··ûÿÿ¿ÿÿïÿÿûßþïÿÿÿÿÿÿ¿oÿÿßïÿÿ~ß«ÿýÿÿÿÿÿ¿{ÿÿ¿ßÿ~þÿß÷÷ÿûýÿ÷ÿ¯~í¿ÿúûïûûýÿÝÿÿÿ÷÷Ûªÿÿû÷ÿÿÛýÿûÿÿÿÿÿß÷ßÿÿþýïÿëÿÿÿ÷ÿÿÿÿ¿ýûÿþûÿÿþ¿í¿ÿïÿþÿÿÿÿÿÛûßÿ·¿ÿ¿ú¿ÿÿ÷Ûÿ×ÿ¿÷ÿÿÿÿßÿû×ÿþÿ÷÷ûÿ÷ßýýÿÿû÷Ý÷ßÿÿþÝýÿ»ÿûïÿ¯ÿ¿ïÿ¿ÿÿÿÖÿÿºÿíÿÿkýûÝïí~û߿׿þÿÿýõíÿýûÿûïÿÿÿÿûïïïûÿÿÿþûÿþ÷ÿÿÿÿûÿÿëþßýýÿÿûÿÿ÷í¶þÿßÿõûïÿþÿûûýÿÿýß÷Õÿÿ¿ÿÿßÿßÿþûþ­ÿïÿÿïþÿÿÿoÿÿíÿûïÿÿ÷¿ßß¿ïÿÿ×÷ßwþÿ¿ÿûþïÿ¿þÿýÿÞ¯ßÿÿÿþÿÿï×íÞ×ÿnïïýßÿÿÿÿÿÿÿû}÷ÿ÷ÿýÿ÷ÿÿÿÿÿ÷·ÿÿWÿ~ÿßjïßoÿýÿþÿÿÿûoÿ_¯ßßÛýþþÿÿ¿ÿÿÿµÿÿÿÿÿ{ÿÿ÷~Þï÷·Ýß÷ÿßÿÿ¿¿ýÿë¿¿_ÿûýÿÛÿÿÿÿûÿÿþïþÿÿïÿûûïÿÿÿýþÿý¿ûÿ×ÿûÿÿïýÿo×mû÷ýûÿþúÿÿ¾ýÿßÿ¿ýÿûßmßýÿÿÿÚïÿí_¿ÿûÿÿ¯ÿ÷ëÿÿþÿþÿÿû÷ÿoïÿïÿÿ»÷ÿ÷¿ÿÿÿÿí¿¿ýþ¿ÿßÿï×ûýïÿïýïnÿ¿ÿý¶ÿÿë¿÷_ïÿëîÿ½¿ûÿÿÿÿþýß}ÿÿëÿÿ÷»ûÿÿÿßwÛ_úÝ_ÿÿ÷¿ÿ÷ÿ·ÿÿÿÿ¿ßýÛÿßï÷ÿ¿ÿýúöûÿý¿½û÷ëûÿßÿÿÿ_ÿ½ÿ÷ÿûÿýÿÿûß÷ûÿ·ÿýþÿÿíÿÿÿÿÿïÿ¿ßÿÿÿÿÿÿ÷ÿÿþßïîýÿÿÿÿÿÿýÿÿïÿýßÿÿÿ÷ýýÿVÕû}ÿ×ßÿþýþß_þýÿúþÿ¿ÿÿÿßÿûÿßïÿþ¯ýÿû÷ïÿÿÿÿÿÿþ¯ýÿoï×ûýþ»Þÿÿÿþ¾ÿÿßÿÿûÿÿý÷ÿ~ûûÿÿÿÿ·ýë¿ÿý÷÷ÿÿÿï÷ûïûÿÿ¿ÿÿÿ¿ÿßÿÿïï¿ûÿýßýÿÿÝ÷ÿ÷ïÿÿÿÿßÿ¿ÿ¿ÿÿÿ÷þÿÿ¾ûýïÿÿÿÿûûýÿ¿ßÿÿÿ÷÷ÿýïÿÿÿýÿÿïï÷ÿÿýÿÿ¿Ûÿÿû¿¿÷ß÷¾¿¿ß÷ÿýýÿ÷ÿÿÿÿ«ÿÿÿÿ{ÿû¿zßÿþÿWÿÿÿ¿ßÿÿÿÿßÿÿßÿÿýÿ_í¿ý¿ßÿÿÿÿÿþ¿¯ÿÿÿ_ÿûÿßÿÿß~þ¿ý÷þÿ¿ß»öÿÿþïÿÿÿ¿¿ÿÿÿÿº½÷ÿÿÿûýwÿÝÿÿ¿ÿÿÿÿÿûÿßÿß÷þþïÿïþýûÿÿÿÿÿÛÿÿÿûûÿ¿ÿû÷ÿÛÿÿn÷ïÞßûý¿ûz¯ÿÿïÿkÿÿïÿÿï¾û¿ÿ¿¯õÿ«ÿúïýÿÿÿÿ߯ÿßþïÿÿýÿý·÷ßÿÿvÿ¿¿ÿßÿ¿ÿýÿýÿï»ú¿Þÿ_ÿýÿþêïûÿûýÿÿßÿÿ¾¿ßßíÛÿÿÿýÿÿúÿÿþ÷ÿý÷~ÿߪï×ÿ·ÿ÷ÿ¾ÿÿ¿ÿÿûß÷ÿÿÿÿÿ¿ÿß÷¿~ÿ÷ÿÿþÿþÿßûo¿¿ÿÿÿ¿ÿ÷ßõÿÿ÷ïßwþÿûÿÿýÿÿÿÿûï¿¿ÿ_®þÿÿÿíÿÿÿÿÿþ»Ýÿÿþïõÿ¿÷÷ÿÿ÷ïï÷ÿ÷¿ÿÿÝþÿÿý¿ÿýÿßÿÿÿÿwÿöÿ»¿]÷÷ÿþ÷·ïûwîÿ¿ÿ÷ûÿÝÿ÷¿ÿÿ_¿ÿÿýÿÿûÿÿÛþÿß¿ß×û÷ûÿ~Þþ¿~¿ÿÿ¿÷î¿ÿÿõÿÿÿ÷ïïÿÿÿÿ¿ï¯ÿÛÝýÿÿÿÿÿý½ëïûï×ïþ¯ûÿÿÿÿ÷ÿ¿ÿßïþÿûýöÝöÿÝ÷ÿÿÿ{ïûÿïÿ¿ßÿÿÿþÞïÿûwÿÿÿÿë×ÿÿÿÿÿÿÿÿÿÿû{÷ýþýoï¾÷û÷þþ¿ïw÷ÿßÿ÷¿ÿÿþÿÿ{ýýÿ×ÿýwÿ¿ÿÿý¿ï÷ÿ¿÷ÿýÿþßþûÿ~þÿÿ~þÿÿÿÿßÿÿÿ¯÷vÿÿ_ÿõïû¿¿ýï}ÿÝßÿßïý¿÷ïÿÿÿíÿ÷¿ÿûÞÿï÷¿îÿÿý¿ÿÿÿûÿÿÿÿß÷ÿ¿ÿÿýÿöû¿ý{ÿ¿»ýÿÿÿÿÿÿýÿßÿÿwÿÿÿÿÿ¯úÿÿÿÿþ÷÷ÿÿîÿÿÿÿûÿýý¿ýÛßÞïÿûÝ[ëßûÿïÿÿûÿÿÿîïÿÿ·ïÿÿÿÿÿÿÿýýÿ÷ÿß¿ýõÿÿÿ¿ÿÿïÿÿÿ¯ßÿßÿÿÿ¿ÿÿýÿÿï÷ÿÿ¿߯{ÿïÿþ÷ÿÿßþÿïÿýÿïÿÿÿÿûûõûßÿþÿÿÿõûÿÿÿÿÛßÿþÿÿÿýÿÿíýoÿþÿýûÞ½ÿýöï½÷ÿûÿÿÿ¿ßßûþßÝÿÿoîÿ{ßïïßÿßÿþ½ÿÿ{Ûþ»ÿ÷ÿÿ÷ßÿÿÿÿýoÿÿÿ½÷ÿ·ÿþïÿûîß¿÷¿ïÿþ¯ÿÿÿ÷ýÿÿÿûýÿÿþÿþÿÿýÿ÷û¿ßÞÿÿÿÿÿþÿÿ}ÿÿÿûîÿ¯ÿÿÿÿmÿýÿþÿÝÿÿÿþþûþïíÿÿþþÿÿßýÿÿÿÚÿöÿïÿ÷ÿÿÿÿßÿï¿þïÿûÿÿÿ_ÿõûúÿþÿ¿ïÿÿ·ÿÿ×ýÿo¿ÿþÿÿþÿûßÿý»÷¿ÿþýÿïïÿ¿ßÿýîý¿ëÿÿÿßÿÿýßÿýÿÿûþûÿÿýý»wïûëÿÿ÷oëûýÿÿÿÿíÿÿÿþÛýÿëßoÿïÿ÷ÿÿÿÿûÿïÿÿÿßÿÿÿÿß¿ÿþþ¿ÿÛÛzÿoÿÿûv¿ÿïßÿîõÿûÿ­ïÛ¿[ÿßÿ×ÿÿþÿúïïÿßÿïï_ÿÿþÿÿûÿßÕûûÿÿßÿÿºýýÿÿþû¿ß¿wß½ÿï÷ûÿÿõÿ¿ÿw÷îÿÿíþýÿïÿûÿÿûÿÿÿÿݵÿþýÿ÷ûÿw¿ýýÿ÷½ÿ½ÿÿ÷ÿÿzµýÿÿúý÷ÿÿÿ¿wýßïßÿï÷ïþÿþýþÿßÿ¿ý¿ÛÿÿÕïÿ½ÿwÿýõÿþëÿ]ÿ»ßßÿû¿{ûÿÿëÿÿÿûÿßÿÿþ÷ÿÿÿïÿÿ÷þûÿÿ}ÿúûþ÷ÿ÷ÿÿ¿ÿÿû¿ÿûÿÿÿïÿÿ{oÿýÿÿÿÿÿÿëÿÿ÷úÿÿwÿÿÿÿ÷¯÷ÿïïýÿïýïûûûûïÿÿoÿÿî÷ßïþßÿÿÿÿûÿïïmýÿ}ßÿ¿ýÝÝûúÿÿ»ýÿ÷ûwÿÿÿ¿ß÷ÿïßÿ÷ÿïþûþöûÿ¿ßûÿïÿ¿þÿûÿÿÿÿÿÿß÷ÿëÿÕÿÿºú¿nÿ}¿úÿßÿÿþÿÿïÿþÿÿÿÝÿÿ¿ÿïÿÿÿ}ÿ½þû÷ÿÿÿÿëûÿÿýoûÿÿ}ÿÿÿÿþÿýÚ÷ß}þïÿÿÿÿÿÿÿÿÞÿÿÿ¿ï«ýý¿ÿûþïÿýÿ¿ß¯ï¿ÿöïûþ÷íûÿûÿÿûÿßïþÿ÷õÿß_ÿß¾õîêû÷ÿÿÿ»[öïÿÿßÿÿþÿÿÞ¿ÿ»ÿÿýûÿûÿÿÿþÿïÿß¿ÿÿûÿ}¿ÿÿýúþÿÿ}ïÿÿïÿõvÿv÷îßÿÿÿßÿõ¿ÿÿßßÿ¾¿þ¾ÿ¿û÷_¯ÿýÿÿÿêÿÿßÿÿþþµ~¿þý÷ûßÿÿ÷ÿ¿ÿïwÿÿßÿÿÿ×ý÷wõßÿÿþÿÞÞÿßÿþ¿ÿïïÿ÷¿þÿÿÿýÿÿÿÿÿÿÿÿ÷ÿöï¾ßÿÿßÿÿ{þ¿ÿ­Wÿ÷ÿwïÿßÿÿÿûÛûûÿÿÿûï¿ïï_þÿÞûïÿ÷¿õÿïÿÿÿ¿¿ÿÿÿûïÿûßïïÿÿÿÿûÿÿÿÿûûßÿÿïßþûÿîÿ¾ÿÿÿïÿÿÿߺÿÿëúÿýÿ¿ÿÿÿÿÿ÷ÿ»oÿýïíûîÿÿûÿïÿêÿ÷ÿÿ¿oÿ÷ÿÿúÿWÿÿÿ÷ûÿÿÿÿîÿÿ¿ÿëßÿ»ÿïÿïÿÿÿ¿}öûõÝÿ«ÿÿÝýßýÿÿ¿ÿÿÿïÿÿ¿ÿïÿ÷ïÿïïïÿÿ÷ÿÿÿÛþÿýÿÿëÿÿû}ÿïÛý~ÿÿÿýÿßÿ¿ÿÿ¿îÿ{ßþýÿûþÿï¿ÿ÷÷õÿÿÿÿþÿÿÿÿ~þÿÿïëÿÿûÿÿÿëÿþÞ¿ÿÝûûÿþïÿ¿¯ïÿÿ{ûÿ¿ÿßÿÿïû÷ÿÿÿÿÿÿÿõÿþ÷ÿëû÷ÿÿÿÿßÿÿÿÿûÿÿûÿßÿþ¿ÿ×ýýÿ¿ÿþ¿ÿÿßÿ¿ýúïÿÿþ¿w¾·{÷ýÿÿÿþ÷ÿýíÿßþµÿßïÿ{ï»ÿýý·ÿÿÿÿ¾ÿ·ÿ÷ïûÿöÿ·ßÿÿ¿ÿÿÿÿ®ÿ÷_Ûýÿÿÿÿÿÿ½ÿÿþ¿ÿýÿÿþïÿû¿í÷÷ÿÿßÿßÝßÿÿý÷ûûûvþÿýûÿý÷ïýýÿýïÿ¿ÿÿ{~ß÷ýÿÞßÿý÷þïßÿÿýÿÿ÷÷wÿÿ׿ßÝÿþýÿïÿÿÿÿÿßÿï_ÿ÷ÿÿÿßþýý¿ÿ¿ÿÿÿÿÿÿ÷ÿ¿ÿþýÿÿýïßÿÿÿÿÿÿÿÿÿßþûßÿÿÿÿÿßßÿûþû{ûýßÿïÿ{ÿÿïïÿÿûÿ¿ÿßÿÿÿ_ÿÿýßýÿÛûÿßÿÿÿ¿ÿ¿ÿÞëÿÿÿÿþÿî÷ÿßûÿÿýÿÿýÿ¿}ýÿÿï¿ûþûÿÿýö¯÷ÿýý{ÿ¿{ÿßÛëßÿÿþïß¿ÿÿýßÿÿÿýï÷ßïïUÿöÿÿÿß÷½ÿÿköÿ÷ÿÿÿ¿÷ÿÿßÿûÿÿûÿ÷~÷ÿÿï¿ÿo¿ÿúïßïþÿûý÷ÿûÿýß¿ÿÿþýû_ÿÿûÿ{ßÿÿÿõïûÿÿÿÿíý¿ßûÿýÿýÿÿ¿oþÛßÿÿÿ¿ûûÿûþ¿Þ÷ßÿÿÿû÷ÿïþû¿þëÿ¿÷ÿÿ_ÿÿ¿ÿ¾ûÿÿÿÿþÿÿïÞßþ¾¿ÿ¾ÿ÷û÷{ÿ®ÿÿ÷ÿÿÿÿÿÝÿÿÿïÿïÿï¿ÿÿýß÷ÿ÷ÿÛÿß·ÿÿÿþíõþÿÿïÿßûÿßÛ_÷þ÷ÿ¿ÿÿÿÿ{ïÿÿÿþÿ¾þý÷ÿvÿÿÿ¿ÿß¿ßûþÿÿßÿÿ¯ÿÿßûÿÿë»ÿûÿû~þúÿïßÿÿÿ¯»þÿßûõÿïïßß·÷ýßÿÿÿû»ÿµößÿýÿÛÿßÝ»ÿÿ¿ÿÿýþ¿ÿþ÷ÿÿÿ¾ÿ¾ÿúþÿïÞÿþûßï~ßßÿÿÿÿÿÿï÷_ÿÿÿÿÿ»ß½ÿÿýß·ÿýÿÿýÿÿÿßÿÿÿÿë¯ýo¿ÿÿ¿ûßÿ}ÿÿýÿï÷¿ïÿþÿ{þÿû¿ÿ½oÿþÿþÿÿÿÿþûßÿ÷ÿÿÿûïûÿÿÿþýÿ¿÷ö÷÷ýûÿÿÿûïÿÿ÷ûÿÝýínÿÿ{ÿï¿ÿÿÿÿÿÿÿ¿«_wÝÿÿ×ßÿÿëÿþúÿýõý÷÷ÿ¿vûß÷¯ÿvÿÿÿÿÿöÿß¿ûÿÿÿÿßÿÿõÿëÿûý··ûþÿz¿zÿíÿÿ¿ÿßï·ÿÿÿ¿ÿÿÿûÿÛÿïïÿÿûÿý¯÷ïÿýÿþÿ÷ÿþ¿ÿoýíúþÿßÿÿýÿúÿ÷ÿþÿÿÿ¿ÿoÿûÿýÿ×ÿÿwÿ÷ÿ~ýÿÿïûÿïýÿ¾ÿýýýÿþÿÿïÿûþÿß·ÿú÷ïõÿÿý¿ÿßwÿ÷_ÿÿþïÿÿûûÿÿÿûÿ×ÿÿßý¿þÿÿþÿÿÿïÿÿÿ÷ÿïûÿûßÿÿýïwÿ÷}ÿÿïúÿíÿßýÿßÿßûÿïÿÿÿÿ×ûÿþÿþÿþï÷¿Ý¿®ÿÿ{ÿÿ¿þÿïÿÿÿÿ¿ÿý~ÿíÿ¿¿¯ÿúÿûÛïÿÿÞßýÿÿÿþÿÿ½ý{wýíÿ÷ÿÿ¾ïÿÛÖßÿýÿÿ¿ÿÿÿïÿÿïý¿ß}ýþïýÞû¿ÿëûß÷ÿÿÿÿÿýÿÿ¯ïÿÿÿÿïÿ×ÿÿÿÿï¿ÿÿ¿ýÿûÿÿ¯ÿ÷ïÿÿßÿ÷ÿû¿ÿÿÛï÷ÿýÿÿ÷oïïßÿ¿÷ÿßÿÿÖÿÿßßÿÿïÿÿÿÿÿ¿ûÿÿÿïÿÿßþßÛ·ÿýþÿÿýÿßÿÿ­ÿÿýÕÿþÿÿ÷ÿï÷ïþÿÿ¿ÿÿÿïßýÿïÿÿÿþÿßÿïßÿÿÿÿÿïÿÿÿþÿ÷ïÿÿÿÿ¿ÿÿÿÿºÿÿýÿ¿ßÿý÷ÿßÿ]÷ÿûïïýÿÿßÿýÿÿ÷ÿÿÿþÿ÷ßõÿýÿ»ÿßÿÿ÷ûÿÿûÿÿ¿ïûßÿÿÿ½ÿýýÿÿ_ûÿÿëÿ}ÿÿ½ÿÿÿÿïß¿ýöûï÷ÿo¿ÿÿÛÿÛÿÿ÷ÿïwïï×»ÿÿÿÿÿÿýÿýýÿúÿÿúýÿ¿ÿÿÿý÷~®ÿþÿ÷ÿÿ¿ÿÿßÿÿmÚÿÿÿÿïWÿÿû÷¿÷«ÿÿÝÿûýÿýÿÿß}ïÿÿÿÿýþýÿýÿÿëßûÿûÿÿÿý·ýß_ö÷þÿý÷þ÷ÿßÿþÿ÷ÿÿÿßÿßþÿ¿ÿþÝÿÿÿ_ýßÿo®¿ÿ«ûÿÿÿßïï»ÿÿÿõû÷Û¿ßþÿÿÿÿ_ý÷}þÿµ÷}ÿÿûÿÿÿþÿmÿÿÿÿ÷¿ÿÿýßû}þÖÿ·ûÿÿß{ÿ÷ûû÷ýïÿûÿÿÿÿûßÿÿþÿÿþ÷ÿýï{Þúÿ÷ïÿ{÷Ûÿÿÿÿÿÿýûÿwþ÷ïÿÿ÷ÿ¿ï÷ÿýýÿoÿ­ÿß¿ÿÛoûûÿÿ÷ï¯ÿßÿýßûÿÿÿý{ûïþýÿ¿ß¿ÿÿ·ÿÿû÷ÿÿÿî÷ÿÿÿûþûÿÿÿ¯ÿýïïÿßß÷ûÿÿ÷ÿýÿý¿ÿÿÿÿÿýïÿïÿÿ»ÿïïïÿ½÷ïû¿¿ÿûÿnïû¿}ï÷ýÿ«·½ûÿÿÿßÿÿöÿÿÿ÷¾Þÿõúÿ÷ÿëÿÿÿÿ¿÷¿{ÿÿúÿÿ÷ýßÿÿÿÿÿ{ýÿÿ¿ÿÿ¿ÿ·¿ÿÿÿÿýûÿßÿÿÿÿïÿ¿ÿÿ{ïÿÿûûÿÿþûÕÿÿûÿ¿]ÿ¿¿ÿÕûýÿ½¿÷ÿÿûûÿïþýþïöÿ¾ßÿÿÿýýÿïîÿßÿïûßÿÿþÿ_¿ÿÿþ÷ÿÿ¿ßýÿÿïýßïÿÿýßÿÿßõÿû÷ÿÿÿÿÿßïÿÿÿÿû»ýÿïÿ¾ÿýÿßþ¿ÿÛëvÿÿû{ÿ÷ÿÿÿÛ¿¿ÿÿÞûÿÿÿÿÿþûÿýýÿïÿÿß»ÿÿ¿ÿïÿþëßïþõÞ»ÿÿõïÿúþÿ¾ýÿÿßïïÿïÿßßÿ¾ßÿ~ßÿwûÿÿÿÿÿßÿþ¿õÿûÿÿ÷{þûÿîßm»ÿ÷÷þ¿¿ÿ÷ÿûo_¿ÿÿoýûíß¿ÿýÿÿííûßï÷ÿíÿÿÿÿÿïûÿÿ÷ÿ{{û¿ÿÿÿÿÿÿïÿÿÞÿõ_ÿßïÿßÿÿ¿ÿë¿ÿýÿÿïÿÿþÿÿûïßÿÿþÿÿûÿÛÿú¿ÿõ×ýÿßÛÿÿ÷÷ÿÿßÿÿïÿÿÿÿßÿÿWÿ{ÿýý¿ý÷ÿ¿wß÷ûÿwÿÿþîÿÿßÿ¿ÿû÷ÿûêÿ»ï¿oÿÿßÿÿþÿÿ¿ÿÿoÿ¿ýûÿÿ½ïï{þßþþÿ¿÷ÿûkÿ÷ïÿþÿ¾ÿÿßÿ÷ÿ»Ûßÿþÿÿÿÿÿï¿·ÿþÿßÿûïÿßÿÿoÿÿîÿÿÿ¿ßÿÿÿ¿ÿÿÿÿû»ý·Ûÿÿ½ßûßÿÿßÿû÷ÿÿïÿÿÿßÿû÷ï÷ûÿû×ûíúý¿ÿÿoþÿïÿÿï÷ûwûîþ«ÿûýÿ÷ÿÿëÿ{ÿ¿ÿïÿÿÿÿÿÿÿíÿÿÿÿûÿÿûÿÿ{ÿÿÿÿ¿ý¿¯ÿÿÿýÿÿÿÿ¿þÿÿ¾ÿßûÿ÷ÿ¿ÿ÷ÿþÿý¿þÿÿý¾ïÿîûþÿ÷ûýÿÿ¿ÿõûÿûý¿ÿÿÿëÿßëþÿýÿîÿ¿÷¿ÿþîß¿ÿÿ»ïÿýÿßwýßûïï¿ûïÿïvÿÿÿý÷ÿúÿýÿÿïÿíÿß÷ÿ¿ÿÿþïÿ×îÿÿýÿÿ÷úöÿ÷íÿ½ÿÿ¯Þÿ÷ïÿÿÿßÿÿ÷¯ÿßþÿ¿ÿ~ÿÿúßÿýÿÿÿßÿ¯ßÿû¿oûÿ¿ÿï·öÿoÿÿýÿÿïÿ¿ßÿÿÿþÿïöïÿÿÿïÿý{¿ÿúÿÿ¯þý}÷÷ïÿÿÿþïîÿÿ÷ÿ¿ýÿýÿßïÿýÿÿûûûûÿ¯ïÿÿÿ÷ÿïÿÿþÿý}ÿÿÿÿûýÿýýßÿÿûÿßÿÛÿß÷þÿÿÿ~¯·ÿÿÿÿÿ÷¾¿ÿÿ·oßï¿ýöÿßÿ¿ÿÛÿ¿û·ÿþýîÿÿ÷þýïïÝÿÿûïÿý¿ÿëÿÿÿýÿõ¿ßwÞÿ÷ÿõÿÿÞÿûÿ¿þþ»ÿ¯ýÿÿÿýïßÿ{÷ÿÿÿþÿ}ÿÿÿþÿÿ¿»¿ÿÿþþÿÿÿ]ÿ¿ÿÿÿïýÿ_ïßÿÿþÿÿÿÿÿýûÿÿÿÛÿßÿ¿ÿýûÿÿß¾¿ûÞÿïïÿÿÿßÿÿ÷þõÿºïýßÿÿþÿ_¿÷ï_÷ÿ¿ÿîÿÿûÿÿº÷ýÿÿþþûÿÿ»ÿÿÿÿýÿÿÿý×ÿëÿÿÿÿß¿ïïÿßÿïßÿí¿ßîÿÝÿoÿÿþ¿ÿÿÝÿ·÷þÿÿÿþïýïÿ÷ßÿ½ÿÿWÿÛýÿÿÿþÿõû¯õÿîÿÿû÷ÿ¿¿ÿ}ÿÿÿÿÿ÷ÿßßþ¿ÿ_¿÷÷ÿÿÿÿîÿ¿ÿÿÿ¿þÿÿýÿý﾿¿ÿÿ÷~ÿîÿ¿Þÿÿ~ý÷«ÿÿÿõÿÿßúï¯ïÿÿï¿ÿûÿý}ßÿÿÿýÿ·¿ýÿÿÿ~ï~þÿïÿÛî¿ýÿïÿÿûÿ»ÿ»ßwýÿÿ¿õýÿÿÛýýÿýÿÿ·×ÿÿûïÿ¯Û¿ÿßß»ÿÿ[ßýÿÿÿÿÿÿÿß»ýõ÷÷µÿÿÿî÷·÷÷ÿÿ÷ÿ}ÿÿß»ÿÿßíûÿÞÿÿÿþÿ÷ÿÿÿÿÝÿýÿÿÿÿúûÿzÿýíÿïíÿÿ÷ûûûÿÿÿ}ÿïïÿÿÿ߶ÿÿïíw÷þïöýÿÿþ»ÿÿÿÿÿþÿÿßÿïÿÿþÿÿßÿÿÿÿýÿýÝÿÿÿÿÿûßßï÷ÿûïïÿÿ¿ÝïþÿßýÛÿÿÿßßÿÿþþÿÿÿÿÿ}ýÿÿÿÿûÿÿï÷»ÿ¿ÿÿÿïÿÿÿþß¿ºÿý~û}íßÿÿÿÞßßï¿»ÿÿ¿ÿwÿoÿÿ¿öïÿÿÿÿßÿÛÿÿþïÿÿûÿÿ[ÿßÿ÷ïÿÿÿïÿß_ûÿýýû·ÿÿû»ÿýÿ½ÿÿßÿ¿ÿÿÿÿÿÿýïÿþÿ¿þÿÿÿÿ߯ß~¿ýþÝ×ïm»ÿ¿ßÿÛýÿÿÿý¿¿õÿ¿ÿÿÿ÷ÿ¿ÿÿ÷ÿ¯ßúÿÿë¿ÿýÿÿÿÿýþÞÿ÷ûþÿ¿þïÿÿßÿ÷ÿ½ýï÷ÿßþÿÛÿ¿÷ûÿÿzÿß¿{ÿÿÿ¿ÿýÿÿ¿ÿÿÿýÿÿ»ïÿÿÿÿ·wÝ×ÿÞÿý®ÿïÿïþ·ÿýõïýþßýûÿ·ÿÿÚþïþÿ¿ÿÿÿÿÿ¿ÿýïÿßÿÛÿÛý_ß¾ïÿý÷¿ÞÿýÿþïÿÿÿÿýÚ·ý~ÿþÿÿýßî÷ïÞýÿÿ÷Ûûïÿßÿÿÿ{÷÷ÿÿÿ¿ûûßÿÿÿû_ûÿÿïvÿþÿÿÿÿÿÿÿïÛ÷Ýí÷ÿ¿¿ïïwÿÿöïÿ÷ÿ¿ûïïÿÿÿÿßÿ~ÿÿÿÿïÿÿíý¯ÿûõ¿ÿÿÿ¾îû¿ïûýïÿ÷¿ÿoþÿÿûýûþ¿ýÿßï¿ÿßÿÿÿºÿÿ½ßþÿþÿßý߯ÿ÷÷ÿ}ÿÿÿÿû_ÿÿÿý÷ß]ÿïúÿßûßÿýÿÿ÷ýÿÿ÷ÿÿÿï÷÷¿ÿ÷¿ÿÿþýÿÿ÷ÿßÿïnÿýý¿¿ÿ÷þÿÿÿ¯ÿþûûÿ×ýþ÷ÿ¿¿ÿýÿÿÿÿþÿÿýÿýkûÿÿý¿þÿýöÿÿÿÿßßÿýÿÿßÕÿÿÿ¿÷ÿëÿûÿÿÛÿý÷þÛïú¿ÿî÷ßwûÿÿÿÿßßÿÿ÷ÿþÿÿÿÿÿß÷ÿÿ÷ÿ×þýÿþÿþÿÿîÿÿÿoÿÿ{ÿ¿ïý¾ÿïÿïÕßÿÿÿÿÿÿýÿÿÿÿßÿûÿÿÿÿÿ¾ÿ¾þÿízÿûýþïßÿ¿þïÿÿÿïÿÿßÿïÿýýÿÿþÿÿßÿ¿¿ÿÿÿÿÿÿ}öû¾ÿ_þÿÿÿýÿ÷ÿýî¯ïïï¿ÿßû~ûÿ~þ¾ÿûïÿ¿ÿÿûÿïÿ¿ßýûÞ»ýïÿÿ}úýÿý÷÷}ûûïÿÿí­ß¾ÿÿßÿ¯ÿÿÿÿîÖÿÿÿÿý¾þÿÿÿß¿_¿ÿ÷ëû¿ûÿïÿþûûû×õ¿ß÷}û¿ý¯ÿÿo÷û¯ÿÿÿýÿþ·ÿÿï÷ÿÿ÷ÿýÚýÿûÿ{ÿÿþïÿ¾ÿûïï÷µûýßÿÝÿþÿ¿½ÿþÿßïÿÿÿÝmþ¿ÿß¿¿ÿÿýÚûÿþÿßÿÿ_ûïþÿ¿w¯ÿÿÿïû÷÷ÿÿýÿ÷ïýÿÿÿ÷ÿÿÿþ÷Ýß¿ÿ½ÿþ÷ûßÿûÿÿ÷ÿûþÿÿýûÝÿýÿ¿·ÿÿ÷ýßwÿûÿÿ÷}ÿoÿ¯ÿÿÿÿßÿÿßÿÿ÷ÿúïÿûûûûÿ¿¿Ûÿÿÿÿ_ÿþ¿ï÷ÿ^Ý»ûÿýÚ»ÿ½ÿÿö·û¿ïÿûßûß}Ýÿk¿úÿÿ÷ÿýßû××ûïÿ¿_ýÿwÛ_û÷þíÿûÿÿ÷ÿÿÿÿÿ¿ÿÿÿîßÿÿþ¿þý÷ÿý÷ûíÿkÿýÿßûßÿ¿ýîÿÿÿÿ~ßÿïûþÿÿßïßÿß×ÿ÷û·ßßÿÿÿýÿ¿ÿÿÿÿß¾þýþ¿ÿïþÿ½ÿýýûúûÿÿÝßÿÿýÝÿÞÿþÿÿÿÿýÿ«ÿÿÿïÿÿû÷ÿÿïÿÿÿÿßþÿï¶ÿÿÿÿÝÿßþÿÿ¿ÿþþýûïÿþ»ßÿo¿ÿÿÿÿ÷îßÿõýÿÿï}íßÿßïÝ¿_ýÿÿ¿¿ÿûÿþÿõ÷Ýÿnþ¿ÿ×Výÿÿý÷ïßßÿÿÿ¿ÿ}ëßýÿÿýûÿÿÿÿïÿÿÿÿÿûÿÿ[÷þÿûÿÿÿÿÿÿÿ{ÿ÷ÿ¿ÿ_ÿÿÿûÿïÿ÷ÿÿÿÿýÿwýýÿßÿë¿ßûÿÿûÿ¿ÿÿoûþ¿ÿÿ}ÿ÷ÿ¯ïïÿÿÿÿz÷ÿ}ý÷ÿûßïÿÿ÷Ýýÿÿïýÿþþþþÿþÿ»¿÷ßßû¿ÿûÿïÿ_ÿÿÿýþÿþýïÿïïÿÿ÷ÿ¿ï÷ýÿoÿÿÿþßÿ÷ÿ¿}ÿÿÞÿïïþß_ÿýïÿß_ßï¿ÿÿÿÿþÿuÿÿÿßûÿÿÿþ¿ÿÞÞÿ¿ûÿþûïûý÷ÿÿÿÿÿïÿ»ÿÿÿßÿþÿïýû¿uýÿûÿ÷ÿïÿÿÿßÞÿÿÿûûþÿÿû¿ÿßÿÿõýÿÿûÿ¿_ýÿÿÿïý÷ÿÿÿÿþþÿÿýþïß¿û÷ÿëúÿîýûÿ÷÷ßßÿÞÖÿßÿûÿïÿÿÿÿÿÿÿÞÿ¿ÿÿý÷ÿ¿ûÿ¿ÿÿÿßýÿûÿÿÿÿþÿÿîÿÿÿ÷·ÿÿýÿÿþÿßþÿw¿ÿÿïÿþ¿ÿÿ¿ïÿwßÿÿÿÿý÷­ÿ¿ýÿÿû{×ßÿÿëÿÿÿ¿÷¿ýÿ÷ÿïÿþÿßÿßõûïþÿÿÿû¿úïÿ÷ýþÿïßïÿÿß[ÿõýïÿÿÿÿý¿Ýÿÿÿÿÿ»}·ÿ÷ÿÞûþýý}ýßÿÿþÿþûßþÿ÷ÿï¿ÿßÿ¿ÿÿßÿþûÿÿÿ¿ÿ÷ÿïíÿßÿÿÿ×ÿþýÿï¿ÿÿïÿïþ÷ÿÿÿÿ½úþ×ÿÿûïúÿ¾÷ïÿýÿû¿·ÿûÿÿÿ½Û¯ÿÿÿïûýÿÿÿ÷ß÷ÿÿÿû¿}oÿÿ{þûûûïÛÿýoïÿÿßïûÿ÷ûïïïÿÿþïÿ×ÿûÿÿûíÿÿ¿ûßÿ¯×ÿ¿÷ïÿÿÿÿý¿ÿ¿ÿ»¿ÿÿïÿöÿ÷ÿûýÿÿÿîÿþÿßÿÝÿÿ¿¿¿wõÿïöÿ¿ÿßÿÿÿÿ½÷ûÿûÿý÷ÿûýûÿÿûÝÿþÿÿÿÿëÿïÿÿ¿ÿÿÿÿ·ÿþÿ¿ÿö½¿ïÿ_¿«wÿß¿ÿýkú×ÿÿïÿþÿÿÿÿûÚÖÿßÿþÿ¿ßïíî÷ÿýÿ»ïÿÿ¯¿ÿ¾ÚÿßûÿïíÿÿÿýÞÿÿÿÿÿÿëÿ÷ÿÿûÿ¿ÿÿ¯wÞßßþ¿ïÿýý÷ÿ¿ÿÿÿÿÿ½¿ÿÿßýÿß»¿þ×ßõþïÿÿoÿÿÿÛú»wÿwÿïÿÿþÿ÷ÿÿÿßmßÿûûÿ÷ÿÿÿîÿÿßþÿÿÿÿ÷þßÿÿõöÿýþí_ýû×ÿÿï÷ÿÿ÷ý¿ÿßÿÿûïßÛ»_þÿ·¾ï÷ÿÿþýÿÿûýÿÿÿÿÿÿ÷öÿÿïþÿÿÿï÷ýÿÿÿÿýÿþÿ÷ïÿýïûÿÿîÿÿÿÿû÷[ýÿ÷ÿÿÿÿÿïÿöÿßÿÿÿÿÿ¿ÿÿßßýû·ýÿß¿þ¿ÿÿÿ÷ÿÿÿ¿ÿÿÿÿïþÿÿÿÿûþûí~ÿÿýÿîÿëßþ¿ÿÿÿú÷ÿÿÿÿÿ÷ß¿ÿßÿûýÞ÷ûÿÿïÿ·ýÿûÿ÷ßÿú¿ûû÷ûÿÿÿÿÿÿÿûÿ_ßöÿûwûÿÿÿ»÷Ýÿ÷ßÿßïÿß¿¿ßûwÿ_þÿõÿÿÛïÿÿýû÷ÿÿÿï×Û÷ïÿÿ÷ÿ¿í¿ÿÛûþÿ}ýÿ¿ßÿÿï¿ÿ÷ß÷û÷÷ßíÿ{ÿÕÿ}÷¯¿·ÿÞÿÿÿïþ¿ßÿÿ¿öÿÿÿ^ýÿÿÿ»ÿ¿¿ûßïýÿûÿÿ÷ÿûÿþÿû÷]ÿû÷ÿÿýõ÷ÿÿ¿ÿÿýÿÿÿÿÿû¿wÿo¿ÿßÛ÷½]ÿÿÿÿ¾ÿþ÷ßýÿÿÿ¯ÿÿÿ»ÿÿÿ_ÿúÿÿÿûÿÿÿïïþýÿýîûÿ÷÷ÿ~»ÿû~·ÿÿþÿ÷ÿÿýÿÿÿÿÿÿÿíÿÿÿÿï÷ÿÿ}ÿ÷õÿÿ{¿ÿý¯ïßÿþÿ÷ÿÿ÷ßÿ¿ÿ×ÿÿßûÿ÷íÿû÷¿ïÿïÿïïÿÛÿß¿ÿÿßÿßþÿýÿÿÿÿ¿¿þûÿ~ÿöÿÿ¿ÿûÿþßßÿÿÿÿ¿¿ï~ÿý·ÿßß½»ý¿ßÿ÷~ÿýÿÿÿþûÿ÷ý»ÿÿÿþÿ¯ÿýÚÿÿÿ¯¿ýû»ÿÿû÷ßÿÿûÿýûþÿ÷ÿÿûýþÿoßßÿÿ¿ÿþÿÿÿßÿÿÿÿïß÷ßû_ÿûÿ¯ÿ¿ÿïûûÿÿ¿¿ýÿÿþßýûþý¿ýÿÿÿÿÿýÿÿïßÿëÿÿûÿýýÿßÿþï¿ÿÿï¯ÿ»÷¾ïÿþöÿûïúþÿÿû¿ÿÿ½ûïÿ¿ÿÿÿÿÿÿÿýÿÿ¿ß~ý»ÿÿ}÷ýÛÿÿ·ÿÿýÿ·ÿûÿÿÿÿÿÿÿÿþ½ÿ·ÿÿÿ÷þÿÿÿõúÿÿïûÞ÷ý÷ÿÿßÿ¿wþþÿ¿ÿïÿÿÿÿ÷÷¿ÿßÿÿ½ÿ¿ß÷ýwûÿÿûûÛ¿ÿÿÿÿÿï[ÿíÿþÿoÿÿîýÿ÷ÿ¿ÿþ÷þ¿ÿÿ·ýWÿÿÿÿÿÿ÷öýÿÿ»ÿÿÿÿÿÿ½ÿÿýÿÿûýûýÿÿ÷ÿ®ÿ¯ï»ß·ÿëký¿ú÷ÿÿ÷í¿ÿûï÷ßßßßý¿ÿ¿¿ÿÿ÷¿ÿÿõïÿÿþÿÿÿÿÿûÿwï¿¿ýÿÿïýÿþÿÿ¯ÿÿÿÿ÷úÿýïþ¿ÿ÷¿ÿ«ÿîÿÿýßýÿÿßïÿ{ûÿÿÿûÿÿþþ¿ÿÿÿ÷÷ÿ¿ï¿{þÿÿÿïÿ÷ûÿý~ÿ×}~þÿÿÿÿ÷ÿÿ÷ÿÿÿ÷÷¿ÿîÝûýÿwïû¿¿¿ÿÿþûþÿßßÿÿ_ëÿÿÿ÷ÿ_ïÿÿÿÿÿÿÿÿ¶ïýÿÿ»ûÿÿûÿÿÿ¾·»ÿÿÿÛß¿Ý»÷ûÿÿþÿÿïÿ½ÿÿÿßÿÿÿÿÿÿÿÿÿïûÿßÿûýÿ¯ÿÿþÿÿÝÿ¯îÿÿÿÿÿÿÿïßö¿ûÿÿõvÿÿÿíï÷ÿÿÿß}¿ÿ¿ýîÿº÷oÿýÿÿÿ÷_o÷ÿýýÿ÷·ÿ÷ÿÿ×ÿÿÿÿûÿÿ÷ÿöÿûûÿÿíÿÿÿÿÿÿÿ÷ÿ¯ÿþßÿÿÿ·ÿþ®ÿ¿ÿÿ÷»ýÿýÿöíþÿß¿ÿßÿïý_¾÷ÿßßÿ¿ÿÿûý߯ûõïûý÷ÿ·ÿÿîþÿÿë_÷ÿÿÿïÿîÿßÿÿïýÿûþÿÿÿÿ·ß÷wßÿ÷ÿÞÿÿoÿÿýÿÿÛÿîÿÿïÿÿ÷ÿ»û»û¿÷÷ÿÿÿÿ¿ßý¿ÿ¯ÿÿýßþ·ïÿþÿûßÿþÿÿÿûêÿþ»ÿÿÿÿ{ÿÿÿ_ßÿÿ¿ÿûÿ}ýÿÿÿ÷÷ÿïÿ~ïÿ¿ï¿ÿÿÿÿÿÿýïû¿ßÿï¶ßwÝýßÿ÷ïûÿû÷¿ÿ¾ÿ¯_ÿÿÝÿßïÿÿÿýÿ¾Ûÿ_ýÿÿÿÿïÿ»ÿ»ÿÿûÿ÷¿ÿÿ·þ¯ïßÿßÿÿÿÿûûÿ÷þýÿ·ÿÿÿ¾þßßûÿÿÿýþÿÿþýÿÿ½»úþ÷ýß¿ÿ~ÿÿÿþ÷ýïÿëÿ]Ûÿîûÿÿmýÿÿßÿÿÿýßÿÿÿÿÿ¾»þÿµþÿ¿îþÿÿïÿ·ÿï_¿ößÿßÿÿÿÿûÿ¿mÿÿ¿Ýÿÿÿÿÿÿßÿýÿß¿{ûÿÿïÿ¿¿ÿ¾ïoÿÿÿÿÿWÿ¾þßïÿÛïÿ~ýßþÿÿÿ÷þ¿ßÿû¿ßÿ¿íÿÿÿ{ûÿýßÿÿoþßûýÿÿýýn×þÿþÿÿþï¿ÿ¿ÿÿ÷ßÿ¿ÿû¿ÿÿÝßÿþÿß¿ÿþÿÿýþÿÿÿ·ûÿßÿÿ÷ÿÿþÿ¿ÿÿÝÿÿßþ÷ÿëÿÿÿ¿{ýÿÿ¿¿oþÿÿÿý¿þýïÿû×ïßÿÿ¿ï÷û÷ï»ÿýÿÿÛÿÿÿï{ÿvÿÿ·ÿþþý½ÿ{ÿû^û÷ýßÿÿý·ÿÿÿï÷ÿûÿÞÿûÿß¿ßÿþþ­ÿ¿¾ÿ÷µÿÿÿÿÿ¿Ûÿÿÿý_ÿßÿÿÿÿÿÿÿÿþÿÿÿ}ÿ¿ûû¿þëïÿÿ¿÷ÿ÷ÿ¿ïïÿ×þÿÚûþûÿßßß÷ûïÿÿÿïÿÿÛÿûÿÿ¿ßÿßÿÿoÿþ½¿ýÿ÷{ÿÿÿÿÿïßþÿþÿÿï_ßßÿÿßúÞÿÿûÿ÷½ÿÿÿßýÿÿÿÿýÿÿÿ÷þýûÿÿÿï}ÿÿÿþûÿÿïï¿_ßwýÿ÷ßÿþýÿÿÿ¾ßÿëÿ¿öߺýÿÿïÿÿÿÿÿÿwýïßÿû¿¿ÿÿûþþÿÿݯïÿïÿÿ¿ÿ÷ÿÿ÷ÿÿÿþû}ÿûßÿÿ¿ïÿûÿÿÿßµÕ÷÷ï·îÿßûÿ¿ÿÿÿïÿÿ«ïþßÿÿÿÿÿïÿÿÿÿÿÿÿ×ÿßßýÿûÛïÿÿÿ}ÿýÿÿÿ÷¿ÿûÿÿý¿ÿßþÚÿû»õÿÿßïÿ¿ÿöý¿÷ßûÿ·îýÿúþþÿýýÿÿÝÿÿþÿû¿¾ÿÿ¿ïÿßÿß÷ÿÿûÿ÷ÿw}ÿÿÿïÿýÿÿÞÿ¿ÿë¿÷ïÿÿÿÿýýÿÿuÿÿïÿÿß÷ïÿÿßÿÿýÿ¿Ýýýýÿÿ»_÷ÿ»þÿÿß¿÷÷ß»ýÿÿ~ÿÿÿÿý¿ß÷_ÿÝ¿ÿÿûÿÿÿÿÿ÷ÿßÿ÷ÿßûûþÿÛßëÿÿë¿ÿþÞÿÿþýïÿÿ÷÷¿ÿÿ¿þÿ½ÿýýÿß_ÿÿûÿßÿ¿úïþÿÿÿÿÿwÿïÿÿÿýßûÿÿúûÿÿÿÿþ÷ÿÿwÿÿÿßþýúßÛÿßïÿÿÿÿÿ¿ÿ¿ëÿÿïû¿¿ÿÿÿÿÿïïûûÿ_ÿ{ÿ÷×ÿÿï_÷}ÿ÷÷ÿ¯ÿ¿ïþýßÿþßûÿ~îÿÿ¿ÿëûÿÿîݽïýÿÿ½ÿÿýÿÿÿÿ¾ÿÿÿÿíýÿo¿ÿÿ÷}ÿ÷ÿÿÿý¯ÿ÷ïû~ÿýûÿßëÿÿÿ¿¯ë·ÿÿÿ÷ý¿û»~þÿÿýoÿÿÝÿÿÿûÿïÿ¿íÿÿÿÿýÿýúÿ÷ûþý·ÿÿß{}{ÿûû÷ÿþÿßëûÿûÿïÿßûû¿¿ïÿýßwÿÿßÿßÿ÷ÿÿ¾ßÿ{ÿÿÿëí÷ÿÿ¿þÿÿÿïïÿ÷_îõ÷wÿÿÿ¿ÿûÿûÿýï¾ÿÿÿÿÿÿÿïÿÿëßÿ¾ÿÿÿÿý·ÿÿ÷ÿý÷þÿ÷ÿÿÿwÿÿÿïÿûÿûû÷ÿvÿ÷ÿïÿÿÿ¿ÿÿý·ÿý½÷»öÿÿÿýï÷þ¿ýÿýþíÿÿ»û¿ÿÿÿû÷×ýÿû}ÿÿoÿÿ÷ÿ»¿ýÿÿÿûo·ïïïßÿÛûoïß_ûÿÿÿÿwúÿÿþúû÷ÿýÿßÿÿßëÿ¿þíûÿÿûÿï×ÿÿ÷÷·ÿÞýÿÿÿÿß÷ÿwvýÿ÷ÿïïÿÿÿWïÿÛÿÿßÿûÿßÿÿëÿ_ÿ½ÿßÿß¿ýûÿ¿ÿÿ¿ÿÿußþ×ÿþÿ_¾þû¿ÿýÿÿwÿÿþýÿÿÿïÿßßýÿÿÿÿ¿ÿßûýïÿÿýÿþûÿßßÛû{þÿþû÷ß¿{ÿÿßÿþßÿÿÿýýÿ¾÷ïÿÞïîïû¾þýÿÿÿÿÿÿÿÿ÷×ýÿÿþï{ÿÿwÿÿúýþïëoÿýßÿÿÞÿ÷ßïîÿ¿½ÿÿïûïÿÿÿÿÿ_ßûÿÿÿÿÿÿîÿÿÿÿ}ßþÿûïþïÿîýþïÿÿûÿÿÿÿÿÿÿÿ{_ý¾ÿïûÿw·¿ÿþÿÿÿûïîÿÿýwÿ½ÿßÿÿößÿÿÿoÿ÷ÿ·ÿëþ¿ÿþëÿÿݯ÷¿ÿþÿÿÿþýÿÿ÷ßûÿÿÿÿ¿÷ýÝÿÿÿÿ¿ïÿ_÷þþÞï¯ïÿÿuûûÿû×ÿÿÿuîÿýÿïßÿÿÝÿÿ¿÷ÿÿÿÿ½þÿõÿÿßÿßßÿ¾÷íþ÷½Þÿ¿ÿÿ¿ÿýÿÿÿûýÿíû׿þÿwÿþ×÷ýïý·ÿÿÿÿöÿÿÝÿÿÿÿû_ïÿÿ¿ÿ÷ÿÿ¿ûß÷ßïûïÿïÿþÿÿ÷¿î÷ßþÿíÿÿ¿ÿ·ÿýÿÿ¿ÿëÿ¿ÿ¿ýýþ½ÿëÿßýwÛïÿÛwÿýºûýÿÿ¿ÿýÿÿþÿÿÿýÿÿÿÿýÿÿþÿwßÿûÿmÿÿÿï»oÿßÿÚ¿ÿÿúï÷¿ÿûïoÿÿÿïý¿ßß÷¿ÿÿÿÿß»í¿ÿûÿÿöÿûw¿õþûoÿÿ÷ÿûß¿ÿýþÿûÿÿÿÿÿþ·ÿÿ¿mûÿÿ÷ßûÿ·ÿÿû×þßÿ÷ÿþïÿÿÿ¿×ëzïþ÷ÿÿ÷ÿÿûÿûÿÿ~ÿÿ÷ÿß«ÿÿ¿ÿ÷ÿýßÿÿ¿ûÿ¿ÿß÷ÿþÿþõÿÿÿÿ÷ÿÿïßß¿ÿ÷þýÿÿ_÷¯ÿÿï¿û÷þï¾ÿÿßþýþïÿÝÿoÿÿþßÿÿ»ÿûÿÿÿÿß÷ÿ÷¿ÿÿ¿úÿ¿ÿÿß¿þÿÛíÿÿ¿ïÿß¿þÿûûÿþþ¿ï¾ûÿûÿíÿ¯ÿÿÿÿ¾ûûÿÿþ»ÿÿý¿ÿ¿ÿýï÷ÿßÿûÿÿÿÿÿïõýûÿúÿÿÿß»ÿÿßÿöýwÿýÿÿ÷÷µûþõ~ûûÿÛ¾ÿÿïÿßßýöýû÷ÿûÿïßÿþÿºÿ÷ÿû÷ÿÿûßÿþõ¿ÿÿÿïÿÿÿµoÿ½ÿÿï~«}ÿÿ¯~õÿ·öÿÿûÿ÷ïþÿ¿·}öýÿïßëíÿþÿÿÿýÿïýÿÿßÞÿöÿ÷zþþÿïýÿÿÝÝ÷ÿÞÛîïÿÿßÛ­·ÿß}ÿÿßþ÷ßÿ¿÷ß÷¿_÷ýÿkÿÿÿÿÿßýÿýÿÿÿÿý¿¿ÿïwÿÞþýÿÿïÿß¿ûÿÿ¾ÿµëýûý÷ÿÿÿ÷ûÿÿµÿÿ×ÿÿþÿÞÿêß¾ÿ¾ÿ÷[÷þÿïïuÿ÷ÿûý~ÿûÕÛýÿþþÿßÿÿ»öþÿ¾ÿïÿßþïßö¿ÿýÿõÿúßÿÿÿ·ýÞÿ÷¿ÿ¿íßßßÿßïýÿïÿþ÷ßßÿÿ~ÿÿÿîûÿÿ·×ÿ¯ußÿï÷ÿÿ¿ûî¿ÿÿÿµÿíÿïÿÿÿÿÿÿÿÿ¿×ÿÿÿöÿûÿßÿûÿÞöõïÿÿþÿûÿÿ½ÿýÿýÿÿÿïÝÿßÿÿïÿwÿÿÿÿÿÿ½¿ÿ¿ÿÿ·ýÿ¿öÿû÷ßÿÿïþÿÿÿoÿ÷ÿÿþõ¿ÿ¿ý÷÷ûÿûõ÷ÿ÷ÿûÿ»ÿöûíÿÿÿþßÿ]¿ï}ÿ¿ÿûÿýÿßÿÿ»ÿÿÿ]ÿÿ÷ÿïþûÿÿÿïÿ¿ÿþÿÿÿ¾ÿßíõÿÿÿßÿ_ÿÿößÿÛÿÿïÿÿÿÿÿÿÿýßÿoÿ¿ÿÿýþÿÿÿÿ÷ÿ·ÿÿßþÿÿ÷¿ÿÿ¿ÿßÿÿûûþÿÿÿÿÿÿþÿëûþþÿßí]ÿÿûÿÿ¿ÿÿ¶ÿï¯ÿ¿·ÿÿúû¿¾ÿÿ¿þ¿ßÿ¿ÿûÿÿ·ÿÿïï~½ÿûïÿ¾ûÿoÿ÷þÿ¾ÿÿÿýýÿ¿ýÿýûÿ×þ¿ö¿ïÿýÿ¿÷þÿßïÿÿÿÿÿÿþ÷ÿþÿÿnûßÿ÷÷ÿ÷ÿÿm÷ûÿÿþÿï÷ï¿ýuÿÿï¿ëßþÿÿ¿÷ÿÿÿÿÿo·¿ÞÿûÿÿýÝýßþÿïûþÿ¿¿¿ÿÿÿ_ÿïoë_ûÿûû×ÿýÿÿýÿÿÿßúÿßÿþ¿ÿýÿïïß·ÿÿÿûþ÷ïï÷ÿ¾ëÿÿ÷ýÿÿ÷Ýÿÿïÿ¾ÿÿ¿ûÿúÿÿÿ÷¿ÿÿÿïÿÿÿÿÿÿÿÿßþÿßûÿÿÿÿ÷ÿÿûþÿ¿þßßïÿßßwößÿÿÿÿ½ÿïÿÿÿ¿ýïÿ»ÿßÿÿþßïÿwû÷÷Ýÿÿûýûÿÿÿþÿûÿýõ¿ößÿöïÿ»~ÿîÿÿÿûÿÿýÿþÿ¿ÿÿ÷ÿûïÿoýÿÿ»ïúýûÿûÿûÿÿÿÿ÷ßûÿÿÿÿÿÿýÿÿß¿ÿßÿÿ½ÿwÝÿÿïÿïíÿîÿ_ÿÿúïÿûÿÿ¿_÷ÿßÿÿý÷û¿ÿÿþïÿÿÿÿ¿ÿû÷ÿßÿÿ÷~ÿßûý¿ÿÿ÷ÿûíÿÿÿÿÿß{ûÿÝÿïÿû÷ÿëß÷ÿßÿÿÿÿÿ÷ýÿÿÝÿÿÿÿûÿÿïÿÿýýÿþ·ÿï¿ëÿßÿÿÿûÿÿÿÿÿûÿ¿ýþßÿÿÿïÿïÿÿÿÿýûÿýþþÿ÷¿ÿÿþßÿëÿÿÿÿßÿïÿÿ}ÿïÿßÛûþ÷ïßþÿÿýÿßÿ÷ß÷ÿ¿ÿÿÿïÿö¿»ýí~ÿÿÿÿÿÿ¿ÿýûÿÿÿýïÿ·ÿµïßÿÿþÿû¿¿þþÿïÿúÿ_ßÿÿýÿÿwþöï¿ÿû{¾ö¿ÝûÿÿÿÿÿïÿþÿÿÛÿ÷ýýïþûÿ¿ÿÿïïÿÿÿïÿýÿÿÿÿÿÿíÿï]ÿ÷ëÿïÿ~û÷ßß¿·¿öÿÿÿÿÿý¿ÿÿÿß××~ÿÿßÿÿwÿ¿ýÚÿþ»ý×ÿû{ïÿûïÿû÷ÿÿßïÿÿ·ÿÿÿï¾ûÿÿÿÿ¿û¾¿~ß¿ÿ×þÿÿß¿ïïÿ÷ÿûÿßÿÿÿÿ÷ÿ¿÷ÿõÿýÿÿÿÿßþÿÝßï÷ûûÿÿÿ½ýý_ÿ½ïúßû¿ÿÿ÷ÿÿÿëÿýÿû½ÿ÷ÿÞÿÿ¿ÿöûßÿÿÿÿßÞß÷ÿÿÿÿÿÿÿûÿÿýÿ~ÿÿÿÿÿ¿}ßÿÿ÷ÿ»ÿþÿïÿÿÿßÿÛÿýÿ{úÿ÷ÿ½ÿ¿îÿïÿÿÿýßíÿÛÿÿ[ÿýë_ÿýý¿ÿÿûõÿÿõ÷ÿýÿþÿÿÿÿßÿÿÿÿÿ}ÿÿÛýÿß÷¿ÿÿÿÿþþÿßþþý¯ßÿÿÿÿÿÿûýkßûÿÿûÿ÷ÿÿ¾ïÿÿ÷÷ÿßÿ÷ïÿÿÿÿÿï÷ÿÿ÷ßë÷ïõ½ÿÿÿÿÿûÿ÷þÿÿÿÿÿ{׿ÿÿýÿý×kÿû¿ÿþý¿ÿïÿÿ¿oÿÿ×ÿÿÿÿ½ýÿoßÿïíÿÛ~ÿÿûý÷õîõ÷ÿëªÿßÿûmÿ÷_ïý·ûïöÿÿÿÿý»û÷÷ÿ½¿ÿþïýÿßÿ÷ÿÿþÞ÷~ÿ¿½ÿÿï÷õýÿ{ßÿÿÿ÷ý·ÿþ¯ÿÿýîÿÿ¿wÿÿÿoûÿÿþþþþÿýÿïÿÿ÷ûÿÿ÷~ÿÿÿþûþÿÿõÿÿÿoßÿÿßÿÿûw÷ýýßýÿýÿ·»ú¿½ÿ»ï÷wï¿÷Wû¿ÿ÷ÿî¿ÿû÷ý÷×÷ÿÿûÿÿÿ{®ÿÿÿÿÿÿýÿÿßÿvþÿõÝÿÿÿÿßßÿÿÿÿûï÷[ÿþÿ¿ÿÿÿßïÿÿÿ»»ÿ½ÿï»ýÿÿ¿ýýÿýßÿ÷ÿößÿ÷ÿþÿÝþÿûþ½ÿÿÿÿ¿ïÿÿÿÿÿÿÿ_ï·¯ÿïÿß÷ÿïÿÿ¿ÿÿ¿ÿ÷û~ÿo¿ÿßïþÿÿÿ_Ýÿßÿþýÿÿÿõÿÿ®ß¿ÿÿÿ·ïûû÷þû÷¿ÿ}»ÿþî÷ÿþÿ·ïýÿÿ÷ÿïÿýýÿÿïÿ¯·¿ïûÿïýÿÿÿÿÿûþÿÿ¿ßîßÿý÷ÿÿ￾÷ûýÿÿþï¯{ÿþýþÿûßÿÿïýÿ¿ÿÿvÿÿ{ÿîÿíÿïþ¿ß¾÷ýÿßïÿÿýÿÿï¾ýýÿÿÛï×ßïÿÿÿïÿÝþûîßÿÿÿ¯ÿÿÿÿýoûÿÿýíÿþÿÿÿ÷ÿÿ÷¾ïÿþßÿ¶ÿ¿Öÿõ¾ÿîÿÿÿîßÿ{ÿÿûÿ÷ÿÿÿ{ÿõÿÛÿÿÿWÿ{Úëý¿¾ýÞÿÿ¿ÿÞÿÿÿÿ÷ýÿÿþûÿößÿïÿÿßûÿÿýÿûýëÿÿÿ÷ÿïÿÿÿïÿë÷÷ï·ïÿíÛoÿÿýÿÿ¿·ïÿûÿÿý]×ÿßÿvÿoÿÿ¿ÿýëíÚÿwÿýÿÿï·ÿÿû÷ÿÿÿÿýÿÛÿÿÿýÿÿÿÿÿß÷·×ÿþþÿÿúÿûþÿÿ÷«ûkû¿û÷÷ý¿ÿýþßÿýÿûÿÿÿÿ߯ûWÿÿ{ýÿÿÿwþûÿþíýÿÿëûÿÿÿÿÿÿÿêÿÿÿþ¿ÿÛïÿÿwï½öÿÿoÿÿßîÿ¿ÿÿÿÿÿÿÿÿÿÿÿ÷oßÿzÿõíýý¯ÿïûûoûûïÿÿ}ýýï¿û¿}ÿÿï¾ÿûßÿÞ¿ÿÿ×ûþ¿ÿÿÿûÿï}ÿ×[ÿþþþ÷ÿýÿ÷ÿïÿ÷ÿÿÿÿÿý÷ÿßwÿ¿ÿÿ¿ÿÿÿÿßÿ{ÿÿÿÖþÿ÷¿ýõÿ÷ÿÚÿþúþïß÷þÿ}ûýþëûÿßÿÿßýßÿý¿ýûÿþ¿ÿÿ¿÷ÿÿÿßûßÿý{ÿoï÷ÿ÷ßÿïÿ¿×{ÿÿýõÿíþÿýýÿÿûÿïýZþ¿ûÿÖÿÿßÿÿûÿûÿÿÿÿßÿÞ¿þÿïÿÿÿêÿÿ¾ÿûû}ÿ}ÿÿÿûöÿÿwÿ÷ë_wÿÿo¿ÿïýÿïÿ½ÿÕÿýïßÿÿnõÿ¯û÷ÿÿÿßÿÿßÿ߯ÿÿÿÿ¿ÿßÿû_ïÿ÷ßþÿû»ÿÿÿÿþ»~Þÿÿßwßýÿÿÿýï_ÿÿÿÿ¿ÿþïÞ÷ÿöÿþß××ÿÿ¿ÿõ÷ÿûïõýºÿÿûýÿÿ÷ÿÿÿ÷ÿÞÿÿíÿþÿÿûÿûßÿ_¿ý_}ÿþþþ·ÿïÿ¿ßÿÿkoÿ÷ÿÿÿûßßÿ¿ÿÞþ¿÷ÿïÿû÷ÿÿÿÿþÿÿÿûþýûÿÿÿÿýß½¿ßïþ­÷÷ûÿþÿÿþþ÷ÿÿÿïÿû{ÿÿ»÷¿ÿïÿÿ½½ÿÿ÷þÿo÷ýïýÿÿýÿÿÿÿÿÿÿÿÿïÿïûûþÿÿÿßÿnïÿÿïÿÿoöÛÿÿýÿîÿ¿úÿÿÿïÿûÿ»ÿÿÿÿÿ÷ßýÿÿÿ_ÿÿÿÿÿ÷ÿÿ÷ÿï½ûþßûýþÿÿýûÿÿßo¿ûÿïÿßÿ÷ïßÿÿþ½÷öÿÿ¯ÿwÿ­½ÿÿÿ¿ÿÿ¿ý÷ÿûÿÿï÷·ýÿûï÷ÿ_ÿïýþ÷{öÿÿkÿúÿÿ¿ÿþûúÿöÿÿúÿûï÷ÿýÿÿûûÿÿÿ÷÷ûkÿÿÿ÷ÿÿ÷ÿïýÿmÿÿÿÿÝÿß~÷ýÿÿýÿÿß¿ûÿýíÿýÿ·ÿÿÿÛÿÿÿÿÿÿ÷ýÿþ÷ÿï¿ÿÿÿí­ûû÷ýÿ÷ßÿÿ_ÿþßÿwõþßÿÿÿýÿý÷ÿïÿ÷ÿßÞß¿ýÿû÷ÿöÿ¯ï~úÿýÿÿ÷þÿÿ­ºÿÿÿÿýýÿÿÿïÿÿ¿{¿ÿþû¿ÿÿ}¿¿ÿÿûÿ÷ÿÿÿÿÿïÿÿÿÿÿÿ¿ýîýßÿýÿÛïoÿÛÿßÿÿÿÿÿÿÿßÿÿÿÿýÿîýÿý÷¿ÿ¿ïêÿëÿßÿÿ}ÿý꾿ÿþÿ×ÿßßýÿÿýÿÿþÿÿÿþïþÿ¯{ÿÿþ÷ÿëÝÿß¿÷ÿÿÿþßÿïþÿ÷ûÿöÿßÿÿýïÿýÿþÿÿÿß¿ß{ÿ·þö¿ÿÿÿïÿ÷ÿßý¿¿úÿ÷ößÿÿî÷Õ¿ÿûÿýÿÝÿÿ^ÿûÿþÿÿÿûÿÿÿßÿÿïÿÿÿoþÿß^ÿÿÿÿÿÿ~ÿÿ¿ÿ÷ÿ¾ÿÿÿÿÿÿÿ¿ûÿÿÿý¯ÿûÿ¶ÿ÷ÿßvÿ½öýÿýÿÿÿÿ}îÿû·ÿÿÿþÿ÷ÿÿ¿wïÿÿþÿþÿÿÝö÷ÿîÿß÷ÿïÿïßÿÿÿÿ}ÿÿÿþßÿÿÿ¿÷ßýÿÿß¿ûÿÿ÷ÿÿ¿ÿýû÷ÿýÿÿûÿúÿÿÿÿýÿýÿÿÿ_oÿÕÿÿ~ÿÿÿoÿÿ¿ý÷ïÿÿþúÿÿ÷ÿýïûÿ¿ÿoÿÿ¿þßïïÿÿýïu¿ÿ÷ûÿïwßßþþÿ^ÿ¿ÿ¾ÿßÿÿÿîïû¿þÿÿïÿþµ÷ÿý÷ÿ÷ÿÿ÷¿_ÿþïúÿÿÿýÿíûþ¯ÿýï¿ÿßÿÿûÿw·þÿÿÿ÷ÿûÿï¯ÿþýßýþÿÿÿ{ïÿÿ÷ÿïÿ½ÿÿÿ¿ÿÿ÷½ï{¿ý¾ÿ÷ý·ÿÿ»ÿwÿþÿþïîýúÿÿ÷ûÿýÿÿÿÿ÷þÿ÷þ¿ÿú»ÿûÿÿ¿ýÿ÷ÿ÷÷ûß½÷~ÿÿ¿­¿ûÿýÿþ÷ÿÿÿ½ÿýÿÿïû¿û¿ÿÿÿÿÿÿßûÿ½_ÿÿûÿÿíÿÿÿÿÿûÿÿïÿÿÿ÷þÿÿûÿÿÿþþïïÿú»ÿûÛ÷ÿÿÿ÷ß÷ÿ÷ý½ÿÿ¿ÿÿýßþÿÿûÿ¿ýÿÿÿ÷Ýÿýþÿ×þï·ýÿÿþ®ÿÿûÿÿÿ¿¿w½ÿÿÿÿþ½þßÿÿÿÿÛ÷ÿ÷ÿßþÿwÿÿ÷ûÿ}ÿÛÿÿþÿ¿ýëþýÿÿûïßßßÿ÷ïoûß¿ßÿÿÝÿ¿ß×ëÿ·ÿýÿÿÿûþÿwÿûïïýÿÿÿÿýÿÿÿÿßÿßßþÿý¿þýÿÿûÿÿÿÿ¿wÛÿ¿ÿÿÿ÷ÿÿÿ»ý½ÿ¿ýïÿ÷ÿ¿ÿÿÿÿÿÿý¿ÿöï×ÿÿÿíÿûÿÿ{þ÷wÿ÷ÿÿþÿ¿ûþ¾ûûïÿ¿ÿû¿ÿþß¿ßÿ÷ÿýïýÿÿÿÿÿ÷ÿÿîþýÿýÿÿ¿ÿÿßÿ×ÿïÿÿþïÿþþÿ¾ýÿÿÿïýÿÿÿÿÿÿÿÿ÷÷þþ¿ý]ßÿÿûÿÿþß÷þÿ×ÿ­ÿÿÿÿïÿÿßÿ¿ÿ~ï÷ýÿÝÿÿßÿÿýßßÿÿÿÿÿÿßýÿÿÿÿþþÿÿÿþßÖöÿûïÿÿÿëÿÿßÿÿþÿÿëÿ¿~ÿÿÿÿÿÿÿ_µÿïÿßý¿÷ÿÿý÷¯÷Ýÿï÷ß÷ÿûÿÿûÿïÿÛ¿w¿ÿ÷ïÿ¿ÿÿý¿ýßûÿ¿ÿÿßÿ÷ÿwûßßÿ¿¿ÿÿ·ÿþ÷ÿïßÿoÿ¿ß÷ÿþÿÿÿÿþÿv÷ÿßÿíïÿÿþ÷ÿûëþ¿ÿÿÿÞßßï_ÿÿÿßzÿþÿïÞïÿÿïÿÿÿÿÿ¯ßÿûÿþ»¿ÿþ»×ÿûÿw÷ßÿÿýÿ¿ÿßÿöÿ·ßÿÿÿûÿÿÿïïÿÿÿú÷÷ÿÿÿîþïÿÿ÷÷ÿÿvûÿ»ßýîûÿ¿ÿÿë{úÿï¿ÿÿþÿ_~ÿÿß¿º÷ïßþýöõÿÿÿþï~ÿ¾ÿïßÿÿÿÿí÷ÿ{û¿ÿï¿ÿ~ýÝ¿o»ÿïÿÿÛÿ^÷ßÿ÷ÿýÿýßïïÿþïßýîÿÿ¾ÿ÷ÿÿÿßÿûÿÛ÷ß¿ÿÿÿÿÿ·Ûÿwÿÿÿÿßïýÿÿÿýûÿýï{ÿ_¿ýÿßûÿÿÿÿÿïÿÿÝÿÿÿû_ÿßûûÿÿwÛ_ÿßÿ_ÿý»¿ÿ¿ýûÿÿ÷ÿÿÿÿ·ÿ{ÿýû½ÿÿÿÿ{ÿïÿÿÿÿþÿÛ¿ÿííÿÿÿ÷ÿûûÿïÿÿÿÿíÿûÿ¿ý»ýÿÿÿ÷÷ÿþýýÿÿ÷ÿßÿÿýÿÿÿÿýÿÿßÿ¾ÿÿoÿïþß}öëÿÿ¯ÿÿÿÿÿûÿÿ»oÿÿþ×ïÿÿÿÿÿ«ÿÿÿ¿ÿ¿ÿÿÿïÿÿÿÿ÷ýÿßÛ}þ¿ÿÿÿ·ÿoýûÿß¿ÿûíïÿþþþÿÿë¿×ÿ»ÿþÿûÿûßûï¯ÿ÷½÷÷÷ýÿßÿÿÿÿ¿ÿÿïÿßëÿÿ÷öûÿýïï¿ÿ¿¿_ÿÿ{ÿÿÿ÷þÿ½ÿÿ÷õÿ·ÿþÿÛ»ÿþÿÿÿÿÿÿþÿÿßÿß¿þÿÿÿûýÿÿÿýþ÷ÿ÷ÿïöµÿþÿ÷ÿ÷þÿß÷û÷ÛÝ÷~û×ÿïÿÿÿíÿ·ï¿ÿÿïÿ¿ÛÝÿÿý¿ßûûÿ¯¿ÿïýïÿþý¾¿úßöõÿ÷þþïÿßÿß¿ý¿ÿÿÿÿ÷ÿûû÷û÷ÿïÿ^ÿ¿ï¿÷ÿÿë÷ÿÿþþ÷ÿ½ÿýþÿw÷ß}ÿýÿÿÿþîÿÿÿÿ¿ÿ{ÿúÿ÷ûÿÛ÷ûÿÿÞÿÿïþÿ¿û¯ÿû_ýÿÿ¾Ûÿï÷ýÿ÷ÿßÿÿÿÿÿÿÿÿßþÝÿÿÿ×ÿÿÿ¿{ïÿÿ÷ý×ÿÿ}ÿÿý¿íÿþÿÿÿ»ÿ~¿þÿÞÿýÿýû÷ÿÿýÿÿ{ïßßÿþûÿýþÿßûÿÿÿ¯ÿÿÿþ×ý¿þÿ¿¯ÿnõÿÿ»ÿÿ½ÿÿÿ«ßþ÷÷ÿÿÿÿÿ·¯ßÿÿ_ýï¿ÿúÿþ÷Ûßÿ_ÿßÿïûûëï÷ÿÿöÿÿÿï¿~ÿõÿÿÿÿýÿÿþý·ÿÿß[ÿÿÿÿÿêßÿíÿÿÿÿ·oßÿÿ»þýÿ÷ÿïÿÿÿoÿ½¿û¿¶÷÷ÿÿoÿÿß¿ßÿÿï÷ÿ~ÿÿýïþ÷ÿµÿëßÿÿûÿ¾ÿÿÿÿ÷ÿý¿ýßÿÕ÷¿oýÿÿ¿ÿ÷îÿÿýï¿ûÿÿÿ¯__¿úþ÷׿÷ß}îþõ»ÿÿÿýÿÿúýÿûûnïþÿÿÝÿÿýß¾ÿûÿï¿÷ÿýïëßúÿÿÿ¿ïÿýÿÿÿ¿ÿ¿»þýÿÿ¿íÿëýÿÿÿïþþÿýûÿÿÿÿÿÿí¿ÿÿÿýÿÿýÿÿÿÿÿ÷ÿÿßÿÿÿû¶ÿÿþÿÿýý¿÷ÿûÿÿïÿÿÝýïÿ¿¿ÿþÿ_ÿ·ÿÿöý¿ïßÿÿïÿþÛÿÿÿÿ÷ß÷þ¿ÛÿÿÞÿÿýÿÿÿÿûÿÿÿÿÿ¿ÿþÿßÿÿÿ÷ïÿÿÿõþÿßïÿ×ßÿßÿ÷ÿß÷÷~ÿ}þÿÿÿ÷ÿíÿÿÿ{ÿÿÿÿÿßmÿ_úÿÿÿÿÿÿ¾¿ÿýÿ}ÿ¿û¿ÿ{þÿïÿýÿÿÛÿßÿýþÿþýÿ·ÿÿßßÿ¿ÿÿÿÿ¾ÿÿÿûÞÿõÿýÿÿûwï÷ÿÿ÷ÿÿïÿÿýÿÿÿÿþïÿÿþÿÿÿî÷ÿûïÿÝûÿýýûûïÿ¿ÿÿýÛ}ÿÿýÿÿû÷ûÿÿýÿÝý·ÿÿ·ÿíÿ¿ÿ÷¿ÿõÿÿÞ÷ßûýÿÿÿýÿÿÿûïûÿ¾¿ÿíûÿß~ÿïÞÿÿÿ^ÿÿ×ûÿÿÿþÿßÿÿïÿëÿwÿÿÛë×þÿÿÿÿïýÿýÿÿïûÿÿ÷ý÷ï÷ÿÿ¿ÿ¿÷ÿûúÿ{×ßÿÿ¿÷ÿïÿÿÿÿý_÷ÿÞÿ{ýÿÿ_ÿÿ_ÿ¿ß{÷ÿïÿÿþÿþ¿ÿÿ~¿ÿÿÿ÷ÿïþÿÿ½¿ÿÿ÷ÿ¿ÿÿþÿ{ÿÿÿÿïûß÷÷îýÿÿßÿÿßý¿¿}¿ÿýÿÿÛmýýÿ_úÿ÷ÿûÿÿÞÿû»ÿÿÿ_ÿÿßÿ÷ÿÿû÷÷ÿÿÿÿ~ÿÿÿÿþßÿßÿûÞ¿û}¿î÷ÿßÿÿïÿßÿÿw»Ûÿÿÿÿûïÿßÿÿÿýÿÿÿïz÷ýûÿÿÿýÿ¿þÿßßõÿÿÿûþïÿ÷ÿ»ÿµ÷ÿûÿÿþ¿ÿßÿÿÿ¯ýýÿÿÿûýÿÿÿÿÿßíýö÷ûÿÿ¿ûÿþû÷ÿýÿú÷ûßíïÿûïýÿûýÿÿ_{¿÷~þÿþûõûÿþþïþÿýÿoÿ~ÿî÷ïý·ÿý¿ÿý¯¿ÿÿ¿ûÝýýÛïûÿûûßÿþû{ÿ÷ýÿÿ¿ÿÿ}ïß·ÿ¿þ¿ÿÿîÿ½ÿ¿ÿïÿþÿÿÿÿÿ¿¿þ¿×ÿßûÿÿÿÿÿýíÿï½µûïÿÿÿÿÿÿÿï¿ïÿÿûýwÿÿ¿ÿï÷ûÿÿÿûÿÝÿÿÿýÿÿÿý¿ÿß~ûÿÿ{íþÿÞïûÿýÿÿÿ¿·ÿÿÿÿÿÿöþÿ÷ÿvÿÿõÿÿÿÿ¿ýÿÿ¿ûÿÿÿûÿýÿÿþÿëÿ÷ÿÿßõÿßßÿÿßÿÿßíïû÷ÿÿÿßïÿ¿÷ÿïÿïßÿÿþþÿúÿï¿öÿÿßþëÿߺý¾ûíÿÿÿûû~÷ÿý÷ûýß~ûÿÿÿÿýÿÿÿ¿ÿï}ÿõÿýÿÿûÿÿÿÿ¯ÿöûÛ¿ÿmÿÿÝ»ÿÿÿÿÿÿÿÿýîÿû¿û÷z¿÷ýÿßÿ÷ÿ¯¿ÿÿÛÿÿÿ¿ýw¿ÿÛÿÿÿÿÿÝ×í¿·ÿÿÿ×ÿþûÿÿ{÷{ýÿÿ¿½ßÞÿÿÿÿÿþÿþÞÿ÷ýíÿÿ¾ÿÿÿÿ{w÷×ÞÛï¿ÿÿÿïßÿßïÿÿÿo¿ÿïßÿÿÿÿÿ÷ûÿ_¿¿ÿÿýßÿßÿÿíß¿~»ÿÿûßÿýÿÿÿÿ÷÷ýÿ÷þ÷ÿ¿÷ï÷ûÿ¿ýÿöíÿ¿¿ÿýÿÿÿo÷ÿýýÿïÿÿÿÿÿßwÿÿÿÿ½ûýíÿ¿ÿÿÿ÷ûþÿÿÿÿÿÿÿÿÿÿ߯ÿÿ÷ïïûÿÿßþßÿïÿÿ¿ÿÿÿßÿÿ÷ûÞÿýÿûÿþõÿ¿ÿûþÿþÿûúÿþÿÿßÿ÷ÿÿûý÷ÿ{þÿÿïÞßï¿ßïÿïÿûÿß÷ÿÿßûûû÷{÷ýÛûÿï~ï¿ÿíÿÿÿÿÝßï¿ÿÿßûÿïÿÿÿýÿÿþýÿû»oûoßÞ÷ÿß¿÷ï÷ÿÿÿûÿÿ÷þÿÿÿÿÿ¯ÿ{ûÿÿÿÿï¿ÿÿ}ÿïïÿ»½þÿûÿÿÿÿïß¿ÿÿÿÿ~ÿÿÿþÿýÿîþÿÿýÿÝÿß¿÷þÿÿ_ÿÿúÿÛ¯ÿ÷ÿ_ïýÿ¿ÿÿßßÿ¾ÿ}{ûoïï÷ÿßÿÿþß¿ÿïÿÿ÷ïÿoûûþöµûÿÿÿý÷÷]þ÷ûÿïþÿÿÿ½ÿþûÿ¿ÿ·¿ÿöþïëÿýõÿõû¿ÿÿëþþÿ¿ýÿþ÷ûÝÿßïÿ¿ÿßÿïÿßÿÿÿÿÿ×ÿß÷õÿÿ®ÿÿýþÿ~÷ûÿïÿÿí÷½ÿÿýõÿÿ÷îÿßÿÿÿwþõÿÿÿÿÿÿÿÿÿÿÿÿÿýýÿ·ÿÿ¿ÿïÿûß÷÷ßÿÿÿû½ÿßÿÿûßÿûÿ¿ÿ÷ÿÿÿÿö÷îµÿ·ß»ÿÿÿßÿÿÿÿýûûÿ÷{íûÿÿÖÿµÿýÿÿÿ}ßïÿÿÿßÿîöþ¿Ýÿÿßÿÿ»»ÿÿ÷ûÿÿÿ~ï¿¿ïÿoÿ·ÿÿÿ¿¿ßºÿíßÿÿþÿÿß¿ýÿûÿÿþ¯ïýÿÿÿýÿÿÿûÿÛo¿ûûÿ×ÿ½Ýÿÿ÷ÿÿÿû»÷ÿÿ¯ÿÿ»_ÿëÿÿß÷ÿýßßýÿÿ÷ÿÿ÷ÿ×þïûÿû_þ÷ÿ÷·¿ý½ý÷úÿþ÷¿u÷ÿþ÷÷ÿÿïÿ^ÿÿÿÿÿÿÿÿÿÿmÿÿÿÿÿÿÿÿÿÿÿýÿþÿÿÿwûþÿ{÷ïÿß¿ÿîÿ{ÿÿÿoÿo¿ÿ~î¿þÿÿÿÿÛÿÿÿÿ÷ïûûï÷{ÿÿÿ¿ÿ¿ý¿÷}ûÿ×ÿ¾ï¿¯ÿþï¿÷ï¯ÿþÿßíÿÿý÷ßÿÿïÿnßÿÿí÷ïÿíûÿýûÿë÷ÿ÷ÿÿÿûûï{ûýýÿïÝÿÿÿÿþÿÿÿÿ¿ï¿¿ÿÿÿÿÿ÷ÿÿÿÖÿÿïÿ÷ÿÛÿþï½ûÿÿý¿÷»þîþÿ¾ÿþÿ¯·wíÿÿõ÷}ÿÞÿz÷þïÿý÷ÿÿoÿÿÿ÷·ÿÿÞí¿ïÿÿÿ¿ßÿÿý÷ÛÿýÿïþÞÿÿ÷ÿ¿ÿÿÿÿ{ï·¿ý¿ûï·ÿÿ¿õ÷ûÿÿ×ÿÿ÷þߺÿÿþý÷·ýÿÿo}ýÿ÷ÿëÿÿ÷ÿýÿïïÿÿÿ¿þ¿ÿÿÿÿíßßïÿïÿ﮿[¿ÿÿÿÿïÿÿÿ÷ß¿ïÿÿÿï÷ïÿÞÿÿÿ¾ûîÿÿ»ÿ¿þÿÿÿÿÿ}ÞýÿÿÿÿÿþÿÿÛ÷¿ÿßÞ÷ëÿÿÿ}ïÿ÷ÿÿýÿþþÿÞû÷Ýÿÿÿÿßÿÿþý÷ÿÿÿßÿÿ¿ÿÿþ¾ÿÿÿûÿïÿÿÿ÷ÿûýûþÿÿÿÿýÿß÷ïþýëÿ_ÿÿïÿÿÿ½}ÿ¿Öýÿ·}ýÿýÿÿýþýÿÿûßßþýÿÿÿ¿¶÷ýý¿Ûÿÿÿû÷ÿÿ÷ÞÛÿßÿÿöÿý}ÿÖý÷¿÷íÿûúëýßÿÿoÿ÷ÿÿÿÿÿýÿßë}¿ÿ¶÷ÿþÿ¿þ×ÿÿ÷ÿßÿÿïýÿÿÿýÿûß÷ÿ}÷ÿ¿ÿ«ÿßÿ×þ¿oÛwûþï¯÷ÿÿÿÿßÿßÿýïÿÿûþÿÛ{ýþïûÿÿÿÿÿÞÿÛÿ~þßßÿÿþ÷ÿÿïíÿÿÿÿþÿÿßÿ¿þûÿÿ~ÿ¿¿ÿû{ÿ}ïmÿÿõÿÿÿÿÿýÿ¯ÿ¿ÿÝÿ÷ÿÿ÷÷¿­ÿoÿï}¿¿ÿÿÿûßþ÷zÿ{¿ýßÿßûo½ïÿïþÿ¿ÿÿ÷ÿþ÷ûÿý×ýÿÿÿwßÿí÷¿ÿo¿ÿÿÿýý_ÿö÷ÿ¿ÿÿ¾ïÿÿÿÿúÿêÿÿïÿÿ÷n¶þÿÿûÿÿßýÿÿÿÿïÿíÿþïßïÿßûÞÿÿ¿ßÿ÷õÿuÿÿÿ}ÿýÿ}ÿÿÿÿÿ¿ÿû{ûýmî÷ÿïÿûÿïûÿ½ïÿïÿÿïÿû¿÷õÿÿÿÿÿÿßÿÿÿûÿÿ{ú÷úÿÿÿWÿ¿þÿÿßßÿïÿÿÿÿþÿ¯uíýïÿ÷ÿûÿÿíû÷ý¿í¾ïßÿÿûýïßþÿú÷ûûÿÿÿÿ¯ÿ÷}¿ÿÿÿÿÿÿ÷ïÿÿÿÿþÿýïÿÿýÿúßÿßÿÿýÿ÷ýÞýïûÿûÿïßÿÿÿ¿ÿÿÿÿïÿÿ·ÿ¿~ÿÿß¿ÿûuÿÿÿÿ^ýïÿÿõÿÿþÿÿßÿÝÿýÿÿÿß¿ûþÿÿïÿýÿ»ÿöïíÿÿÿ¿÷ÿýÿÿoßþÿ¾ÿýÿß¿ÿÿÿÿßÿý÷ÿ¿ïÿÿÿÿ¯ÿÿÿï¿ÿÿÿÿÿÿûÿýÿû®îÿýÿï÷ÿÿoÿûÿßÿÿÿÿÿÿÿ»ÿÿþÿÿÿÿ½ÿ½Þÿ¿¯Þßÿÿ÷ÿÿÿ¿ÿßÿÿÿöýÿÿ}ÿÿÿÿßïýþþî¿õÿÿÿÿ÷¿ýÿýo½­ý÷ÿÿûíï÷ÿÿ½ÿ¿ÿÿÿïû÷ÿ¿ÿ×ûÿ®þß÷ößÿû­íÿÿ¿¿þûûýÿÿïßûÿ¿¶ÿ÷ÿÿ½ÿÿÿÿïÿÿûö½ÿý»ÿþÿ÷»ßÿÿ÷ûÿý}ûþþþúï÷ÿÿ_ÿï÷ýÿïÿï¿îÿßÿÿÿý¿ÿÿÿÿûÿÿ[ÿÿý×ÿûÿÿûÿÿªÿÿïÿÿ¾ï�ûßýÿýÿ~¿ïÿ¿þÿU¾ÿÿï÷ÿÿÿýÿÿÿÿÿþþÿÿõ¯ÿÿÿÿÿßÿþû¿~ÿÿÿï÷ÿ»ýÿÿÛý¿ýÿ»ÿïßÿÿûÿÿûßÿýÿÿÿÿ׿ýÿÿnÿõÿÿûÿ÷÷}ÿÿïïþ¯þýûÿÿ~ýÿÿ÷ûýþ÷õÿÿýÿößúûÿÛÿÿýþ¾»öÿû÷ïÿÝïÿïÿÿÿ߯ÿûwÿï÷ßÿýmÿýÿÿÿoÿïÿïßÿÿû»ÿÿûßÿÿ¿ßûýþíýí·÷ßû¿ßÿ¿ºþÿÿ÷÷ÿþ«Úÿÿÿÿÿÿ÷ÿÚÿïwÿþ÷ÿûý»ÿ­ûûÿ}ßýÿÿû{þÿ»úÿÿÿë÷ÿÿÿ÷ïßÿÿûÿï¿zÿÝ{÷½ÿûíÿßÿÿÿÿ{ÿ»ûÛþÿÿÿßï÷ßÿÿ¿ÿï¿ÿÿÿÿÿÿõÿÞÿÿÞÿ¿ïû÷½ÿý÷ßÿÿ÷ÿÿÿÿï·ÿÿÿÿ¾ÿïïÿ÷ýÿßÿßÿÿÿûÿÿ÷ßÿßßßÿÿï¿ÿÿíÿÿÿïÿûÖýÿÿÿßÿÝïÝÿ÷ëÿÿïëÿ{¯ÿÿ¿ýýûÿÿþÿßwÿû÷ýÿýÿÿÿïµÿ¾ûÿß÷¿_ÿïÿûmÿÿý¿ÿÿßßûÿÿÿÿÛÿÿýÿ¿ÿÿ_ý¿ÿÿýþÿ¿ÿýßÿï·ÿ¾ÿÿý¾ÿ·÷ÿÿÿÿÿÿÿÿ¿ûÝþÿþÿÿßÿÿÿÿ»ÿïþîÿÿÿ÷mï÷ÿÿïï¿ÿ¿õÿÿÿÿÿýÿ¿ÿ÷ÿ½ÿûÿßÿßÿ¿ÿÿßÿÿ÷ÿÿÿÿïÿßÿÿ÷ÿïÿÿÿÿýý¿¿ý¿ÿÿýÿÿÿû×ÿûÿßÿÿÿoÿÿÿû÷ûþÿÿïïÿÿ¿ï}¯_ûÿÿÿßÿÿÿÿïÿ÷ÿÿþûþ¿ÿÿ×ÿÿ÷öíÿ¿ëßïÿÿý_ïßþ¿ÿÿÿíÿûý÷¾ÿß¿ÿ½ÿ÷ßÿ÷ÿÿýÿÿßÿþÿÿöÿÿ¯Þÿÿßý·ÿþÿþßÿ¿ÿÿßÛïûÿÿýÝï÷ÿÿÿÿûÿûÿþ¿ýýÛÿïïÿÿÿÿýÿ¿ýÿýÿÿ÷¿ßÿÿÿÿÿþÿû÷ÿÿÿÿþÿÿ«ßÿþþÿÿÿ¿ûÿßïïßßÿÿïßÿÿÿÿïý¯ýÿÕ¾ÿÿïÿýÿÿïß÷ÿßÿ¯ÿßÿ¿ïÿß}ßÿÛÿí÷Öÿþ¿ÿûwÿÿÿÿï÷wïÿÿÿÿïoÛ÷¿ïßïÿ¾îÿþÿïþ÷¿ÿïûÿÿÿÿÿÿÿ«ÿÿÿÿö¿×ûÿ¿ÿÿÿ¿wûû¿÷ûÿÿÿÿ÷ßïÿÿïv÷ÿÿÿw·ÿû÷ÿÿÿûûýÿÿû¿ÿÿ{û¿ÿÿ÷¾÷ßÿïÿûÿÿÿ¿÷þ·ÿÿÿÿÿ]ÿÿ÷÷ÿÿÿöÿ¿ÿûÿýÿîÿßÿþïÿÿÿÿÿÿÿ»ÿßÿÿÿÿÿÿÿïÿ÷ÿwÿÿ¿¿ÿÿÿÿÿßÿoÿßÿïßÿÿ¿íÿ×ßÿöÿÝÿþûÿ÷¿ïíúÝÿÿßÿÿÿ÷¿ßÿ¿ÿþÿ÷÷þ߯ýÿÿmÿ¿ÿßÿÝÿßÿßÿÿëï÷ÿ_ßÿßÿÿÿÝÿ¿ÿÿïÿÿëû¿ÿú÷ïûûÿûwÿÿÿ¿ÿßÿþÿÿoÿÿßÿÿÿÿýïÿ÷ÿ}¿ÿ_ÿßïÿÿwÿÛÿÿûÿïýß÷}oÿÿ¿ßýÿýÿÿßßÿÿõßïÿïïíÿ÷ÿ¶ÿÿõÿÿîïÿþ÷ïÿþû÷ÿ[þÿþÿ½öÿûÿÿþß»÷ÿïÿþÝÿÿÿïÿ¾ÿïÿþ¯¿ÿÿïýÿïýÿ_ïÿûÿÿ÷·÷¿ÿûïþûÿÿßÿºÿÿþßÿýÿÿßÿÿÿÿýÿþÿ¯ÿÿÿýÿ÷ïýÿÿÿÿýÿûïýÿÿ{}ßïîú»÷ÿï~ïßþÿÿÿ}ß¿ÿßÿûÿý÷ÿïßÿþïÿoîÿÿß_ýû~ÿþÿûÿ{ûÿû·ïÿ½ýÿÿþ¯ïÿýµ~ÿþÿÿ¿ÿïÿßûûí÷ýÿÿîÿ÷ÿßoÿíÿÿÿÿÿûýßÿÛ¶ÿ¿ÿÿÿÿý»ûÿÿÿ¿õÿýõïßÿ÷ïÿÿÿÿï÷ÿ×ÿý÷ÿßïÿÿÿß÷¿ÿÿûÿý¾ÿößÿÿþÿÿ}oßýÿÿÿÿÿÿ¿ÿßÿÿÿï·î÷ÿ¾ÿõïÿÿß¿ÿ¿ýÿÿÿ÷ßÿ¿¿ÿÿõûýÿ÷ÿÿßïÿßýwÿÿw¿×÷¿ÿÿî÷÷þÿÿÿÞ¿þûÿÿýÿúÿßû¿ûÿïÿÿúúûÿÿÿÿÿÿþÿw·¿ýÿÿûÿÿûÿßûïÿÿÿí÷ÿ»ÿ÷þÿþþÿÿïÿzýÿÿí½ý_Ýÿÿ{½ýÿÿ¯ÿûïÿÿû¿ÿýÿ¿ßþívÿúÿÿÿÿ÷ÿý÷ßÿÿÿíû»ÿÿÿýÿý¿ýÿÿÿ÷ÿÿÿÿ¿ïÿûú÷ÿÿßÿïþ÷ûÿ»þëÿoÿïû÷¿÷ýÿÿþÿÿÿÿÿÿÿ»ßÿÿßïÿ¯nïÿmÿûÿïïß÷kÿ¿þÿÿÛzÿþûÿÿÿÿýÿÿ÷¿ÿÿþÿÿ÷ßÿÿûûÿÿûß½ïÛÿ{ßî÷ûëûïÿÿÿïÿÿÿÿûÿÿÿßµÿõÿÿÿU÷ÿÿÿúÿ·ÿÿ¿ßÿ¿}÷ß¿ÿ÷÷Û×ý÷÷íÿÿÿÿÛ÷þÿoÿûÿÿþ¿ýþ÷ÿÿÿßþÿ¿þï÷ýÿÿÿõíÿÿÿÿÿwÿßÿÿÿÿë¿oÿ÷ÿÿïÿýÿÿÿÿÿ~·÷{ïýÿÿÿ÷ÿÿûûÿû÷÷ÿÿý»ÿ½ýÿ½ÿýÿÿÿÿßÿÿ÷÷ÿ¾ÿþÿÿ½ÿuÿ×ý߯ÿýÿ×ÿßþÿßÿßÿÿÿÿûuuÿÿÝï~ÿÿ÷ÿÿ÷ÿÿÿÿÿÿÿÿÿï¿÷ÿmÿ¾¿ýÿþÿÿÿûÿ÷ÿÛÿÿû÷ÿýÿÿÿµÿÿÿßßïÿßÿõß÷ÿû¿ÿÿ¿ÿ·Ý¿ÿþÿÿÿwÿÿ_ÿþÿïÿÿÿWÿÿÿþÿÿÝÿÿÿßý÷ÿÿÿÿÿþ¿ÿ¿ßþõ«ÿþÿÿÿßÿÿûÿïÿÝ»¿ÿÿßz¿¿¿ÿÿ¿ÿÿþ¿ÿûÿÿíßÛ¿ÿ¿ÿÿÿ½ýûÿÿõÿÿþÿ~ëÿþ¿ÿÿÿÿßÿ¿ÿûÝïÿÿ¿ÿöÿÿÿÿÿÿÿoÿ÷öÿ¾þÿß¾ÿûÿï¿¿»ûïû÷ÿ¿ý­ý¿ÿÿýÿÿ{÷»ýÿÞÿÿþþÿÿûß¿ÿûÿþ÷ûÿï¿ýÿ¯ûÛ÷ÿÿÛ¯ïÿÿûïþýÿö¿_¿wÿïÿÿÿïÿÿþÝÿÿÿßÿûÿ÷wÿÿßnîÿïÿûÿ»ß_ÿÿÿwïÿÿûþÝÿýÿÿÿÿÿÿÞÿÿÿ¿ßmÿþÿþÿÿû]ÿÿÿÿÿÿzþÿöíþ¿oµÿÿûÿûÿ×ÿ¿ßÿÿïß_{ÿ~ÿ½ÿÿþß÷¿ÿÿÿÿß~ÿïßÿ÷ÿÿÿÿÿÿûÿÿínÿ÷¿ýþíÿïÿÿÿý¾þß·ÿÿÿÿ¿×Ûÿÿýûßý¿ÿýÿwû¾ÿÿwÿÿý¿ßÿÿÿþýÿ÷ÿýÿzëÿ÷»ßÿÿÿÿÿÿûÿïÿ×ÿÿ÷ßÿýÿýûÿûýÿÿ÷ÿÿÿýïþÿþÿoÿÿ÷¿ÿ÷Úÿÿÿï÷ÿþÿþßûýïþÿþÿÿÿÿ¯ÿÿÿÿ÷ý{þîÿÿö¿þßßÿ»ÿÿÿÿßÿWîßûý÷¿ÿÿ¿û_ÿ¿ÿÿÿÿÿ÷ïþÿ¿ûþßÿÿû_¿ÿûûÿ[¿ýûþÿÿûÿoïÿoÿþÿÝÿý»÷ÿ¿þ¯ÿÿÿÝÿuÿÿÿÿ½û¿ÿÿûß·÷ÿÿ÷oûÿ¿ÿûýÿþÿþ¾ýÿÿïÿþ¿ÿÿ¿oÿ÷}ÿÿÿÛ×ÿö÷÷ÿÿÿÿÿÿþ¿þîÿ×ë÷ßÿÿÿÿÿ÷ÿþÿßý~îÿû¿ýÿßïîÿýÿÿÿÿÿû÷û÷ÿÿ¿ïÚþÿÿÿý·ûïþÿÿýÿßÿÿÿ¿þÿÿÿ¿ßÿÿÿßÿÞýÿ½ÿ÷ïÿÿÿwßÿÿÿ÷÷ÿ¿ûÿÿþ÷ÿëûßþïÿ÷ïûþÿ¿ß~÷ÿûÿÿõÿÿ¿ÿÿÿýýõïÿÿwÿÿ¿ÿÿÿýûþûûÿÿÿÿï÷ïßþßÿ¿þÿÿÿ¿ÿÿÿ÷÷ÿÿÿ÷ÿÿÿûÿÿ¿û¿ÿþßÿïÿ÷ÿ{û¿ÿÿÿÿëÿ÷¿ÿþ¿Þýÿ{ÿÿïÿúÿöÿ¿ýÿûÿÿûÿÿ¿ýÿ÷ÿý¾ÿßÿ÷ÿ¿ÿ¿ýþëÿÿ¿ÿýÿÿÿþ¯ÿÿÿý¿þûÿÿíûïÿÿ÷þÿÿÿ÷oÿ¿ÿÿÿÿïßÿ¿ÿÿýþÿ÷oÝû¿ÿÿÿÿ}~Þïßþÿß÷¿÷ÿÿ¿ÿÿÿþ·ß¿¿ÿýÿÿwÿýÿûýÿþõÿßÿýõÿÿÞÿÿïÿÿÿõÿÿÿßÿÿÿÿûÿÛÿýþÿßï÷¿ÿÿûÿÿ÷ÿ¾¿ÿ{ÿþýÿ×ÿþþßïûßÿÿÿÿ»ßÿÿ¿ýÿ»ÿÿÿþÿýÿýÿÿöÿ÷¿ÿû÷þÿÿõ¿ÿÿþ÷ÿöïÿÿÿÿÿþþïÿݽ¿ÿoÿûÿoßß¿ûÿÿïÿ¿ÿoÛÿû¿ÿÿÿïÿÿ¿÷ÿÿþ¿ÿÿÿûÞý¾ßÿ{ïïýýÿ÷ÿïÿ¿ßÿÿÿýÿ¯ïÿïÿÿýÿÿÿÿÿþÿÿÿûÿ÷þûÿÿÿöÿo¿ÿ¿ÿïÿÿÿïÿÿÿÿÿ¿wÿÿÿÿîßÿî÷ÿþþÿÛßßßÿÿÿûÿ»ÿ~߯ÿýÿÝ¿ûÿßÿïÿ÷ÿÿÿþþÿÿß¿¿þÿû»ÿÿïßûÿïÿïû½ýÝßýÿ·ÿÞÿÿÿÿÿÿûýÿþ÷þÿíÿ¶¿ýÿßïÿÿÿÿûþ¿Ýÿ¿ß¿ÿßßÿïïïûÿÿëÿ½ïÿþÿÿÿ¿ÿÿ߯ûÿíþïÿ¿¿ûÿÿþ¿ÿÿ÷ÿÿ÷ÿÿÿÿ¿ÿ¿ÿÿûßýÞ¿ÿÿßþûÿ÷ÿÿÿûûÿ÷÷ÿ_ÿÛï¶ÿÿÿýÿýïïÿûÿÿÿÛÿÿößïþ÷¿ïþÿÿûÿý¿û}ÿïÿÿÿÛýÿÿÿÿÿÿïÿÿÿÿÿþÿ¿þÿ÷ÿïÿûÿÿÿÿßÿï¿ÿÿÿõÿûÿÿ¿ÿÿßþÿÿ¿­ÿÿÿþïÿûÿÝÿÿûÿÿ÷¾ïýýûÿÿÿ÷ï÷¿½¿»ÿÛÿïÿÿÿÿß¿¿ßÿÿÿÿÿÿ¿ÿÞÝÿûÿÿûÿëÿýýÿíÿÿÿÿÿþ¿ýÿöý÷û¿ÿ^ÿÛ«ÿÿÿûûÿþ½÷¾ÿÿûÿÝÿõýÿ®õÿÿÿÿû»ÿÿÿûû¯ÿÿßÿÿßïÿýÿ¿ÿïþÿ{ÿÿÿÿw÷¿ÿÿ·ýÿÿï÷ßÿ÷ÿÿÿÿÿÿÿÿßýÿ¿ÿþýÿïþýûöÿÿ~½ÿþÿöÿÿßßýïÿ¾÷×ÿöýûÿÿÿöÿýÿíÿ¾÷wÿÿÿßÿÿÿöû¿ÿ_ÿÿßïÿû¿ÿÿÿÿÿ»{÷ïÿÿÿÿÿÿÚßÿþÿÿýý¿ÿÿ[ÿÿÿ}ÿÿû}ïÿßþÿÿîÿö÷ÿÿ½}ÿßõÿÿÿÿÿÿÿ¿ýýÿÿýÛïÿí¯ÿßýÿÿûíû_ûÿÿýÿÿÿÿÿÿÿýÝßßï÷ýúÿýÿÿþÿÿWíûï¿ÿÿÿ÷þ¿ýÿýÿÿþýëÿÿú×ßÿõÿÿßÿ÷ûïÿÿûÿÿ½ûïwÿßßÿÿ¿ÿúýÿÿ¾ûÿ¯ÿßûÿûï÷ÿþ÷ÿÿþÿ_þïÿûÿ÷ýwÿÿßÿÿõõÿß½ÿû­ÿ¿ÿÿÿþ¿úÿÿÿÿïþ÷ßÿý÷ÿÿ¿ÿûýþÿÿï¾ÿÿßÿÿúÿÿÝÿÿ¿ÿþÿÿ¯ïÿoý¯÷ÿ÷ÿnÿ¿ß¿ÿßëÿßíÿÿßïÿÿÿýû¿ÿþýwÿÿ÷ÿÿÛÿýöÿýÿßÿïÿ_ÿÿßÿoÿßöÿßßÿûþÿûÿíýßÿ÷îö÷ÿÿÿÿþûÿßûÚûÿýÿýíþÿí÷ÿÿÿïÿûÿ}¿ÿïÞýÞ·îÿÿ¯ÿýÿÿÝÿÛ»ÿÿÿúÿ¿ÿÿÿ÷o¿®÷ÿÿÿïÿÿÿÿÿÿ÷ÿÿÿÿÿÞÿß¿ÿ¿ÿï¿ïÿ÷ÿÿßÿïÿo÷ÿÿßµÿÿÿý{úÿ÷÷÷¿ÿ·ÿïï¿ýÿÿÿÿÿý÷ÿÿßßûVÿÞý×ÿÿþ¿þý¯úÿÿÿïÿÿ¿þûÿýýþöûïÿÿ÷ÿÿ«¿ýþþßÿÿýÿÿÿïþõ½ÿÿ÷÷ÿÿí÷ÿwÿÿ÷ûÿûþÿÿû¿ÿÿÿÿï¿¿÷ÿmÿýÿ¿¿î×ïÿvûûÿûÿûÿÿÿûÿÞÿûïÿûÿûÿïÿÿÿÿþûÿûþÿ¿ýÿÿÿÿÿoûÿßÿÿþïþÿ¿ÛÿÿþÿÿÿïïÿÿÛýÿÿÿÿýÿïúÿÿÿûÿÿþÿÿÿýýýþëÿÿ_ÿ÷ÿÿþÿßïÿ÷ÿû{ß_ÿïßÿÿÿÿÿÿ}wÿïÿÿû_~ÿÿÿ¿×ÿû¿÷÷ÿþÿÿÿï»ÿ¿ÿÿÿïë·÷ÿoÿýïÿïÿý×þýõÿ}ÿÿÿÿúþÿïïû¿ÿ÷ÿÿ®ýÿÿ¿wÿïûÿÿûwßßýÿ÷÷»ÿÿëÿïþþíÿ×oÿ¿¿ÿÿÿ×ÿûûïÿÿÿÿÿþ÷ýÿï÷ÿÿõÿ½ÿ¿þ½Þ·÷÷ÿ}ïúûû·ûÿÞÿÞÿú÷÷ÿÿ÷ÿ½ÿÿ¿ÿÿ«ÿî«ÿ÷îþÿÿ÷ößÿÝÿ_þÝÿßþÿßÿnßþÿßÿ÷_½ßÿýÿÿÿÿïïÿë¶ÛûÿïÞÿÿÿÿ¿ß}ÿýÿÿÿöÿÿß¿ßÿýÿÿïÿ×®¿_¿ÿÿÿïïû¿ß»ÿÿý÷ÿÿÿ¿ÿêûÿï{wýÿÿÿþßÿßÿ×ÿßÿÿÿý_ýöÿÿÿß÷úÿ¿ÿï÷ï¿÷ßÿïÿÿÝýýú÷ÿ÷¿þÿÿþûßÿïýï¾¾­ý{ÿÿÿÿ~õÿÿ{ïÿïúïýÿ÷þýþûýÿÿ[ÿßßïýþý~¿ÿÿÿ½ÿÿÿÿ¿ÿÿßÿöÿÿ÷}~ÿþýßÿûÿ¾ÿ÷¶ÿþÿ¿ûïßïÿîÿ¿ÿÿ}ïý÷ÿÿÿÿ¿ïÿ÷¿ÿÿÿßÿÿÿþßïÿßÿïÿÿßï÷÷ßÿïÿþÿ}ïþÞÿýïýÿýÿÿ½×~¯ïÿûý{ÿÿÿÿÿ¿ýþÿÿoÿúßÿ×û~ÿþíÿÿÿþ÷»ÿÿ}÷ßßÿ¿íÿÿ¿þÿþûßïúÿÿýûµîõþ÷ÿÿÿ¿ÿûÿÿöÿÛ·ßÿÿÿßîÿÿÿÿÿßÿýÿßÿû_ÿý¿ÿÿ÷ÿÿ¿ÿÿÿ÷wßÿïÿþßÿíÿþ¿ýÿÿÿÿÿÿýÿ¿ûÿßkÿÿýÿßÿûõýÿÿ¿·ÿÿýÿÿ×ïõwÿõÿÿßÿÿ~ÿÝÿÿÿïÿÿÿoÿÿÿÿ~¯ïßÿÿï×÷ÿ·¿×ß}ÿÿßÿ_ÿ¿ýÿÿoÿ®ÿÿÿÿ÷ÿý_¯ûÿïïÿ¿÷ßþÿïÿßÿÿÿÿßÿÿþÿÿÿûÿÿÿÿÿÿÿ÷ÿÿ~ÿÿÿíoûýÿÿÿÿûÿÿÿûýßû¿ÿï¿¿ÿÿ¿ÿÿÿûïïû{ÿÿ·ÿ»ÿ}Uþÿþûöÿûÿÿÿßý¾ÿþýïÿÿïûwþ¿÷ûÿÿý÷ÿ÷ÿþÿÿÚî·ÿÿÿÿÿoÿÿë÷ûÿ«ÿÿÿ»ßö÷ÿßýÿÿíûÿ÷ÿÿ¿_ûÿ÷ÿÿ»ßþïÿÿ·ÿÿõý¿ÿÿßÿw»ÿûÿýÿÿÿ÷ýÿ÷þ¿ïÿ÷÷ýïÿïÿÿÿÿïÿÿÿþÿïÿÿÿ÷ý÷î÷ÿÿÛÿïÿßÿÿÿÿïÿÿÛÿ÷ÿÿ¿ÿ¿ÿÿîÿ¿ßÿßÿÿßþýßÿÿÿßûÿÿ¿ÿªÿÿÿ÷öûÿ}ýßßÿÿÿÿÿÛÿïÿïÿÿíÿÿÿÿíûßÿÿ¿÷ßÿÿ¯¿÷ÿÿÿoÿïûßÿ^ý®ÿÿÿÿÿÿÿÿûßÿÿÿÿí÷·ûÿÖÿ÷öÿ÷÷ûÿÿ÷ÿÿÿÿþÿÿÿßÿß¿þÿßïÿßÿÿßÿþßÿþÿnÿíßÿýÿÿÿÿ÷ÿßÿ}ÿÿÿßÿÞ÷Þûþõ{ûÿÿÿýÿÿÿÿ}ÿûÿýïý¶ÿÿÿïwý¿ÿÿÿúÿûÛÿûïû÷¿ÿïÿûíýÿûÿÿÿÿÕýÿ{÷ÿÿÿÿÿ¿þï÷ÿþ¿÷ßí¿¿¿·ÿïÿûÿÿëý¿Ýÿ¿ÿÿßÿýßýÿþÿûÿÿûþþÿ»ÿÿïß÷ö÷þÿÿÿÿÿÿßÞ÷ÿÿÿ}ßÿßÿÿÿþÿÿÿ¿oýýßÿÿ¿¿ßÿ÷ß{ÿw­~ÿýÿ÷ûýÿÿöûÿûÿu¿ÿïÿÿwûþõÿÿ»oï¿ÿþ¿ÿ¿ýý¿ÿ½ÿûýßû¿ûÿýûÿÿïÿÿï~ÿÿ×ÿÿÿÿõïÿ»ÿöÿÿ÷ÿ¿ÿ¿þÿýÞÿïïÿ÷_ûýÿÿ÷ÿÿÿ¿ï÷ß¿ÿýÿÿÿÿÿ¿ßÿÿú÷ÿ¿û¿ß÷ÿÿ÷ÿÿßÿ÷~ÿûÿÿÿß¿ÿÿÿßû¾ÿÿûÿÿ¯ÿßÿþ÷ÿí½ÿ}ÿßþ»¾ÿ¿ý¯ÿ÷÷ýûûïÿïÿÿ¿ÿÿÿÿÿÿþîÿÿÿÿÿÛßÿ¿ûÿ{ÿûûöÿÿÿ÷ÿ÷ÿßíÿÿ¿ÿÿþÿÿïÿßÿþÿ×ÿ÷þÿ¯ÿÿûÿ~ûïßû÷Ýßÿûÿ¿ßÿÿßÿÿÿÿýÿÿÿÿßþÿÿÿÿïo¿þÿÿÿÿÿÿþÿûþûïÿÿþÿï»ïûû¯ÿÿýÿýÿßÿ_»ýÞÿ½þÿý]ßÿ[ÿ~¾ÿÿÿÿÿßÿþÞÿ·ÿoÿïÿÿ÷ïþïûÿ}ûýÿÿÿwþ¾ÿí¯ÿýÿÿýößÿÿwÿþ¿ÿï¿ÿ÷ÿÿ}ÿíÿþßßýïÿ~ïÿïÿÿßÿýÿ÷ÿÿûÿ¿~ÿ¯ÿÿÿÛÿï¿ÿÿ÷ûÿoÿÿ¿ÿÿÿûÿïû¿ÿûÿÿÿúþþ¿wÿûýûÿ_ÿÿû÷ÿûÿ~Ûÿÿíÿ½ßíÿÿÿÿÿÿÿþÿÿß»÷¯ÿÿÿÿÿ÷{ûúÿßÿÿ¯ÿÿÿþÿßÿöûÿ÷ÿ¿ÿ­÷ÿ÷ýÿÿ÷ÿÿÿÿÿûÿïÿý¿÷ÿÿÛûþÿý÷ÿßßÿ÷×þý®ûûÿ»ÿÿ÷ÿ½ûÿÿÿ¿¿ÿÿ÷ýÿ«¿õÿÿßÿÝúÿÿÝ×õþþ¿ûÛïÿÿÿß~ßÿßûÿ½þ»öÿÿ»ýÿ}þ¯ÿÿÿÿÿ{¾þÿïÿ¿ÿý¿ïÿÿÿúÿßïÿëþ÷ÿþ¿î¿ÿÿÿÿwý÷íw÷ý}ÿ}ÿ¯¿ÿo¿»_ÿÿoßÿ¯ÿÿÿ»ÿþûÿÿÿ¿û¿ÿ÷ïïþÿßÿÿÿÿ¿ÿÿWÿ»_ÿÿýûÿß¿ÿ·]÷ÿÿÿÿûûÿÿmÿÿÿÿÿÿ½ýÿÿ¾ÿþÿÿÿÿ÷þ¿ßÿÿÿïÿÿÿþÿÿ÷ÿÿ}¿ýwßïßÿ¿ïÿÿ¿ÿßÿý¯ÿýïÿÿ÷ûÿÝÿÿÛïÿÿÿÿûï~ûßþÿÿÿýß¿ÿÿþõ¿ÿþîÿÿ¯ýïÿ}»ÿÿÿwÿûßí¾þÿÿßÿý~÷ÿÿ¿ýÿýýÿ÷ÿß¿ÿ·÷ÿþÿÿÝÿýûþÿþÿÿÿÿ÷ÿÿöÿ÷ýïÿÿÿ¾ÿ¿ÿÿÿÿÿÿ¿ÿÿ÷¿¿ÿÿÿ÷ÿý_ÿÿÿÿÿîÿ¿ÿÿÿÿý÷÷½ßÿ»ÿïþûïÿûÿÿÿûÿ¿ýÿÿßþÿïÿßÿý¯÷ý¿ë÷ö¿ÿ{ÿÿÿÿÿÿÿÿïÿÛÚ¿ÿß¾û¿ÿ{ý÷µûÿÿÝûÿûþßý·ýíÿÿÿÿýûÿÿÿÿ÷ÿÿþÿÿ×ÿþ×ÿýûûÿßÿ÷õ·þÿÿßýë¿ÿÿ÷÷ÿþûÿÿÿÿÿ_÷ýþÿý»»ßÿÿï×}~ÿÿÿÿ÷ûÿú÷þÿ{ÿ{ëÞýÿÿîÿÿÿ÷ßßÿÿ¿Û¿þÿýïÿþÿßoÿ]ÿûÿÿïïß¿÷ÿÿÿï¿ßïÿÿýÿßÿÿ]ÿÿÿïÿÿßþÿßÿÿ÷ûÿïïßïÿÿûÿÿÿÿþÿÿÿÿ¿ý¯ÿïýuÿÿ¿ÿÿÝ÷ß÷ûïÿÿÿþßûïÿ÷wÿÿûûýÿzöÿ¿ÿ·ï½¿¿ÿ¿ÿÿþ×ÿ¿ýÿÿ¿ÿ¿ÿßÿþÿÿºÿÿÿ÷ÿ¿®ßÿõ¶ÿÿý¿ÿÿþýÿÿ÷÷ÿ¿ýÿ¿ßÿÿû÷ÿÿÿ¯ïþÿîÿÿ¯ûßÿ¿ÿþ¾ßÿß÷ïýÿýþïûÿÿ»ûÿÿÿÿÿíÛûÿ»ï¿ÿ÷ÿûÿ÷{ÿýÿïÿÿ[ÿÿþ÷ÿíÿÿÿßÿý¿ßÿßÿÞÿÿÿîÿÿîû¿ÿÿWßÿÿÿ¿÷ûïÿú×·ïÿÿÿÿÿÿÿÿÿûoýÛ÷ÿÿ¿oÿÿÿÿ¿ßÿïÿßßÿþßýÿÿýÿÿýÿûÿÿÿß÷mÿþÿëÿßýÿ~ïoíÿÿ÷ÿýýýÿïÿÿ¿ïÿÿÿ_{ïÿþýÿßµïÿÿÿ_ûÿÿ÷ÿýÿÿ¿ýÿÿßÿ¿ûÿûýþÿ¿ÿþÿ¾ÿÿþþ¯ÿÿöýÿÿ·÷û÷ÿý}¿½ÿþÿõÿ¿¿þßÿÿýÿïûÿ¿ûÿýÿÿÿÿýÿÿ÷ûÿ÷ß÷õþÿÿõýÿþïßÿÿÿûÿ~ÿï«ÿÿÿßÿ¿ï÷¿¿oÿÿßÿÿÿÿîÿÿþÿÿûýïëþ¿ÿÿÿýÿÿïëÿþ½·ÿïÿýÿýÿÿÿû¿ÿWï÷þ÷ÿÿýÿÿÿÿÿý÷ÿïï¿þû¯ßÞÿ¿_ÿÿÿ}ÿûÿýÿþ÷ïÿûÿÿïßÿÿÿÿÿýßýÿïûû¿ÿýöûÛÿ÷ÿßÿöÿÞþÿ¯ÿûïÕÿï~ßÿÿ¯ÿ÷ï÷ÿþíÿ¾ÿ·ûÝÿ¿÷÷ÿÿþß·ï½ÿ¿·ÿÿÿÕßÿÿÿÿ¿ßÿÿÿÿûÿþÿëöþ¿ÿÿïÝþÿÿþÿÿmûïÿ¿ÿ¿ýÿ_¿þÿÿßÿý½ÿûïÿÿ¿ÿÿõþÿï÷ÿîÿ¿÷wûÿÿþþÿÿþÿ¿ÿ÷×þû¿ÿÿþ®÷÷÷ÿßÿÿÿÿoïÿýöÿÿßë½ÿ¯÷ÿþÿ÷÷ÿþÿ¿ßÿÿÿ¿ÿÿÿÿÿïûÿÿ¿÷ÿÝß¿÷ÿÿÿîÿöï»ïÿúý·ïûïþÿÿÿÿ¿ýÿþÿûýÿÿÿßþÿÿ{mÿß[ÿþýßÿþïÿúÿýÿÿÛßÿý÷ýÿÝÿÿßßþïúþÿýÿÿ÷ÿ}ÿ÷ÿÿÿÿÿßßï÷Þßÿÿÿþÿÿýïÿÿ¿ýÛÝÿÿÿûýÿÿýÿÿûÿþÿÿÿÿýÿÿÿÿÿÿý~ÿÿýúýÿÿïþïïßÿÿÿûÿÿýÿÿîß{ÿÿöýÝÿýïÿÿë·îÿûýßÿ¿ÿ~þÿÿÿÿõûÿûÿïë¿ýë_Ýokÿûÿï¯ÿÿÿ~ÿwýÿÿßÿûÿßÿý½ÿÿwþÿÛÿë߯ÿûöõÿ¿ÿÞÿï¿÷ÿ»¿ÿÿþþµßûþ¯ÿÿÿÿï¿m¿ÿÿÿßû·þÿÿûÿÿ¿ÿþûßÿÿëÿÿ¿ûÿ÷û¿ÿ÷ÿÿßÿÿíÿöÿûþÿßûÿÿ¿[ÿïÿû{÷ÿÿÿÿÿÿ½ÿ¿ÿÿÿýoÿë¯ÿ÷õÿ÷ÿÿÿ÷ÿÿÿ¿þýÿÿÿÿûÿÿÞÿûýÞÿÿÿÿÿ÷þíÿ÷ÿïïß¿÷ÿûûÿï÷ÿÿßÿÚõÿ÷¯ßÿ×ýßÝ¿ûÿý÷ÿýï¾ÿÿûþÿÿ¯÷}}ûÿÿëÿ÷}ÿ«÷ÿ¿ÿýëÿ×ÿïÿÿÿÿ÷ÿÿÿïÿÿÿÿïÿÿÿÿï~ÿú«¿ÿý÷ÿ¿ÿ¿þÿ~ÿïþêïoÿÿÿÿþÿ»ý]¿ÿÿïÿûïþÿûÿ÷¿×þö×ÿ÷}õ»ýßÿÿÿÿÿÿ«ÿ÷ÿÿÿþÿ÷ú¿÷ÿßÿÿ^¾Ûÿß»ÿÿÿÿþï¿·ÿÿïý{÷ïÿÿßú¯ÿýÿÿ¿ßÿþûûÿÿoûÿÿûÿ~ß×ÿÿÿÿï÷¿ýßÿÿ¿ëÿ÷ÿ~ýÿ÷×ÿÿû÷ïÿûý¾ÿÿÿÿÿëÿýÿÿ¿ÿÿÿ·¿þÿ÷þÿÿöÿÿÿ¿ÿÿÛÿÿÿÿýÿwÿõ÷ýÿþÿ÷ÿïÿßÿÿÿýï¿ÿÿwÿÿÿîÿïîÿÿ÷ÿÿÿ¾ýýÿû÷ÿÿÿûÿïÿÿÛÿ¿ïÿ¿ÿÿïýïÿÿÿ¿ÿÿÿýý¯þûÿýÿ¿ßþÿÿÿÿúýþÛ¿ïß¾ûÿÿÿÿþÿ÷ÿï¿÷ÿ÷ÿû÷þÿû}ÿïÿýÿý¿o¿ÿûïßûÿÿþÿÿ~ïÿÿ¿¿ý_ÿû÷ýÿûÛïÿþöÿ¿ÿÛßûþÿ¿ÿÿÿ¿÷ýÿÿýõÿwõÿÿÿÿÛÿ~ÿýÿÝÿ{ÿÿ÷ûÿ÷ÿÿïÿÿÿþþýÿûÞÿýÿïÿÿýÿý¿Ûþ¿ÿÿÿïþÿÿÿÿïïÿvõ¿¿ïÿÿÛÿ¿ïÿßýÿÿ÷ßÿ_ÿ_ýûÿýÿÿoþÿ÷þÿÿýÿÿ·÷ÿïýïÿÿ÷÷þÿÿ¿ÿïÿÿÿûÿ÷߯ÿÿÿÿÿÿÿÿ}÷ß~ýÿûÿ~ÿÿÿÿÿ÷»ýï¿÷û·¿ÿõÿwÿßÿ¿ÿÿÿ÷ÿÿÿÿ¾ûÿïÿÿÿÿÿ÷¿þß­ýÿûÿÿÿÿöïÿûß¾ÿÿÿýÿÿÿþûýÿîÿÿ¿ÿÿÿÿ÷ÿÿÿÿÿÿýßßïÿûÿÿÿïÿþÿÿÿÿÿÿÿÿÿÿÿÿ¿ýoûþûÿÿ¿¿½ÿþßÿvÿ¾ïÿýÿõÿÿÿþ­ÿûÿýûÿÿÿÿÿÿÿ_ÿ­þÿ·ÿïýÿÿÿÿÿ_þÛÿÿ÷ÿ¿ÿÿÿÿ÷ûÿÿÿþû½ÿÿöþ¿ÿÿï×ÿÿ¿¿¿ýûÿoÿÿÿ}ÿÿ×ÿÿ÷ûÿ÷ßÿ~ÿÿ÷ûÝïÿ¶ÿwßÖÿÿ}÷ß÷ÿÿ½ëﯽ~ÿÿÿûÿÿÿ½þÿ¯ÿ¿ÿÞÿíÿÿÿÿ»ÿþÿÿÿ}ÿÿ»ï[ýÿýÿÛ¿ÿ{þÿê¯ßû·ÿþÿþ¿ûÿ_ßû_ýÿÿÿ÷¿ï{íîúÿÿ÷÷þûÿÞÿÿßÝÞ­ß½ÿÿß÷ëýÿ_ÿßÿïßoýïÿû÷ÿúÿµÿý¿ýÿþÿ¾ïîÿÿÿ÷¿ÿÿßýþÿÿÿ¿ÿÿÿÿ­ÿû÷ÿýýýýÿýßïÿ¿ÿïÿ¿ÿïÿ{×ÿïÿÿûÿÿþýÿ»ÿÿïvÿÿÿÿÿÿ¿ÿÿýÿÿÿÿúÿÿßÿ¿ÿß_»ÿ÷Þ÷ÿÿÿßÿÿößÿ¿ßÿÿÿÿÿÿ¿ÿë÷ÿýþûÛûÿïýþÿß÷ûÿýÿ¿ÿÿÿý÷ÿÿ÷ÿÿßßÿý÷¯ý÷ïûÿÿ·ßß¿ÿÿÿÿûþõÿ÷×ßïïþÿÿÿ¿ûßÿ÷ÿÛõþëû¿ÿï¿ÿöþÿÿïÿúíÿÿïýý÷ßÿÝÿ÷ÿÿoï÷ÿÿÿÿ¿ïÿï×ÿÿß¿ÿýÿ}ÿïÿÿÿ¿ÿÿßíÿ¯~ýÿÿý·ÿÿÞþ¿þï½ÿûÿþÿï÷ýÿßûÿ¿ÿßýÿÿÞ÷÷ÿ_ÿÿïÛÿßÿï÷ïÿÿÿþïÿû÷ÿÿþÿ{ÿÝßÿïýþÿÿÿkýÿÿûÿßÿõÿõûÿýïÿûo½÷ßÿí~ÿÿÿïß~Ûÿ¯ï÷þÿ_ÿûÿÿÿÿ÷ÿ÷ÿý¿Þýïýýÿÿûÿÿý·þßýÿÿÝýûûÿßïÿîÝÿýÿûÿÿê¿ßÿ¿·ïÿÿßÿÿÿ¿ÿÿ÷¿ßÿÿßûý·_ÿõ¯ÿýþÿýþ÷ÿ÷ÿ¿ýÿýûÿÿÿ¾ÿþý÷õþÿÿýÿÿ¿ß¿ÿÿþÿû¿Þÿïûïÿþí×ÿÿÿß÷ûÿû~½ÿÿïzïÿ÷wÿ÷ý÷¿¯ÿûû¾Úÿ×ÿßÿÿöÿÿöÿÿÿÿïïýÿÿÿÿÿýßÿïÿ_ÿ~ÿþÿÿÿþýÿÿÿß¿ÿ÷ÿÿÿþßþïÿ¾ýÿÿWÿýÿýÿ÷ïÿïû¿÷~ûûß¿ÿïõ÷ÿýûÿÝ÷÷¿þ¿þíÿ~ý÷½ßÿÿÿwÿ¿ÿÿÿÿþÿ÷¿×ûÿÿÿÿÿûÿÿÿ¿ÿýûþÿ¯ÿ¿÷þÿÿÞûµÿÿ¾ÿÿ÷ÿÿÿýÿ÷Ýÿÿþÿ÷ÝûÿÿýÿÿýýÛß÷ÿÿûßþÿ¿ÕׯÿÿÛ·ýÿïÿÿíþûýýÞ¿ÿýÿ¿ÿþþþÿÿïûÿï¿ß{ÿÿýwÿöÿÿßÿ÷ÿ÷ÿïÿoÿÿýÿÿÿÿÿÿÝûÿßÿ¿ÿÿ÷ÿýýÿÿþ÷ÿ¿ßû_ßÿþÿýÿ÷÷·ÿÿ»÷ÿÿ¿¿¿ÿÿÿÿÿÿÞþû÷ûÿÿûÿÿ¿ÿëÿÿÿëÿÿÿÿÛÿÿÿÿÿÿ¯ÿþÿÝÿ}÷ÿÿÿëÿÿßÛ÷ÿÿÿýûoÿëÿÿýß_ÿÿÿ÷Þþ¾÷÷ÿ}ÿÛï~ÿû¿ëïûwïÿþÿïýÿ÷þþÝÿÿïÿïÿÿÿ÷ÿûÿ¿ûÿÿÿëwÿÿÿëÿÿßÿÿþÿÿÿÿíÿ¿þ÷Þÿþïßÿÿ÷ûWýû÷ûý¿{ý÷û¯ÿÿÿo¿îîÿÿ÷ÿïÿÿ{ÿûÿþúýwÿÿ÷ÿÿÿþþ®ïÿßÿýÿÿÿû÷ÿßÿþÿ½ÿ¿úõÿßï¾ïÿ¿ÿÿ¿ÿÿÿÿÿÿï÷ßïþïÿ¿ÿûÿÿÿ¿ÿÿÿûþÿûÿûêÿí¿ÿÿÿ}ûßý÷ÿýûÿßû÷ÿ¿ßÿýÿÿÿ¿ÿý÷ÿÿûûÿÝÿ½ÿ{ÿÿ}ÿö»Ýÿÿ÷ÿÿþÿ¿ÿÿÿÿÿ¿ÿþ¿ÿÿw¿ÿÛ÷~ÿßÿ÷»÷ûÿûþþÿ¿ÿþÿïýý·þÿ÷ÿÿúþþ¿ÿ¿þßÿÿÿþ¿ßÿ¿{þý·ÿÿ¾ÿïÿþöÿÿÿÿÿÿþÿ÷ÿÿÿïÿÿÿÿÿÿÿÿûö÷ýÿ￯÷ÿÿ÷í_ÿßÿÿÿþÿÿÿÿûÿÿïßöý¿îºûîöÿÿ·ÿ÷ÿõßþïþýßÿ÷þ¿îïÿ¯¿þÿÿÿþýýÿÿýÿßÕÿï}þ¿ûïÿ÷ÿ÷þ÷oû÷«ÿÿ×ûßßÿûþÿÞÿÿÿÿïÿÿÿÿÿÿ÷ÿÿÿïÿûÿÿÿûÿ÷ëÿÿÿÿßþ¾ÿß÷ÿÿÿõÿßÿöþßÿ¯ÿ}ÿÿÿÿþÿÿÿÿÿûÝÿûÿÿÿÿÿ÷oÿÿÿÿÿÿÿýÿÿ¾ÿ½ÿÿÿÿïûûÿßÿ÷«ÿÿïÿûÿû¯ÿÿÿþýÿÿÿýßþÿ¿ÿïýßöµ»¿ûþýÛ¿~¿¿»ë÷ß¿ÿûÿïÿÿßïÝß¿ßÞïÿïßÿßûÿïÿÝÿßÞÿþÿûÿ¿÷ÿßîÿÿÿ÷ÿþ¿þÿÿwïÿ÷ýÿû¿_}ÿÿ¿ÿýß¿ÿ÷ÿ{ÿ÷ÿÿ÷·ÿû×ï÷íõÿÿÿ¿}ÿÿÿ¾÷¿ÿýÿ{ÿßÿûýÿÿÿ÷þÿþ÷ßÿÿ{ßÿÿ÷ÿÿÿïÿu¿~ÿÿÿý¿ÿ÷¾ýïþöýÿ¿ÿßÿ}¿ÿßÿýïÿÿíÿßÿ¾ýÿÿÿÿûÿßÿÿÞ÷ÿ{ßÿ~ßÿýîÿÿ¿ÿ·ûßýÿÿÝ·µÿÿûÿÿý÷ÿÿÿÿ¿ÿûûÿýÿÿþßÿÿÿ®þÿÿ¿÷Ýÿÿoÿïí÷¾ûþïïïÿ¿ÿo[ÿÿÿ¿¿»ý½¾þÿ·ûÿÿÿÿýöû®ÿïöÿ{û{ëÿßþÝÿïþÿÿûïÿÿÿÿ}ÿÿÿÿÿ÷Þÿÿÿïÿÿ~ÿÿßÿÿÿûûÿÿß¿þû÷Ýÿ¿»ïÿÿÿõþÿ¿þï¿ßýÿuÿú¯ÿÿÿÿÿµúÿÿ½ïÿÿÿÿûû¿¿÷ûÿ×ÿ¿÷ïÝïÿÿþÿíþûûoÿ¾ÿ÷ÿÿ¿ÿÿÿÿ¿ÿzÿÿþÿÿÛÿÿ¿÷[ÿý¿¿ýûÿÿÿÿ÷ÿÿÿ­ÿÿÝÿÿßÿ¿þÿÿÿÿÿÿÿoïÿÿúûûÿÿÿ{ÿïÿÿýÿíßþÿÿÿ~ÿïÿûÿ×ÿ÷¿ïÿÿÿÿÿ¿ÿ÷ß¾¿ÿ~ÿÿûÿûßÿë÷ïÿÿûþßÿÿ}ÿÿÿ÷ÿþýÿÿúÿÞÿÿ¾ÿ}ÿ½ÿ½ÿÿÿÿÿïÿýíþÿÿ«ÿÿÿÿÿ}ÿïÿÿ·ÿÿoÿßÿÿoÿÿÿßÿýÿ}÷êÿ¿ûïû·ÿÿõß½ûÿõÿïÿûÿÿ¿ûÞ÷ý¿ÿoÿíÿþÿïÿÿõ¿ýÿÿÿÿþïÿÛÿÿßÿþÿÿß¿ÿ¿þõÿÿï~ÿÿÿÞýïÿÿßWíûûïÿýÿúûß÷úß×÷ÿÿýÝöÿÿÿý¿]÷÷ÿÿÿ¿ïÿû×ÿÿûÿÿÿ÷¿ÿÿ×ÿîÿ­ÿ÷Þÿþ¿ÿûþþÿÿ~ÿÞî¿ÿþ¾÷ÿýソëÿÿÿ¿¿ß÷ûÿû{ß¿¾ýíß¿ÿßïÿ÷ÿÿݽÿÿÿûÿÿÿ÷¯ï¿ý×ÿÿÿý¿ý¯ÿuþ÷ÿ_ýÿÿ¯½ÿ»þÿïÿ÷ÿßÿûÿïÿßÿßþÝë»ÿß¿íþÿëÛÿÿÿþÿÛÝþÿ¾ÿûï¿ÿÿïÿ¿ýïýýûßïÿÿïÿþ¾ßÿ¿Ýûÿÿÿÿýþÿ~ÿÿ÷¿ï¿ß¿ÿÿ¿ïÿ÷÷÷÷ýûÿÿýýûÿÿëÿßÿïïÿÿÿÿÿÿß¿ÿÿ{ûÿÿþÿÿÿÿõÿÿÿþÿÿ÷ÿÿÿoÿßÿþÝýÿþÿo~ÿï¿ûÿûþ¿ÿïÿ÷ÿ~÷ýúÿÿÿßÿ÷ÿÿÿþÿÿ¿ÿÿûÿÿ¿ÿ×ßÿßÿß¿ÿÿ÷ÿÿÿ÷¿÷ÿÿÿßÿÿÿÿþÿîûÿ½~÷ÿÿýýÿÿ÷ÿýÿ}þµÿ¿ÿÿ÷ÿýÿÿï_ÿÿÿ¿þÝþÿþ¯ï_Ýÿßþÿÿ}¿ûÿ¿·ÿïÛ÷ïûïoÿÿ½í¿û÷ÿ»ýþýööÿÿÿÿþï¿ÿÿßïûÿõ·ûÿïïûÿýÿÿï~ýÿ»uÿ{ÿß¿÷¿ÿýÛwÿë×ÿïÿ¾ÿÿÿÿÿÿ¿ÿ·ïû÷uÿýÿÿÿ¿ÿþÛÿÿÿÿ¿}ÿÿÿ÷ëýýïÿ¿þÿÿ¿ÿúÿßÿÿïÿ¿{ÿÿÿ·ûÿÿÿÿÿ÷·ÿÿî÷­÷ýÿÿ¿¿ï¿ûÿ»¿ÿÿ¿þ÷ÿÿ÷ÿÿêÿÿýÿÿ÷ÿßÿÿ¾÷}ÿÿÿÿÿýÿÿ÷ßÿ^ÿïÿÿßë^ÿÿÿÛÿÿ¯Ýÿÿÿß~ÿÿßÿÿûÿÿÿïÿÞÿþ¿ÿõÿþÿÿÿ¿ÿßíûþÿÞÿûÿÚÿÿ¿ïÿïÿõ÷ÿ÷^ÿ¿½ûÿïïw¿ëwþÿê÷ûßïÿ¿·ÿßÿÿÝÿþÿßýýÿÿÿ÷¿¿ÿÿÿýÿ¿»þ÷ÿ×ÿÿÿ^ÿýµÿþÿ¾·úÿ¿ÿûÿîûÿû¿ý÷ÿÿÛýþÛ÷ýÿ·ÿÿÿÿÿÿ÷ßÿÝï¿ÿþÿëþÿïß¿ÿû÷ÿÿýß÷¿ÿýÿö¿ÿï÷ÿßþÛþÿÿÿÿÿµ÷ûûÿõßßûÿÿÿÿÿßÿÿÿ÷Ûÿÿþÿßöýïþûýÿÿïÿÿÿÿ{ÿÿÿëýoµÿûÿ¿ëÿÿÿÿ¿ÿþÿÿõÿÿ¿ÿ¾ÿÿÿßÿïÿß÷ÿ׿ÿûÿÿ÷þ÷ûþÿÿÛû½ß·ÿïÿ¿ÿÿþÿïÿ¿ûÿÿÿþÿý¿ÿ¿÷ýÿ÷ÿÿ¿÷Ûÿÿÿÿÿ}ÿÿï·½ÿÿÿýÿ¿÷ýÿÿÿÿÿïÿßÿÿï}ÿ÷ýÿ·ïÿwÿÿþ¿ÿßÿ¿ßÿßÿÿþþÿÿÿþÿÿÿÿÿÿÿÿþûÿßÿïï÷ÿÿÿýþÿ¿×ÿ÷ÿ¯¾÷ûßÿïÿÿúûÿÿûýÿ¿ßÿÿÿÝýÿ÷ÿ÷¯ÿë÷ÿÿÿÿïÿý¿¿ÿëÿ«ÿÿ÷ÿýþÿÿïÿÿÿþïÿÿúÿÿßýï{÷ïïÿÖßý¿ÿû÷ÿ¿÷þ÷ïïÿÿ¿ßÿÿÿþÿ÷÷¿ÿîïï»ÿÿÿz¿ÿïÿÿßõ¿îÿÿÿÿßöÛÿûÿïÿþþ÷ÿÿÿÿÞÿÿÿÿïÿîÿýÿýÿÿÿÿÿßÿÿþÿ¿íûÿ÷ÿÿþþïÿ·ÿÿûíÕûÿÿû½ûþ¿ï¿ÿ÷ÿÿÿïÿý×ÿÿÿÿßwûoÿÿ½÷ÿ»ÿÿÿÿß_÷ÿ~ÿÿßûÝÿïÿßßÿÿ¿þþßýý~Þþ¿÷ÿþÿÿßÿÿÿ¿ÿÿßÿÿöÿÿ×ý¿ÿÿýÿýÿ÷ÿýûýÚûû»Þÿ÷ÿûÿßïû¿ÿÿo÷ÿÿÿÿÿþýÿÿÿ¿ÿ¶ÿÿÿÿÿþßÿÿöß¿ÿ÷ýoúÿúÿÿÿ÷Þ»ÿÿÿýöÿ{íëÿÿ¿wÿûûû÷ßÿÿû÷ÿþîÿûÿÿÛ¿ÿÿ¿ÿÿý}¿÷ÿÿÿÿ¿_ýÿ{ûÿÿÿ÷ÿýÿûÿ¿}ý×ÿÿïýþþíÿïÿÿý}uÿßïýû¿ûïÿÿûïÿû»oÿþß¿ÿßÿ~ûÿýýßß¿ÿÿÿÿÝý»ï÷ÿÿßï¿ÿþß¿ÿÿÿûïýë}ï¿¿û}ÿÿ¯þûßþÿÿÛÿÿûÿßß÷ÿßÿý×ÿÿößÿÿÞÿÿ»ÿÿ~ÿÿïßÿ~íÛÿÿûïÿþÿÿ}¾Ûÿ¾ïÿïßÿÿÿÿÿÿÿÿÿÿÿßÿþ¿þ¿ÿþþÛÿÿÿÿÿ½ÿÿÿÞïÿÿýÛûþÿëêÿ{ÿÿ÷ÿïÿþÿß}ÿ÷ÿ÷ýºÿÿÿý÷þßÿÿ÷úÿëÿÿýÿÿ¿õïÿÿÿÿûÿÿݯÿÿmß÷_ÿwïÿïýõÿÿÿïûßÞÞß÷ÿÿßÿÿ[ÿÿÿëÿÿÿZûÿÿûûîÿý÷ýÿþþýï÷ÿÿû¿ÿÿþÿÿúýÿ÷ÿÿ~÷ߺ÷ýÿ·ÿþõÿ¾îÿßýþßý¿ÿÿ^ÿÿÿÿÿï÷ÿëïÿÝ¿÷o¿ÿÿ_ûÿ÷ÿÿÿûýíï÷ÿÿûß¿ÿµ½ïwûýÿ¿ÿÿ¯þúÿÿÿßÿõÚ÷ÿÞûÿÿþ·ÿÿ»ÿÞÿ_ÿÿÿÿ»ÿÿÿ{ÿÿÿÿýÿûÿÿûÿoÿïÿÿÿýÿýëÿÿï¿ÿÿúï÷ÿë¾÷ÿvÿÛýÿÿï÷ÿÿ½ÿÿïÚÿÿÿÿ¿ï÷ûûíÿÿÿ½ïïÿÿ÷ÿwÿßÿßÿÿÿÿýÿÿÿûíÿÿ¿ÿÿú¿ýûÿÿÿ÷ýÿ÷ïÿwýß}ÿßÿþÿïï÷ÿÿýúÿÿÿ]ÿýoûßÿÿ¾ÿÿþßwý÷ß÷ÿ÷ßþÿûÿoýþßÿß÷îßÿÿÿ¿ÿÿÿÿõwÿÿÿÿÿþ¿ÿï·ÿïÿÛÿßýÿÿ÷þßÿÿ¯oß}ÿÿÿÿþÿ÷ÿ{þýÿÿïö÷ÿÞ¿ÿïïÿëÿ{ýÿÿíýÿïû¯õÿ¿·ÿ÷ÿÿÿû¿ïû¿ýÿÿÿßöÝ÷ÿÿÿ[ÿýïÿÿß¿Ûõÿýÿ¿ÿßÿïÿÿÿ¿ÿûÛÿßÿÿÿÿ¿ßþÿïÿÿÿÿþÿ{þ¿ïÿÝÿþßÿÿÿûÿÿëÿÿßÿ÷÷íÿþ÷ýïÿÿÛÿ¿¿ÿÿûþÿ÷ÿõÿûÿÿ÷÷ÿ}ÿßÿoßÿýÿûïÿßþïý¿ÿïÿßÿßú¿ÿÿÿ½ÿïý·ÿÿß}ÿíïÿuÿÿßÿÿÿ»þÿû÷ëÿÿÿû÷ïÿýo»ýÿïÿ¿ÿþÿÛÞÿëÿýïúÿÛûßÿÿÿÿÿÿÿ¯ÿÿÿÿÿ¿ÿÿÿÿÿÿß}ýÿ÷ßýÿÿ÷ÿý^÷õÿßÿÿßÿÿ¿¿ýÿýÿÿûýÿÿÿû~ýû_ÿþÿýÿ÷Þþþí¿ïÿýïýÿý÷¿ÿ¿wÿý÷ÿþÿÿÿ¿ÿ¿×ßýïûûÿÿ¿ÿþûÿþÿ½ÿÿ×ÿÿÿÿÿÿßÿï÷ÿÿýõÝÿÿþÿ¿ïþÿþïÿÿÿ_¿ÿýÿþÿ÷ûïýÿÛÿïþý÷ßÿþÿ}ÿï÷ÿÿÿÿ¾îßÿïÿÿÝÿÿû¿ÿ¾ûÿÿ~¾ÿÿÿýÿûÿÿßûßw÷ÿþýÿÿÿÿßþÿÿþûþßïÿïÿ÷ý{ÿÿÿoöÿÿÿßî¿¿ûÿß¿¿¯ß»ÿÿ·ß÷ïúÿÿÿ÷ÿß÷ÿ·í¿Þÿÿÿÿûïßïïûßÿÿë{_ßÿÿ÷o¿ï»»ÿÿõ÷ßýÿÝÿºÿ¯¿÷ÿ}ßõÿÿÿïû¿ëÿþ÷ß½ûÿÿÿÿ¿ÿ«÷ÿÿû¯ÿýÿÿûþÿÿÿß×Þ÷ÿÿßßÿûï÷ûÿ_ÿïÿýûÿûÿß¿¿ÿÿÿÿûÿÿ¿µÿ÷¿ûÿßÿw÷ÿÿÿÿÿ¿ýÿÿÿïïÿÿÿßýúþ÷ÿÿ_}ÿ¿÷ÿÿþÿÿýÿÿÿÿ÷ÿïÿ¿ÿ_ÿûûýÿÿï¯ÿÿßÿ¿_öûûývÞÿÿÿ·ÿß½ÿÿÿÿ¯ïßÿÞÿÿýßÿÿÿÿÿÿýÿ¿ßÿÿû{ÿÿÿëÿÿÿß_ÞÿÿwþÿýûÛÿýþÿ÷ÿý¿ÿÿÿÿ·ïÿÿ¯ÿÿ^ÿÿþÿ÷÷ÿ÷ÿÿ÷ÿßÿ÷÷ÿïýÿõÿ÷ßýþïÿïÿÿû÷o»ÿÿÿÿÿÿïÿ¾»wþÿÿ÷nÿ~ÿÿÿ÷÷ÿwû¿ÿÿÿßý_ûÿ÷ýÛÿºÿÿ¿ÿÿþ¿÷ÿß¿ÿÿ¿ïÿÿ¿÷ýÿºÿÿÿ¿ÿÿÿÿßíÿÿÿÿÿÿÿ¿ÿÿÿÿý¿ÿÿï÷þÿíÿÿýÿÿþÿÿÿ÷ÿÿ÷ÿÿëþÿþÿÿ÷ÿÞïýÿûÿßÿÿßÿ¿wûýÿ~ûûÿÿ}ÿÿû·ë»Ýÿÿ»ÿÿÿýÿÿÛÿ¯ÿÿûÿßïÿÿ»ÿÿûÿýÿû¿ýÿþÿ¿ïÿÿwïßõÿ÷}¾ëÿ½¿ÿþÿÿïÿ¿ýëûÿo÷ÿßÿþÿ¿ûÿÿëûÿýúÿÿÿíÿÿ~ÿß¿ÿÿþïßÿúÿ¿þÿÿnÿÿßßïý~ëÿý÷ÿÿÿÿÿÿ«ÿÿÿÿÿ½ïöÿÿÿß~÷ÿûÿ¾ýÿÿþÿÛÿÿõïÿÿï÷ÿý_ïÿ~ÿÿÿÿ½ÿ¿öÿÿï¿ÿþ÷ÿÿÿÿßßïÿý¿ïûßß÷wúÿ¿ÿý¿þþÿ­ÿÿöûíîÿûÿÿ{ÿßÿÿÿþþÿýúþ»ÿÿïý÷ßû¯ïÿ_ßþûÿïÿ»ßýÿÿ÷ÿ[ÿ}ÿÿ¿ûÿw¿÷ÿýïïûÿÿÿÿní÷ÿß¿ÿïÿÿÿûÿ¿ÿûûû~ÿ·÷ÿÿÿ¿ÿÿÿÿ×ÿýÿþúÿýûÿÿþÿ÷ÿÿÝÿÿÿïÿÿÿ­þûïíýþÿÿÿoÿÿïþÿÿþ¿öïÿþßÿ÷ÿÿÿÿÿúýÿ¿ÿÿûßÿÞ¿Þÿý»ßÿû÷êú¿ÿÿÿ¿ÿÿßÿ¿ÿÿÿ·ÿÿïÿßÿÿß÷¿ÿýÿ¿ßÝ÷ïþ½»÷ûíî÷ÿþýÿþÿþÿÿß÷ÿêõýßÿûÿ®ïýõÛÿÿWÿÿ¿þþÿûýÿÿÿÿÿû÷ÿÿûÞÝÿÿÿßÝÿ¿þûÿÿÿ÷ÿÿïßÿþûïÿÿßöýÿßÿýþß×ÿ÷ÿÿÿÿßïûûÿÿÿ}ÿþ¿ÿÿûêÿïý¿÷ÿÿÿ÷ßï¿ÿÿ¾ÿ¿ÿ¿ýÿÿÞÿ÷þÿßßÿÿûozÝÿÿÿÿÝ÷ÿÿÿí÷ÿwûÿþýþ÷ÿÿÿÿÿÿþïÿÿÿÿ[}ßÿÿ÷þÿíû×Ö¾¿û÷÷ÿ½ÿÿûÿÿ¿ÿïÿÿßÿÿïÿÿÿÿ{íÿÿ÷ûÿ×þÿß¿ýû»ÿýïïßû_÷ÿw÷ïýïî÷ÿÿÿÿÿþÿÿÿïÿÿõÿýîÿ¿¿õþÿÿ×ÿÿÿÿïÿÿÿÿÿ_û¿ûÿßýßßÿÿïÿßÞû¿ýÛ¿íÿÿßÿ~·ÿýýïÿÿÿïûÿïÿ·ÿÿþÿûÛûþÿÿþ¿ÿ÷¿ÿÿ®ßþþßÿÿ¿ûÿÿÿ÷ÿÿýÿÞÿþ·ýûý½ûÿÿÿÿþõ×þÞÿ¿ÿÿÿïý¿}ýï«ÿýÿ¯÷÷ÛÿëïûûÿÿÿÛwßÿÿþ¿¿·ÿÿÿÿûÿÿýýÿþÿýÿ¿ïÿÿmÿÿÿÿûÿï÷ÿïõÿþÝ¿÷ÿÿúîÿ¯¿ÿÿþÿûÿßÿûßÿmÿÿÿÿþþÿûÿýWÿÿýÚß÷ÿÿÿ¿ÿßÿßîï½ÿÝ¿þÿÿ÷ßÿÿÿÿÿíïßÿýþ¯ÿß¿ÿ¯¯öÿÿZÿïûÿßÿþ÷w}ÿ·¿ÿÿÿ½ÿïíÿîÿÞÿÿ¿ßÿuý¿þÿ·ÿÛÿÿ¿ÿÿÿ~þ»ïÿ¿ÿÿ¿ÿ¾ýÛÿÿú¿ýßÿÿ½¿ÿÿ¿ÿ¿þï×ßûí¿ÿÿÿ÷¿ÿÿþëÿÿÿûþß{¿ïÿÿ¿ïÿÿþûõÿÿÿýïÿÿÿß_þûÿßþ¾ßþëÿûÿ¿ÿÿûÿýëý÷ÿÿýýïý¿ÿÿÿûßÿ÷ÿý{ûÿþÿnÿ¿ýÿßþúÿ»ÿÿïÿÿÿýÿ½¿¾ø \ No newline at end of file diff --git a/Lab3/random_text_uniform_two_point_09_distribution.tar.gz b/Lab3/random_text_uniform_two_point_09_distribution.tar.gz new file mode 100644 index 0000000..4616b8b Binary files /dev/null and b/Lab3/random_text_uniform_two_point_09_distribution.tar.gz differ diff --git a/Lab3/random_text_uniform_two_point_09_distribution.txt b/Lab3/random_text_uniform_two_point_09_distribution.txt new file mode 100644 index 0000000..66cfef6 --- /dev/null +++ b/Lab3/random_text_uniform_two_point_09_distribution.txt @@ -0,0 +1 @@ +1110111111111111111111111111110110110111111111111111111010011111111101111111111111111111111110111011011110111111111111111010111011111111111110111101101111111111111100111111111111111111111111111111110111111111111111110111111111111111111110111111111111111111111111111101111111111011111111111111111111111111111011110111101111111111111011111111111111111111111111011111111010111111111110111111111111111111111111011111111111111111111101111111111111110111111111111110111111111110111111111111111111111011111111111111111110111111111111111111111111111111110110111111111111111111111111111111111111111011111111111111101111111111111110110110111011111101111111111011111111111110100111111111111111111111111111111111111111111111111110011111111111110111111101111101111110111111101111111111101111111110111111111010111111111101111111111011111111111111111011111111110111111110011111111111110011101111111111111111111111111110011101111101111110110011111110110111111111111111111111111111111111111101111111101111111111111011111111111111111111111111111111101111111111111111011011111110010011111111111101111111111110111110101101111111110111111111111001111111111111111111111111111011111111111111111111110110111111011011111111111111111111111011111011111111001111111011111100111111111101111011111111111111111111111111111111111111111111111111111101110111101111111111111111111111101111111111111111111111011111101111111111111111011111111101111111111111110111111111111111111111111110101111111111101101111101101111111111111110011111111111110111111111111111111100111111111111111000111111111111111111110111111111111110111111111111111111111111100111111111111101111111011111111111111111011111011111111111111110101111111111111111111110101101110111111111111111010111111111110011111011111111111111111111010011011011111111111111111111011111111111110111111111110110111001111111111111111011111111111111111111110111111111111111111111111111111111111110101111111111101111111101111111110111110111110111111111111111011111111111110111111111111101111111110011111111011111011111011111111111111101011111101111111111111011111111111110111110111111111111101111101111111111111111110111111111111111111111011111111111111111111111111111111110111101111111111111111111110111111111111111111111111111111111111111101111111111111111111111011111111111111101110110111011111111111111111101111111111111101111111111111111111110111111111011111111111111011111111111111111110111111111111111111111111111111111110111111011011111111111101111101101111101111111111011111111111111111111111111101111111111111111101111111111101011101111110101011011111111111111111011111111111111111111111111111111111111010111110111011111111111110111111111111111111111111001111111111011011111011111010111111101111101111111111000110110101011111111111111111111111111111011110111111111111111111111111111111011111111111011100111011110111011111111111111111111111111111101111111111111111111101111111111111111111110111111111111111111111011111111111111101101111111111111111101111110111111111101011111010111010111111011111111111111110111111111110111101111111111011111111111111111111111111111110111111111011110111111111010101110111011101101111111101011111111111111111111111111111111111010111101111111111111101011011111111111111110111111111111111111111111111110111111111111111011111101111111111101111111111111111110101111111011111110111111111111101010111111111111111010001111111111111111110111101111011101110111111111111111111111111111111111111110110111111111111111111011011111111111111111111111111111111011111111101111110010111111111111101111111111111111111111111110111111111111100111111111111111111101111111111111111111011111111111001111111110011111111111001011011110111111111111111111111111101111111011111111111111110111101110111111111111111101110101111111111111101011110111111111111111111111111111111101011111111111111110111111111101111111111111111111111111111111111111111111111111110111111111111111111111111111111111011110111111101111111111111101111101111110011111111111111111111111111111111011111110111111011111101011111111101011111111100100110111111111101111111011111111111100111111111111111111111111110111011111111111111111111011111111111111111111111101110111111011111011111111101111111111100111111111111111100111111111011101111111111111110111111111111111011111111111111101010111011111111111101111111110111111111111111111011111111111111110111111111111111111111111111011111111111111011111111111111110111111111111111011110100111110111111111111111111110011111111111111110111111100111011111111101111111111110011100111111111111111011011111110111111110111111110111111111111111011111011111111111111110111111111101011111111111111111111011111111111111111111111111111011111111111111111111111111111110010111111111111111111101111111111110101101111111011001111111110111111111101111111110111101111111111111111110111011101111111111011110111111111111001111101111111011111111011101010111111111111111110111111011111011010101111110111100111111100111111111111101111110101111111111111111111111111111101111111011111110111111111111110111111111111111111101111111111110111111111101011110111111111111111111110111111110101001110111111111111011101111111111111100111011111111111111111111111111110111111111111101111111011111111111111111111111111111111111110111111111111111111111111111111111111111111111110111111111111111101101111011111111111111111111101111111111111111111111111011111111111110111011111111111111101111011111111111111111011111111111111110111111111111111111111111111111111111110100111111110110010111111111110111111111111111111101111101011111111111011011111111111101111111111111111111011111111111111111111111111111101111111111111111011111111111111111111111101111111111101111101111111111111111001110111111111110111111111111111110111110111111111110111111111111111111111111101011011111111111111101110111111101110111111111101111111011111111111111111111011101111110111011111011111101111011101111111111111111111011111111111111111011001111111111111101111111101111111101111111111111011110100101110111111111111111111011111111111111111101011111111111111111110111001111111111111111110111011111101110100111101111111101111111101111111111111111110111111111111111111110111110010111111111110011111101111111111111111110111111111110110111111111110111111111110111111110111101111111111111111101111111011111110111111110111111111111111011111111101111111111110111111111111111101111111111111101111011111111111111111111111111111111111111111111111111111111101111110111111111111110111111111111111111111101111110111110111011111111111111111111111111111111111111011110010111111101110101111111011111111111111101101111011111010111011111111110111101011111111110111011011111111110111101111111110111111111011111111111111011100111111111111111111111111111101111111111111111111111111111111011111011111111111111111111111111111111110111111111111111111111111110111111110101111111111111111011111111111111111111111011111111111111111111111111111011111111111111111111101111111111010110011111111111111111111111101111111111111111111111110111111111111011111110111111111101110111111111111111111111111011111111110011101111111111110111011101111111111111111111111111111111101111111111111101111111111111111111111101111101111111111111111111011111111111111111111101101111111101111111111111110110100111111111111110111011111110111111011111111101111101001111101110111111111111111011111111111111111111111111110111111110111111111111101011111111111111111111111110111111111111111111111111101111111111111111011111111111111111111011111011011111010111101111111111111111011111111111111111111011101111101110111111111111111011111110111111111111111111111011110111111011110111111111111111111011111111110111111111111001110111011111110111111111111111111111110111101111111111111111011111111101111110111011111111111111111111011111111101111001111111110111111011111101111011111111111101111111111011111111111111111111111111110111110111010111111111110111111110111101111101110111110111111111111110111011100001111111111110111111111111111100111111110111111111111111111111110111111111110111111111110111111011011101111111111011101011111111001111111101111111010111111111111111111111111111000010111011111011111011111111111111111111111111101001111011111111111111101111111011011111010111111111111101111111111111111011111111111111111111111111111111111111111011101011111010111111111110110111111110111110111111101111111111111111111111111111111101110111111111111110111011110111111111111110101111111111011111110111111111011111100111111111111111110111111111111111101111000111111111010101111110111111111111111111111111111011101111111111110101111111110111111111111110111100110001101111111111010011111111101111111111111101111111111111111111110011111111111111111111110111100111101011111110111011111111111011111111111011111111110111011111111111111101111011111111111011111111111111111111111101111111111111111011101110111111110101101011111101110100111111111111111111111111111111111110111111111101110111111111111000111111111111110110111111111111011101101111111111111111111011111101101111011111111011111111111111111111111111111111111111110111111111111111111011111111110111111111011111111111111111111111111111111111111111111111101110111111111011111111101111101111111111111111111111111111010111111101111011111110111111111111111111101111111101111111111111111111101110111111111111111111111100110011011110110111111011111111111111111111110111111111101111111111110111011111111111011110111111111111111110110111111111111111111111011111111111111101111111011111100011101111111111110111101111011111111110111111011111111111111111101111111111111111111111111111111110111111111111111110111111011111111111111111111111111111010111011111111111111111011101111111110110111111101101111111110111111011110111111111111111111110111111110011111111101111111101011111111111111111011111001111111111111011101111111110111111011101101111111100111111111111101111111111011010111111111101111111110110111111101111111111111110001111111111111111010010111111110111101111111111111101111111111110111111100111111111111011111111111111101111111101110110111111111111111111111111111111111111111111111111111111111101111011111111111111111111101111011111111111110011111111111111111111111111111101111111111111001111111110111111111111111111111011111110111110111111111011001011111111111011110111111111010110111111111111111111011111111111111111111111111111111101111111111111110101110111111111111111011111001101111111110110111111111111111110110111111111111111011111111010110111111111111111111101011111101110111101111111101111111110111111011111111111111111111111111111111111011111001111111001110011110111111111110111110111110110111011101111111111111111111111111010111111101010111110111111111111111111111111111111111111110111111111110111111101101101111100111111111111011111101111101111111111111011111101111011111111111111111101111111111101011111111111111110111111110111111011111111111111111111110111111111111111111110111011111111110111111111111101111111111111101111111111111110111111111110111111110111101111111011111111111111111110111111111011110111111111110111111110011111111111111111111110101111111111110110111111111111111111111111111111011111111111111011111111110111111111101101111111111111111111011111111011111111101111111111111111111111111111111111011101011111011101011011111111111111011111011111101111111101011111111111110111111111111111101111111111111111111111101111111111111101011111110111111111111111111101111111111101111111111111111111111111011111011111111101111111011111111111111111111011111111111111111110011111111111111111111111111111111111111011111111111110011101111111011110111111111110111111111110110111101111111111111111111111111111110111101111110111110111111111111111111111110111111111111111111111111111111110101101110111111111111111110101110110111111111111111101111101111111111111111101111111111011111011111111010111111111111011011111111111111111111111111101111111111111111111111111101111001111111011111111111101111111111101111101111101111111111000111101111111111111110111111111011101111111111111110011111101100111001111111111111111111111101011111011111111111111111111111011111111111110101111111101111111111110111111111111111111110111100111111011111011111111111111111111111111001111111111111111111011111011110110111001111111111111110111111011111111111111111111111111111101110111111110111111101101111111111111111110111001111110011111001111111101111111110111111101111111111111111111011101011111111111111111111110111111111111111111111111111111111011111111111111111011111111111111111111111011111101111111111111111111101111111111111111111111111111011111011111111111111101111111111011111111111111111111111111001111111010111111111111111011101010101111011111110111101111111101111111111111111110111011111111111111101111110111111111111111011011111111111111111111111110110110111101011111111111111111011111111111111111111111010111011111111111110111011111111110111101110111110111111111011111111111011111111111111111111110111111110110111111111011011111111011111111100111111111111111111101110011111100111111011011111111111011101101111111110111111111111111110011110111110111111110111111111111111011110111111111111111111111110111110101111111111011111100110111011111111110111111111111111111111110110111111111101110111111111111110111011111111111011111110111111100111111111111111111111111111111101111111111111011111111111111110111101111011111100111111111111001110111111111100111111111111111111100110111111111100011011111111111111111111111111111111111111111111111111111110111111111011111111111101111111110111110111111111101101111111110111111111111101111111111111111111101111111110111111111111110111111110111110111111111011111111110111111111011111111111111111111111111111111111111111101111011111111001111111111111111011111110111111111111111111111011111111111111111111101111111111111111000101111011111111011111111111111111111111111111011111111111011101111111111011111101111111111111111101111111111111010110111011111111111101101111111111111011111111111111111101110111011111111111011111011100111101101111111111111111101111111011111111111111111011111111111101111111011110111110111110111111111111111111111111111101011110111111111111100111011111111111111111010111111101110111111111010111111110111111111111110111100010111100111111101011111111111111101111111101101111111111111111111101111101111011111111111111111111111111111111111111110011111111111110110111111111111111011101111101111111111111111111111110111111111111111101111111111111011101110110111111111111111111111111111111111101111111111111111111111111111011110111111111111111101110111101111111111111111111011111111111111111111111111110110110011111111111110011101111111000011111111111111111111110101001101111111111111101111111110111011101111111111111111111111110111111111111111111111111110111111101011111111111111111111111101111111111111111111111111111111111110101111111111110111101111111101111111111111111111100111111111111111111111111001111111111111111111111111111111111111111101110110111111111110111111111111111011110011111111111111111010111111111111111011111110111110101111101011110111111111111111111011011111101101111111011111111101011111111101110011111111111111111110111111101111101111101111111111111111110111111111111011111111110111110111111111111101111111110111111111111111111111111111111101011111111111011111111111110111111111111111111010011111111111111111101011111111101101110111111111111111111111111111111111111111011011111111110111101111111111011111101111111111111111111111111110111111111111111101111110111111111111111011111111011111110111011111111111111110011111101011111101111111111101101111101111101111111111111011111111111111001111110110101111111110111111111111111111111111111110111101111110111110101111111111111111101011111111101111101100111101111101111111111111111111101111111111111111111111011111111111111111111111111011101111111111111111111111111110111111111111011111111101111111111111110111111111111111111110111111111111111111111110111111111111111111111111111111111111111111111111111111111110111101111111111111111111111111111111111111011011111111111111111011101111100111111011111111101111111111111111101111111111111101111110110101111111111111111111111111111111011111111111111111111111111111111111111111111111111111101111111101111011111110111011111111111111011110111111110111110011111110111111111111011111111110111011100111111111011001111111110111111111101111111111011111111111111111111111111011111111111111011111111111101011111110111111101111111011111111111111111011101111111111111111111111111101110111111101111111111111111111111111111111111111111111111011111111111101111111111111111111111111111111011111111101011101011110111111011111111111111111111111111111111111111111111101111111010111111111111101111111111111011011111111111111111111110111111111101111011011111111111111101100111111111111111111111111111111111111111111111101111111111011111111111111101111101111111111111111011111111111100100110111001110111111011111111111111111111101110111111111011111111000111011111101111111111111111111111111111111011111110111111111111111111111111111111111111110111111111101011111111111110111100111111111111111110111111111111111111111111111111111111111110011010111110011010111111101111111111111111111110101011111110111111011101011100111111101110101111111111111111111110111101111111111111111111111111110111111111010011111111111011011111101111111111111101110111100111111001111111111111111111111111111111111111101111111011101111111111111111111101011100111111111111111011111111111111011101111111111110111111111111111111111011111011110111111101111111111111111111111111110111111011111110111111011111110010111111111101011111111111111011111111111111111111111111111111111111111111111111111111111111101011011111111111111111111111111101110111111011111111111111011111011111111111111111110101011111101111111110111111111111111111111111111011111101111110110111111111111111011101111111111101111111111111101111011111111111111111111111110111011111101111101111101101111111111111111110110111111111101011111111110111110111101111111111111111111111111111111011110111110111111111111111111111111111111111111101111111111111111111111110111110110111111101111111110111111111011111101111100111011110110111111111111011011111111111111111111011111111101111111110101111111100100110111111111011111111111101111111111111111111111111111111111111011111111111111111111111011110110111011110100111111101111111111111111111011111011111110111110111111111111111111111111111110111111110111111001111110101111111111111111111111110111011111111011111111111011010111011011111111111111111011111111111111111111111111111111111110111111111111111111111101111110111111111111111101110011111111111111110111110110111111111111111111111111111101111111111111010111111110111111111111111111101101111111111111111111111110111101111101111110110111111110111111111111111111111101110111110111111111111111111111111111111001111110111111111111111111111111101111111111100111111111110111111111111011111111111101110111111111111111111110111111111111011111111110101111111111111111111111110100101101111111111111111011111011111111111111111101101111101111111111111111001111111111111101111111111111101111111111111111111111011111111111111111111110111111011111101101111111110110101111111111011111100011111101110101110111011110101111111111111111110111111101111111111011010111111111111111111110111110110111111111110111111111111111110111111111111111111111111111111111111111111101111111111110101111001111111111111111111110011111111101110111111111101111111111111111111111111011111101101110111111111100111111111111111111111111110111111101111111111111111111111111111111111011111111111111101111110111111111111110111110111111111111111111111011111111111111111101011111010111111111111111111111111011111011001111111111110111111111111011111111111111111011111111111111111101111111111111111111111111011111111111111111111111111101111111111110111111111111011111111110011111111111110110111111110111110111111111111111111111111111111011011111101111111101111101011111111111111111111111101101111111111101111111111111111111111111111111111101111111111101011111111111111111110111111011111101111111111111111110111111111011111010011111111111111111111111111011111110010111111101111111011111111101111111111101111011111111111111111111111111111111111111111101111111111111111011111111111111111101111111111111111111111111111111111111111111101111101111111111111111101111001111111011111111111111111111111111111111111111111111111111101100111111101111101111101111111011111111101101111011111111110111111100111110111111111111101111111010111101111011111110111011111010111111111101111110110101111111111111111111101111111111011111011111111111011011111111111111111111110111111111111111111111011111111111110111111111111111111111111111011111111111111111111111111111111111011111111111111111111111111101111101111111111011011111111110111101111011111111111111110111111111111111111101011111011111101011110111001111110110111111111110110111111111111111111111111111111111111111111011111111011111111011101111101011111110111111111111111111110100111111011111111111111111110101010111111101111101111111111111111111111111111111111111111111101101111111101111011111011111111111111111111110011111101111111111111101101111111111111111111111111111111111111111111101111111101111111111111111111111111111111111111111111111101111001111111111111111111111111111111111111111110111111111111111011011111111111111111111101111111011111110111111101111111111111110101111111110111111110111111111111111110111111100111111111011111101111111111111111100101111111111111111111111011111111111111111111111111111111111111111111111110111101111111111111111111111111111111111111111101111011011111111111111011111011111111111111111111111101110110111111111111001110101011111111110111110111111111111100111111101001111111111101011111110011111110111011111101111111011011111111110111111111111111111101111110111011011111111111011111111111111111010111111111011111111111011101011111111111110111111111110111111011110100111011111111001111110111111111111110111011111110101011101111111111111111111111111111011101111111011111111110111111011111111111111111111111011011111110101111111111111111011111111111101011111111111111111111111111111111011111111110111111111111111111111011011111111111111110111111110111111111101011101101111111111111111101111111110011111111111111111111111110011111111111111111111101111110111111111101111001111111101111111111001111111111111111111111011111001101111111111111101111111001111111111110011111111111111111110111111111111111111011111111111111111111111111111110111111111111011111111111111011111111111111111111111101111111011111111111111111111111111111111111101111111111111011111110111111001111111111111111111111111011111011111111111111011111111111101111101111101101111111111111101110110001101011111111111111111110111101111111111111111111111111101111111111111111111011111111111111111111111111111011111111110111111111111111111111011011111111111110111111111111111111111111111011011111101110111111111110011011101111111111111111111111111110111101111111111110111111111111111111111111111111111111111110111111011010111011110111110111011111111111110111111111101011011111111111111111111101011111111101111111111111111111111111011111111011111110111111011111111111111111111111110111111111011111111111111111101101111111011111010111111111111111111111111111011111111111111111011111111111111110111111111101111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111100111111111111011111111011101110111111111111111111111111111110111111111111111111011111111011111110101111111110111011111111111111111111111111111111111110111111111111111111110111111111111111111011111111110111111111111111111111111101111111111111111111111010111111111111111111111111111111011001010111111111101111111111110111101111111111111111101111111011111101110111111110111111111111111111111111111111111111101111111101101111111111111111111111111110111111111111111111111011111111111111110111111111111111111111111111111111111101111111111111111111011110110011111111111111011111011111111011111111111011111111101111111110101111111101111101111111111111111111111111111111111111111110111001111111111111111111110111110101111111111110111001011111111111111111111111011111111111111110111111111111111111111111011111011110111111111111111111001001111110111111111111101111011111111111110111011011111111111111111111111111110111110110111111111111011101101111111100100111111110111111111111111111111101001111111111111111111110110011111111011111111111100111111111001111111111110111111111111011111111111111110011011111111111111111101111111111111111111111111011111110011010111111011011011110111111111111111111011111011101111111111010111111111111111111110101010101111111111110111100111101101111111111111111111011111111111111110101111111111110111101110111111111111111111011111111011111011111001111101111111111111011111111111111111111111011111011111111111111011111101101111111111111111111111101111110111111101011111011111111101111111111111110111100111110111111111111111111111110111111101111111111110111101101110111111111111111111111110111111100110111111111111111111111111111101111111111111111111111111111111101111111110111111101111111111111111010111111111111111110011110111111111111111111111110111010111101111100111111111111111111111111111111111101111111111111111111111111111111111110111011011111110111111101111111111011111111111111111111111111111111011101110101111111101110111111111111001111101110111111111111111111111111111110111101111111111111111111111111111111111100111111111111011111110101101111111111111111101111100111101111011111111111111110101111111111110110011111111010111111111011111111111111111111011101101111111101111111111111101110111001111101111111101111111111111111111111111111111111111111011111111111111111111111111111111110111111110011111111110111111111111111111111111110111111111111011011111111111111111111111111111111011111110111111111111101111111111111101111111111111101111111111111111101010101011010110110111100111110111111111111111111111011111111111111101111111110110011111111110111111011111011110110111001111111111111111111110110111111111111110111111111111111011110111111111111101110111111111101111111111111111111011111110111111111111111111101111111111101101111111111111111111111010111111111111111101011111111111011111111111111111111111111111011100111111111111111101111111011111101011101111111011111011011111111111111111111111111111111011011111111111011111111101111111111111111011111111111111101111111111111111111111100110111111110111111111111111111111011111101111111111111111111111111110111101111011111111111111111111111111100111110111011111101111111111111011111111111011011111011011111101111011111111111111101011111001110111101101111111111111101111111001110111011111111110111111111101111111111011101111111101111111111111111111101111111111111101111111111110110111011111011111111111111111111001001111101111111111111111110110111111011110111111111111110110111111101111111111111111111111111011011110011111111001111101111011011011111111111111101101111111011111111101111111111111010110111111111111011011111011111111110111111101111111111111111101010101111111010101111110110111101111111001110111111011111111111101111111110111111111101111111111111111111111111111111111111101111111111111111111111111111110101111011110010110111111011111111101111111101111111111011010111110111111111111111111111110111111011111111011111100111111101110111111111011111110111111111111101111111110110111111111111111101111111111111110100111111111111111111111111111111111111111111111111111110111101111111111111110111111111101111111111011111111111110011111111111111111111111111011111111111111101111111101111111111111111111101011110101111101110111111111111111111111111111111111111111111110111111111111111111111111101111111111111111101111111111111111111011101111110101110111111111111111111111011111111111111111011111011110110111111110111111111111111111111111111111110111111111011101111110111111111011111111111111111101111111101111111111111111110110111111101110111101011111110111010111111111111111111111111111110111011111111111011111111111110111111011111111111011111001111111111111011101111111011111011111011111111111111011111101111111111111110111111111111110111111111111111110111111111111101111111101111110111111111101111111111111111111111111111111111111111111110110111111111111100111111111111101111111111111101111111111110111111111111111111111111111111111101111001011111111111111111111111111101111011011111111100111111111110101111111111111110011111111111111111111111110111111111101110111111111000101011111111111111111111111111111011111111111111111111111111110111101111101111011101111111111111111101111111111111110111111101111011111111111111111101111110101111100111011001110101111111101101101101111111011101111111111111111110111111111110110111110111101111111101111101110111111101111111100111101110111111111111111101111111011011111110101110011111111011111111111011111110111111111111101111111111111111111111111111111011111110111101011111111111101110110111111111111111011111111011111111111011111001111111100111011111011101101111111010111111111101111111111111111110111111101111111111111111111111101111111111111111111110100110111111110111111111111111101111111111111111111111111111111111111111111111110111111111111011111111111110111111011111111010011011111111111111111111111111111110011111111011111111111111111111111111111111111011111111111110101111111101010101111111110111111111111111111011111111111111111111101111111011111111110011100111111111111111111111111111111111101101101110111011111111100111111111111011111110110111111011011111111111111111010111111111111100111011111111111111111111110101011110111101111110110110111111111111111111111111111111111111111101111111100111111111111111111111011111001111111110111111101101011111101010111111111111111111101011011011111111111111111101111111111111111111111101111111111111111011110111111111111011111111111111111111101110110111110111110111101111111111101111111111111011111011110111111111101101111111101110111111111111111011100111111101111111111111111111111111111111111111111111100011111111111111111111111111111111111111100111110111111111111111111110111101111111111111110111001111111111111111001111110101111111111111111111111011111011111101111110111110101101011110010011111111110110111111111110111111111111111111111111111111011011011111111110111101111111111111101101111110011111111111111100110111111110101111111111111011110111111111111111111111110010011111101011111111111111110111111110110111111011111111111111111111101101111111111111011011011011111110110111111111111110110110111101111110110111111110111111011101101111111111111111101111111111111111111111111111111011111111111101110111111101111111111111111111111111111111111111111111110111111111111111111010111011111111101111111111101111111111111111101111011111111111111111111111111101101111111111110111111111111011111111011011111111111111111111110111111111011111111111011111111110110111111111111111111111101111111111111111111011111111111110101111111011111110111101111111111111111101111111111111111111111111111011111110111111110111111111111111111111111111111111111111111111110111111111111111110111111111111111111111111111111111111111111111111011111101110011111111111111011111101111111111111111111111111111111111111101111110110111111111111110111111111111111111111111011111101111111111111111111111111111111111111011111111010111111111111110111111111111111111110111111111111111111111101111111110111101111111111111111111111110111101011111110111111111111111111111111011111011110111111110111101110111111011111110111101111111111111111111011111111111111111111111111111101111111111111111110111111111111111100111111111111111111111111111111111111110111111111101111111111111111100111111111111111101111111110111110111111111111111111111111111111111111111111111111111101111111101001111111111011111111111111111111111111111101111111111111111111101111111101011111111011111011111111110111111111110111111111011111011111011111101100111111111111111111111111111111111011011111110001111010011111111111110111111101111111111111111111111011110111111011111111111111111111111111111111111111111111110111111111011011101111111011110111011111111111111111111010111111110111111110111111111111111111111110101110111111010111111111101111111111110110011111101111111110110011111110111111111110101111110101111101111111011111111111111111011111111101111110111111111111111111111110011110111111111011111010111111111111111111101111111111111111101110111111111110110101111111111111111101011111111110111111011101111111111111111111111111111111101101111111111110111010111111111111101111111111111111111111011111111101111111111110111001111111111111111111001111111111111111111111111111111111111111111111010111111111111111111111111111101110111111111111111111111111111101111110011111111111111111111011111111111111111011111111111111111111111110111111111110111111111111100011111111111111111111111111110111100111101111111111111111111111111101111011111111111011111111110011111111101101111110111111111101111101111111101111111111111111101111110111111111111111111111111111111111101111111110111111011111111111111111111111111101101111111111111111111100111111110111111111111111110111111111111110111111111111111101111110111110111111111111111111111101111111111111111111111111111111111110101111111111111111111111111111111111111101011111111111101111111111011111111111111111111011111111111111111101111111111111111111111111111111111111111011011111111010111111111111011111111011111011111111111111110110111111111111011111111110111111101111111011111111111111111111101110111111111111111111111111111011111111111111111111111101111110111111101111111111111111111111111101111111111111101111111111111111111111110111111111111111111111111111011111111011111111100111111110111111110001111010111111111111111100111111111111101011011011111111111111111111111111111111011111111111111111110111111111111110111111111111101011111111111111111011101111111111101111110111111011111111111111111111111101111110110111101011111111111111111111011111111111001111111111111111111111111111011111111110110111111111111011111001111111111111111111111101111111111111111111111111111111011111111111111111111111011111111111110111011111101111111111111111111111111011111010101110001111111101110111101100001111111101111011111111111101111111111111111111111111011111101111010111101111011111111011111101111111111111110111111111111111111110111011110011011111111111111111111011011111111110111111111111101000111111111110111111110111111111111101111011111111011111111111111010111101111111111111111011111111011111111110111110111111111111111110111111111111101111111111101111011110111111111111111111111111111110111111111111110111111110111111111111111111111101111111111111011111111111111011011111111111111111101111111110111111111111011011111111111111111111111011111111110011111111101110111111111111101110111111111111111001111111011101111111111111111111101111111111101111101111111111110101011111110111111111111111111101101111111111111011011111110111111111111111111111111111111101100111111011111111101111111111011111110011101111111111111111101101111111111011111111101111111011110111110111111111111111111111111111010111011111111111111011111111110001011111111111111111101111111111101111111111111111011111111011111111111111011111111111111111111111111010111111111111111010111111111110011111111111111011011111100111111111111101111111111111111111111111111111111111111111111101111111111111111101111011111111111111101111111111011111111111011110111111111111111111011111111111111111111111111111111111111111101111011111111111111111011101111101111111111110111111111111111111111111111111111101111111111111111111011111111111111110111111111011111111110111111111011111111110111111111111111111111111110111111011110011111111111101111101111111111111111111101111110111111111110111111111111111011111111111101111111011110011111111111111011111111111101111111111111110010110111111111111111111111111111111011111010111011101111111111111111111111101110110111111111110111111111111011110111101111111111111110111111111111111101111111111111111111111111111111100101111111111111111110101001110111111111111111111111111111111111101111111011111111011010111111111111111111111111111110110111110101111011101111011101101111111011111111011111011111111111111011111110111111111111111111111111101111111110111111111110111111111110111011110111101111111111111111111011111111111111011111111111111111111101111111111111111111111110011111111111111111011111101111111111111101111111111011111111111111111111111111011111111110111111111111111111111111111101111111111111111010111011111101111111110111111110101011111101101111111111111111101011011011111111001101111111111111111111111111111011111111111111111111111110111110110111101111111110110111111111111001111111111111111011111111111111111011111111111111111111111110101111011110111111011111011111101101111111111111111111111111101111101111111101111111111111111110111111111111111111111111011111111111111111111111101111111111110011111110101111111110111111111100111111110110111011101101111111110110111111111111111111111011111110111111111110111111101111111101101101111011111111101111111111111111111111111101111111011111111111111111111111111011110111111111011111011111111111111111111111111111111111111111111110111101110111111111110111111111110111110111111101111111101111111111111101110111110110111011111111011111101011111110111111111011111111111101111111111111111110111111111111111111111001010111101111111111111110010110111111111111101101111011111011111111011111111011111111011111111111110011111101111010111111111111111111111111111111111111111111111111101111111101101111111011111111111111101111111111111111111011111111111110111111111111111101011110101111111111111101111100111111111110101111111111101111111110111111111011111111111111111111111111101111111111111111111110111100111111111111101111111111111111111111111111111111100111111111101110111111011111111101111111111011101111111111111111111011111111100101111111010111111111011111111111111111111111111011011111111111111110111111111111111111111111111111011111111111111111111111111111011111111110110111111111111011111011011111111111011110111111111111111111101111100111101100111111111111111111001111111111110111111111110110111111110111111101111101111111111110110111111111111011111101101111111111111110111110101111111111111111111101111111111011111011111111111110111101011111111110100011111011101011111110111111111111111011111100111110001111111111111111111111111111111111111111111111111110110011111111101011111111111111111111111011101111010111111110111111111111111111111111111101111111111111101111111111111111101111111111111111111111111111111111011111011111101111111111110111111111111111111111111111111101111111111110111101111101111011110111111111111111011111111111111110111111111111111011101111111111111111111111011111111111111111111111111111111111111111111111111111111101101101111111111111111111111110111111111111111111110111111101110111111111111101011111111111111111110111111111100111011111011111111111111101111111111111111111111111111110111111111111101111111111101111111111111110111101111110110111111111111101111111011111111111111110111111110111110111111011111111111111111110111111111111111111111011111111111111111011101111111111111111110111111111111111111111111111111111111111111111111001110111111110111111111111111111111111111111111111111011111111011111111111111101111111111111111111111111101111011110101111111101111111011111111111111111111111111111111111111011110111111111100111111111111011111111011111111100000111011111111111011111111111111001111111111101101011111011111111111111110101111101111111111111111111111111011111111111111111110110110110111111110111110111111011101111110111111101111111111111111111101111110110111101011111111111111101111111111111011101110111110111111101111111111111111111111111110111001011111111111111110111111001111111111101111100111111111111111111111111111111110111011011111111011111111111101111110111111111111101111111111001011111111111111111111111111111110111111111111111110111111110111111111011111111111111111111110100011111111111111110111111111111111111111111111111111111111111111110111111111111011111111110111111111101111111111111111111111111111111110111111111110111111111111111111111111111111111111111111111111111111111111111111111111011111110111111111111111110111111111111110110111011111111110111101111111111111111111111111111111111111101011111111111111111101110111111110111011101101111101101110111111111111111111110111111111111101011110011111111111111111111111101011111111111111111111111111111111111111111111111111110101111111111111111111111011011111011110111110011111111111111011111011011111111111111111101101111111111111111111111101011111111111111111111111100111111110111001101011111111011111111111111111111111111101111111111111111111011101111110001110111111111111111111101111111111111111101111011111111111100111101111111101111111110111110101111111111111111101111101111011111111111111111111111111111111111111111111111111111111111111111011111011111101111110110111101011111111111110011111111111111111111111011111111111111111100111111111111110111111111111111111111111011111111111011111111101101111101111111111111111111111111111111101111111111110111111111110011111111111111111111111111111111111111111111111111011111111111111011111111110111011111111111111110111010111101111111111111111111110111111111111111111111111111111011011111101111111011110111111011111111111110111111111111111111011111011111111111111111111101111111111111101111111010111101111111100111011111111110111111111111111111111101111111101111111111111101111011111111111111110011010111110111111101110011111100111010101111111100101111111111111111011101111011111110111111111111011111111111111111111111111111101111011011010111111101100111111011111011111110110111111111111111111111110110111111111111111111101111111011111111110111111111111111111111111111111111011111111101111111111111111111001101011111111111111111111111111111111111111111111110111101111101111111111111111111111110111111111110100111111111011111101011011111111111110111111111111110111011111111111111111111111110101111111011110111111111111111111101111111111111111111111111111111111111111111111111111111111111111110111111111111110111111111101111111111111111111111111101111111011111111111111111110111111111111111111111111110111110101111011101111101111110111111011111101011111111111111111111111100011111111111110111111111111111111110111111110110111111111111111111111101111111111011111101111110111111101111011111110111111111111111011111111010101001101101111111011011110111111111101111111111111111111011111011111110111111111111111101111101111111110111111111110111111111111111111111111111111111110110111111111111111010111110111111111111111011011110111111011111111111111111111111111111111111100111110111110111111111111111111111111101111101111111101111111111011111111111111101111111111011111111111110111101111011111111111101101111101111111111101101011101111111011110111111111111111111111111111111111011111111111111111101111111111111111111111111111001111111110111111111111011111111111011111111111111111001111011111011111111111011111111111101111111111111111111111111111011111111110110011111111101111111111101111111111111111110101111011111001011111111111111111111111111111111111111111011110100111111101110111101011111111110101111111111101101111111100111111111111111101111111011110111111111111111110111111101111101111101111111110111111111111111011111011110111111111110111100011111111111110111001111111101111111111011111111111111101101111110111011111011011111011011010111111111011101101111011011011101111111111111111111111101111111111010111111111011111111101111111111111111011111110011111111111111111111111011111111111111011111111111111111011111101110101111111111011011111111111111011110001111110111111111111111111111111101111111111111111111111111101111111010111111111111111111111101111111111001001111011111111111111111011111111111011111111111111110111111111110111111111101110111111111011101111111110111110111111011111111110111111011111111111111111110111111111111111111101111110111111111111111111111110111101111111101111111011111111010111111111101111111111111111111111011111101110110111111111011111111111111101101010111111101111111111111110111101111101111111110111101111101111111111111111111110111011111111111110111101111111110111111101111111111111111111111111111111111111111011111011111111111111111111111101111111111011111110111010111111111111111111111011011101111111111111111111101011111101111111101111111101110111101111111111111111110111101111101111111101100111111111110111110111101111111111111111111111111111111101111111111111111111111110111011111111111111111111111111111111111111111100111111111011101111111111110111001111111111111111111111111110111111110111110111011111111111111111111111111111111111111111111111111111111101011101101111111111111110111111111111101111111111101111011111111111111011111111111111111111001111111111111100111111011111111111111110111011111111111111111111110111111110110100111110111111111011111101011111101110111011111101111110111111111101111110111111101101101111111111111111111101111101111111111111111111111101111011111111111111111111110111111011111111101111011011111111111111111111111111111011111101111111111011101111111111111101110010011111111111111110011111111011011111001111111111111111111111111111111111111111010111111111111101111111111011111111111111111111111111101111110111111111111111011111111110111110111111111111111111111111111111111011111111111111111011111111111111111111111111111111111111111000111110111011111111111111111111111111110111111111111011011111111111111111111111111111111110111111111111101101111111110111111111101111010101111111111111111111111101111100111111111111111110111111111110111111101111111111111111010111111111111111111111111111011111111110111111111111111111111111111111111011111111111101111111110101111111111101111111011111101011111111111111111111110111111111111111111011101111110111111001111011011111011011111101111101111111011111111111011111101111111110101111111111011111111111111111110011111111111010110111101011111111111011111111111111111101101111111101111111111110111111111111111111111101011111111111111111110111111011111011101111111111111111110101010111101111111101110111111110101111111111111111110101111111111111111111110011111111111110111111110011111111010111111111111111111111111111011111011110111011011111101111111111111111111011111011111111111111111011111111111101111011111111111111111111111011101011011111111111111111111110111111111111011101111111111111111111111111111111111111101111101111111111111111111110111111011110111111111111011111111111110111111111111111110111111111111101111111101111111011111011111111111111111111111111101111111111111111011111111111111111111111111111111111111111101110111111111111111111111110111101111111111111111111111111110111101111111110011111111111111111111111111111111101111111111111111110111111111111111011111111101111101111111111101001101010111011111111011111011111110111111101111111111111110100111111110110111111110111101111101111111111111111111111111011111111111110111101111111111111101111101011111111111111111110111111111111111101111111110111111101111101111111111111110111111111111011011111111111111111011010111111111111110011011111101111110111111110111111111111111111111110110011101111011001011101111011111111110111111111111111111111111110101111111111111101111111111111110111101111111101111111101101111100101111111111111111110111111111111111111111011111111111101111111111101111011111111111101111111111111111111111111111111111111111101011101011111111111101111111111111111111111111111111111111111111111111110111111110111111111111011111111111101111111111111111111011111111111111110111001101001111111110111111111100011111111111111111110111111111111111110101111101111111101111111111111111101111111111111101111110111111111111111111111111111111111111111111111111111111011111111111111111110111111110111111111111111111110111111111111111010111111111111111100111111111111100111011111111111111111111111010111111110111110110111111101111111111100111111111111111111111111111101111111111111111101010100111111101001111111110111111111110101111111111111111101111111111111101111111111111011111101111111011111111101111111110111011111111101101111111111111111011111111111111110110111101111111111111111111111110110101111111111111111111101111111111111111111111111111101111110111101111111111111100011111111111111111111111111101111101111011111111111110101111011101111111111111111010011111111011111111011111111111111111111111110111011001111110111011111111111101111111011111111111110111111111111011011111111111111111111111011111111111111111111101111110111111011110111111111101011111110011011111111101111101111110101011111111110111111111111101111111111111111111111110111111111111111111111111001111111111111111111111111111100111111111111111111111111111101111111111101111111101111111111111111111111011111111111111111111011111010111111111101111110111111111111101111111111101111011011111111111111111111110111111111111111111111111111111111111111111111111111111111101101011111111111110111111111111111111111111111111110111111111101011011001011101011101111111111111111111111111111111101111011001111101111111111111111011111011111011111111111111111011111111111111111101111111111001111111111111111111101111111110111111111011111111111110110111111111101111001101111101111111111111111110111111111011111101111111111111110111111111111111011111111111111111111110111011111111011101111111110001111111111111111111110111111111111111101111111111001111010111111111011111111111010111111110111111101011111101101111101111110111111111100011110111111111111111011111101110111110111111111111111111111110110111111111111111110110111011111111111110111011111110111111111111111111111111111111111111010111111111111111111101110111110111111111111100111011111110111111101111111111111111111101111111111111111110111111111101111111111111111111110111111111111111101101111111111111111110110111101111111111111111111111111111111101111111111101111111111111011111111111110111111011111111111110111111101111111011111110111111111111111111111111111011011111101011111111111111011111111111101111111111111101111111111101101111011110111111111111111111101011111111111111111110110111110111111111011110111110111111011111111110110111111111011101011111111111111111110111111111011100111111111111111111111101111111111111111101111111111111011111111111111111011101101110111111111111111111111111111111111111111111111111011111101111111111011110111111111101100111111111111111111111111011111111111111111111111111011011111111111110101111111111101111111101111111111111101110111111111101111111011111111101111111111111111011010111111111111111111111111111111111111111111111110110111111111111111101111111111111111100111111111111111111101101111111111110111110111111111111101111011001111111111111111111100011011111111111111111100111111100111111111110111111111111111111111111111111110111111111111111111111011110011111111111111111110111111111101101111111101111111111111111111011101111111111111111111011111111111011111111111111111111111111111101101111011111100111111111111111111111110011011111111111111111111011101111111111110111111111111111111110111111101101111111111111111111111011111111111111111111111111011111111101111111111111111011111111111111111111111111111011111111111111011110111011110011011111111111111010111110111011111111111111111110111011111111111111111111011111011111100111111110111111111111111111111111011111100111011111111111111111111111111111111111101011111111111111111011011111111111011111111111111111110111101111111111111101101011111011110111101110111111111111111111111110111111110111111101111110111111110111011101110111011111111111111111101011111101111111111111111111011111011111111111111101111111111111111111111111111111111111111111010110111111001111111111111000111111111111111110111111111111111111111111111111011011110111111111011111111111111110111111111111011111111111111111111111111111111111111111111111111111111111111110111111110111111111111111111111110111101111101111101111111111111101011111111111011101111111111111011111111111101101011011111110111111111111111111011111001111111101111111111111111111111111111111111011111111111101111101111111111111111110111111111111111111110111111101111111111111111111111011100110111111111011111111111111111111111111111111111111111111111111111111111111110111111111100111111111111111111011111011111011111011101111111010111110111111111111111111111011011111111111111111011111111011110111111111111110111111111110111111111110111111101111011111111111111111111111111111111110111101111111111110111011111111111111111111111101111111111111111111111111111011111111111111111011111111101111101110110111111011110111010110111111111111111111111011111111111111111111111011110101111111111111111111111111111111111111111111010101111111101011111011111100111111111111011110110110111011111011100111111111111111111111111111111111111011111111111111111011111111111101101111111111111111111111111111100111111111111111111111110001011111111111111111110111111111111111111111111111111111010011111111111101100111110111110111111111111111111111101111011111111110111111111111111111101111111101100111110110111111111011101110111111111101110111111111111110101011111111111111111111111110111111111111111111111111011011110101111111111111110111111111111111111111110111101111111111111111111111011111101110011011100111001110111101111111101111111110111011101111111111111011101111111111111111101111111111111111111111111110110111101111111111111111111111111111111111111111110111111011111111111111011011111101011111111111111101111011110011111111111111111111111111111111111111111111111111111111110111111010101101111110111110111111111111111011111011111001111111111111111011111110100111111111111111111111111111111011111101011101111111111111111011111011111111111111111111111111101111111110111111111111111111111101111111111111111111111111111101111111111111111111111111111111111111111111111111101111111111111111111111111111111101101111111111111111111111111111111111111111111111111101111110111111111101111101101110101111111111111111110111111111111011101111111011011111111111111101110111111010111100111001111111111111111101111011111111111110101111111111111011111110111110111111111111111111011011111101111111111111111111111111111111111101111111111110111101111101111111111011111111101011111111111111101111111111111111111101111111111111111110111110111101111111111111101101111111110111111111011111001011111110111111011011111111110111111111111111111111011001111111111111111101111101111101111111111111111111111101111111111111111011111111101111101111111111111111101111111111101111111111110110011101101111011101111111011101111111111111111011111011111100111111111111110111110111010110111100111111111111111111111111111111101110111111111111111111011111111111111111111111011111111111111110111111001111111111111111110111111111111101111110101110111111111111111111101101001010101111111111111111111111111111111101011101111101011101111101111111111101111101011111111111111111111110111111111111011111110111111111111111111111111111111100011111101111111111110111101101111101011111111101110111111001111011110111110011111111101111111101111111111111111101111111011111111111111111111101111111111110111111111011111111111110111111111111110111011111111111101110111111111101111111011111111111111111111111111111111111111111111111111111111111111110111111111111111111101111111111011111111111111111011111111110111111011111111111110111111111101101111111111011111011111111111111111111111111111111001111111101111111111111111011111111111111111111111110101111111111011111010111111111111111111111111111101111110101111111111111111101111111111111101110111111111111111111110101011111111111011111011111111111101111011111111101111101111111111110111111110111011111111111111101111111111111111111111111111110111111111111111111111011111101111111111111111101111111101111111101011001111011110111011111101111111111111110111111111111110111111111111111011110111011111111111111111111111101111111111111111111101101111011111111111111111111111100111111111111011111111111011111111110011111111110111111111111111011001111101111111011111111111111111111111011111110111111111111111111011111111111111110110111101111101111111101011111111111111101111111111111111111111111110110001111011111111111111111011111111111111101111111111111111111101111111111111111111011011110111111111101111111111111111111111111101110111111111111111111111111011111011110011111100111111111111111111111111011111111101110101111111111101111111111111111111111110111010110000111111101111111110111111111111111111011111111101011111111111111110111101111111111111111111111111111111111111101110111101010111111110101111111111111111111101111111111111111111111111111111111111111111111111111111001111111111111111111111111111111100111110111111111111111111111111111110111111111011111111111111111111110111011111011111111111101111101101111111010111101111011111101111111111111111110111111111111111110111111111111111111101111111011111111111011111111111111111111111111011001111111011101111111111111111101111010111111111111111111111011111111111111111111111101101110111101111111111101111111111100101111110111111111101100111111111101111111101110111111111010111011110111111111111111111101111111111111111111110111111001111111101111111111111111111111111101111011111111111111110111111111111111111111110011111011111101111111111101011111111111111111110110110101111111111111111111111111111111101101111011101111111101111110101111111111111111111101111111111111101111111111111111111111111111111110111111111111111111111111110111111111111111111011111111101111111111111111111111111111111111111111111111111111101101111111011111110111111111111101111010111111111111111111111111111111111111111111111111110111101111111111111111101111111101111111111111111111111111011111111111111111111111011111111111111111111111111111111111111111111111111111111111011111110011011111111111100111111111111111111110111111111111111111111111101011111111101011111111011111111111111111111011101110111111111010111110111111111110111111111111110111111111111111111111111111101011111011111011111111111101111111111110111111111111111111111111111011111111111111111101111011111110010110111111111111111111111111110100101011111111101111101111111111101111101111111011111111010111111111111111111111100111111111111111111110111101111111111111111011111110111111111111111111111101111111111111111111111100111011111110111111101111111111111100111111011111111111011111011101111111111011111111101111011111111111111111111011111111111011111111111111111011110111111111111111111111011111111111111101111011111111011111001111111011111111110111111111111111001111111111110011111111111111111011111111111111111100111110111011111110111111111101111111101101111111111111111111111111111111101111111111111111110111011111111111111111111111111111111111111101101111111110111111111111111110010111111111111111111111111111111111111011111111011111111011111101110111111111111111111111111111111111110111111111111111111110111111101101111101111111011111111111111111111011111111111111111110011101111111110110111111111111011110111111111111011011011111111111111111111111111011111111111111101101111101111111011111111111011111111111111111011111111111111111101111110111111111111111011111111111111111111111011111101101111111111110111111111101100111111111111110101111001010111111111101101111111111111111111111111111110110111111111111100111111111111111111111101111111110111111111111111111111011111111011111111111111011110111111101111111111111101111011111111101111111011111111111111101111111111111111111110111111111111111111111111110101111111111111101111111111111111010110111111111111011111111111011111111111111111111111111111110111111111011111111111011111111111011111111111111111111111111111111101111111011111111101011011111111011011110111111111111111110111111111111111111110111111111101100111011111111111111110111111111111011110111111111011111111111011111110100111111111111111111111111111111111011111011101110111111111111111111111111111111111111111111111111111111111111110101111111111111110111111110001111111110011110111111011111111101111111111111111111111111111111111111111111111111110111111111111100110011111111111111111101111111111110111101111111111111111111101110111111111111101111101111111111111111110111111111111111111111111111111111111111110101111111111100111111111111101111111011111110101111111111110111111110011111111111111111111111111000011111111111111110111111111111011111111111011111101101111111011110111111111101111011111111111111111111111111111110111111111101111111111110111111111111111111101111111111111111111011111011111111111111111111111101111111111111111111111001001111111111011101101111101111111101111110111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111101111111101111111101111111111111111100111111111111111111111111111110111011111111011011011111111111111001100111111111111110111111111111111111111111111111111111111111111111111110111101111111111111111111011111101111110011110111111111110101111110111111111111001101110001111101111111111111111111111111111101111001111111111111111111111111111111111111111110111111111111111111111111111100111111011111111100111111101111111111111111111110011111111111111111110111110111111111111111111111111111111111110111111111111111011011111111011111011011111110111111011111110110101111111111110111111111111101111111111111111110111111111111111111111111111111111101101111111111111111111101111111001110111111011111111111011111111010111011111011111111111111111110110111101001111111101111111111111111011111111111110101111001111111111111001011111111111111111111101111111111111111111101110111111111111101101111111011111111111111111111111111001111110111011101011110111011111011111101111111111010101111111111111111111111111110110101110111111111111111111110111111110111111111111011111101111111101011111111111111111101111011111111111110111101111111111111111111111111111111111111111111111111101111111101111111110111111111111111111111111011111110111111111111111111111011101111101111111111111111111110101101111111111111110111111111111111111010111110111111111010111111111111111111001111111011111111111111011111111111111111111101101111110111111111111110111111111101111111101111011111110111111111001101111111111111111111011111111111111111111111111111111101110110111111111111011101111111101101111011010111001111111111111111101111111111111111111110111111111111101111111111111111111101111111111111101111111110011111111111111111111111111111111111111111111110110011011111111111011111111111111111101101111011111111111111111111111111101111111101111111111111111111111111110111111111110111011111111111011111111110111111111111111111111111111101111111111110111111111011111110111101111111111101010010111111011101111111111110101011111111111111101111111111111010111111111101111111111110111111111111101111111111111111011111111111111111111111111111101111101110111111110111111111111111111111111111011111111111111111011110111111101111101111111111111111111111111111111111110111111111111101110111101111111111111110111111011111111111111101111111111111111101101110111111111100111110111111101111111111111111111111101111101101110111101111111111111101111111100111111111111111110111011111101111111111111001110110110011111011011111111111111111101111111111010111011111111110111111111111111111111111110101111111111111111101111110111111111011111111101111110111111110101111111111111111110111111111011111111111011111111111111111111111111111101111011111111101111111111111011111110111100111111111111111111111111111110111111111101011111111111111111111111111111111111000111111011101111101110111110111111111011111011111111111111101111111111111110101111101111110110101111111111111010110111111111101111111111111111111111111110111111111011110111111111011111111110111111111111111111111011111111111111111111111111111111110111111101111110111110111111011111101111111111111111111011011111111011111011111111101111111111101101111111011110111111111110111011111111111110111101001111111111111011111011111011111111111111111111111110111111101111111011110000011110111101011111111111111111011111111111110111111111110101111111111111110111101111101111111111111111111111111101111111111111111101111111111111111111111111111111111111101111110111111111010111011011111111111111111111111101111111100111111111111111111111111110111111111111111111111011111011111111111111111111111101111111111111111111111111111011011110111111101011111111111111011111011111001110011111101111111101010011011110111111111111111111110111101111111111111111110101110111111111111101110111011101111111110111111110111111101101111111110111110110110011111111111111111111110110101111111101111111111011111011011111011111111111111101110111101111011111110111111111111111110111101111111111111111111010011111111011111111111111111111111111011111011111111110111111011111111111011011010111111111111101011111110111111111111110111111111111111011100111111111111111111111111111111010111111111111111111111111111010011110111111110111111010111111111101111111110111111111111110111111101111111111111111111111110111111101011111111111111111111101101110111111111111111111111111111111111111110111111111011101111111111111111111111110111101110111111110111111111111111110111011111111111111001101111101111111111111100111110111011101011111111111111011111111111111111101111011111111111111111111111001101111011111011111111111011101111111111111111111111011111010111011111110111001111111111101111111111111111111110110111111111111111111111111111100111101111111111111111111110111111111100111111111011101111111111011111111111111111111101111111111111111111111111111101110111111111111110110101111111111111111111111110111011111111111111111111111111111110001111111111110111111111111110111101110111110111011111111010111111111111111111111111111110111111011100111111111111110110111011111111111101111110111111101111110111010011111111111111111111111111111110111111111111111111111111111111011011111011011010101111111111111111111111111111011111111101111111111110011111111101001111111010111110111101111111110111111111100111110111111110110111111111100111111111111111111111001111111111110111111111111111111111111100101011111110111111011110111111011111010101111111111111111001111111111111011111111111111111101011111101101111011111011111111111111111111111111111111111111111111101101111111111111111111111111111111111111111111110011111111111111111111111010111111111111111111111111101101111111111111111101111111111111011111101110101110111111111111111110111111010111110111110101111111111111111111110110111111111111111111110111100111111111111101111111111111111111111110111111111011111111101111111111110011111111111011111110111111111111101111111111111111111111111111111111111111100111111111101111011111111101111111111111111111101110111111111111011111111111111111111111111111111101111111111011111111110111111111111111011111011111101111110111111010011111111111110111111111101111011011111111111111111110111111111011111011111111111111111111111111011111011111001001111111111111111101111011111011111111111111111011111111011111111111111111111111011111111111100111111111111100111111111111111101011101101101111111111110110111111111001111111101111111111111110111110011111111110111111111111111101111111011101111111111111101101111111001111101111111111111111111111011111111111111111110111111111111111111111001111111111011111111111110111111111101111010111111111111111111110101111101111111010101111111110111111111111011111111111011101111111111111111111111111111111111011101011011111111011111111111111101111111111111111011111111011111110111011111110101111101111111011011111011111011110111101111111111111111111111101100111111111111111111111111111111111111110111111111111111011111110111111111111111010111001111111111011111101111111011111101111111111111111111111111111111111110111111111111111111110111111111011111110111111111111111110111111111101111101110011111111111011111011111111101111111101111110111111111111011111111111111111111101111111111111111111110111111111111111111010111001111111111111111111100110111111111110111001111111111010111111110111111111111101111111110111011111111011111111111110111111011111111111111111111111111111111011111111111111101111111111111110101110111111111111111111010101111110110111111110111111111111101011101111111111111111111111111011111111111111111111111111111111111101111111101111111111111110111111110111111111101111111111111111111111110111111111111111111101111011111011111111111111111111111111111111101111111111111111111111111111111110111111111111011111111111101111011111111111111111101111011101111111110111111111111111101111101111111111111101111111111111111001111101111110111111110110011111111110111011111111011011111011111111111101111111111011111111111011111111111101111111111011101111011111111111111101011011111111111111111111110111011111101110111111111111111111111111111111101111111111111011111111011111111111111111111111111111111111111111111111111011111111111111111111011111111011011011111111111111101101111111110111111111111111111111111111111011111111111111111111111111111101101111001001011111111111111101111111111111110111111111111111111111111110111111111101101111111110111111101111110111111111011011111111111111111111100111101111111111111110101111111111111111101111111111111111101111101111111111111111111111111111011101111101111111111111011111011101111111111111011110111101011011111111111000111111111111111011111011111111111111111101111111111110111110111011101111111111101011111111111111111111111111101111101111111101111010111110110101101111111111111111111011111111011111111111111111101111111001111111111011111111110111111111111001111111111011111111111111110101011111111111111111011111111011111111111111101101101011111111111011111111111111001111111101111011111111011111111011111111110111111111111111011011111111011111111111101111011011111111110011111101110110111111111101111110111111011101111101101110111101011011110101011011111111110101111111111111111111011111111111111110111011111111011111111111110110111111111111011110100111101111111111111111010111111111111111111111111111101111111110011111111101111011111111111111111111111111011111110111111111010111110111111111011111111111111111110111101111111111111111011111111101011111111011111111011010111101111111011010101111110111011111111111110101111111110111101111111011111111111111101111111111111111111111110111101111111111111111111111111111111111111111111011101111111111011111001111110101111111111111001111111110111111111111111001101111100111111111111111111101111110101111111111111101111111101101101101111111111111111111111111111111111111111111101111111111111111111111111111111101111111111110111111111011010010111111111111111111101111110110011111111111111110111001011111111111111111111101111111011111111111111111111011111111111110011110111110011011011111110110111111111111010111111111111111111111111111111111101110111111011111111111111111101111111101111111101111111101111111011111111111110111111111111110111101111111111110111111111111111010111110111101111111111111111111111111111111111111111111111111111101111111111111011111111111111111110111111111111101111111111111111111111111111111111110111111111111111111101111011111111111111101111110110111111111011111110111111111111111100101100101011111111111011111111111101111111011111111010111111111010111111111111100111111001111111011101111111111111111101101111111111111111111111101111111111111111111111111011011111111111111111111111111111101011111110111111101111111110110111011111101111110111111010111100111111111111010110101110111111110111011110101101110110111111111111111111011111111111011111111110111111111110110111111111111101111110111111111111111111111111011111111101111111111011111111111111010111111111100100111111111111111111101110111110111111111111111111111111111100111111111111111011111101111011111101111011111111111111111111111110101111101111111111111111111011111101110111111111111011111111100111111011111111111101111111011111111111111111111101111011111111101111111111111110111111110011111111111111111111111111110111011111011111111111011111010111111111111111111111110111101111111101111111011111111101111111111111111111111111111111100111101111110111101111111111101101111111111111111111011111111111111110111111110011111011111111010111111111111111111101110110111111111011111111111111101101111111111111111111111111101111111111111011111011111111111111111111011111111111101111111111111111011111111111111111111111011110111110111111111111011011111011011111111111001011111110111110101111110111111111111110110101011111111111111111011111011111111101110111110111011111111110111101111111111110111011111111111111111110111101111111111011111111101111111101111111111111111111111111111111111111111111111111110011110101110111111101111111111101111111111111111111111111111111111111111111111011111111111111111111011111111110101111111011111111111111111110111111011111111111110111111011011111111111111111110111011111111110111111111011010111111101111111101111111111100111111111111111111111111111110111111111111111111111111111111111011111111111111111111111111111111101111111111110101111111110111011111111111111111111010111111111111101111111101111111111110111111111110111111111111111011111110110111101111011111111101111011111011001111111111111111111111111011111111011111111111111111101011111010111111111101111010111110101111101111111111111111111111101110110111111110111110111011111111101101011111111011111111111111111111100111111101111111111011111111111101110011111111110011111111111111111111111111111110011111111111111011111111111110110111101101111011111111111111111111111001110111110111110111111111111111111111110111111111111110101111111101111111010101111111111010111111111110111111110111111111111111111011111111101101111111111001111110111101111111111011111111111111111101111111110111111111111111101111111111110111101111111111111011111111011111111111111111111011110111111111111111111111111111111111111011111111011111111111111101111111111111111111101111111111111101111111111111111111111111111111111011101111101110111111111111111111011111111011011111111111110111111111111111011111111111111111111111011110111111101111111111111111111110111111111111111100111111111111111011111111111111110111111111011111111111111111011111111111001111101111111111111111110111111101111101111111111111111111110111111111111111111011111011101111101101111111111111111100111111111110001111111011111111111101111111111111111111111011111111111111111111111111111111111111011111111111111111011111111111111110111011011111110111011111111110111111101111111111111111111111011111111111111111111110111111111111111100111111111111111111111111110011110011111111110111111101111111111111111101111111111111101111101111111011011111111111111110110110111111111111111111111111111111101101111111111011111011111111111011110111111111110111111111111011111111111111111111111011111111111111111111111111111110101111111111111101111111111111111111111111111101111111010111111101110111111111011111111111111111101111110111111011111111111101101111111111111111111011111110111111111111111001111011111111110111111110111111111111101111111111111101111111111111110111111111111011111101101110111111110011011011111110100111111011111111110111110101111111011011111101111111111111111111111110111111011110100111011111111110111110111111011111111110111111111111111111111111011011111101111111111111111111100111111011111011111111111110111110111111111111101111011111111111110111111111111111101111111111111111111111111111011101111011101111111111111111111011111110111111011101111001111111111111111111111001111111111111111101111111110111100111111111011101111111111111000111011010110111010011110111110111111111111101111101010111111111111111111111110111101111111111011111101111111111011111111111101110111111111111100111111111111111111111111111101111000111111111110011111111111111111111111111111111111111111111111101111011111111111111111111111111111010111111111111111111111111111111111101111111111111011111111111111011101111111111110111101110111111111111111111101011111111111111111111111111111101111001011111111111111111111111111111111111111111111111111111111111111111101110111111111110111111111111111111111111111100111001111011111100011111111111111111111111111111101111111001111111111111111111011011111111111110011111111101111111111011010111111100011101111111111111111111101111111111011111111111111111111111111011111111111110110111111011011111111111111011111111111011111111011111101110110111111111011111111111111111111101111111111111111111111110111110101011011101011101111111111101111111111111101111111111111011111101111111101111111111111111001111111101111111111011111111110111101111111111011111110110111111111111111111111111111111100111101111111111111011101111111111111111101011111111101111111111111111111111111111111111111111111111111111110011110111111111111111111101111111101011111111111111111111111111111111011111111111111111110110111111111111111111111111111111111110111111101111011101111111111111111011111111111110110111011111111001111111011111011111111111110111111111111011100111111011011111111111011110111111111101111111111111010111111111111111111001111110110111111101111111111111111111011111111111110111101111101011111111111111101111111111010111111111111111011111101111111111110111011111111111111101101111011111111111111111111110110111011101111111111111100111111111111111111111111110111111111111111111111111111111111111011101111111111111111111111111111111111111110011111110011111111111111111111111111111110101111101111111110101111111111111111111111101111111111111111111111111011111111111001111110111111110111111111111001111111001110111111011111001111111111111111111111101111111111111111011111111101111111101101110111111111111111011111011111001110111111011111111111111111111101111011011111111111101111111111111111111101111111111111111111011111111111110111111110101111011111110111111111011111111111011111111111111111111111111011111111111111111111111111111111111111111111111111110111111011111111111100111111111111111111101100101011111111011111101001111111111111111101111111011111110111110101101111111111111111111111111111111011111111111111011101111110111111111110011110111101101111111111110111111111110001111111111111111111111111111111011111111111111111111111111111111111111111101111011001111111111111111111011111111011111101101111111111101111111111111111111111111111111111101111111111111111111111111111101111111111111111111111111011011111111101111111111110111111111111111011111101111111110011101111111101111110111111111110111111111111111110111111111111111111111111110111011111101111011111111101111101111011110111111111110111111111111111101101111111110101111111111111111111111111110111011111111111111111110110111111111111111111111111111111111011111111111101011111011111001111111111111011111011101101111111111111101111111111111111111101111111110110111101111111111111110110111111111111111111111011111111111011001111011111111111111001011100111111111111111111100111111111110011111111101111111101111111111111101111110111110111111111111110110111111101111111011011111111111111111111111111111111011111111011111111111111111001001011011111101111111111111111111111111111111111111111011111011111111010111111011111111110111111110011111011111111111010111111111111111111111111110111111111101111111111101111111111100111111111111111111111101111111111111111111111111111111111111111111111111111110111111011111111111111111110111011111111111111111111111111110111111111011111111110111111111111111111111111101111011111110101011111111011111101111111111111111101111111111111010101111111111111011011111110111100101110111011111111111111101011111111111111111110111111101111111111111111110111111111111111111111111110110111111111110111111111011100111111111111111110111110111111111111111110111101111110110110101111111111111111111111111111111011111111111111111111111110111111111111111110111111111111111110011111111111111110111111100111111111111101110111111101111111111111111111111111111111111111111111111111111111111111111111111111111111010111111111111111111111110101111111110111111111111111111111111111111111101111111111111111111111111011111111011111111110011111111111111111110111011101111111011111111101111111111111111111111111111111101111110111110111111111011110101111111111011111111111111101111101111111111111111111111111111111111111100101111111111111111111110111111111101111100111111111111111110011111111111111111111111101110111111110110111111111111111111111101111111101111011111111011111011100111111111111111111111111101101111111111111111111101110111111111111111111111111000111111111111110010111111111111111111101111111101111111110111111101111111111110100111111111111011111111111101111101111101111111101110101111101111111111111111101101101111111111111101111111111111101111111111111111111111111110110111111111111111111101111111111111111111111111111101011111111111111111111111011111111111101111111110101101111011111111010111111111111111111111011001111111001111111111111111011011111001011011111111110011110111111110111011110111111111111111111101111111110111111111111111111111111110110110111111111111111111011111101111111111110110111111111111101111111111111111111111111101111101111011101111110111101111111111111111111111111111111111110111111111110101111111111111111111011111101101111001011111111111111111111111111111111110111111111111111110111011111101111111111011011011111110111111111111111111111111111111111011110010111111011111111111111010111111111111111111111111111101110111010111111111111101010111110111111011000110111110111111111110111111111111111111111011111010111111111110111011011101010111101111111111101111101101101111111011110111111111111111111111111110011111111101111111111111111111111111111111111101111011110111101111011111111111111111110111111101011011011111111111111111111111110111111111111111001111111110111111110111111011111111111101111111111111011111111111111111111111101110111101111110111111111111111111011110111111111111111111111111011111111011111111111111011101111011111111111111111111111111111011111011111111111111110110111011110111101111111111111101111101111111111111111101111101111101111011011111111111111111111111010110111111111111111101111111111010111101111111101111111111111110111101111101111111111111111111110011101111111111101111111111111110111111110111111011111110111011111111111111111111111111011111011111111111111111111111111111101111111110111110011111100111111111101111010111110101110111111111011111111101101100111110111111110111111110011111101111111111111111111111111111111111111110111111111111100111111110111110111111111111111111110110111111111110111111110110110101011110111111111111111101111101111110001011110111111111111011110110111111111111101111111111111110111111111111111111011111111111011101111111111111101110011111011101111101111101111111111111111011110111111111101011111111111111111111111111101110110110111111111111111111111110001111111111110011111111111111111110111111101111110101111111111111111110111011111111111111111111011111111111101111111111111110111111110111111111110101111111111110110111111111111010111111111101100101111111111111111110111011101111111111111111111111111101111101111011111111110111111111101011111111101111101111111111111110111110011101101111110111111111111111111111111110111111111111111110111101111111111110001011011111111111101111111111111110111111111111111111111100111111011110111111111111111011011111111111111101011110111111111111111011110111010111111011111111111111111111101101101111110111111111111111100111111111111101101110111111011111111011011101101111111111111111101111110111111111101111111111111111101111111111111111111111110111111111111111011111111111111111100101111111111111111111111111111011110111111111011111111111101111110111111110111111101111101111111101010111111100111111110111111111111111111111111111011111111111110110110111110111111101111111101101111111111111111110111111111111111111111100101011111111011111111111101111111111110101111101111111111111111011111111111101011111111110111111111011111111111111101111011111101101111111111111111111111111111110011111111111111111111111110001111111111111111011110111110111101111101111111111111111111110111111111111111111110111111111111111111111111111111111111111111011111011111001111111101111111111111111111101101101111101101111111111111001111111110111111111111011011111101110110111111111111011111111111011111111111111111011101011111111111111111111111111011011111111110111111101111101011110111111111111111111111111100111111111111111111111011111111111100011111111110111101101110110111111111111110110111111111111111111111101111011111011111110111111111111011111100111111011110111111111111111001111110111111111111111011111111111111111111101111110111111110111011110111111110111111111111111111110111111111111001111111010111010011011011111111111011111011111101111111111110111111111011111111111111111111101111101111001111111111111111111111111111111111111111111111100111111110111111111111111111011111111111111111101111111111110111111101111111111111111101111110111111111111111111111111110111111111100111111011110111111111111011111111111110111101111110101111111111111101111101111100111111001111111111111111110011110111110111111111111011111101111110111100111011111111111111011111111111111110111111101111011011111011110000011111111111111011111111111111111111111111111111111011111111111101111111111111111111111111111111101111011111111111111111111111110111111111111101111111111111111111101111111111111111111111101101111111111111111110111011111111111111001111111101111001101111111111111111111011011111011111111111111111111111111111111111111111111110111111101111111101101111111111111110111111111011111111111111111111101111011111111111111111111110001111111111111111011111111011111111111111111111111111111111111111111101111111110111101110111111110111111110111111111111111111111111111101011111111111111111111110111111111110111110101011111100111111111111111111111011111110101111011011111110110111111101101111111010110110011001111111101011111110111111111011111111111110110111100111111111111011111111111101111111111111111111111111111011111111111111111111111111111111011111110111111111111111111111111111111111111111011111111111111111011111101111011101111111111010111111111111101110111111111111111111111111011111111011110111111111111111011011111111111111010111011111111111011010110111111111111111111011111011111111101111111011111111111111111111111111111011011111111101111011111111111111111011111111101111111111111111110111111111111101111111101011110101111100111111111011111011111110101011011111111111110110111111111011111111111111011111111111101011111111101111111111111111111111111111111111111001111111100011011111111011111010111111111111111111110111111111101111111111111111101111111111111111011010111111111011111111111111011011111011111111111011111011111111111111101101111111111111111110111111111111110111111111111011111101111111111011101111111111111111111111111111110111101111100011111111111111111111011111111111101111111111111111110011110111101011111101111111111111111001111101111101111111111110111111011111101101111111011111111101111111011111111111111111111111111011111101101111111111111011111111101101111111111110111101111110111111111111111111111111111111111111101101111111111111101101111111111111111111111111111111111110011110011101110111101111111111111111101011111111101111101111111111111111111111111111111111111011111111101111101111111111111111111111111111111111111111111111111101111011111111110011111111111110110111111111111011111111111111111111111011111110110110111111110110111111111111111111111111101111111111111111110111111111011101011111111011111111010111011111111111111111110111111111111011111011111111111111111110111101110111110111111110011111111101111111111111111101111111111111101111111111111011111101111111111011011111011111011111110011111111111111111111111111111111111111111111111111111111110111111111111111111111111111111011111111011111111111111111101111111111111111110111111111011010111111111111111111111101111111111111011011011111111111011111111111111111111111111111111111111101101111011111110111111110111111111111111111111011011111111111111110111111111111111110101111111111111110111111111111110110111111111111111111111101111101111111111111111111110111111111111111111111111111011101111011111111011111011111111111111011111111111111111110011111111111111111111111111011111111111111111011111111111111011111111111111111111111111111111011110111110111111110111111111101111111010111111001111111111111111101111111101111111111011111111111111111111111111111011011111111111111111111111111011111111111111110111111111101111111111111111111111111111111111111010110111111110100111111111111111110111111111110111111111111111011111111011111111110111111111111110111011101111111101101111111111111110111111111111101111111111111111111111111111111111111111011111111111111111111111111111111011111110011111111010111111111111111111111111101101111111101110111111111111111110111111111100111011111111001101111111011111011111111111111111111011111011111101101111110111111111111111110111111111111110011111111111101111111101111110111111111111111111101111111111111101011111111111111111111111111111111111111111111011101101111111111111111111111111111100111101111111101110111111111111111111111011111111111111111011111111111111111111111111111111111111111111111111111110111111011101111111110011111111110111101111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111101111111110110101111111111111110111111111111111011111111111111011111101111111111111111111111111101111111111011110111110111111111111111111111111111111111111111111111111111111111110111111101111111111111111111111110111111111111111111010101111001110111101111011011111110111011111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111111100101111111111111111111111111111111111111111111011011111111111111111111110111111101101110111111110111110111111100111111111111111111111111111111100111111110111111111111111111111111111110111111011111100101111011111111111111011111111111111111111111111111111110111111111111111111111011111111111111111111110011001011101101111111111111111111111111111101111111101111111111111111111111111111111111111100111111111101111111101111101111111111111111111011111111111111110111011111111111111111111110111111111111111111101111011111101111111110110111111111111111110111111111001110111101111111110111111101111011011111111100111101110101011110111011111111101111111111111111110111011111111111111111111111111111111111111111111101111010111111111111111111010110101111011111111111111011101111111101111111111111110111111111101110111101111111111110101111111111111110011111111101011111111111111111110111111111111111111110111111111111111111101111111111111111111111001111111011111111111111111101111111111010111111111011111101110111011111111111111111111111011111111111001111111111111111111111111111111111111011111111111111111111111111110111111111111111101111101011111101011111111011111111111111101111101111111111111111111111111111111111101011111111111111101111110111111111111111111111111111111111111111111111011111111111111111111111110111111110111111111111110111111111111111111011111111111111111101111111101111111111110111111111111111111111001110111101111111111111111110101111111111010111111111111111111111110101111111010101111111111111111111111111111111111011111111110111111111111111111011111111111111111111111111111111111111111011111111111111111111111011111101111111111111111001111111111111101110110111110111111011011011111111111111111011111111111111111111111111111111111111110111111111111101111111111111111011111111111111110111111101101101111111111100111101111110111110111101011101111111111011111101111111111101101111111110111101101111111011101111111110111111111111111111101110101101111111111111111110111111111111011111011010111111111111011111101110111111110111011011110011111111111111111011111111111111110111111001111111110111111111110111111111111111111111110111111111101111111111111111111101110011111011111111111111111101111011111011111110111111111101011111111110111111111111101111011111111111111111111111011111111111111111101111101110111111111111111111111111110111111111011111111111100101111111111111101111111111111111111111111111111111111111111111101101111101011111111011111111110011110111111011111111111101110111111011111111111111110111101111111111111110110111111111111111111111111110110101101101111111111111111011111011101111111111111111101111111111111111111011011111111100111111110111111111110111011111111101111101111011011111111111111111111111011111110111111110111111111101111110111111111011111010111011110111010111111111111111111111111011101111111111111110111101111111111111111111111111111111111100110111111111101111111111111110111100111111111110111110011111101111111111111111101111111111111110110111111111011111111111110110111111101111101101111111101111111111110111110011111111111011111110111111111011111101111111011111111111111111110010101110111010010101101111111111111111111111110111111111111111111111111100111101111111111111111111101111111111111110111110110111101111111011111111011101111111001100111111111111110111111111111110111111001111111110111111111111111111111111101111111111110111111111111111101111011111111101110111111111101111111111111111111110111111011111111111111111111111111111111111111111111101101111111111111111111111111111110111111110101111111111011111111111100011111111111111110111111111111110110111111001001111111111110111111111111111111111111111111111111111111111111011101111111111111011111001100111111111111111111111101111111111111011111111101111111111111111111111111111111111111111010101111111011111111011010101111111111111111110111001111010111111110111111111101111111111111101111111111111111111111111011101111111111111111101110101111111111111111101111111111111111101101111111111111110111110111101111111111111111111011101110111111111111111111101111111111111101111111111110111101111111111111111011111010011111111111011111111111101111111111111111111011111011011111111111111111011111111111111111111111111011111111111111111111111111111011111111111111111101011111011111111111110111110111111101111100111010111111111111111101111111101111111111111111111111111111111001101111111001111111111111011111111111100111111111111111111111111110111111111111111111101010111111111111111111110111111111111111111111111011111000111111111111111111011111110111111111111101011111111111111111101111111111111111111101111111111111011111011111111111111111111101111111111111111111001011111111111111111101111111011010111110111111111011011111101111101011111011111111111111111111111111011011111111110111111111111111111011111111111111101011011111111110111011111111111111111111111101011111111111111110101111111111111111111111111111111111111111101110111111011111111100001110110111111010101111111111111111101101111111111111111111111111111111111111111111111111111101111111111111101111101111111111111101111101111101111110110111111111110011111111111111111110111111111111111111111011111011111011011111111111111111111101111111111011111110011111111011101111111111111111101101111111011111111111111110111111111101111111101111111111111111111111111111111101111110111111111111111111111111111110111111111101111111111111101111111110111111110110111111111111111111111101110111111111111111111111111111111111111011111110111111111111111011110111111111111011111111110111111111101111111110011111111111111111111111111111111111110111111011111111111111111010111011110111111111111111111111111110110111111111101100111111111011111111111111101111111111111111111111111111111011111111111101111101111011111110110011111011010111100111111111100111111110111111110111111111001010111111111100111111101111111011101111001101110101101111011111111111111110111110111111111111101100111011111011111111011111111111011111111011111111111101111111111110101111111101101111111111011011111111111111111111111011001111111111111111111011111110111111111111111101011111111011111111111111111111111111111111111111111111111111111111011110111111111111110111111111101111111111111110101111111011111111111111011111111111101111111011111110110111111110111110111111111111101111110110111111111111110111110110111101111011110111111111111011111111111111111111111111111111111111111111111111111111101111111111111111111111111111110011111011011111111111101111111111111111111111101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101100111111111111101110111111111111111111111101111101111111111111111111111101111111111110111111111111111110011111111111111111111111111110001110101111111111111111111111111111111110111110110111011111111011011111111110111101111111110011111111110111011111111111111101111111111111111111111111111101111111111111111111111110111111011111011111111111111101111111111111011111011111111111101111110110111111111111111111111101111101111111111111111111110101101111111111111110111011001111111111111000111111111111011111110111111111111111111111111111111110111111111111111111011111111001111111110111111111111111111111111111011111111111101111111111111101111111111111101111111101111011111111111111111111111111111111111011111111111111111111110111111111111111111111111111111111111111111011111101111111111111111110111011111111111111110101111101111111111110111111011101101101111101111111011111111111111111111111011101111111111011011111111111101111111101111111111011110111111111111111111001111110111111111111111111111110011111111111111111111111111001111111111111110111111111111111111111111111111111111101111111111110111100111011111111101101111111110011111111110111011111101111111111111111111111111111111111111111111011111011111111111111101100100011111111011111101111111111101110010111111111001011011111111111111111111111111111111111101111111111101111110111111111111101111111110111110111111101101110111101111100110111111111111111111110111101111101111111111111111111111111110110111111111111111111111111111111111111111111111111111111110111111101111111101101011011111111111101111111111111111111111111111111111111110111110111111111111111111111111111101011110111101111111111111111111111111111111101111110010111111111111111111111111111111011111111111111111111011100111111111101111110110111011111111101111111111011111110111111111001111111111111111111111111111111111101111111111011111111111111011111111111110111001111111111011111111111011011111110111111111111110111111111100111111110111011111111000011110111111111111111111011111111111111111111111111111111111011111111111111110011111111111110111110111110111111111111111110111111111111011111111111111111111111111111111111111111111111111011111101111111101111110101111111011110111111111111111111111110111111111111111111111100101110101111110011101110111111011111011111111111111110111111101111111001111111111001011101111110101111111111111101111111111111111111101111111111111111111111111111111111111110011111111111111111111011101010111111110111111110111111101111110111111111111111111111111111101111011111011111111111111111011111111111111111011111111111111101111011111111111101111111111111111110111111101010111110111111111111011111111111111011011111111111011111111111111011101111111011110111011111111001111111111111111011110111011111111011111101111111110111111011011111111011111110111011111111111111111101111111111111111111111111111111110111111111011111011111111111111111111011111111111110111111111110111111111111011111111111111101111111110110110110011111011111111111111110111101010111011011001111111111111111110101111111111111110111101010011110111111111101111111110111011111110111111111111101011111111101111111111011111111111101011111111011110111111011111101111111111110111111011111111101111011111111111101110111111111111111111111110011111110111101111111010111111111111101111111011111111111111111101111111111111111111011111001101101011111111011111011111111111111111101111111111111111011111111101111111111011101111110111101111011111111011111111111110111111111111111111011111111111011111111111111111111111111111111111011101111101111111111111111111111111111111111111111010111011111111111111111011111110011011111111011111110111101011111111111111111101010111111101111101110111111111111110110111111111111110111111111111111111111011111111111111111110111111101111101011111111111110111111111101110111111111111111111111111111111111111111111101110111110111101111111111111101111111001111111111111111111111111111111111111011111111111111111111111111101111111111011111111110111111100111111110111111111011111111111111110111111111111111111111111111111111000110111111111110111111111111111111111111111111111111111111111111111111011111110101011101111111111111111101111111110111111111111111101111111111111110111111111111101111110111111111111111111111110011111111111111111111111111110111110111111101111111111111111111111111101010111111111110111111111110111111111011111111110111111110101111111111111111111111111111111111111011111111101111111001001101111011111011111111001111111111011110111011111111111111111111111111111111111111011111011111111111111111011111011111111111011111110111011111101110111111111111111101111111111111111111111111111011011111111011111111111111011111111111111111111111101111111101011111111101111111111111111111111111111111011110101111110111111111110111111111110110111101111111111111011100111111111011111111111111111111111111111111011111111111111111111111111110101110111011111111111111111111111111111111111111111110101111110111101111111110110111111111111111111111011101110111111111111111111110111111111111111111111111111111110111011111111111011101111111111011111111111111111111110111111111111111111010011111111111111111111111111110111111111111111111111111011111111111111111111011111101101111110111111111011111111101111110111111011111111111111111111111111111111111111111111111111111100111111101111110111111111011111101111111111111111111111111111110111111111111111111111111101111111011111110111111111111111101111111111111101111111111111101111111111111110111111111111111111110110111111111011110111111111011111111111111111111111111111111111111111111111111111101111011111111110111111111111111111111111011101111111101111111111011111111111111111111111111111111111111111100101111111111111111111111111011101111111101101110111111111111111111111111111111011111111101101111011110111101111111111101111111111111111111111101111111111111111111111101111111111111111011111111111111011111111011111111111110111111110101101111111111011111111111110111111111111101001111111111111101111111111111111111111111111111111011111111111111111111111111111111111111111111111111011111111111111111111101111111110111111111111111101011111111111111011110111011111111111101111111001110110101101111101111111111101011111111011111111111110111111101011111101111111111111111011110111111111111101111111111110110011111111111111111111101111110011111111111111110110111111111111111110101111111111111111111110101110111110111111111111111111111110011110111110111111111111110111111111111111111111111111111101110111111110111011111111111101111111111011111011101111111111111111111111111111111111111111110111010111111111111111111111111011101111111111111111111111111111111110110101111111111111111111101111111111111111110111111111110111101111111111111111111111111101111111111111111111111111111110111011111011011111111101111111111100111111111110010111111111011111111111111111101111101111111111111010111111111111111111111111111111101111111110111111111111111111111111111111100111011110111100101111111111011111111111111111111111111111111101111111101111011111111111111111111111111011101111111111111111110111111111111111111111111111111111111111111111101110111011101111111111111111111111111111111111110101101111111101101110111111111111111111111101110111111111111111111010111111111111111111011111111111111111110011111111111111111011111111111111111111111101111111110111111111111111011111111111011111111110111111111110111001111101101111111111101111111111111111111111111111111111111111011111101111111110110111111111111111111011101101110110111111111111101110111111100011111110011111111111111111111101111111111111001111011111011111111111100111111111011111101111111111111111111111111111111111111111111011111111111111111111111111111111111110111110110111101111101101111011111111111111111110011111111110110111111111110111111111111101111111111111100111111110111111111111111111111111111111111111111111111111111011100111111111110111111101101010111111011111111111111111111111111001011111110111111111111111111111011111110001111110111111111111111111111111111110111010111111011010111111111111111111111111111011111111111111111111111111111111111111110011110111101101101111111111100111111111111110111011111111111111110111111010111111111111111111111111111101111111111111111011111110111111011111111011111111110011111111111101100011111111111111111111111111010111111111011111111111110111111011110111101111111111011111111111111111110111011111111110111111111111101111111111111011011111101101110101111110111111001111011110101111111111111111111111001111111111111111111111111110111111110111101111110111011111011111011111111110011111101111111111111111111011111111111111111101111111111111111101011101111011111110111101111111111111011011111111111111111111111110111111101111111111111111110111101111101111110111111111100111111111111011111111111111101101110111111110011111111111111111111011101101111011101111101101101111111111111111111111111111111111111111110111111111111111111111111111011111111111111111011111111011111111111011011011111111111101111111111111101111111111100111111111111111111111111111011111111111111111111111110111111111011111111111111101111111111110111001111111111101111111111101011110101110110111011111111111111111111111111111111011011111101111101101111111111111111111011111111111111110111111111010111111111111111111011111110111010110111111111110111111111101111111111110110011111111111111111111111111111011011111111111111111111101101011111111111111011101111101111111111111111111111100111111110111110111001111111110111101111111111111011011111110111111111111111110011111111011111111111110101111111111111111111101011111110101111111101111111111111111111111011111111111111111111111111111111111011111111110111111011011111111111111011011111111011111111111111111111111011110111111111111111111111111101111100111111111111111111111111101011111100111011111111111111111011111111111111111011111111111111111111111011111001101111111111011111111111111111111111011111011111101111011011101011010111111111111110110111111110111011111111011111111111111111111111011001111111111111111110111101111110111001111111111100111111100101101111111011111111110111111100111101111111011100111111111111101111011111111111110111110111111011111111110111111111111111111111111111111111111101111111101101111011111111110111111111111111110011111011111111011110011111101011011111111111111111111111110111011111111111111111110111111111111111111111111101110111111111111111111111111111111110111111111111111111111110111010111011111110111111111111111111111010111111111011011111111111101111111111111111011111111111110111111111111111111111111111111111101111111111110111111111111001111111111101111111011111111111111111111111101111111111111101011011011101111101111111111111111111111101111110111111111111111111111111111111111111111110111111101011111111111011111110111111111111111111111111111111111111111111101110011111111111111111111101110111111111111111111111110111011110111111110111111110110111111111111111011111101111111111111111111111111111111110111111111001111110101111111111101011111111111111100111111101111111111111111011111111111111111111111111101111011111111111111111111111111111111111101111101111101111111111111111111111111101111111111111011111111111111111101111111111111111110111111110111111111111111111101111101111110111111111111111111111111011111111111111110111111111111111111111110111101111110111111110111111111111111111110111011111111111111011111111111111111111111111111111111111111111110110110111111101111101111111111111111111111110111111011111111111111111101111111111111111111110011111111111111011111111111111100111111110111111111111111101111111111111111110111111111111111111010101111101111111111111101111111111111111101111111111111111111111110111111111111101111110111111111111110111101111111111111011101011111101001111111111111111111111111111111101110100111111111100111101111111011111111011111111111110110111111011110111111111110111101111111111111111111111111101011111111011111111011111111111100101011111110110111111111111111111111111111111010111101111111110100111111111111101101111111111111101111101111111111111111110011111111111111011110101101001011101111111111111111101111111111111011111111111111110111111111111110111111111111101111111111111111110111111111111111111111111101111110111111111101011111111111011110111111111110111111111111111111111111111111111111111111101111111111111111101111101110101111111111111110111111111111011001111111111111111111111111101110111110111110110111110111111111111111111111111111111111110111111011111111110111101101111110111111111111111111111111111111111111111111111111111111101111110101011011111111111111101100111101111111110101111111011111111111111011111101111111111100111111111011110010111111110111110111110111111111111111101111111111111001111111101111111110111111011111011001011011111111110111111111111111110101111010111101111111111111111101111111111110111111111110111111111111101111111101011111111111111101111111111111011111111111111101011101011111111101111111111111101101111111111111100111111111011111111110111111111111111111111111111111111111001111111101111111111111111111011111111011111111001111111111111111011111110111011111101111111111111111111111111111111111111111111111111011111111111111111111111111110110111111011011111111111111111111111111101111011111011111101111111110101111011111111111111011111111111111111111110111111111111111011111111111011111111111011110101101111111111111111011011111111101101101001111111111111111111111111111011111111010111111111111101111101101111111111111111111111111101111111111111011111111111110101111111110111111011111110111111111111111111111111111110111111111111111111111111111101111111111111111111111111111111110111010111111011111111111110111111110011101110111111011111111111111011111111011011101101111111111111011110111111010111111110011111110111110111111101111110111111111111111111101111111111011101111111111111111111111011110111111111111110111111111110111111111111111111111111001111111111010111110111100111111101111111111111111011111110111101111101110101111111111110111111110101111110111101111111111011110111111111111111111111111111110111111111111011101111111111111011111111011111111101111111111111111111111111011111111011101011111101011111110111101111111011111111101111111110111101111101111111011111111111111110101111101101111101101111111111011111111111111111111111111101011111001111011011110111111101111110111110101111111111111111111111111111111111011111111110111111110111110111111101111111111111111110111010111111111111010111011101111111111111111110111111101011011111111011011111111111111111111111111111111111111111111101111111111111111111111011111111111100111111111011011111111111111111111111111011011101101111111101010111111111111111111111111110101011011111101111111111111111111101111111111111111111111111111111111111110111011111011111111111111111110111111111111001110111111011110111111111111111111111111111111111111110111111101111011101111111111111101111001111111001111111111111111111111111110111111111111111110010111111111111111111101110010111111111111111011110011001111111111111111110111011111111111011111111110111111111011111101011111011101111011111111111101111111111111111111111111111111111111111111111101111111110111111111110111111111111111111111111001111111111111111101111111111111111111111110111001111111111110101111011111111011011011111111111111111111111111111101111011111111011111111110010111111111111111111101111101111111111110011111111011111111111111111111111111111011111101110111111111111111111110111111111001111011111111111111111111110111111111111010111111111111010111111111111111011111111111101111110111111111111111111111101111111111110111111111111111111011111000111111001111101010111101111111011101011111111110111111111111111111111111111110110001111111111011101111111111001111111111111111111111111111111111111111111111111111011110111111011011101011011011110111111111111111110111111111111111111111111111010111111111111111101101111111110111111111011111110111111111111111101001111111111111111111111111111111111111111110111111101111111111011111111111111111111111111110111111111111011101111111101111011011111101111111110100111111111111111111111110111111111111111011111111111111110111111111111111111111111111011111111111111011111111101111111111111111111111111111111101111111111011111111111110110111111111101111001110110111111111101111011111111111111111111011111111111100101111111111111111110111111111011111111111111111111111111111111111110111111110111110111111111111111101111111111111111111011111111111111111111111101111111101111111111111111100111111111111111111111111011111111111111111111111110111111011111011111111111111111111111111010111101111110111111101011111111111001111111011111111111111111111111111111111011111111111110111111111110101111111110101111110111111101111111111111111111101111111111111111100111010111111111010111111111111111111111111111111111111111111111111111111010111010111111111111111111111011111110111110111011111101011111111011101110111111111111111100111101111111101111111111100111110111101111111111111111110110111010111111110101101111111011111111111111111101111101111111011111111111111111111111111111111100101110111111111111110111111101011111111011111110111011111111111111111111011111111011011111111111111111111111100111111111111111111111111111101111111111111111111101111111111111111111111011111111011111111111111111111111111110111111111111111111111111111111110111110111111101111110101101111011111111111111111011111111111111111111111111111111010111110011111100111011111111111101111111111101111101111111111111111011111111110101111111111111111101111111110111111111011111111111111101111111101111111111111111111111111101111111101110111011101111111111111011101111110111110111011111111111101111111111111111111111111111110110111111011111111111111111111111011111111011011111011111111111111110111111111110111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111101011001001111111111111111011111111111111111111111111111011101111111111111111111111111111110011111101111111111110110011111111111111111111111111110001111011111110111111111111111010111111111011111111111111111111101110111100111111111101111111111110111111011111111111111111111111111110111110111111111111111111111011111111111111111111111111111111111111111111111011111011111011111111111111100111101111111111011111111111111111110111110111111111111111111111111110111111111111111111111111111111111010111110101111110111111111111111111111111011111110011111111010111111110111111011111111111111111111011101111111111110111101111111111111111111111111111110111101001111110111101111111111111111110111111101100111111111111101111111011111111110111111011111110111111101110111111111111101111111110111111101111111111101011111111111111101111111011111111101111111111110111111111110111111111111111111111111011111111111111101111101011111111111111111111111011101111111011011111111111111111111101111101110110011100111111101110011111111111111111111111111111111111111111111111111101111101101011111111111111111111111111111111111011111111111101111011111111111111111111111111111111110110101111111111010111111111111111111111111111111111111101110111111111011111111111101111010111111111111111111111010111111111111111111111111111111111111111111011111111111111110100111111111111111111111111111111111111111111111111111111111111111111111111111111111011011111101111111111101111111111111111111111111111111011111011111111111011011111111011111111111111111111100111111111111111111101111111111100111001111111111111111111111011111111111111111111111111110111111111011111111111111101111111111111111111101101111111111011111111111111111111101111101111111111111111110111011111011111111011011101111111110111110111111111110111111111101110111111101111111111111110111111111111111111111011111111101111111110111111111110111111111011111111110111111111111111001111111111111111111101110111111111111001111111111001111111101111111111111111111111111111110111111111111011111111111111110111111111111111111111111111110111001111111110111111101111111111111111111110111111111111111011111111001111111111111111111111101111111111101110111111101111111110111111011111111111110111111111101111111111001101111101111111111111110011111111011111111111111111111111111110111101111111111110011111101111111101111101111111111111111111111110111111011111110111111111101111111101111111111111110111111111101111110011111111111101111111111101110111111110111111101111111111111111111111111111111111101111111111111111111100111111101111111111111110111111111111111111111111011111110111111011111111111111111101111011110101011011011111111111111111111111111111111111011011111111111111111111111111101111111011111111111100111111010111111011110111111011111111111111010111111110011110111111111111111111110011111111111111111111111101111111011111111111011111111011111111101111111111111111110101111110111111111111001111111111111100111111111111111111011111111011101111111101111111111111111111111111011111111111111111111011111111111111111011111011111111111111111111111111111111111111101111111101111101111101111101111111111111111111111111101101110110111011111111101111111111111111111111111011111111110111111111011111011111011111101111111111101111100110100011111111001011111111111111001111111111101111110111111111111111111111111111111011111111111111111111111111111011111111111110111111111101111111111111101111111110111111111111110111111101111011111111111111111111110111111001101110111111111101111111110100111111111101111111111111111110111111111111111111111111111111111111011111111111111111111011111111110111101111101111111011111111011111111111111111101110110111110111111111110111111101111111101111110111111111101111111111111111110111111111111111111111111111101110111111110111111111111011111111111001101111011111111111101011111010101111101110111110111111111111111111011110111111111111111111110111111001111111111111101111110111111111110111111111111111111111111110111111011101111110111111111111011111111101111111111111111101100111111111111111111110111111111110101101011111111101111110011011101011111111111111111111111111111111111111111111111111111111111111101111111111111111111111111110101111110110111111111111111111111110111110111111001111111101111110111111101110111111111111111011111111111111111110111101111111111111111110110111111110111111111111110101110111111111111011110101111111111111111101111111111111111101111111111010111111011111111111001110111100101111111111111111111100111111111111111111111011111111111111101110011101110111001111111111111111111111110111111111111111101111111111111101111111111111111111111111111111100111111011111111111111101111101110101111111111111110111110110111111011111011111111111111110111111010111111111111111011011011111111011111111111111111111111111111111101111111011101111111111111111110111111111110111100111111011111111111111111111110111110111111011011111110111011101111111111100111111111111110101110010110111111111011010011111111111101111010110111111111111111111111111111111111111111111111111111111111111110111111111111110111111111111111111111111110111111111011100111111111111110111011111110111111111011111111101111101101111111110101111111111111111111111111111111111111111111110111111111101111101110111111011111111111011111111111101111111111101111111111111111111111111100111110011110111011111110111111111111111101111101111111111110111111011111111111011111011111101111100111111111111101111001111011111110111111111111111111111101101110111111111111001101111111111111110111110111111110010110111111101110111111111001111110111111111111111111111101111111111111011111111110111111101111111111111111111111111011101111110011111111111111111111111111111111111111111111101111111111111111111111111111011111111111011111111111111111110111111110111111111110111111110111111111111111111111111111111111110111101111111111111111110011111111111110111111111011110111110011111111111011011110011111111011111111111111111111111111111111111110101001011101111100110111101111101111111011011111111111111111111111011111111011111110111111111111111111011111111111111011111111111111011101101011111111101111111111110111111111011111111111111111111111011111101111111111111111111111111111111111111111111111011111111111101010011111111101111110111110110001011111111111111111110111111111111111011111111111110111111111111101111111111001111111011111111111111111011111101011111111010111111111100111111111111111101111111111111111111111111111111111110111111111111111001111111111111111110111111101110111011111111111111110101111110111111110101111111111110111111111111011111011111011111111101111111111111111111111111101111111111101111111111111111111111011011111111111111101111111011111010111111011011111110110111011110111111111111101111111110111111110111111111110111111111111111101101111111111110111111111111111111111110111111111011110111110111011111111111111111111011111111100111111110111111111111111111111111111110111111011111111111111111111111111111111111111111110101110111111111111011111111011111111111111110111111111101111111011111101111111111101111111111111111011111111111111111111111011111111111111111111111111111111111110111101101111111111111101101010101111111111111111111111111111111111111111011111111111110111111111110111101110101111011111111000111111111101001111111111101111111111111111111111111111111111111111101111111101111110111111111111111111111100111011011111011111110111111111111011111111101111011011111110101110111111111111111111111111111111111111111111111111111111011111111111111111101111111111111110111111111110110111111110111110111111101110111111111011111100111011111100111101111111111111111111111011111111111111111011111111111111111111111111111101111011111111111111111111111111110111111111111111111111111101101111111111101111111110111111111111111111111110111101111110111111110101111111111111111111111111110110111111000011111111111111111111111111101111111111111111111111110111111110011111111011111111111111111111111111111111101110111111111111101111011111111101111111111111111111111111111111110011111111111111100111111111111111111111111101111111001111111101111111110111111110111100111111111111011111111111111111111111111111111111111111111111111011011111111111111111111111111111111110111011111111111111011111111111111111111111110111111111111111111111011111111111111111111111111111111111111111111111101111110111110111111111111111101111111101111111111111111011111111011110111011101111111111110111011111111111111111011111110111111111011111111111111111110111111011110111111111111111111111111111111111011111101111111111111011111110111111111111111111101111111111111111110101111111111111111101111111101111011111111011111101111111110111111111011011111111111111111111111111110101111111101111111111111011111111111111111111111111111111101111111011111111111111111110111111111111111011111111011111111111111111011101111110111011101111111101111110011110111111111011111010111011101111111111111111110111111111111111111100101111111111111111011111101101110111110111101011111110111111111110111111011111111111111111111111111110111111111111111111111111011111110111111011111111111011111111111111111111111011011111101111111111111111111111111111111111111111011111111111101111111101111111101111111111111111111111100110111111111110111111011111011111111110110110101111111111111111110111111111111011111101111111111111111111111111011111111111111111010111111111110110011111111111111111111111111101111111111111111111111111011111011110110111110101111111100111111111101111101111111111111101110111111111111111111111011101111111111111111111110111111111011111111111111111111111111011101111111111111110110111111110111101111111110111111101111011111101111111110111101111111111111111101111111011111001101111111101111110111111111111111111111111111111111111111011111111111111111011110111110111111110111011111111111111111111110111111111111110111111011011101110111111111111111111110111111111111111111011101111111111101101011111001110111111111111010111111111101111111111111111011111110111111111111111111101111111111011111111111111111111011111111101111111111110111111111101111111111111111110111110111111111111110111111110111010111111111101111111111111111111111110111111101111111110111110111111111111101010111111011110111111111111111111111111101101111111111111111111111011111111110110111111111111011111011111111111111111011111111111110111111111111110110111100110111111111111111111111111110111011111111111110111000111111111111111110111111101111111111111011111111111101111111111011111111111111111111111110101111011111111111101011111111111111101110111111111111111111111111110011111111111001111111111111101111001111111111011111111011111111011111111111110111011110111111111111011111111011111111111111111111111101111101011111111100111000111111101011111111111111111111111111101111111111111111111111011111111111111111111110101111110110111110011111111011101111111111111111011111111111111111111111111111111101011111111111011111111111111110111111101011111101111110111011101111011111111110101111111111111101111111011111110111111111101101111111101110010111111110111111111111111111111111111111111101111011101111101111101111111111011111011111101111101101111111111111111111111111111111111111111111111111010111111110111111111111111111111111111111111111101111101111111111111011111011111111011111111111111011111111111111111011111101111111011111111111111111011111111111111111111111111111111111111111111111110111111111111111111111110011110111111010111001111111111110111111111111101111111111111111111111111111111111111111111111011111111110111110101101110011111111111111101111111101111101011110111100111011111111111111111111111110111101110101111111110111111111100111110101110001111111111111111110111111111111111111011111111110111110111111111111111110111111111111101111111111110011001111111111111111110110111111110101111111011011111101111011111101111101111111101111101111111110111111111101111110010011111110111111111110011110101111111011111111111111011111111111111111111111111011111111111111111111110011111111101111111101011111111111111111111111111111111111111111111111101111111111110011111111111101111111111111011111111111111111011111111111101110111011110111111101111111111111111111111110111111111111111111101011111111101101111111111111011011111101111111111111111111101111111101101111111111111011101111111101111111111101111111111101111111111001111111111111111010111011111111011011111101110011111111110110111111111111110111111111111101111111111111111111111111101101111111111110111110111111111111111111111111111111111110111111101100111111111111111011111111011111111101111111111111111111111011111111111111111011111110111111111111111111111101111111111111111111111111111111110111011111111111111110111011111111111101001111111111111111110110111111111101111111011111111111111111111111111101111011111111111110111110011110111111111111111011111111111110111111111111111111111010111111111011001101111111100111111111111111011111111111111111111111111101011111111111111111111111111111011111111111111111111111111111111111011111111011111111111111111011111111111111011110111111100111011111101001111011111101101101101100010111110111100111111111111111111111111111111111111111101111111111111111101111011111111111111111111111001111111111011111101111111111111110110111111110111111111110111111111111111110111010111101111011110111111111111111111111111111111111111111111111111110111111111111110111111111111111111111111110111111111011111111111111011111111111111110111111111111111011011101111101111111111110111111101111011011111111111111111111111111111111101111110110110111011111111111111111111111011111111111111111111101111111111101111111111101111111111111111111111111111111010101111111111111111111111111111111111111111111111111110111110011111010110011110011111111111111111111111111100101111010111011111111111111111011111111011111111011111111111111111111111111110111111101101101110111111111001111111111011111111011111110111111011111111111111101111111101110111111111111111111111111111111111111111111111010111110111111101111011111110111111111111111011111111111111111111111101111111110101111111111111111011111011111111111111111110111111111111110111111111111111111101111111110110111111111111111111101111111111111011101110110111111111111111111111111101110111101111111110111111111101111111011111111111111111111110111100111101110111111111111111111111110111111111100101110010111111111101111100011111011111011101111101111111111111101101111111111111111111111111111001111111111111110111111011111111110111111111111011111111111111001111101111111011111111101111111111111111001011100111101111111111111111111111111111111011111111111111111111111101111101010101111111101111111110110110101111111011011111101111111011111111111101111111111111111110011111111111111111111110111100111111111110111111111101111111111111111111111111110111111111111111011111111111111111111011111001111111111111011111111111111111111111100110101111111111111111111101111101111110101101111111111111111111001111111111111100101111111111011101110111111111111111111111101111111111111101111111111111101111101111111111101111111111101111011011110110111111111101100110111111111111111111111111111011111111111111111111111111111111111111111111110111011111111111111111011111111111111110111111101111011101111111111111111111101111111111111111101111111011110111011111111110111111111111111111101111111111111111111111011111111111111111111011111111111111110110111111111111011111111111111111111111110011011111001111101111111111011111101011111111111111111111111111111111111110111111111101111111110111111111111101101101111111111111111111110110011111111111111111111111110111110111011111111111111111111111111111110111111111111111111111111101111110111110111111111111111101110010111111110111111111111011111111111011011111110111011111011101001111111111110111111101111111111111111111111111111111111111111110010111111111101110111110110111111101111011111111111111111111111101111011111111011111111111111111111111101111101111011111111111111111111011111111111111111111101111111110010111101011111111111111111010111111111111110011111111111111110111101111111101111111001111111111111111111111111111111111111100110111111111111111111111111111111111111111111111101111101011011011111111111101111111111101101111111111111111111111110111111111111101111111111111101111111011111111111111011111111111101111110111110111101111011100111000111011010101110111101111111110111111111111111111111011111111111111101011011111110111111111111110011111111011111110111110111110110111110111111111111111111011101111011111001111111111111111011111111111101111111111111111111111101101111101101110111111101101111111111111110111111111111111111101111111100110111111111111111110111111111111111111101111111101111110111110111110111111111111111110111111111101111111111111011111101111111111111101111111111111111111111110111110111111110111001111111111111111111111101111111111111110111110111111111110011111110111111111111101111101101111111101111111111111011111111111111001111010111111111011111111111101111111111111011111111111111111111111111111111111011111111111110111111101111111111111111111111111111111100111011011111111111111011111111111111111111111111111101111111111111111111111111111110110111111001111111111111111011111111111111010101111111111111111111111110111111111111011101111110110111111111111111111101011111111111001111111111101111111111011111111011111111111111111111111111111111111111011111111111111111111111111111111101111111111111101110111111111110111101110111111101111111111111001111111110011111111111101111101111110111101111111111111111111111111111101111111111111111111001111111110101101110111111111100111111101111111111111111111111111111101111011110111011110111111111111111111111111111101111111010111011111111110111111110110111111101111111111110111011111110111011111111101111011111111111111110111111111111111101111110111111111010100111111001111110111111111110111011101111111111101111111111101111110000111111111111111111111111111111111110111110111111111111111110111100111110111111111010111111111110111101111101101110110101111111101111111111111111101110101111111111111111111111111111111111111111111001001111111111111101101111111110111101111100111011111111111111111011111011111111111111111110111111011111111111011110111111111110011111111111111111011111101111111111101011111111111111111111111110111111111111111111111111111111111111111111111111011111101111111101011111111111111111111111111111101111111111111111111111101111111110111011111111111011101111111111111111111111111001111111101111111101111111111111111111111111111111111111110111111110111111111111101101111111111111101111111110111111001111111111110010111111111101111111111111011111111111111111111011101011111011111011111111111101111111111111110111101111111111111101111011110111111111111111111111111110111110111111111011111101111111111101111011111101111111111111101111101111111111111111111111110101111110101111011111111110111111111111111111111101011111101111111110011011111111111111111110011111111111111010111111111111111110111111110111111111111111101111111011011111111111111111000111110111111111111111111111011111010111111111110101011101011111111111111011011101111111010011111111111011111111111111111110111111111111111111111111111111101111101101100111111011011111111111111111101111111111111111011111111111111111111111111111110111011111111011111111111110111111111110101111111111111111111111111001111111111111111111111111111111111111101101111111100111111110111011111111111111111111111101111110111111111011111111101111010111111111110111111011111111111111111111111111111111111111111101110111111111111111111111111101111111110111111111011111100111101111111111111111011110101111111100111111111111111111110111111111111111101011111111111100111100110111110111111110111011110011111111101111111101111111111101011110111111011111111101111111110111111111111111111111011111011111111111111111001111111011101101111011111100111101111111111111111111111111111111111111111110111001111111111110111111111111111111111111110111111101111110011110111100111111111111111111011111111101111111101111111110111111111101111011111111111111111111101111111111001111011111011111011111111111111111111111101111111111111111111111111101111111111111111111111111010111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111110111111111111101011111111111111101111111111111111111011111011111110111111111111111111111111111111111111111111001101111110111111111111111111111111101111111111111111111111111111111011111011111111111010111111011111111111111111111111111111111111001011111111111101110011111111111111111111111111010111111111111111111111111111011101111111111111111111111111111111111011111111111110111111110111111111101111111111011111111111111111110111111111010111111111111111111111111011111111101111100111101110111110111110111111110111111101111111111111111110111111100111011111111111111101111111111111111111111111111111111111111110110111111111111111111111111110111111111111011111111111011111111111111110011111111111100111111111111111011111011110111111111111111010111111100111111101111110011111111111111111111111111111111011111001111110111111000111111011111111111111111111111111111111011111111110111111111111011111111111111111111111111101111111111111111111111111111111101111111111001111101110111111111111111011101111111111111111111111111111111111111010111111111111111111011111111111111011111111111111111111111111011111111011111111011111111111011011011111111110111111111111111011011111111111111111011111111111101111101111111111111011110111111111111111111111111111100101111111111111110111111111101111101111011111111101101111111111111010011011110111101001101110111111111011111001111111011111111111111111011111011111111111111111111011111111011101111111111100111111101111110111111111101011111110111111111101111111111110111111111111111111111110111111111110111011111111101111111101111111111111110110111111111101111111111111111111111011111111110111111111011111011011111111111110111111111111111111110111001101111111111111111111011111111111111111101111111110111111111111110100110111111111111111111111111111110011111111111111111111101011111101111111110100111111111101111111111111111111011110111011110110111011111111011101111111111110111111111111011111111010111111111111011111111111111111111111011111111111011110111110111111111111111111111111111111111111111110111011111101111111111111111111101011111111011110111101111111111110111111111101111111111101110111111111110111011111110101101110101111101111111011101111011111111111101111111110111111111111111111111011111111111111011111111111111011111111010101111111011111111111111111111111111001111101011110101111111111101111111111110011111111111111111111111111101111111111111111111110111111111110111011101111111111101111111111111111111011111111110111110111111111101111111111111111111011111111111111111111111110111111111101110111111111011111100111111110111111111111111111110111111111111001111111111111111011001111011111111111111101100101111111111111111111101111111111111100111111111111111111111111111111111111111111111111111101111111111111111101110111111111111110101111111111110101111110011110101110111011101111111111101111111111101111111111101111011111111111111111111111111101111111010111111111011101111111111111111100111110111101010111111111111111111111111111110111111110011110111101101111111110111111101011111101111101111101110111011011111111111111111111111011111110101111111111111111111101111111111111111111110111111110111111111111111010111111111111111011111111111011111111100110111011111111111111111101110111111111111011101111101011111111100111011110110111111111111111111111111111111011111110111111101110111111111111111111111011111111111111011111101111111011111110111101111111111111110110111111110111111111101011111111111111010111111110100111110111111011111111110111101011111111111111111111111111011111111101111111111011111111111111111111111101111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111011110111111111111110111111111111111110111111111111100111111111111111111110111101111110111110111111111111110111111111111110110111111111011111111111101111111111111111111111111111111111011111111111111110111111111010111111111111010111101111011111011111111111011111011110110111101011111111111101111111110111111111111111111111111111111111111101111111111111111111101111011111111111111111011111111111111110111111111011111111111111011101111111111111111111101101011111111011111111111101110011111111111111111110111101011111101111111111111111111101001111111111111111111111101110111111111111111111111111111111111111111111001011011111111111011011101111110111111111110110111111111111101111011111111111001110111111010111111011111111111111101101111111111111111111110101111111111111011111111111111111111111011111110111111111111111111111111111111100111111011111111011111111111111111111111110111111110111111111111111011110111111111111111111101101111011111111111111111101111110001111111111111111111100111111011111111111101011101011111110111111111101110111011010111111111111110111111011111011110111111110111111111111111111011110111011110111111110111111111101111111111111111111111111111111111101111111111011111110111100101001101111111111111111111111110111111111111111111111111111101110111000111111011111110111111111111101011111111111101111111111110110111111110111111111111011111111111101111111011111111111110111111111111111111111111111111111101111111111111011111111001110110111111110111111111011111111111111110111111101101011111111111111111111110111111111111111111111111011111111110111111111111111010111011111011011101111111111101011111110101110011111111111011011111111111111111111111111111011101011111111111101111111110111111101111101111111111011111111111101111111101111011111111111101111111111101111101111111111111111111111111101111111111111111111111111011011111010111111110111110111111111111111111111010111011011110111111111111011111111110111111111111111111111111111101101111111110111101101111101111111110111111111111111101111111111111111111110010101111111101111110111111111111111111010111111111111111111111111101101110111111111111101111111111111111111101111001110101111111111111111111100111111111111111101111111111110010101111111111111111011111111111111111011111111111100111111110111111111011111111110111111111111111111111111111011011011111111111111111111111111111101111111110111111111111011111111111111111110111110101101111111111111111110011101111111111111101111110110111011111111111111111011111110110111111101111111111110100111111111111111111111111111111111110111111111110111111100111111111101111111110111111101111111111111111111011110110110111111111111111111111111111111110101111111111111111101101111111111111101111110111111111111111110111111011111111111111111111111111111111111111111111111001111110111111111111111111101110100101111011111111111111111111111111111111110111101101111111110111111111111111111111111111111110111110111110111101111111101111101111101111101110111111111001111110111111111111110111111111111100011111111101100111111111111111111111111111110111011111111111111111111011110111111111111011111110011111011001011010111101110110111111011111111111100111001111110101111110111101111111111110111111111010111111111100111111101111110011111110111111111111111101111100011111110111111101111111111101111111111111011111111011111111111111110011011111111111111111111111101111111111111111111110111111111111111101111111111011111111110111111110111100111111101111011111111111111110111011110111111110111111111111111111111111111111011101111111111111110110111111111111111111001111111101111101101100110111111111111111111011111111111111111111110111111111111111111011111111011101110111101011111011011111111111111111110111111111111111110110011001110111111111111011011111111111011101111110011111011111111111111011111101111111111111111111111111101011111111111111111101111111111111111110010111111111011011111111111111111101111111111110111111111111111011111111111110011111111111111111110111101111011111101110101111111110111111111111111101011111011111110111111111111111111101111110111111111111110011111111111111011111111011110111111111111111111111111111111111111111111111111111111110111111111111111111011111101111111111111111111111111111111011111101110101111101100111111111111111001111111110111111011011111111111111111111110011111111111111111111101111101111111110111111111011111111111111010011111111111011111011111111011111111111101111111111110111111110111111111111111100111111111111111110111111111101111111111110011110111111111111101110111111111111011110111111101111101101111011111111111110111111111101111101111111111110111111110111111111111111111111111111111111111111111111111101111101110101111111111111111011111111111101110111111111111101101111111111111100110111011111111111111111111111101111111111011111111111111111011111111011101111111011111011111111101011001101111111111111111101111111111011011111101111110111111111111111111111111111111111111111111111111111111101111101011101111111101111111101101111111111110111111101111010011011111011111010111111111111111111111111111101101011111111111111111011111111111111111101111111111111101111111111111111110111111111111111111111111111111110111111100111111111111101111111110111110111110111011111111111111111111111111111111111111111111111111111111111111001111101011111111111111111111111010111111111111110111111111110111111111111111111111111111111111011111111111111111110111111111111111111111111111101111111111111111111111111011011111111111111011101111111111111111110111111111101111111111111111110111111111110111101111111110111110101111111101111111111101111111111110110111111111111110111111111111110011111111111110111111111111111111110111111111011111111111111111111111111111111111111111010111111111111111111101111111111111110101111111110111111111111111111111101111101111101111111111111101111111111110111111111111111111110111111111111111110111011111110111111101110111111101110011100001111110111110111111111111111010111111011111101111111110111111101111101111010111111101111111111111111101111110111111111110101101111111101111111111110011101111111101111111110101111111111111111101111111111111111101110111111111111111101111111111111110011110111111111111111001111101111111110111111101111011111111111111111111111111111111111101111111111111111101111111011111111111111111011111011011110110111111111010111111111110111111111111111111111111110011111111110111111101111111111111101111110111101101011111110110111110111011111111110111111111111111110111011111111111111111010011111111111111111111111110111111101111011101111111111110110111011101111011111111111111111111111111111111011111111101111111111111111111111111111101111111110111111111001111111111110101111111111110111111011110101111111111011111110110111111111111101111111111110111111111101011111111111111110111110111111111111111111111111110010110111110111111111111111111111111111110111111111101011101101111111011111111111111111111111111111111111111111111111111011111111110111111101111001110111111111111111111001101111111110111111111110111111111111111111011111010101011111111111111101111111111111101111111111111111111101111111101111111111111011101111111111011111111111111011111111110111111111111111111111110111110111111111111111111111101110111111111111111111100111111110111111111111110111111101011111111111110111111111111111110111111111111111111111111111111110011111101111111111101010111111110110110111111111111111111111111111111111111111011111011111111110111111111111111111111101111111111111101011111110111111111111111111111111111111111111111111111110111111111011111111111111111111101101111111111110101011111110111111111111011111011101111111111111111111111111111111111111111111111111111111111111110111111110111111111111101011111111111101111111111111111111111111111101111111101110111100111111111111101111111111111111110011111110111111111111111101011111111111111111111111111101111111010111111111111111100111101111111111111111110111111111111111111111111111111101110111111111111011011110111111110011111111111111111111110111111010111110011111111110111111010111111111111111111011111111111111101111111011011111011101101101111101111111111111111001111111111111111110110111111111111101110111111111111111111111111111010111111111111111101111111111111001111111111101111111111111111111011111111011111111111111111011111111111111111111111110111011111111011111111111111111111111111101111111110101111110111111011111011110101011111111111111111111111111111111111111111111111111111111110111111011111011111111111111111001011111111111111111111111011111111110111111111111111110101111111011111111111111111111111111111111111111111111111111110111111111100111111111111111111101111110111101111111111111111111111111111101111101110110111111111011111111111111111111111111110111111010111110101111110111111011111100111111111111110111111111111011111111111111110111101111111101111111111111111101111111101111110011111110111111111111111110111111111111111111110111111111111111111101111101110100111111110011111111111111111111111111111110111111111011111111111111111111101011111111111111101111101111111111111011111110111101101011111111111111111110111111111101110111110111011111111111111111111111110111110111111111111111101111111111011011111011111111101111101111111111111010111111111111111111101111111111111111111101111111111111111111111011110111111111111111111011111111111111111111011111111111111111111111110111101111111111101111111111111111110111011111011111111110010011111111111101111011111111101111111111101111111110111111111111111110111111111111111111111111111110101111111110111111111111111111111111110111011001011111111111110111111111111101111111101111110011111111110110111111011111111111111111011111010110111111110111111111011011111111111111100111111111111111101110111011111111111111111111111110111111111111111111111111111111111110111111111011111111111111111111111110111111111111111111111111101111110111111111111111111111110011111111111111111011011110110111111101111111111111111110111111011111011111101111111110110111111111110111111111111110010101011111111111101111111111111111111111111111111011111111111111101111111111111101111111111011100110111111010111111111111111111111111111011111111111111011101011111111111111111111110101110011111011111111111111111111111101101111111111111111111101111011011111111111101111111111111011101111111111101111111111111111111111111111111111011110110111111111101101111111111111111111110111111111111111010111111111111111111111111111111011111111101111111011111111111111111111011111111111111111110010111111111101110011111111011111111111111111011111111111111111111111111111111111111101001111111111111111111101111011011101111111111111111110011011111111111111111111111111111111101111111111111110111111111111111111111111111101011111111011111111111111011011100011111111101110111111111011111110110011111111111111111101111011111111111111111111110010111111111011111111111111111111111111111110111111110111111111111111011011101101111111110111111111111110111101111111111111111111111111111111111111101111011111111111111111101111111111111111111111011101111101110111101011111111011111111111111111110111111111111111111111011111011111111110011011111111101011111111001111011111111111111110111101110111111111111110110111111111111011111111101111111101100111011111011111111101111111111111111111111101111100111111111111110111111111011111111110111111111101111111111111111111111111111111111111111111111110111111111111111111111011111011110111111111111111111111101011111111011111111111111111110111011111010111111111111100111010111111111101111111111010111111111111111111111111111111111011111111111111111111111111111111101111111111011111111011110011111011111111111111110111111101111111111101111110110111111111111111111011111111111111111111110111101111111111111011111111110011111110110111111111111111111111111111111111111101101111111110111111111111101111011111110110111111111111011111100111111111111011111111110111111111111111111111101111011111101111111111110110111111111111111111111111111111111011011111111100101100111111101101011011111111111101111111011111011011110111110111110101111111111111111111011111111111101111111111111110111101111111111111111111111111111111111111101111111111111100111111111111111111111111111101111011111011111111111111111111101111111111011111111101111111111111101011101111111111111111011111011111111110110111111111111111111101101111111111101111111101111111110110111111111111011111110100111111110111111111111111111111101101111101111111111111111111111101111111110111111111111111111111111111111111101110111111111111111111111111101010111111011101111110111111100101110101011111111010111111111111011011111111111011111111101001111011111111111111111111101111111111111110111111111111111011111111111111111111111110111111111011111111011111111111111111111111111111111111111011001111111111111110111101111111011110111111011111111111111111111111111111011111111111111111111111011111111110011111111111011111111111111111111111111111111111111111111111111101111111111111111111111111001111111111111110001111111111111101111110111111001111111111011111110101011111111101101010111111111111111111111111011011010111111111111111111111111111111111111111011111111011111011111111111111111111011011111001111111111111111110111111111111111111111111111010111111110111111011111110111110101110101111111100101101111111111110111111001111111111011111111111111111111101111011111111011111111111010110111111111111110001111101111111111111111111101111111101011111111111111111010110111111111111110111111011111101111101111111111011110111111111111111111111111111111101111111111110101111111111111111011110011111111111111111111110111111111111111001111011101011111111111111110111111101111101111110110111111111111111111111111011111111111111111101111111111111011011011111101011111101111111110111011111110111111011111110110011011011111101111111101111111110111111101101111111111111111111111110011011111111111111111111111111111010111111111111111011111111111001111011111111111111111111111111111011111110111111111101111111111111111111010111110111111111111110111111110111101111111111111111011111111111110111111111111110101111110111111011111111111111111111111111110111111101111111111111110110111111111011111001111001111111111111111111111111111001111110101111110011011101111111111110101111111110111110110111111101011110111111111100101111110101111011111101110111111111111111111111111111101111111111111111111100111111111110111111111111101111111100111111111101111111101111101111110111111101111111111111111101111111111110111110110111111111111111111111111110111111111111111111111111111011111111111000101111111111101111111111111101111101111111111111111111111111011101101101110111011111111111111111111011110110111111101010111111110101111101111011011111111110111111111111110111111110111111111111111110111011111111111111111111110110111111111111111101111111111111010011111111110111111111011111111111011111111111111111101111111111111111111011111111110111111111111111111111101111111111111110111111111111111111101111111011111111110111011111111111111110111101101101011111101111111111111111110111111111101110111101111101111101111011011111111011111111011010101111111111111001111111111111111011111001111111111111111111111111101111111111111111111111111001110111111111111111111011111110111101111110111111111111111111111110111110111111111111111011111111111111111111110011111011111111111111111111111111011111111101111111111111111101111111110111111111011111111101110111011101110111111110111111011111011111110111111110111111111111111111111111111111111101111111011111111111111110111111111111111111111111010110101111111111011111111011111111111111111010101111111101111111111111111111111111111111101110011010111111111111111111111011111111111111111111111111111111011111111111111111111111111111110101110110110111110111111111011101111111110111111111110111111111111001111111111111111111111111111101111111111110111111101111011111110111111111111111011011011111111111100111111101101111111111111111111111011111111111101111111111111101111011111011110101111101111011111111111011011111111111111111101111111111110111111111111111111101111111111111111111111111110111111111111111111011111111101111111110101111101111111111110111111111010110111110111111111111000111111111110110111111101111111101111111111111111111111111111111111011111111111111111111111011111011011111111111111101111111111111110111110111111111111111111111111110011011101111111111111111111101011111111111111111011110010111111111110111010111111111111111100111111111111111011111111111111111011111111111111111111111111111111111111111111111111100101111101111111111111111111111101111111110111111111111111101100010111111111101101101011111111011111111111110111011111111111111111111101111111111111111011111011111110111111111101111111111111111111111010101111010111111110111111111111110111011111111101111110111111111011111111111111111111111111111111111111111111111101111111111101111111111111111011101111111111111111111111111111111111111111011111111101111101111001111111101110100111111111111111011111111111111011111110011111111111001110111111111110111110111111111111111100111111111111111111111111011111111100111100111101111111111111111111111111110110111111111101110110011111101111011111111111111111111111111111011111111111111111011111101101111111111111111011111101101111111111111101111111011011111101111111111111111110111111111111101111011111111111111111111111111111010111001111111011010111110111111111111011011111010111011111111110111111011111111111111111111111101111111101111111111011110110111111111111111111111110011111111111111111111101111100111111111111110111111111111111011111110101111111111111111111011111011111111110111111111111110101101111111111011111111111111111110111111110111111111111111100111101111111111111111101011011110111111111111111111110111111111111111111101111111111111111111011111111111111111111111101111111101111111111111111111101111111111111101111110111111110011111111111110111111111111111111111111101111111111011111101111111111111111111111110111111111111011111100111111111111111111011111111111111111111111111111111111110111111011111111111111111111111111111111110110111010111111111111111111111011111111111011110111111111111111110101111111111111111111111111111111111110111111111100101111111111111111111111111111101011111111111011111111110011111111111111111011101111110011111111011111110011110111111110111111111111111010111111101111111111011101111111110011111111111111011111111111111111111111111111111111111110111011111111111111011111011111011100111111111111111111111111110111111111111111111101111011101111101111110101011111110110111111111110111111111101111111111111111010011111111110111110011111010011101110111111111111111111111111111111111111111110101111101111111111111111101111110110111111111011111111111011111111011111111111111111111111011111111101111111101111101111111101110111111111011011111111111111111111111111111111111111111011011111111111111111111111111101101011110111111111111111111111110111111111011111111110111111111111111011111111111111111100111111011111111111111111111111011111111111111111011111011111111111111111111111111111111111111111111111111111111111111111111111111100111011111111111101011111111011110111101101111111111111111111111111111111111111111111111101111111111111111011011101011111111111111111111011111111111110111111111101111111111111111111111111111011111011110010101011111110111111111111111111111111111111111110111111111111111111100111111111110111111111011111111111111111111111111111111111111111101111111111111111011111111111111110111111111111111111110111111011111111111111110111111111111011111111111111111111111011111111111111111111111101101111111111011111111111111101111111111111101111111111111011111111011100111111100111101101110111111111110111111111111111011110111111111111111111111111111011011111110010111111111101111111110111111111011111011111111111011111111101111011110111111111111111111111011111111111110111111001111111111111110111111111111111111110011111111111111111111111111111111111111111110011101011111111001011111111111111111111110111111101111110111101111111011111111110101011101111110111011111111111111111111100111111111111111111101111011111111101111101111111111111111111001110111011111011111111111101111111111111111111110111001111111111111100111110111111111101111111110111111111111111111011111011111110111111101101110111111111111111111111100100111011011011111111110111101101111111111101111111111111111110111110111111100111111111111101111111111011101011110011111111111111111011111011111111111111111111111111011111111111110111111111100111111111111111111101111111111110111111111111111101111111111111101111111101111110110111111101110111111101111111111101111011111111111101011011110010110111111111111111111110010001001111110111111111110111101111111011111101111111111111111011111111111111111011111111111111101011110111111101101111011110111111111111111111111111110101010111111111101111111111111010111101111111111111111111111111111111101011101111101111111111111111111011110111111111010111101111111111011111111111111111111011111111110111111111111111111111101111111011011111111111111111111111111111111110111010111111101111111111111111011110110111101111111111111111111111111111111111011111110101111111111111111111111010111111111111111110111111111111110111111111111111011011111011111111101011111111111101111111111111001111111111111111101111111001011111100111101111111101111011111101111110111101111111101111111111111111111011110111111100111111111111001111101011111110111111111111011111111111111111111111111101110111101111111111111111111111111111001111111111111111111111101111111111111111111111111111011111111111111111111111100111111101011111111110111111011011101110111111111111110111011111111111011111111111111011111111111111111111111111110111011111111111111111111011111111111011111111111111111111111101111110101111011111111111111110111111111101110111111101111111111101111011111111111110111111111001110110111110011111111111111111111111111111111111111111111111101111101101110111111111111111101111111111100111111111111110011101111111110111111111111011111111000101111011111111111111111111111111111111111111101111011111111111111101110111111111111101111101111111111111111111110111111110110111011101111101011111011111111001111111111111111011111111101100111111111110011111111111111010111111111111110111111111111111111111101111111111101111011111110111111011111101111111101111111111111111111111011111111111011111111111101111111111011110111111110111111111111111011011111111110111011101111111111101111111111101101110110111101111101111111111111111111111111111111111111111011011111111111111111101111111000111111111111111111111111111110111111111011111111111110110110110111111111111111111111111101111111111111111111111111111111110101011111111111110111111111111110111110101101111111111111111111111111011111011011110111111001111111111111111111111111111111111101101111111111111111111111111111111010111111111111111111111101111111111101111111111011101111111111011111101111110111111110011111110101110111111111111111111100111101111011110111011111111111011101100110111101111010111111011011111111011111111111111111001111111111111111111111111011111111111111111111111111111111111111111111111111111011111110111011011110111111111111111010100111111111111111111111111101111100110111111111101111111111111111111111111111111101101111111111111101111011111111110011011111111111011111011111111111110111111011111111111111111111111111111111111111111111101101111111111111101111110111111111111110111011010111100111111111111111110111111111111111101111111111111111101101111111111111110011011111111111111011111111111110111011101111111111111111111111111111111111101111101110111101100010111111111111111111111111111111111111111111111111111111111001111111110111111111110111111011111111111111111111111111010111111011111111111011111111111111111101011011011111101111111111111101111111111111111111111111111101011111111111111111111111111111111011110111111111111111111111111011111111111111111110011101111111111110011111111111011111111011001111111101010111111111110111011111011100111110111111011011111111111111111111101111111110101111111011101101011111111111111111011111111111111111101110111111101111111011111111111111111111101110101111111011111111111111111101111111111110111111111111101101111111111111111011111110111011110111111111111101111111111110111111111111110111111111111111111011111111111101011111110111111111111110111111111100111110111111011111111111111111111011111111111111111111111111111111111111111111111111111111001111111111111111111111011111111111111111111111011111111110111111110111111111111111001111111111111111111111111111111111111111111001111011111011110111101110111111101111111111111111111111111111111111111111111111111111000111111111111111111101111111011111110111111111111111111110111111111010111111111111111111000111111111111111110110011111111111101111111101111110111111111111111001111111101111010111111011111111111111111111111010111111111111111111110011010011111011101111111111111111111101111111111111111111111111111111111001110111011111111111111011111111111111111111110111110111110111110111111101011111111111110111111111111010111111011101111111111111111111111110101101011111111111111111111111111111111101111111111111111111110111111111111111111010100111111111101111001011110111101111111010111100111111111111110111111111011111111111111111111111101011011111111111111111111111111111111011111111111111101111111111111011111111111111011111111010111111111111111110011111111111111111111111111111111111110101011111111110111110101010111111111011110100111111111111111111111111111111111111111111111111111111111111101100111111111111111111111011111110111111101111111111111111111111111111111011110111111111111110110111111111111110111111101111111111111111011111111011111111111111111101111111111111111111111111011111111111111111101111111101111101111111111111111101111011111111111111101111111111111111111111111101111111111011011111111111111111111111111011011011111110111111100111011111111111111111111110111110111111111111111111111110111111110111111111111111111110101111111111111111111111110111111111110111111111111111111111111111111111110011111110111111111111111111111111111011101111111111011111111111011111011111010111111111111111111111010111111001111111110111111111111111111111111101111111111111110111111111111101111011111111111110111111111011111001111011111111111111111111011101110111011110111110111001111110111111111110111111101111101111101101111111111110111111110101111111111111101111011111111111101111111111111111101111111111111111111111111101111110111111111111111101110111111111111010011111011111111111110011111111111011111111101011111111101111001111111111101111111111011101110111111111110111111111111111101111000111111111101111111101111111111011111111111011111111111111111111111011111110110111101101011101111110111111111111111111111111111111111111111111011101011101011111111011111011111111111111110111111111111111111111111111111111111101111010111111010111011111101011111111111111110111111111111111111111111111111111101011111111111111110111111111111111111111111111111111011111101111111111111111111101111101101111111110111111111111111111110111111111111011111111111110111111111110101110111111111111111011111111111111111100111011111011011111111111110111111111111110111011111111011111111111111111101111111111011111111111111111111111111111111110111111001111111111111111010110111101101111111110011111111111111111111111101111101010111111111111101111101111111111101111111111110111111111111101111111101111111111111011111111111111111111110111111111011111111111111111101111110111010111111111111111111111111111111111111111111011011111101111110101111101111111111111101111011111111111111110111101111111111111011111111111011111111101101111111110111111111111110111111110111111111111111101111100111111111111111111111110111111111111101111111111111111111111111011001101111111111110101111110111111110111111100101011111110111111001111111111101111100110111111111111111111111101101101111111110111101110111111001111110111010111111111011111111110111111110111011110011111111100110011111111111111101111111101111011111111110011111111111011111011111111111111111111011110111011111111111111111110011111111111111111111111111111101111011111110111111111111111110111110111111111111111111110111111101111111011111111111111110111111111101111111111111101101001110111111111110111111111111111111010011110110011111111110101111111111111101101111111111111100111111111111111100111111111111111111101011111010101101111111011101111111111111011111111111100101011111111111111111111101111111011111111010111111111111111111111010111110101111111111111000111111111111111111111111011111111111111111100111111111111111111111111111111111111111111111111101110011111101111111111111111111101111011111111111111111111111011111111111111111101111011011111111111011111111111111110111111111111111111111111111111100111111111111111111110111111111111111111011011111111111111011101111111011011111111111010111111101111111011111111111110101111111111111101111111111111111111111101111111101111110111011111111110111011111111111111111111111110111110111111111111101111111111101111111111111111111111111111111100110110101111111111111101111111111111111111111110111101110111101110111111111111111100111111111111111110011111111011111011111111111111111110111110111111011111011111111111111101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111101111111111011111111111111111100111010111101111111111111111111111111111101101111111111111110111100111111111111111011011111011111111111111111111111111111111101111111111111111111111111111111111111111111111111111111101011111111101111111111111011111111110011101011111001111111111111111111111011111111110111110111111111111111111111111111111111111111111111111111011011111101111111101111111111110111111111111111101111111111101111101111111011111111111111111101111111111111110111111111111011101111111111111111111101110111111111111111111111111111110111101111111111110111101010111110111111111111011111111111011111111110111110111110111111110101111111111111111111111111111011111101111111111110111111111111111111011101111111011011111111111011111111111011111111111111111111010011101111111111110111111001111110101110111111111111111111101111111111111111111111011001111111111111111111011111110111111111111111111111110111111110011111111111111101011101111011111010111011110111111111111111111111110111111111111110111111111111111111111111111111110111101111101110111110111111111111011111111111111111110111011101111111011110111111111101101111111111011101111111101111101111111111110111111111111111111101111110101111111111111111111111111011111111011110111111111111111110110110011100111111111111111111110111111110111111111111100111110111101110111111111111111011110111111110111111110111111111111111111111110111111111011110111111111111101110111111111111111111111011110111111111111110111101111111111111111111111101111111111111001111011111111111100111101111111111101111111111110111111111101111111111111111111111101111111110111111111101111111111111111111111111111111011110101111011110101010111111111111111111111111111101011111111111111111111111111111110111111111111111111111111111011011111111111111111111101111111111101111111011111111111111110111101111111111111111111111111111110110111111111111111110111111011111111111111110111111111111111110111111111111111111111101111111101011101111111111111111111111111011011111111100111111111111111111111111010111111111111111111111111111111111111111110111111101011111111011111111111111101110111111101111111111111111111111111111100101110111111111111111111011111111111111111101111111111111111111101011111111010110111111111111111111101111111111010111111111111111111111111011111111111111111011111111111111111111111111111111111111111111111111101110110111111111111111111111111111111111111111111111011111111111111111111111110111111111110111111111111111111111111110111011111111110111101101111111111101111111111111011111011111111111101110101111111110111111111111111110111111111011111111110111111101111111111111111011111111011111111111111010111111111111111111111111101111111110110111100111011111111111101111111111111110111111111110111111111111111111111111111011110111011111111101110111111111101110111111011101111111111111111111011111111111111101111111111111111111110101111111111111111111111111111111111111111011111111001111111111101111111111111111111111111011111111111111111111011011111111101110111110111111111111011111111111111110110111111011111111111111111111111111111111111011110111111011010111111111100111111110111101111111111111111111111101111111111111111111111101011110110111111111111111111111110111111101101111111111111111101111111111111110111111111111111110111110111111111111110111111111111111111010111111111011111010011111111111111011110111011111111111101111110111111101111111101111111111111001011001111011111111111101011111111111111111111110111111111110101111101101101111111111011101011111101111011011111111111111111101101111111111001111111111111111111111111111111011111011111111111101111111111111111111111111111010110111111101111011111010111111101111111111111111110101111011001110110111101111111111001101111111111111111111110111111011111101111111111111111111111111111111111101111111011111101101011110011011011111111101111111111111101011111111110011111111111011111111111111101110111111110111111111111111101111111111111110001111111111111110111111111111101111111111111111011101011111111111011111101111111110111011101111101111111111111011111111110111111010111111111111111011111111111111111111111110110011111111111111011111111111111111111111010011111111111111101111111111111111111101111111110011111011111001111111101011111111111110111111101111111111110111110111111011111111101101111111010111001011111101111011111111011111111111111111101011101101111111111011111101111111101111111111111111111111111111110111111110101111111111111110111111110111111111111111111111111111111110111111111110011111111010110111111111111101111111001111111101111111111111101111110111100111111111111111111111101111110111111111111111111101111011111011111111111111111101111111101111101111111111111111110111011111111111111111111111111111111111111111111111111111110111111111111111111111110111111111111111111111111011111111111101111110111111111111111111111111001111111111011111111111111011111111111111111111111101111111011111001111111111111101111011111111111111111111111111111101110111111100110111011111111111111111110101111111111110111111111111111101011011111111111111111010111111111111111011111111111011111111001111111111101101111111111101111111111111111011011011111111111110111001111110111111101011111111011111111111101110111111111111111101111111111111111111111111111111110111111111101111111101111111110111111011111111111111111111111111111111111111111111101111111111111111111110110111111010111111111111011111110111111111011110100111111111111011111111111011111111111111101111110111111011111101111101111101111101101111111101111111101011111111111111111111111111111111101111111110101111010111111011011111111110111101111111111111110011101111111111111111111101101111110111011111110111111101111111110111111101011011011111111111101111011111111111111111111111101110101111111111111111110110111111111101110111111111110111011111111111111111111111101001101011111111111011111011111110110111111111111111111111111111111111011111111111111111111110111111101011111100111111111111111111011101111111111111111111101011111111111101111111111111110111110111111111111111111111111101111111111011111011011101111011111111111111111111111111111111111111111111111111110111110111110110111111110011110111111111111111111111111001111101111111111101111111011111111101111111111111111111111111011111111111011111111111111111101111111111111111010111111111110111111111111111111111111111111101110111011111111111111111110111111111111111111111101111011111111111111111111111111111111111111111110111101101111110011111111101111111111111111101111111111011111110111011111111011111101101110111111110111101111011111111011111111111111010111111111101111111111011111101111111110101111110111111101111111101111111111111111011111111011111111011011111111110111111111111111111011111111111111111111111111111111111111011011111010111110111111101111111111111111111111111111111111110111111111111111111110111111111011110101111111111111111111110111110111111111101111111101111111111111111111011111110110011111111111111101111111111111111101111111111111100010111111111111111000101111101101111111111001111111111101101111111111111111011111111111111111111111100111110111111100101011111111111011111111111111111111111111111111111111111111111110011111111111111111111110111011111111111111101110111111111101110111111100111111101111111111110111011111111111011111111111111111111101011111011001111011111100110111111111111101001111111101111111111111011111111011111111111101111111111111110011101111111111110011111111111111011111111111111101110111111111111111101111111111111111111111111111111111111111111111111001111101111011111111111101111111111111110111111111111111011111111011111111111110111111111111111111101111111111111111111110111011111111111111111111111111010111110111110111111111111110010111111110111111111111111110110111111111111111111111111110111111111111111111011100111111111111111111111111111111111111111101110111111111111111011110011111111111111111111011111111110111111111111101111111011111111100110111111111101111111111101111111111111111111111111011111101111011111111111011111101111111111111011111101111101111111111111111011101111111111111111111101110111111111111111101111111111111111111111110111111111111111111011101111111111011111111111011111111111111101111111111111111111111111111111111011111111111111111111101111011111111101111011110110111111111111101111111111111111111111111111111011111111011111010100111011011111101111010111101111111111110111111111101101111101111111111111110011100111111111110111111101011111111111111111101111111111111111111111111110110111111111111001111111111111111111101111111111111110111111111111111111111110111111111111111101111111111111111111111110011111110111111011111111111111111111111111111111111111011111011011111111111111011111111111110100111111111011110111111111101111011111111111110111111111111101111111111011111111110101110011110111111110101111101111111111111111111111110111111111111111111111111111011111111111111111111111111111111111111101111011111111111111111111111110110111111111111111111111111111111110110111110101011111111011101110111110111111111111101110101111011110111111101111111111111111111111111111011111111110111111111010111001111111111111111111111101111111101110111111111111110111111110111111110010111111111110111111101111111111011111111011101111111111111111111111111010111011111111111111111111101101011111011111101101111111110111111111111111111111111111101111111011111111111111111111110101111111111111001011111111111111111110111101111101111111111111111111110111111101101111111111111111111110111011111111111111111101111111111111111111111111111111111111111011011111111111111111111110111111111111111111010111111111111111111111111111111011111111111111111101111111111111110111111111111111111111111011111111111111111111111111110111111111111111101111111111110111111111011111111111111011011111111111111111110111111111111111111101111111110101111101111110111111111101111111111111011101111110111111111111111111111111111111111111111111110111111111111111111101011111111111111111111111011111111111101111111111101111111111110110111111110111111111011110101011110111100011111011111111111111111110111111111111101111111110111101111110111111111111111011111011111110111111111111111111111111111111111111111101111111101110111101111111101111111111011111111111111111111011111111111110100111111011111111110111111111111111111011111111111111110101100111111111101111111011110111101101100110110111111001111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111111111011111011111111111111111111111111101111111111111111101111111110101011011011110101111110111111111111111111111000111111111111111111111111001111111111101101111101111111111110110111101011011111111111111111111111101110111111111101111101111100111111111111101011101111111111111111111111001011111111111111101111111111111111111111110110011111111111101111011111111011111111101111111111111111111111110111111111001111111111111111101111011111111101111110011101110111110111111111111111111111111011111111111011111110111111111111111111111111111111101111110011110011111110111111011101001111111111111111111010111011111111111111011111111111111111111111111111111101111111110111001011110111001111111111111111111111101111111111111011111111110111111111111110011101111011111111111110101111111110111111111111011101011111111111111101011011111111111111111100110110111011111111101111111111111111011101111111111111011111111111111111111111111111111111111011111101111111100111111111111111110011111111101111011101111111101110111111111111111111111111111111101111111011101110011100110111111111111111111011111111011111111110111101111110111111011111111111111111111111111110111111101111111111111111111110111101111111101111111111111111011011111111101111100111010111111110111111111111111101101101011111111111111111111111111111111101110111111111111111111111111111011111110110111010111111111111111110111111111111111111100111111111111111111111111111111110111111001111111111111111011011111111111111111111111110111011111111111111111111110111111111111111111111111101111101111110111111111110111101111111111101111111111111111111111111111110111111111111111111111110101111101111111111110111011111010110111111111111111111111111111111111111111101111101111111111011111111010011100111111111111111111111111111011111111111110111111111111111111111011111111011111111111101111111111111111101111011111111110101110111111111111111111111101111111101111010111111111111111111111111111111011111111111111111111111111111011011111011111111111111101111011111111111111111111111111110111111110011111111111011011111111111111111011111111111111111111011111001111111111111111111111101111110111111111111111011111111011111111110111111111101111111111110111111111111111111111111111111111111111111011111011111111011111111011111111111111111111111111111111110111111111111101111101110111111111111111111111101111011111111111111111111111011111111111011111111101101111010111111111111111011111111110111111111111111111111011111111111011111111111111011100111111111111111111111111111111111111111111111111110111111111111111111111111100111111111011111111111111101111111111101111011111111111101111111111111111111111111111111111111111111111111111111101111111111111111111111111111111011111111111111111111111110011111100111111110111010111111111111111111111111101111111011111111011111111111111111011101111101111111110111111011111111110111111111011111011111101110110111111110101110111111111111111111111111111101011111101111111111111111111111111110111110111110110101111110111111111110110111111111111100110111111111111111111111111111011111011111111011111111111111111111101111111111111111111111111111110111110111110111111111111111111111111111111111011110011111110111111111101111111111111111111101111111111111111111111111011111111011111111110011111110111111011111111111111101011111111111111111110111111111111111111111101111111110101111111111111111111011111111111111011011110111111111111111100111111111011100111111111111111101011110111100111011111111111111111111111101111111101111111111111101101111111011111111111111111101111111111111111111111111111001101110111110101111111111011111111100111111111111011001111111111111111111111111111011111111111111101111111011111010111111111111111111011111111111111111111111111101111111111111101111111111111001111110110110111111111111111111110011111111111101111001111101111111111111101111111111111111111111111111111111111111111111011111110111111111011111111111111111111101111111011111111111111011111110111111111111110111111111111111111111111111111111111111111111011111101110111111111011110111111111111111111111111111111101111111011111111111111011111111111111111111101111011111111111111111111111111111011011111111111111111111111011111111111111101111110110110001111111111111101111111111110111111111110111110111111101010111111110111111111111111111111110011111111111111111111111111110111111111111101111111101111111111111011111111111111111111111111111111111011111111111111111110111101101111111111111010111101111111111111111111111111111111111111111111111111111111111111111101110011111111111111111111110111011111111111000011111111111111111111011111111111111111111101111111111111111111111111111101111111011111111111001111111111111111110101111111101111111111111111111111111111111111111111111011111110101111111111101111110110111110111111111101111101111111111111111111111111111111111111111111111101111110111111111111111111111111111111111111111011111011111111111111111101110111111111111101011111111111110111111110110111111101111111110011111111111111111111111111111111111111111110111111111111111111110111111011011111111111011101111110111111111011111111111111110111010110001111111111111111111111111101111111111111101111111111110111111111111111111110111011111110111111111111101111111111111111101111111111111101011111111111111111111111111111111111111111111110101111111111111111111101101111111111111111010111111011011111011110011011111111111111111111111101011110101111111111011111111011111111101011111111111111101101111111101110111111110111111111101111110111111111111111111111111111111111111111101111111111101011110111111110111111110111110111111111011111111111111111111111111111111011111111111101111111111111111111111111111111111111111011111111111111111110111011110111111111111111111111110111111111011111101111111111111111011110111111110110011011111111111111111111011111111111101111011111111111111111111111111111101111111111111111110111111111110111111111111111111011111111111010111111111111111111111111101111111111111111111111101111111111111111111111011111111111111111111111111111111101110111111001111111001111111111111111110111111111111110101111111111111111011111111111110111101111111111101111111110111111111111111111110111011111111111111111100111111111111111111111111111111011111111111001001111111101111111111111010001110011111111111101111111011111111111111110111111110011111011111111111111111111011111011111011111101011111011111111111101111111011101101111111111111111011111101111101111111110111111111111111111110111111111111111110010111111110111111111111111111111011111111111100101111111111111111011011111110111110111110011111111111010001111111101110111110111101100111111111111110011111111110111011111111111111011111111110111111011111111111111111011111011111111111111111111111111111011111110111111111111111101110111111111111111111101111110011111111111011011111111011111110110110111111111111110111111111110011010111111111111101111111111111101111111111011111111111111111111111101111011101011111111111111111111111111101111111111111110110101111111110101111110111110111111111111111110111111111111101111111111111111110110111111111110101111111111111111101101111111111010111101111110111111111110011111111101011111001111111111111111111111111111111111111011111011111010111110111111101111011111111011111111111110111111111111111111111111111010111111110111111111111101011111111111011111111111111111111111111111111111111111111111111111111111110101110110111110111111111111111110101111111011111111111011110101111111111111111111101111011011010111111111111111111011111111111011110011111111101111111111111111011111110011110111111111111011011111111111111110111111111111111111110111110111111111110111111111110111110111110101001111111011111111111111111111111111111111111011011101111111111111111111111111111111111111011111110111111111101111111111111111111111111111111110011111111111101111111111111111111111100111111111111111111111111011111111101111111111111101011111111111111110111111111111111111111111111111111110011110111111111101111110111001111111111111111111111111111111111111110111111111111111111111111111111011111111111111111111111111111111110101111111111011011111111110111110111111111111111111111111011101111110110111111101111011111100111111111111111111111111101111111011110101111011111101111011101100111111111111111111011011111100111110111111111001110111011111111101111011101110111111111111110111101111111110111111011111111101101111111111111111111101111101111111111111011111011111111111111111111111110111111111111111110111111101111111101101111111111111111101111111111100111111110111111111110111111111111111111111111111111111111111111110111110111101111101111111111110111101111111111011111111110111101111111111111111111111111011111011111111110111011111111111111111100111111101111011111111100111111111111111111111100111111101110111111111110011111111111111111111111111111111111111101111111111111101111111111111111011101111111111111101101111111111111111111111111111111011111111110111111111110111110011011111111111111111111011100111111111110111110011011011111101111101111111011111111011011111111011111111111111111111111111111111111011111111111111011111111111111111011101111111111011111111111011111111101001111011011101111101110111111111111111111110111111011110111111111110111111110111111111111111111011111111111111011111111111110011101101111111110111110111111110111111111111111111111111111111111111111111111111111111111111111111111111101111111011111011111111111101011011011111111111111111101111011111111010111111110011111111111111111111011101111111110111111110111111111111111011111011110111111111111111111011011101111011111111111011111111111111100111111111111111101111111111011111111011111110110111111111111111011101111101110100101110111111111111011010111111101111010011111111111111111111111111111101111111111111111110111111011111111011011111111111111111111101111110111111111111111111111111111111111111111101111111111011111111111110111111101111111110111111111111111111111111111111111111111111111011110111111111111111111110111111111111111111111110011111111111111111011110111111111111111111111111111111111111111111101111111111110011111110101011110111110111111110111101111111111111111111111101111111111111101111110111111111111111011011111111100111111011101111111011111111111110111111011111111111111111111111111111111111111110111111111111111111110101101111111101110111111111111111111110111110010111111111111110111111111111111111011111111001111101110111110111011010111111111111111111101101111111111001111111111110101111101111111111101111110111100110111111111111111111111111111011011111111110111111110011111111111111111111111111111111111101111111011101101101111111111111111111111111101111111111111111111111111100111111101111111111111111100011111111111111101011110111111011111111111111111110111111111111011111111111111111111111110111111101110011111111110111111111111111111111110111111111111111111111011111111111111110101111111111111111111111111111111110110101111111111111111011111111111111111111111111101111111111011011111111111111110011011110101111111111100011101111111111011111111110111110111111111011111111111110111111111111001110101111111111111111111111111111111011111111111111111111111110010111111111111111011011111111110111111111000111111011111111111111111011111111111111111111101111101111111111111011011111111111111111111111111101111110011011110111111111111111111111111110111111111101111111110011111111111111110111111101111110101111111010111111111111111111111110101011111111111111011111111111110111111011111111110110110111111011111110111111011111110100111111111111111111100111111111110011111111111011111111111101111111111111111011110111111111111111101111111111111111011111111110111111111101111111111111110111111111111111111111011111111011111100111111101111110111111111110011111101111111111111101111111110111101111111101111101111111101001111111111011101101111111111111101111111111111101011111111111111111111111111111111111111111111111111111011110111111111111111011111111111111111111011111111111111111110111111111111111111111111011111111110011110111111111111111111111111111110111111111111111111111110111110111111011111011111111111111110011111111111111101011111101111111111011011110111101111111111011111111111111111111111011111111111101111111111111111110011111001111001111111111111111110111111111011111111111111111111111111010111111111111111111011010111111111111001110111111111011111111011111111111111111111011011101111111010111111111011111101111111011111111111111111011011111011111111111111111111001110111111111111111111111111110111001111111111110111111111101011111111111111101111110111110111111111111101111110110111111101111101111111110111111111111111111111110110111111111011111111110111111111111111111111111111111011111011111111111110111111101101100111101111111110111111111111111111111111110111111111110111111111111010011111011111111110111111111111011111111111111111111111111101111101111111111111111101110111111111011111111111111111011111111011111011111111111101111111101111101011111111101011101111111111110111111111011111111101011111111111110101110111111111011111111011111101111100011111101111110111011111111111111111111111111111111111011011111111111111111111111111111111111111111111111111111111111110111100101111111111011111111111111111111110111101011111111110111101111111111111111111111111111101111111111111111110101111111111111111011101111111101111111011111111011111110111111111011111111111111111111111111111101111111111111111111111111111101111110111101111111111110111111111111111111011111101111111111001111111111110110101111110110111111111011111111111110111101111111111111111111101111111111111111111111111111110101111111111101111011111111111111111111111111111111111011111111111111111011111111111111111111101111111101111111011001011111111111111111011111111111101111111111111111111111111111111111111111111111111110111111101111101111110111110011111111111111111111111111111111011111001111111011111111111111111111111011111111111111111111101111111011111011111111111101110111101111111111101101111111111111101011111011011101111111111111110011111111100111111111101111111010111101111111111111111101111111111111111111111110111111111110111111111111101011111111110111111111111111111111111111111111111111111111111111011111111111011011011111111111111111111111111111111111111111110111111111011111111111011101111011111111111111111011111101111111111111111101011111110101111101011111111111111111111111111011111110111101111111111111111110111011111111111111111111111011111101111111111101111111111011111111111110111111111111111111101101101111111101111111110111111111111111101111011111111011101110111110111111011111111111111111111111111101111111110111111110111011111111111110111111011111110111111110111111111111011111101111111111111111111111011111111111101111011111111111101101011111111110110110111011111011111111111010111111111011111111111111111011111111110111111110110111111111101001101011110111111111111101110111111101111111110111111111110111010111111111111111101100111111111001110111111111111111111111111111111111111111111101111111111111111111111011111111111111110111111101111111111011111111111001110111111101101111111111110111111111111111001111111011111111111111011101011101111111110111111110011111110111111111011111101011111111111111111101111111111011110101111111101110111111111111111111110111111111111111111111111111111111101111111101011111111111111101111111111101111111111101101111110110111110011011111111111111011011111111111110111101111111011111111101111111101111111101111111110110111111111111100111111111111111110110110111101011011101111101111111111111111111111110111111101101111111111111010111111111111111111101111111111111011111111111111111111111111111101111111111111111111111111111111110111111111111111111101111110111111011111111111111111111111111111111111111111111111111111100111110101111110111111111111101011110111111111111111110010111111111111111111011111110111110111111111111101111111111100111110111101111111101111111101111111111111111111111101111110111111111111111111111111111111111111110111111111111101111011111111111101111111111101111011111111111111111111111111111011000111111111101111111110111111111111111111111111111111111111111111111011111111111111111011111111111111110111011111111111111111111111111101101101111110111011111111111111011011011101111111111111111111111111111111111111111111111111111111110111011110111011111111111011111111111111111111101110111111101111111111111111110111111111110011111111111111111111110111111111111101111111111111011111101110111111111111111111100111101110011111111110111111011111111110111111011111111111011111111110111111111111111110111111111101110111111101111111111111110111111111111011001111101011111111111111111111011101111111101111111111111111100111101111111111111111111110111111111011111111100111111111111111111111111111110111111111111111101110111111011111111111111111111110111111110001111110111111111111111101111111111111111111111111111011011111111111111011111111110101111111111001111111111111111011111111110111111111110111111111101111111111110111111111101111111111111011111111011111111111011111111111111111110111111001101111110111111111111111111111111000111111111101011001111111011101101111100011111111111111011111111111001110101111111101111101111011111111110111111011111101111111111111111011111110111111111111011111111111111101111111111111111111111110111110111110111111111111111111011111110100110011111111111111111101011111111110111111110111111111111111111111111011011111111111011111111000011111110111011111111111111111111111110111011111111111111111111111111111111111111111011111111111111101111111111111111111111011111011101111110111111111111111111111101111111110111111110111011111111111111111101111111111111111111110011011110111111111111011111110011111110110111111111111111111111111011101111111111111111101111111101111111011111111111111111111111111111111101111111111111111111111100111110110011111111111101111111011011111111111111111101111111111111111010111111111111111101111111111110111111111101111111111111111111111111111111110111011111111111111111111111111111111111111111111111111011111111111110110111101111111111111110111111111011011111110111111111111001110111111101111111111111111111110111111101111111111111111111111111111111111110110110111111111111111011111011110111111111111011101110101011111110111111100111010111111111101111110111111111111111111101111111111111111111011111011111111110111101111111111110111111110111111111101111111111101110111011111111111011111111101111111101111111111111111111111111111101111111111111101011111110111111111111110111001010111110111111011011111111110111111111111011111111111110111111111111111001101110111110111111111111111111110111111111111111101111111010111111010111111101110111111111111111111011111101101111111101111111111101111111111111111111111000111111101111101111011111111111111111110111111111111111111111111111111111001111111011111111111111111011011110111111111011111110111111111001010101110001101111111111111111111111110111110111101111111111111110110111100111111011111011111011111111111110111111111111111111110111111010111011111111111111111111111101101111101111111111111111111111110111111111111111111111110011101111111111111111111111111011111111101110111111111111111111111111111111111111111011011111011111111111010111111111111111111111111111010111111111110111111101010111111110111111110111111011110111111111111111111010111101111111001111111111010111011111111001111111111110111111111111111111111111110111011111011111111101011111111111111111110111111111111110111111011111111011111110110101111011111111101011011111111011101111111111111011110111111111001111111111101111111111111111111110011111111111111111111111111111111011111110111111111111111111111101111111110111111011001111110111111111111111010101111111111111101111101111111011111111110101111111101111111101111111011101111111111111110111111111111101111011101111111111111111111111011111111111101011111011011111111111111111111101110111111011101111110111111111110011111110111111110111111111111010110011111111111111111111111111111111111111011101111111111100111011111111111101011111111111111111110111111110111111101001111111101001111111111111111111111111011110101111111111111111111111111110111111011111111011111111101111111111111111011111111100111111111011111111111111010111111111111111111111111111101110110111111111111101101111101111111101111111111011111111111111111111110101111111111111011111111111111111111111110111111010111111110111111111111111111101111111111111101111110101111111111111111111111111111111111111111101111111101011111111111111111110111111111111011111111111111011011111111111111111111111110110010111111111111111111111111101101110111110111101011111111111111110101111111111111110111111111111111111111111111111111111111111111101111111111111111011111111111111111111111000011111101111111111111111111011111011111111111111100111110111111111111111110111101111111111111111111101111111100111111111111111011111111111111111111111111111011111111110111111111111111111111011111011011011111111111111111111111010011111111111111111011110110111111111111111111111111111111111111111101101111111111011111111011111111111111111111111110101111111011111111011011111101111110101110111111101011111111111101111111101111111010011000011111111011111111111011111111111111011111111111011111011111111111111111111111111110111110110111111110111111101111011111111111111111111001111111111111111110101110111111011111101111111011111111111111111111111111111111111111101111110111111011101111111111111101011110111111111111111110110111111111111111111111111111111101111111111111111111111101111111111111001011111011110111110111101111111011011111111111111111111110111110111111111101110111111010111011101111111111111111011111111111111111111111111011111111111111110111111111100111111111111111111111111111111111111011011111011111111011111111011111111111111101110011111111111110110111011111111111011010111111101111011111110111111011111110011111111010111111111111111101111111111111111111011111111111111111111011111110111111111111111111111111111111111110111111110011111011111111111101111111111111111111111110011011111111111111110110110111111011111100111100100111111001111111111111111111111111111111111111111111111111101111111111111111111111111111111111101111111111101111111111111101111111111110111011111111111110101101111111110111111111111111110111111111111111111111111111111111111011111111011111110111001111101111111111111111111111111111111111011111111111011101111111111111111111111101111111111111101111111111111111011111111111111101101111110111111011111111110111111111111111111111111111111111111111111111111111110111011111111111111111111111111111011111110111110111011111011111101111011110011111110111111111111111111110101111111110111100111111111111111111111111111111111111111111111111111111111111111111111111011111011111111111111111011110110111111001111011111111111111101111111111111111100011101111110111111111111111101111111111111101111111111111111111111111111111111011111111111111111011111111111111110111111111111111111111111111011111111111111111111011111111111111111111001111111111101111111111111111111111111111111111110111111110011111111111111111111111111011111111101111011011111101111111111111110011101111111111101101011111110110111111111101011111110111111111111111111111011110111111111011111111100111010111111111101111111111111111111111111111101111111110111111111110111111111111110111111101010111011111111111111111110011111111001111001101111011111111111111111111011110111111111111111111111110111111111111101111111111011111111111011111111111011111111111111110111100111101111111111111011110111101111111111111111111101111111111101111010111011111101111111111011111111111110111111111111111110111111111101111111111011111111110111100111111110111101111111111111111111001110111111110111111111111111111111111111111111111110111111111111111111111011111111111110111101110111111111111111110111111111101011111011111111111110111101111111110111111111111111111111111111111111111011111111111110111011111101111111111111111101111111111111111111111111011111111110111111111111011111111111111011111111111111111111111111111110101111101101111111111011111011110111011111111111111111111111111111101111111001111111111111011101111111111111111110111111111001111111111111111110011111110111111111111111011111111111110111111110101111011111111101101111011111101111111111111111010111111111111101111111111111111110111011111111111111111111111111110111111110110111111111111111111111111011111111111101110111111110111111111110111111111111011101111101111110110111101111111111111111101111111111111101111111111111111101111111111111111110111111111111111111111111111111111111001111111101100110111111111111111111101110111111111111011111110110110010111111111011011110111111111111111111011111111011110111111111111111111110111111111110111111011111111111111111111111111111111011111101101111111101110101111111111100111111111111111111011111110111110111011101111111111100101111111111111111111111111111111111111111111111110111111111011111011111110110111111110111111111110111111111111111111110111111111111111110111111111101111111111111010111101111011011110111111111111111111111110111111111101111110111011111111111111111111101110011110011111111111111101111111111011111110111111111111111101111111111111111111111111110110111011111111101111111110111111111111111111111111011111111111111111011111110110111111111111111111110110111111111111111111111011111011111011001111111111111111111110111111111110011111111111111111111110111111111111111111111111111111111110111111111111111111111111111111111101101011111111111110111111011111111111111111111111111101111111111111111111110101111011110111110111111111111111101111111011111111011111111111111111111111111111110101111111111111111011111111111111111111111111111111011111111111111110111101111111110111101111111101111111111111111111111111110111110000111101111111111011111011110101111111111111110111111111111111001111111111101111111111001111111011111110111111111111010111111111100111111101101111111111110010110111111101111110110111110111111101111111111110011111111111111111111111110101111110111011111111101111111111111011111111111111111111111111111111111111111101111111111111101101111111111111111111111110111111111111111111111101101101111111111111110111111111111101111111111111111111111111111111111111011111111111111111111111111111111111111011111111111111101111111111111111111111011111111000111111111111011111111111111110111111111011010011111011101100111110111111111111111111011110111101111111111111111111111111111110111111111111111111011111101111111011111111111011111101111111011111011111111111111111110111111110111011111010111111111111110111111101111011111011010111111111111111111111111111111111011111111111111111011111111110111101010111011111111111111111111111111111111111111111011111111111111111111111111111111111110101111111011111111111111100111111111111111101011110111111111111111111111111111111111111111111111111111111111111101111011111111111111011111111111111011101111011111111111111101111111111111111111111111111111011110111101111111111111111100111101111111111111111111111111111111101111011011111101111111111111111101111101101111111011111111111111111010111111111111011111111111111110111111111111111111011011111111111111111111111111101111111111111111111111111111111111010101111110111011111111110111111111111011111110111111111101111111111111111111011111111111101111111111111111111111111111111111011111111101111111111111101111111110110011110111011110111111111111011101111111101111111111111011111101111111111010111111111011010111111111111111110111111111111111111111111110101111111110111110111110111111111111010101111111001111111111111111111011111111101111110111111111111111011110111111111111111111111101111111111111111111101111111111101111111111011111111111011111111111111111111111111111111111011111111111111111101111111111111111110111111111111111111111111100101011101101111110111111110110111011111111111010110000101011111111111111111101111111111110111100111101110110011111111110111111111111111111111111111011111111101111111111111101110111111111111111111111111111110110111111111111111010111111101111111111111011111111101111111111110111111110111111111111111111111111011111111111111101101111111111111111111111101101111111111111111010100111011100111111111111110111111110011101111101111111111111111111111011101110111111011110101111111111111101111011101111111111111111111111111111111010111111111111111111101101111111111111111111111111111111111111111101111111111111111111111101111100111111111101111111111111111111010111110111111111110111111111111111111111011111111101110111111110111111111101111111111111111111110111110111111101011111111101111111110111100011111111111111011111011111111011111111111111111111111111111111111111111111111111111110111111111011011111110011101111011111110111101011111111111111111111111010101111110111111111011111111111011111011111111111010111111110111111111110111111111111111111111111111101111111111110111111111111011110111011111111111111111111011111110100111111111111111111101111111111111111111111111110111110110111111111111111111011111111111111111111111111101011111101111111111110111111111101111111111111111111111111110111001011111111111110111111101111111111111111111111111111111111111011111111111101111111111111111100111111111111111111111011100111111111011111110101111111111011111111111111111111111111111111111011111110101111111111111111111110111111111110011101101010111111111111101111110111111111111111111011101111011111011101111111111111111111111011111110101111111111101101011111111111111111111110111111011111111111111011011110111111101111111111111010111111111011111111111101101111111111111111111111111101111011111111111111111100111111110111110111111011111110111111111111111111111111111111111111111111101101111110110111111011111111111111111000111111111101111111111111111111110111101111011111110111111111101111111110111110100111111110111111110111110111011111111111111111111111111011111110111110101111111101111111111111111111111011111111111111111111111111111111110011101111111111111111111111011111101111111111111111111111111101111111101011111111111111011111111111111111111110111111101111111011111101111111111111111011011111111111111011111111111111011111111101110111110111111011111111101011111111111111111110111101111011010111111111101111111111101111011111111110111111111011110111101111110101111111111111111111111110111111111111111110111111111110111011111111111011101111110111111111111111111101111101111101011111111111111111111111111111110111101111101111111111111111111111111111111101111111110110111101110111111111111111111111010111111110111101111111011101111111111111111111011111111111111111100111110111111110111111011111101110111111111111111111111111110111100111111111111011110101111101111111111111111111111110110111111111011111111111101110111111111111111111111111111111101111101111111011111111111111111011101111111111111111111101111111111111111111111111101101111101111101111110111111111011111111111111111111111111111111111111111111111111111110111011111111111111111111111100110101111111111111111111111111111010111111111011111110111111111111111111111111110111111111111001101111111110111111111110111111111111111111111110111111111111111111111111101011111111111101101011111101111111111111110111111110111111011100111111111111110111011111101111101111011111101111111111111111111111111111111010111111111110101111111101110111111111111110111101111101111111111111110111111111011111111111111111111111111101111111111111111111111011111101111111110111100111111110111111111011111111111110111111111111111011111011011111111100111111111111111011110111111111111111111111111111111101111111011111111111110111111111111100111001111111101101111111111111111110101011111101111111111011011111111111011011111111101111111101111111111011111111110101111111111111111011100111111101111111110111111111011111111111111111111001111111111111111111101111111011111111111101111111011101101111111111111101101111101111011111010101111111111111111100111111111101111110111111101111111111111011111101111011111111011111111111111111111110111111011111111111111111111111011111111111111110111101010111111111011011011100111111111111111111111101110111111111111111111101101111111101100111110111111111111111111111110011111111110111101111111111111111001011111110111010111111111111111101111111111011111111010111111111110111111101111111011111111111101101111111111111011101111111111011110111111111111111111110111111101001111111111111111111011110101111111111111111111111101111110101111101011111111111111111111111111111111111101111111111110110110111111111111111111111111111111101101111111011110011111110111111101111111111111111111110011111101111110111101110111111111011011011111111111111111011111011111110111011101111111111110111111111111111111111101111101111111110011011111011111111111111111110010111111111111110111111111111101111110111111011111011111111111101111111110111111111111101111111111111111111111111110111111101111111111101111111111111011111111111111101111101111111111111101110011111011111011111101111111111111111111110111111111111111111111111111111111111111111111111111111111111111100101111010110101111111111111111111101111110111111111111111111111011011111011111111111111111111111101101101111101011010111111111111110111111111111111111111111011110111111111011111111111110111111101111111011111111111111111101111111111111111111111111001101011111111101011110110111111111111111101111111111111111111001101111111111111111111111111011101111111011111011111111111110111110110111001111111110111111011011111111111111111111111110111111111101111111111111110111111111111110111111111011111111101111111111111111111111111111111111111111101111111101011110111111011111111111111111111111111111111111111011110111011111110111101111111111111011110101111111110111111111101011111111111111110111110111111111111111111111111111111111111111111101110111110111111111111111110111111111111101111111111111111111111111011111111111011011111111111111010111110111101111111110111111111111111111111111111111111111111111110111111111111111101111111111111111111111111111111111110111111111111101111110011111011111111111111111111111111111111111111101011011111111111111111111111111111111101111111111111111111110011110101111111111111111101111111111111101111001111011101111111111111111111111111111111111101110111111001111011001111111111110111111111111111111101111111111111111110111111111111111111011111111111111111111111111011111111111111111111111111110111111111111111111101111111111011111111111101111111111110011110111101110111111111011111101111111111111111111111011111111111111011111111111110111101111111111111011111110111110101011011011111111111111111111111011111101111111111101011111111111111111111111111111111111111111110111111111101111111011111111111110111111111111011111111111101111111111011111110111101111111111110111111011111110111110111111111111111111010110111111111011111111111111111111010011111111111111101111111101111110111110101111010111111110111111111111111111111110001111001111110101111100111111111111110110011011110111111111111111111111111110111111111111111111101011110111111111111011111111111101111011111111011010011111111111111101010111111111111110111111110111111111111111111111111111111101111110111111111111111111110111111110111111111111111101101111111111111011111111111111111111111011111111011111011011110111111111111111111011111111111111111111101110111111111111111111111010111111100111111111011111111111111111110011111111110110110111101110111111111111110111111110110111111111111011111101111111101111111111111110111111111111110111111110111111001100111011110111110111111111111111111111011111111111111111111111111111111110101111111101111011101111111111111111111111011111111111011111111110111111111111111101111111110111110011110111111110111111101111111111111111111001111111111011111111111111110110111111011111111111111111111111111111111111111111101011110010111111111111110111011111111011011110011111111111111111111111111111111101111111110111111111011101111111111111111111111000011111111111111111111101101111111111011111100111111111111001111110111111110111111111111111111111101111111111011111111111110111111111111111111111111111111101101111111111111100111111011111111110111111111111111101111111101110110111111111111111111111111111111111111111111111111111111101111111111111111111011011011111011011011110110011111111111111111111111110111111111110111111111110111101101111111111100111011111111110111011110111111111111111111111111101111111111111111111111111111110111111110111111111111111111101101111111101111111110111011111111111010111111111011111101111101101111110100101111111110111110111111101111011111111111111111111111111111111111101111111111111111111111110111111101101111111111111111111111111111111111111111111111111111011011111111101110111111111111110111111011111101111111111111111011111111111101011111111111111110110111111111111111110111101010010111111111101101111110111101111111111111111111111111111110111111111011101011111101111110111011111011111111111110101111111110011101101111111111110111111111111111001101111111111110111011100111111011111111111111011111111111111111111111011111111110111111111111111111111111111111010111111111011111111111111101111011110010111111111110011110111101101101111111110101111111111111101111111111111111111111001111111111111111111111111111111011111111111011010110111011111101111111110111110111111111110111101111110111111111110111111111111111111111111110111111111001011111111111111011111111011101111111101100111111111111111111111111011101111111101111111111111110111011111111111110111111110111111111110011111101101111111110111111101111111010011111101111101101111011101111111111111111111101111110011111111111111111101111111111111111111111111111110111011111111011111110101111111101111111111111011111111111111111111111111111111111111111111111111111011111111111111110111111011111101101111101111111110111111111111111111111111111111111111111111111101011100111111111011111110111111111111101101111111111111111111111111111101010011111111111101111111111111111111110111111011111111111110111111111111101111101111111110111101011011101110111111101111111110111110111111111111111111111111111111111111100111111111111101010111111111011101111110111111101111111110011101111111111111011111111110110011101111111011111011111111111111111101101101110011111110111111111111111111111111111111111111111101111011111111111111111111111111111110011111111111001111111011111111101011011011111111101110111111111111111111111111111011111111111011011111111111111111111111110111111111101111110111101111011111111111111111010111111111111101011111110111011111011111100111111111111110111011111111111111011111111001110111011111111101111111110110111111101111111111110111111111111110111111111111111111101111111111110111100001111110111011001101111111111010111111101111111011111110111111001111111111111111111101111001111111111111101111111111111110010011111111111111111111111111111111111111111111111111111110111101111111110111111111111110101111101111111101111111111111111101110011111111111111110110111111111111111111111110101111101111011111111111111111111111111011111111111111111111111111111111101111111111101111110111111011110110111111101101111101110111111111111111111111111001111111111111111110111111111111110111111111111100111111111111110111111111111011111110111101111111111011111111111011111111101111111111111111111111111111011011111111111110110111111111111111111111111111111111111111111101111111111111111010111111101101011111111111111111111111111101111101111111011101111110011111111111111111001111011111111111111110011111110101111111111111101111111111111111111110111011111111111111111110111111111110111111111111111111110111111111111111111111111110111111111111010111111111111111111111111111111011111111111111111111111111111111110111111111011111111111111111111111110010111111110111111111101011111001111011111111111111101111111111011011111111111111111111111101111111111111111110111111111111111110111111011111101111101100111101111111111111111111111111111111111110111011111111110111111111111111111011111111101111011111101111111101111111111111111111111111111011111111111110111111111111111111111111011111111111111111110111111011111111111111011111100111111111111111111111111011110010111111011111101111110110011111110101111111101111111111101111111011111011111111101111100111111110111111111111101111111111111111011111001111111111111111110111111111111111111111011111111111111111111111101111111011111111111110111111111101101011110111111111111111111010111111110111111111111111111111111111111101110011111111111110111111111101111011111111111111111111111111111010011111111111111111111111111111111111111111111111111111111110011111111011011101101111111110111111111111111111111111111011111111111110111111111111111010011111111110110111011111111100100111111110111111111111111111111011111111101111011111111111111111111110111111111110111111111111111101111111101111111111111111111111111111011111111001111111111111111111111011001111111111111111111111111111111110111111111111111111111111111111101111111101111111111111110111111111111101101111011111111111111111111111111111111111111111111111111011111111111110111011111111111111111111111111011110111111111111111111111111111111011111111101111111101111111111111111101111111111111111111110101111111111111111101111111111111111111111111001111111101111111111111111111110011111110101111111111111111111110111111111111111111111011111011111111101111111111111111101111111011011111111111011011111101111111110111110111111111111111111111111111111111111111111001111111111101111111111101111111111011111111111111111111111111111111101011111011111011101111111011111101111111111110101111111111111110110100111111110011111111110100111110111111110110111111111111111011111100111111011011111111111111110111111110111101100101011111011111101111111111111101111101111111111111111111111111011101111111111101111111111111111111111101111011110111111111111011111110111111111011111111111101011111111111011111111111111111111111111111111110110111011111111111101100111111111111111111111111111111110111111111111111011111111111111111111111111111111111111101111111111111111111111111111111101101111101011111111111111111111011111111111111111111111111111111111011111111101111110110111001111111111111101111111111111101111111111111111111110111111110111111111111111110011111111111111111011111111111111111111111001101110111101111111111111111101101111111111111111101111101111101111111111111011111111111111111111111110111111111111111111111111101011111110111111111110101111111110111111101111011111111111111111111111111101111111111101111111111111101111111111110111111111111111111111011100111111111111101111111111111111101111010111101111111111101111111101111111111111111101111111110111110111110111111111111101111111111101111111110111111111111011111100111111111111111111011110111111111111111111111111101101110011111111110111111111111011111111111110011111110101110111011111111111111111111111111111111110111111111101111111111101111111111011111101111011111111111111111011111111111011111101111011101110101111011111111111111110111111111111111101111111111101111111111111111111010111111111110111011111111011111101111011101111111110111111111111111111111111111111110111111111111111111111101010111111111010111111101111101111110111111111111111111111111111111111111111111111111111111111111111111111111011111111111101111111111111111111111111111111111101111111111111111110111111111111111001101111111101111110111010111111111111101111111111111111111111111111111111111111111111111101111110111111011111111111111111111111111111111111111101111011111011111111111111111111111111111101111111111101111011011111111111110001111011111011110100111111111011011111101110111011111110111110111111111111111111111111111111111111111111111111111111111101011101111111111111111111111111110111111111111111111111111011111111111111111111111111111111111111111111111111101111111111101111111001111010101111111111111111011011111111111111111101111111111111111101111111111111111111111111111101111101111111111011111111111101111111111001111101111111111111111111111111111111111110111111011110111101110111111111111111111111111110111111111101111011111111111111111111111111011111111111111111111111111111011111111011111110111101101011111111111111111111110111111111111111101111111111111111111110011111111111101111101111110111111011111111111111111111011110111111111111111111111101111111111111010011111111110111111110111111111111111111111111011011111101111111011011111111111111111111111111110110011111111111111111111111111111111011111111111111111111111111111001111111111110111011111011101111111110111111101111111111111111110101111111111101010001110111111111111111111111110111111110111111001101111111111011111101011111111111111111111111111111111111111110111111111111011111111001111111110011111111101011111111111111111111111110111111101111111111111111111111111111101111101111011011111011011111111111110111111111111011111101011011111010111111111111111111111111111111111111111111111101111111111111111111111111111101111111110011111111111101111111111111011101011111111110111111111101111111111111111111111111111111101111010111111111111111111101111111110111111111111111111011111111101111100111011111011111111111110111111101111110111011111111111111111111110111111111110111101111111111111111111111101011111111111111111111111011110111111111111100111011111101100111101111011111111111111101111111101111111111111011110101110111111111111111111111111111111111111111111110101111101111011111110111111111011110111111101100111111101101111101111001111111111101111110101111011110111101111111111111111111110101111111111111111111111101111111110111111111100111111111111011111111111111101111111110101111111101111111111111111101111111011101111011110111111101110111111111111111111111111111111001111111111111111111111111111111111111111111001111011111110111011011111011111111111111111111111111101111111111111111111101111111111111111101111111111111111111111111111110111111111111111101111111111011010011111111111111110111111111111111001011111111111111111111101111111011101011111111111011111100111111111011111111111111111111101111111111111111111110111111011111111111111100101110111111011101111111101111111111111111111101111111111111111011010111101111111100111111110111111111111101111101111111111111101110111111011111101111111111111111011111011010010001111101111111111111111111111111010111111111111011110111011111111110111111011111111111111100111111111111111111111101011111110111111111111101111111110101111101101111101100111111111111111111001101111111111111101011111111111111101110101111111111111111111111111111111111011111111111111111111111111111111111101011111101111111111111111111110111111111111111010111111111111111110111111111110111111011010111101111011101111111011111111111111111111111110111111110111111101111111111111111111111111011101111010001111111111111011110111011111111111101111111100111111111101111111111111111111111111101111111111110111111111111011111111011111111011111111111111111111111110101111111111111111111101111111111111111111111111111100111111101111111111110011111111111111111111111011110111111111110111111101111111011111111101111111111110111111111111111101111011101101111111111111111101101111011101111011111111111111011111111001111111111110111111111111111111111111111111110111111111111011110111110111111101111111111111111111101101111110111010101110101111111111101110111010111011111111111111111111111101111111111111111110111111111111111111111011111111111111011101111111111101111111111111111111111011111111111111111111111110111111111111101111111111111111111110111111111111101111101111001111111110011111110111111010111111111110111111011011101111111111111111111111111111101101111011111111111111111111111110111100111011111101111111101111111110111111111111111111111111011110111111111111111111111111111111111110110011110111111111111111111101101111110101111111111001111101101110111111111111011111111101101111011111110111111101011111111111111111111111100011011111111111111111111101111111101111111111111111011111111111111111111111111111111111110111111101111111110011111111111111111101111111111110111111111111111111111011111100111111101101111111110111111111111111111011111101111111111011111111111111111111111111111111111111111111111011111111111111111111111111111111101111111111111111111101111110111111111110111011111111111111111111110111111111111111100111110111111111111111111111110111111110111111111011111111111011110111111111111111110111111111011111110111111111100111111111111111111111011111111110111111110111111010110111111111111111110111111111110111111111110011101110111111011111111111111111111111111111111110111111101111101111111111111111010111111111111111111111111011111011111111110111111111111101110111111110111110111111111111011101111111111100111101101111101111111111110111111111111111111111111111111111111111111011111110111111011111111111111011111110111111111111111101111101101111111111111111111110110111111110111111111111011011111111111101111111111110111111111111111110111111111111111111111111111111111111111111111111011111111111111111111111111111011111101110111111111111111111111101111111111111111111111111111101111011111110111101111111111101111110111110111111111011111111100111111111011111111110111111110101111110111101111110111111111111110111111111111011111111111111111101111111111111111111111101101111111111111111111111111111111111111110111111111101011111111111111101101111111111101011110101111011111011011111011111111011111111010111101111011111111101111111111111101111111110111101111111011111111111111111101111111111111110111111111101110111111111111111111111010111111111111111011111111111111111110111111111111101111111111111111111111111011111011111111101111111111010111110110110101111111111110011111111101111111111111111111111111101101111111110111111111111111111101111100110111111100111111111111111111111111111000111111111111111111101111111111011111111111111111111111111111111111111110011111111011111111111111111011111111111111111111111111011111110111111111111111111111111111111111111111001111111111010111111111111111111111111111101111111101111111111111111111111111111111111111110101110111111111111101110111111111111111011110111111111111111001111111111111111111111111110011110111110111111101111111111101111111111110111111111111111001111011111111111111111111111111101101111101111111111111111111111111111110111111001111111110111111111111111111111111111111111111111101111111111111111011111111111111101011111110111111111111111101111011111110111111011111111011111110101111111111111111111111101111110111110111111111111111110111011111110111011111111111111111111111111111111111110111110111111011111111111111111101110111100111111011111101011111111111110111111111111101111111011101111111111111111011110111101111001111111111101111111111111111111111110111101111101111111111111111111111111111111111111111111111111111111111111111111111011110111111011111101111111011111111111111101111111111111110111111111111111111111111111111111111111110111111111111111111111111011111110111111101111111111111111111111111111111111111111111111111011111101111111101111111111111111111011111110111111111110011010111111101001111111111111110011111111111111111111111111111111011111111110111110111111111011111101111101111001111101111111111111111111011111111111111111111111111111111111111111110111101111111111110111111101111111111111111111111111111111111111111111011111010111111111111110111111111101111111101111111111111111111111111111110111111111111111111111111111111111111111101110111011111111110111111111111111110101111111110111111111111111111111111111111111111111111111111110111111111111111111101111111101111111101111111111111111111111111101111111111111111110101111101111111111111011111111110111011111111011111111101111111111110111111111001111111111111011111111111111111110111101111111111111111011111111111111110111011111111011111111111111111111111111111011111101011111111111111111111111111111111111111111111111101111111111111101111110110111111111111111111111111111111111111111011001011101111111111011111111111110110110101111111010011111011110111111111111111111111011111111011011111111111111111111111111111111111111101101111111111111111111111111111111110111111011111111111111111101111011101111011011111101111111101011111111111011111111011011111111111111111111111111111111011111111111101011111111111111111011101111111111011111111111111111111111111111111111111111111111111111111111011111111111111110111101111111111011111111111111111101111111111111111111011111111110111111011111111111111111111111111011111111011011111111110111111111110111111111111101111111111111101111111111111111111111110111111111110111110111101011001110011111111111110111010111110111111110111111111111111111111111111011111101111011011111111111111101111111101111111001111011101111111111111111111101111111111110101111111111111111111111110111111111111111111011111111111111111111111111111111110111011111111111111111111110101110111111111111111111111111101110111111111111110110111111111111111111111111111111111111110111111111111111111111111011111111111110101111110111111111111111111111101110111011110011111110111110111111111111111111111111101011111111111111111101010111111111111111111111111011111111110111101111111111110111111111100111111111111111111111111111101110111111101111111111111110110101110111111111111101111010101101111111001111111111111101111111100110111111111111111111111111110111111111111111111111111111111111001111111111110111111111111111011010011111101111111111111110111111111010111111111111111011111111111111011111111111111101111011110111111110101111111111111111101111010110111111101101011111111011111111011100111110011111111011111111101111111111111110111111111110111111111111110111111111111111111111110111011111101111111111011111011111111111111111111111111111011101111111101111111111111111100111111110111011111111111110110111111111111111011101111011111101111010111111111111111111111111011110111111111111101111011011111011110111111011011111011111111111111111111111111111111101111111101111011110111111110111111111111111111111110111011111111111111101110011010111111101110111111110111111011111111001111111111111111111011111111111111111111000111111110111111101111111111010111111111111111111101111111111110111111101111111111111111111111101111111111111111111111110110111111011111111111111111111111110111111111111111111011111110111111111111100111111011111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111011111111111111011111111111111011111111111111011111111111111111111110111101101011111111111111110111111111111111011111111101111101101111111101111111110011111111111111011111111101111111111011011111111111111111111111011111111111111111111111111011100111111011111111110011011101111111111011111111111111010111101111111110111111111111111011111111111011111111111111111111111111011110111011111011111111101011111011111111111111111111111111111001101110111111111111111111111011111111111111111111100111101111111110111111111111111111011101111011110110111111111111111111011111111111111101111001110111111111111111010111111101111101101101111110111111110111111011111111111111111111111111111011011111101110111111100111110111110011110110111110101111111111111111110111111111111111111111111111111101111001111111110111111111111111111111110111110111111111111111110111111111111111101111111111111111111010111111111111111111111101111110111111111111111010111110111111111111111110111111111111111101111010111011111110111111111111011111111111111111111111101101111111111011111111111110111110111111111110011101111110111111111111011110111111111111111111111111101111101101111111111111011111111101111110111011110111101111111001111111101101111111111111111111111111101111111111111111111111111111111101111011101001111011111111111011111111110101111111111111011110110111010111111101111110111110111011111110111110111111111111110111111111111111101111101101111111111011111111111110101111101111111111111111111111111111001110111111110101111110011111110010111101111111111101111111111111111110111111110111111011111111101111111101101111111110111111111111111111111111111111111111010101111111110111111111101110110111100111111111111110111111111111111110111111110111111011111111111111111101111001111111101011111011111111111101111111111111111111110111110111111101111111111111111111110111101111111111111111100111111111111101111011111111111111111111111001100111111111111111111111111111111111110111111111111111111110111111111111011111111111101111101011111111011111111111111110101101101111111111111111111111111111101111100111111111111111111111111111111111111111111111111100111111110011111111101111101111111111111111111111111111101111111111111110111111011110111111111111111101111011111111111111111111111111111011111111111111111101110111011101111111111111101111111111111110111111111111111111111011111101111011111111111111111111111111101111101111101111111111111111111101111111111110111110111111111110111111101111110111111111011110111111011111111111111110111111110111111111111111101111111111011110101111111111101111111110110111111111111111111111111101111011111111111111111111111111111111101111111111111111111111111111111111111111111111111110110111111011111111111111111111111101111111111111101111010111111111011110110110111101110111110111111011111111111110111110011111101111110111111111111111111111111111011111111111111011111111111111111111111111111111111111111111111111101111110111011011110111111011111110111111111111111110011011111111111111011111111111111100101111100111011111111111111111101111111111111111111110111111111111011010111111111011111011111111111111111111111111111111111111011111011111111111111111111111111111111111111111111111111111111111101011111111111111011111011011111111111111111111111111110111111111111111110111111111111101111111111110111111111111111111111001111110111111111111101110101111111111111111111111011111111111111110111111111111110011101111111111111011111111111111110111111111111111111111101111111101111111111111111101111111111111001111111111111111111111111111110111110110111111101111110111111111110111011111111011111111111111011111111110111111111111111111111111111111111110111111111111011110111011111111110111111111111111111111111111111100110111110011111111110101111111111110111011111101111111111111111111111111111110111101100101111111110111111111111111110111111011111111101111111111110011111111111111111111111011111111111111110111111111111111111111111011111111110111111111101111110110111011101111111111111111011011110010111111111101111101111111111101111111100011111101111111111111011111101111101111101111111110111111111111111111111111111111111111101111111111111111111111111111111111111101111011110010111111101111111111111111110110101111100111111111101111111111111011111111111111111111111111111111111111111111101111111110101111111111111111110111111011011111111101111111111101111111111110111101111111111111111110011111111110111111111111110011111111111110101101111111111111111101111111101111111011111101111111111101111111111111111111111111111111111111011011111111110111111110110111111111111111111111100111111111111011111111110111111111011111111111011110111111011111101111011111111111111111011111111111111111111111101110111111111011111011111101011111111111111111111111111110111111111111111111111011110111111111111111101111011111011111111111111101111111111111111111111101111110011111111011011111111111111111111111111111111110111111011111111111011011111111111101110111011111111101111111111111111111110111111111101111111111111111011011111111111111011111111111111111111111011111111110111111111111111111011010101111111001111111111111110101111111111111111111111111111111101111111111111011101111111111011111111111111111111111111111001111111111110111001111111111111111111010111111101111111111111111011111111111111111111011110010111111111111111011111011011111101101111111111111111101111111111111111011011111101111111111101111101111111111111111010111111111111011111111101111011111011111111110111111111111111111111111111111111111111111111111111110111111111111011110111111111111011110111111111111111111101110011111110111101111111111101111111111110110011111111111111111011011111111111111111111111111111111111111011101110101111110111111111111001111111111111111111111111111111010111110111111111101111111111111111101111111111111111111111111111111111011011111111111111111111111011111011111101110111110111111111111111011011111111111111111111111101111111111111111111111111111111111111101111111111101111110111111111111111111111111111111110111111111101111111010110111101011111110111111111111011111111110110110101111110111111111111111111101111111111111111110111111111101101111111101111010110110111111111110111111111111111101011111111111111111111111111110111111111101111011111111111111101111111111111111111101101111101101111111111111111111101111101111111111011110111111111111011101111111111111111111111111111111011101111111110111111111110101111111111111111111111111101111011111111010111011111111111111111111111111111111111111111111111111111111111111111111111110111110111111111111101111111111011111001011001111111111111111111110011011111110110111111111111111111111111110111111111111111111111111111111101111111110111111101111111111111111111111111111111101101111111111111111111011111111111111111101111101111111111111111111111011111010111111100101111111010111111111011111111111111111111110111111111011111111110101111101111110111110111111110111111011111011111111111101111111111111111111110111111111111111111111111111111111101111111111110101110111111110111111111111111111111111111110111111111111111111011101111111111111110111110111111111010111111111111111111101111001111111111111011111111111111111111111111111111101111011111010111111101011111111111101111111011010110101111111111111111111111111100111101011111111111111010111011111101111101110111011101100111110111111111111111111011111111111111101111100101111111111111101111110111111111111111111111101111011111111111111111111111110111111111011111111100011111011111110111111011111111111111111111101111111111101111111011111111110111110111111111111101111111111101111111111111111011011110101011101110111111111111101110111111101111011111011011111111111111111111111111111111110111111111110111001111101111111111111111111111111111111111111101111111111110111101111110111111111110111111111001011111101111110111100101111111111111111111111111111111111111111111111111111111111011111111111011111111111111011111111111111011111111111011111111001111111111111111110111011111111111111111111110111111111101111110111110111111111111111111111111111101111011111110011111101010111111111111111101111111111111111111111011011111011111111111110111111111111111101011110101111110111110111101011111101111110011011111111111111011111010011111111111111111111011111011011011111111101111111111111111110111101011110111111111111111111111010101111111111111111111111111111111111011111111101111111111111111111110111111111110011111101111111111111111111111110111111111111111111110101111111101011111110111110111111111101111101111111101011011111111111111111111011011111111011111111111111111011101111111111110011111111111111111010111111111101101111011111111111111111111110111111111111111101111111111111111010111111111111111111110111001111111111101011110111111110111111111111111111111111111111110110111111111111111111111111111111110111111111111111011111111111111111111111111010111011111111111111110011111101111111011111011101111111111111011111101101111110111111111111111111111111111101111101111101111111111111111110111111111111111111101011111110011111111111111110111111110111101111111111111011111101111110111111011111111101101111111101111111111111011111111111011111110011111111111111101111111011101111111111110111111110101110110111111101101111101011111111111111111111111011111111111111110111111111111111111111111111111111111111111111111111101111111110100111101110111101111111111111111111111111111111111111111111110111101011011101110111011111111111111111111111111111110110110011111111111111111111111111010111111111111111111111111101111111110111111011111111111111111111111111111111011111111111110011110110011111111111111101111101001111111110101001111111111111111111111101011111011111111001110111110111111111111101011011110111111111111111101011111111101111101011111011111111111101111101111111111111111110101111111111111111011111111111111111111111111111111111111111111111111111111111111111111111110111110111111111111011111101111111111111111111111111101111111111111111111001111111111101111111111100111111111111111011101101101110111111111111111111111111111111111111111111011111110111111011111111011110111111111111111111111111011011111111111011011101111111111111111111100110111110111111111111101011111111111111111111111111110111011111111111101111111111111111111111111111111111110111111111111011101110111000111111111111111111111111111101111111111111111111101111111111111111111111111111011111111110111111111110011111101111111111111111111111111111110110110111111011111100101101111111111111111011101111111111111111111101011111110101101111110111111111111111111011111111111111110111111111111111111101111101111111110111111111111111111111110111111111111111111110111011111110111111111101111111111111111111101111011111110111110111111111111111111111111101111111111101100111111110111111111111101111111111111111111111111111111110111110111111111111111111111111111111111111111111110111011111111111111110111110111110111110111111101111111111101111111000111111111111111111110111111111001111111111111111111111111111111111110111111100111111101111111111111111111110111111111111111111010111011111100111110101111001110011111111111111111111111111101111101101111111111100111111010111101111111111110111111111111101111111111110111111111111111001111110010111111111011111111111111111111111111111101110111111101011011111111101001111111111111101111111111101011101110111111111110111111101110111111101111111110011111111111111111110111111111111110111111111111111110111111111111110111111111110111111011111111111111011110111111111111110111101111101111101111001111111111111011111101111111111111111101111110111111111011111111111111101111111110111101101101011111111111111111110111110111111111111111111101111111111111011101111101011101111111111110101111111101111111111111111111011111111111111111110101110001111111010111111111111111111111110111111011111111111111111111110111110111111111110111111111111110111111110111111111000111110111111111110101111111111111111111111111111111111111111111111111011111111111111111111111111111111111110111011111111111111111011101111011101110111011111111011111111110111111111111111111111111110111111111101101111111111111111111110111111111111111111011111101111111111111101011111111111101111111111111111111111111111111111111111111111101111110111111111111111111111111111111101111111111111111111111101111111111011111111111111111111101101111111111111110111111111111111110111111111110111111111011111111111101111111111111111111111111111011111111111111101111111111111111111111111111111111111111111111101111100111111101111111111111111111111011001111111011111101111111110111111111111111111111111111111111010111111111111110111111111111111111111111111111101111111111110111111111110111011011111011111111101111111111111111010111111110111101110111111111111111110111111111111111111110111011111111111111110101111111110111111011111111011111101111110101111101111111111111111101110111011111101111111111111111111111111110111111111101111111110110111111111111111111111111111111111111100111101111101111111111110111111110111011111111011111111101111111110111011111111111111111101111111111111111111111111111111011111110011111110111111110111011011111110111111111111110111111111111111111110111111111011111111101111111111111111111111111011011111111111111111111011101111111111111111111110111111111010101111111111111111111111111111111111111111111101111110111111111101011111111011101111111110111011111111101111101111110111011110111110101111111111111111101111111111111111111111111111111111111110111111110110111111111111111111111111111011111111111111110110111110111111111111110111011111111110011111011110100111001111111111101111111011111111111111111110111111111011111111111111111111111111111111110111111111111111110111111111111111101110111101101101111111111111111111101111111111111111111111111111101111111111111111111011111111111011111111011111111111111011111111111111100111111011111111101111101111111111111110111111111111111001111111111111111111111110011101111111111011111111111111111111111111111111111111111111111111111111111111111111111110111111111110110110111111011111111111111101111111111011011111011111111111111011111111011101111111111111101111111111111011111111111111111111111111110111111111110011111111111111111111011111111101110111111111111101111101111110011101111111111111100111110101101111111111111111111111001111111111111111111111111111111111111111101111111111111111111110111111111111010111111111111111111111011011111111110110111111111111111111101111011101111111111111111111111111111111011110101111111111111111111111111101111011101110111110111011111111111111111111111111111111011110111111111110101111111111111111011111011111111111111111111111100111011011110111111111111011110111110111101101011111010111110111111111111111011111111111111111111111111111111111111111111101111111111111111111111111111111111111111111110111010111110011101111110111111111111111011111111111111110110111111111111101111111111111111111110111111111111111111111110111111111111111111111111111110111111011111111111111101111111111111110111011111110001011111111101111111111111111111111111111111111111111111111111011011110111111011111111111111111111101111111111101111111010111111111111111111111110011101111111111111111111111111111111011111101111011111010111111110111111111111111111111111111111111111111111111111011111111111111111111111011111111110111111111111111111100111111111101111111111111011111101111111111111111111101111111111111110111111111111111111011111111111101111111111111101111111101111111111111111111111010111011111011111110111111110111111101011011111100111111011111111101111110111111101111111101111101111101101011110111111111101111110111111111111010111111111111111111111101111111110111101111111111111111111111111111111011000111101111111111101111111100111111111111101111010111111111111111111111111111110111011111111110101111101111101111101110111111111101011111111111111111110111111011111110111111111011111111111111111111111111111111111111111111111111110111111111111111101111101110111111111111011011111011111111111111111111111111111111111111111111111111111111111100111111111111111110111110111100111111101011111101111111111111111111110111111111111111111111111111111111111111111111111111111101111111111111111111101110110111111111111111111101111111111110111111111111111110111111011111110111111101111110111111111111101111111101111111111111111011101101111111111011111111111111111110010111111011111100111111111111111111111011011111111111111111111011111111011111111110011111111111111110111111111101101111110111111111010111111111111111111111101111111110111110111111111111111101110011101111111110111111111110011111111110111110111111100111111111111111011110101111111110110110110111011110111111111111111111111111111111111011111101111011111111011111111101111111111111011101111111101101111111111111111101111111111111111111111111011111111111111111101001111101101011111001111111111111111101111010110101111111011101011100011111111011111011101111111111111111111111111111101101111111111111111111111111111011111110111111111111111111111111111011010011101111111111111111111111011111111111111111111111101111111011111111111111111111011111011101111110111011111111111000111111111101111111101111111111110111110111111010111111111111111111111111111111111111111111110110111111111111111111111111111111011111011111111011111101111111011111111111110111111111111111111111111111111011111110111111110111111011111111111111111100011011100110101111111101111101111111111111111111111111010111111111111111111101111101111101111111110111111101111111111110011111111111101111111111111011111111111111111111011111111111111111111110111111111111111111111111111111111110111111111110110111111111111101111110110111111111101111110111011100111111111111111110111111111111111111011011111111111111111110111111111111101111111111111101111110111111111111111110111111111111111111101111111111101110111011011111111111111111011111111111111011111011101111111011111000110111111111111110111111111111111011111111111111111111011111111101111110111111111111111111111111111111111111111011101111111110101011111111111111111111111111111111111110111111111111001110111111111111110111101111110011111111111111111111111101110111111111111111111111111111111111101111111111110111111111111111111111111101111101011111111011111111111110111111011111111101111111011111111111111111011111111111111111111101011111111111111111111111011111111111111111111110011111111111110111111111111111111111111011011111111110111111111111111010111111111111111111110111111111101111101111111111111111011111111111111111111011111111011111111111101111111110010111111111111111111111111111111100111111111110111111111111110111111111111111111110111111111111111111111111111111111111011111101111111011110111011111111110111111110111110111111111111111111111110111111111101111111101111111111111111111101111111111111111110111111111111011110101011111111110111111111111101011111101110101111110111111111111111111111011111111111111000111111111111011011111101110111111111011111111111111111111111110111101111111111111111111111110111111111111111111011111111111111111110111111111111111111101011110011111111111111111111111011011111111011010111111111111111111111111111110111011111111110111111111111011111011111111110111111011110111111111111111110111111111101111111111111111111111101011111111110101101111111111111111101110101111111111011111001111111111110111111111111111111111110111101111111111011001111011011111111111111101011111101111110111111011111110111101111111111111101111101111101110111111011011111101111111111011111111011111011110111111111111101111111111111101111111101111011111111110111111111111111111110011111111111111110111011111111101111101111111111111111110111111111111111111111111111110011111111111111110111111110111111111111111110111011111111111101111111111111111111110111111101111111111111111111111111111111111111111101001101111111011111111111111111111111101011110010110111110111111001101111011111111111111111011111011111111111111111111111111111111111111111111111111111111011111111111111111111110111100111111111111111001111111111111111101111101110111111111111111111110001110111101111111011111111111111111111111111111111111101111101111111111110111111111101101111100111011111111111111110111111111111111111111111111111101111111111101111111111011111011111111111111111110111111111111111110111111111111111101111011111110111111111111011011111111111111111111111111110110111111111100111111111111111110111101111111111111110111110111111101111111101111101110111111111111101111101111101101111111111111011101111111111101111110111111110101111111111111111111111111111111011111111111111110111011111110111111111111101111111111111111101010111101111011101111111111111111111111110111111111111011101111111111111111111111111101110111011110111111111111111111111111110111101111111111010111111111111111111101111111111111111110111111111111101111111111111111111111110111101111111001101111111111111111111110011111111111111111101111111111111111000111111111101111110011111111111111101111101111111110011111111110111111111111111111111111111111111111111111111111111111101111111111011101111111111111111111110111110111111111111111111110011111110111011111101111111111111111111011111111111111111101110111111111111111111111111111101111111111111111111111111111111111111110110101111111111111111111111101111111100110111111111011011110111011111111111111111111111111111111111011011011111011110011111011101101111111111111001111111111111111101111111111111110111111111111111111111111110111011111111011111110111101011111111111111111011111111101111111111101011111101111111110001111111111111111111111111111111111111101111111110111111011110111111001111111111111111111101111111111111110111111110111101111111111111011111111111111111110111111111110111111111111111111111111111011111101111100111011110111111111111111111011010111111101111111111011101101111111111111111111111111111111101111111111010111111110111111111111111111111111111111111111111111111111101011111111101111111111111111111110101011111111111111111111101011111111111011111101111111111110111111111111011111111110111110110111110111111111011111111100111111111111111111111111111111111111110111111111101111110111111111111111111011111111111101111111111110111111111111111100111111111111101110111111111111111111111111111111111111101101111110101101011101001111111111111111111111111111101111111111011111111111111101111111111111111111111111111110110111110110111101111111011111111111111011101110111111111111110111101111011111111111111110111111111111111111111111111111111111111111111111111111111111111110111110111111101111111111111111110111110111111111111111111111111111011111111111111111111101111111010111011101111111111111111110111111111111101111111111111111111011111111111111111111111111011101111111111111111111111111111101101111111101110111110111011111111111111111111001111111111111111010111111111111111111111111111111111111111111111111101111111111111100111111111111110111111111111111111111111111111111111111011111111101111011111111111111111100111100111101111111101011111111111111111111101111111111111111111111110111110111111110111110111111111011111111111111111111111111110011111110100110110111011101111111111011111111111111111111111111111111111111111110111111101111101110111111011111111111111111111111111111111111011111111111111011111110001111111111111101111111111111111111111111111111101110111101111101111110110111011010110111111111111111011011111111111111111110111111111111111111111111111111111111110111110111111011110111101111101111111111111111011111111111011101111111101110011111111111111111111111110111011111111111111111011111101111101011111001101011111111111011111111101111111011111111111111111111111111111111111111110111111010110110111111111111111111111111111111111111111111011111111011111111011111111111111110111111110111111111111111111011111110111111111111111111110111110111110101111111101111110111111111111111011111111111001110111111110001111111110111111111111111111111111111111011111101011111111111111111110111011111100010111110111110111111111111111011111110111111111111111111111101011101111011111101110111011111011101011110111111111000111101111011111111111111111110111111111111111111111100111101111111111111111111111011111111111110111111111111111111111111111111111111110111111101111111110111111011111011111111101101111111110111111101111011001111011111111111111111111111111111111111111110111111111111111111101111111111111111101111111111110111111111111111111111111001100111111111011111111011111101110111001111111111111110111111111111111111111101111111111111111111101111111101111111111111111111111111001111101011111111001111111111111111101111111111111101111111111111111111111111101111111111101111111101111110111111110111111010011011111111111111111111111111111111111111111111111111011100101011111111111111011111111111111101111110111111101111111011111101111110111111110011001110111011111111111111011111111111111111011111111111111111111111011111101111111111011111111111111111111111111111111111111111111101111111011101111111111111001111101101111111111111110111111011110111111111011111111111110111111110111111011111111110111111111101101110111111111111111111011110111111111111110111101111111111111111111101111111110111110111111111111111101111111111111111100111111111111111111111101111111111111011100101011101100111111111111101011111111111101111111101111111111111111111011111111110111101111111101111111111101111011111111111101111111111111111111111100111111111111111111111111111111111111111111111011111101111111111111110110111111111111111111111111111111111111011011111111111111111010111101111111011111010110111110101011111101111111110111111010111101011111111111101111111101111111111111111111011111111111110111111011111111111110011111111111111111101111111111111111111011111111111111111111111111000111111011101111111111110111111110011110111111111111110011111101111111111111110101111111011111111110010101111111111111111111111101111111111111111101111111111111011101111110111101011111111111111111111101111111101111100011110111111111011111110111111110111111011111111111111111111111010101111111111111111101111111111111111011111111110111111111111111111111111111111111111111111111111111111100000111111111111111111011111001110000111111111011111111111111111101111111111111111111111011001111111101101111111111111111011111011111111111100011111111111101110111111111111110001111111111111111111011110110111111111110111111111111111111111111111111111011111011011111111111111111111111111101110110111111110111111111111101111101111110110111111111101111111101111110011111111111011011011111101111110111110111111111111111111111101110111111111110111111111111011101101111111111111011111111011111011011111011111111111111111111110111111101111111011111111100111011111111111110111100111011101111011111111111111111111101111111111111111111111110011111111111111111110011110011001111111111111101011111111111111111101101101111111111111111111111111111111111111111111111111111001111111011111110111110111111111111111111111111001111111111101111110111110111111011101111111110111111111111111111011111111101111111111111111111111111111111111111111111111111111011111110111111011111110111111111011111111111111100111111111011111110111111111101111101111111111001100110110111111110111101111111111111111111111100111111111111111011111111111111111111110110111011111111011111110111110111111111111111111111111111111111101111111111111111011011111110111101110111111111111110101111111111111101011111111111111111110111111111111111100111110111111111111111111101111111111111111110111110101101110111101001111111111111010111111111101111111111110111111111111111111111111111110101111111111101111111111011111100111111011111110101111111111111111111110111111110110111111101111011101111111111111111111011111101101111111111101111011111111111011111111111111111111111111111111111111111111111111111111011111111111111101111111111111110111111111011011111011110011010111111111111110111111111111111111111111111101101111111111111111111111111111101111111110111101111110111111111111111111011111111111111101101111011111111111111110111011110111111111111111111011111111111111111111101111011111011111110111111110111111011111110111111111111111111111111011111110011101111111111110110101111111111110111101011111011111111111111111111111111101111111110110110011111111111111101111111101101111111111111111111101111101110111101111111111001101111111111111111011111111111010110111110111111111111111111110111111101011111111100111111111111101111111111101111100110111111011111111101111111111111111111111111111010111111111111111111111111111110111101111111111111111011111111111111111111110101111111011100111111111100111011111111101011011001111010111101111111111111111101011111110101111110111110111111011111110111111011111101111110101111111101011111111111111101111111100111101111101110011111111111111111111111111011111111101111101101111111111111111111111111111111011111111111111001111100110111111111111111111111101111111111111111111101111111111011101101111111111111111111111111111111111111111111101011111111111111111111111111111111111011011111111111011100111110111111011111111111111110111111111111111111111111011111111111101111111011111111111111111111111111011011011111111111011111110111111011111110111101111111111111111111111011111011101110111111111111111111101111101111011111111011111110111111111111111111111110111111011111111111111110011111111111011111111111111111111111111111111111111111111111111111111111111111101111111111011111111111111111111111101111111111111111111111111111011111111111111011111111101111110111111110111111101111111111111111111111111111111111011111110110111111111111011011111110111111111111100011111111111111110111111111110111111111110111111111111111111111111111111111110101111111111111111111111111111111111111111111111111110111101111111111111110111111111111111111111111101111111101111111111110111110111111111111111111111111111111001111111111101111111011011111111111111111111111111111111101111111110111111111111111111111111101101101111111111111111110111111111110101111111111101111111111111111111111111111111111111111010111111011111111111011111111111111111011111111101111110111111111111111111111101101111111111110111011111111111110111111111111111101111110111111111111111111111111011111111111110111111111101111111111111101111110111111110111010111111111111111111011111111111110110111111111111111111111101111100111111101111111111111111101111101111111111111111111111101111111111011101111111011111111111110101011111110111111111111111111101101111111111111111011110111111111101111011111110111111111111111111111011110101100111111111111111110111111110111011111110001101111111011111111111111111111111111010111100110111011101111111111111011111111111111011111111111011111111101111111111111111111110011100110111111111111111111111111110111111111111111110111111101111111111010111111011111110111111111111001111101111111111111101110111111001101111111111101111111111111111111111111111111111101111111101111111111111101111101111111001001011111110010111111011111111111111111111111111001110111111111111101111101011111101111111101111111111111111111111111111111011111011101111001111111111101111111111111111111111111111110111111111110111111111111110111101111111111111111111111111111111111111111111111110111101111111111111111110101111101101111111111111011111111110110111111111111111111011111111111111110111111111101111110111111111111011101011111111111111111111111111111011110101111111110101111101111111111111100011111110111011111111111111110111111111111111101111111111111111111111111111111111110111111111111111110010011111111111101111111111111101101111110111111111111101111110110111111011111111111111111010111111111010111111111111111111101110110011011111111101111101111111111111111111111111111111111111111111111110111010001111101111111110111011111011110111111101111111111111111111110111110111101111110101110011111111111111111111111111111111110101010011111111110111111111111111111111011101111111111111111111011101111111111111111111111111111011111111111111111110111101101111111101111111111010101111111111111110111111111111111110111101111111111111111101110110111110110111111011111111111101111111011111111111111111111111101111111111101111111111111111011111111111111011111111110111111111111111011111111111111011111111111111111111101111111111111111111111111110111111111111011011111110111111111111111111110011111111011111111111111111111111111111011111110111111111111111111111111111111111111111111111111111110111111111110111011111111101111111111111111110111111011111011111011011101111011111111101011110011111011011111011111111111111101111001111111111111111111111111111011101111110110011010100011101011011111111111110011110101011111111111111111111011111111111011111111110111111111111111110111111111111111011111101101111110111111111111110111111101111111111011111111101011111101011110111111011111110111010011111101111111111111111111111111111111110111111101111111101111010110011111110111111011111111111011111110111110111111111100111111100111110011111111111011101111111110111111111111111111111011110111111100111111011101111111001111111110111111111110011101111111111111111101110111111111111111111011111010111111111011101101111110111101111111111111101111110111111111011111111111111100111101111111111111111111111111101011110111111111111111111111010111111111011111111111110111011111111111111111111110111111111111011111111111111111111111111111111111011111111111111111101111111111011111111111011111011111101101111111101111110111111001111111111111101101111111010111111111110110101011011111111011101010111111011111111111101111111101111100001111111111111111111011111111101111111111111111111111111111111110101111101111111111111111101111111101101111100011111111111111111111101111101111011111111111111111111111111111111110011111111111111011111111111111101101111111101111111111111111111111111111011111111111111110111111111110111111111111111111111111011111110110111111111011111110111111111111110101111111100111111111111111111111111111111111111011111111111011101111111111101111110111111111001111111111111111111111111111111111111111111111111111111101101111101111111101111110111111111111111011011111111110111011111111101111111111101110111111111111111011111111111011100011111110110101011111101111111111111011111110110111111011110101111111110011111110111111111001111110111111111110111011111111111110111111110101110111111111111111111111111100111111111111111111110111110101111111111111111111111111001111111111111111110110111111111011111111111111111011111111111111011111111111111111111111101011111111110111111111111111111111111111011111111111101111111111111111101111111111111101111101111111111101101011111011111101111111111111111101111111111111111111111110111111111011111110110111111110111111001111111111111010111101111111101111111111011111111111010111111110111111111111111111111111111111111011111111111111110111111111111111001011111110011111111111111111111111110111111111010101111111101111111111111111011111111111111111111111111111111111111111111111111111111111111100101111111111111111101111111111111011111111111111111111110111101111111111111111111111111111111111111011111111111111111111110110111111111100101011001001111111011111101111111101111101101111111111111111111110110111111111111101111011111011111101111111101111111111111111111111111111101111111111111011111101111111111111111111111111111011110111111111111011111111111101011111111111111110100111111111101111111110111111111111111111111111110010111111111101111101111110111111111111110101111111110111101111111011111111111111111011111111111101111111111111101111111110110111111101111101111111111111111111111111111111101111110111111111111111011111111111111111101111111111111111110111111111111111111110111111110111100111111111111111111111101111101111111010111111111111111111111101111111111111010111101111111101111111111110111111111111111111111111111111111111111111111110111110111111111101111011011111111111111111111110111111111111101111110111111111110111111110111111011111111111110111111111111111111111111111011111111111111101111111101111101111111101110111111111111111111111111111111110111111111111111111111111111111101111011111110111111111111111111011111111101111111111111111011111111111001111111111111111111111111011111111011111111111111111111111110111110110111111111111011101111111110111111111111111111111111111011011101111111111111111011111111010111110110011011101111111111111111111111111111111111111110101110101111111111110111111101111111111111111111111111111111111111111111111111111111101111111111111110111111111111111011111111010111011101111111111111101111111111011111111111111111111110111111111110111011110111111011111111101011111111110111111011111011101110111111111111111111100111111111111101111111111111111111111111111111111111111111111111111111011111111111111101111111111111110011101111110111111101111110111110111111111111111111111111111111111111111111111111110001111111111111101111111111011111111111111111111100110111111110111101110111101111111111111101101110111111111011111111111110111011101111111111111111111111101111111110101111111110111111111111111011101111111011111111111111111111111111111111111111111111111111111111111111011111111111111111101111111011101110011111011111011111111111111101110111111111011111111111011111111111111011111111111111011111101111111111111111111111111111111111111111110111111111110101111111110110100111101011111111111111111111111111111111111111101111111111001110101111111111011111111111111111111110101111110111111101101111111100111111111111101111111111111111111111111111101111111111110111110111111111111111011111111011111111111110111111011111111111111111101111111111010111111111011111110111111111111110011111111111111111111011111111111111111110111110111111111111111111111111111101111111111011011111111111111111111111111111111111111111110111101001111011111111111111111101011111111111111111111101111111101110111111111111011011111011111111011111111111111111110011101010111111110011111111111111111111111111011111111111111111111101101111111111111110111111110111111101111111101111011111110110111111011001111111111111111111111011111111111111011111111111111111111111111111110111111111111111111110001110101111111111111010111111011011110111111111111011110111101111111111111111101110011111101111111111111111111111011111111111111011001111111111111111111111111111111111111101111110111011111110111111111111111111111101111111011111111111111111111111111001111110111111111111111111111111111111111111111111110111111101011111111011111111111111111101011111111101111111111111111111111011111111100111111111111111111111111111111011111111011101111111111111101110111111001111111101111011111011110011111111111101111101011111111111111110111111111011110111111111111111011101111111111010111111111111111111111111111111111111110110111010111111111111111111111111110111111111111111111111111111111111110111111111111101111111111111010111111111111111111111111111111111111111111111011111111111111111111011111111111111111111111111111111111110111111110111110111111101110011111111111111111010111111011111110111111111011110111101111111110111111011111111011111111111111111111111111111101111111111110101111111111111011111111111111111111111111111111111111111111111011111111011111111111111111111111111110111111111111010011101011111110111111111101111101111111111101111100111111111111111111111111101101111110111111111110111111111101110111111111111111111110111111101111011111111111111111111111111111110111111111111111110111011111111111111110111111111111101011111111111111111110111111101110110011111111110111101111111111111111101111111111011111110011111111111111111111110110011010110111011110010101101111111111111111111111011101101111111111110110110111111111001111110111111010110111111101111111111011111111110111111111011111111111111111111111111111111111111111111111110101111111111011011111011110101110111101101111111111111111111111111101111111111000111111111111111111111111101111111011111011111111011111111101111111110111111111010111111111111111111001111111111111111101011111110111111111111111111111111011111011101101111111111011101111111111111111101110111011111111111111111011110101111110011110111110111101110111111110010111111111111110111111010011111111111011101111111111111111111111111111111111110111110011111111010110011010111111111111111111111111110111101100111111101111111111010111101111101111111110011111111111111111011111111111011111101111111111111101011111111101110111001110111011111101011111111111111111010111111111111111111111111111111111111111110111111111111111111111110111111111111111111011111011111111111111111101111011111111111111011111111111111111110111111111111111111111111111111111111101110011111111111111111111111111110111111111111110111110111101111111111111111011111111111111111111111111111110111111111110110111111111111101111111111111011111111111111111111111111011111111111111111111011111110111111111111101111111111111111111011111111111011111111111011101110111011111110111111111111111110111010111111011110111111111111111011111111011111111111111111111101111111111110110111111111111111001111111001111111111111111111111111111101111111101111011111111110110111101000111111111111111111111111111111111111110010111111111111111110101111111111011101111111110111111110011111111111111011111111111111111111111111111111101111111110111011110111111111111111111111111111101111101111111111111111111101111111111110111111101011111111111011111110011111001011111111111011101111111111111101111101111111011011111011111110011111111011111111111110111111111111110111111111111100111111111111011111111111111111111011011110111111111111011111111111111111111111111101111111111111111111110011111111111100111111111111111111111111111110111111111111111111011110100011111110101111111111111111011011111111111011111111111111011111110111111111111111111111010111111011111111111111111111110111111111111111111110111111000111111111111111011111111111111011000111110101111111110011110101110101111111111111111110111110111111111111111111111101111111111111111111111111111111111111111101111111001111001111111111111111111111011111111011111111111111111111011111111111111111111111010110111111111101111111110111011011111111111111111111011111101101111101111111011100111111111111111111111010111110111111111111111111111111111111111110111110110111111111111110111111111111101101111111111111011111111111010101111111110111111111111101111111111111111111111111111111111011110111111011001111111110011111111111111111001111110111111110111111110111111111111111111111111111111111111111111111111111111111110111101101011111111010111111100111111111111111101111111101111111111111111101111111111111111111111111111111111011111111011111111101111111111111111111111111111111111010111111111111011111011111111101111111111011111111111111111110110111101111110111111111111111011101111011111111111101111111011111111111111111111101110111111111111111111111111011111111111111111111101110001111110111111111111111111101111111111111111111111111111101101110111111111111111111111111011110111111101111111111111111111101001111110011111111111111011111011011111111111110111111111011100101111101111111101111111101101111111111101111111111111111011111111111101110011111111111111111111111111110111111111011111110111111111111111111001111111111101111111110111111111111111110111111111111110111101111011101100101111111111111111111011111111101110111111111011111111111111111111111111111111111110111111111111111110010111111110101101111111111111111111111111111101111111111111101111101111111111111111111111111111111111111111111001111111111011110111111111101101100111111111111011111101111110111111110111111110011111111111111010111111111111111111011111111111111111111111111101011110101101110111111101111111111110111111111011110111111111110111111110111011111111011010111111111101111111111111111111111111111011101111111111111111111100110110111111111111011110111111111111111101111111111101111111111011111111111111110111111111110110010111110111101111111111111111101111111111111111100111111111101110100111111100101111111111011111101111110111110011111101111111011111111111111111111111111111111111111011111111111011111111111111111111111111111111111111111101111111111111101111111111111100111101111111111111111111110111011111111111111110111111111110111111011011110111111011111111111101111111111111111111111111011111111011011110111111111111101110111011110011011111111111111111111111111111101110111111011111111111111111101101111111111111111111111111110111111011111101111111011111111111111110111111111111011111111111111010011111111111111101111111111110111111111111111111111111011101011111110111111111010111111111011111111111111111111111011110011111111111111111111101110111111111111110111111111111111011011101111111111111111111101011111111011111111011111111111111011111110111111111111111111111111111111011111101111111111111111111111111111111111010011110111111111111111111111111110111111111111111110111101111111111111111111101111110011111111111111010011011111110111011111111111011111111111110101011111111111111111111111111111110111111111111011111111011111110111111100111111111110111111111111111111111111111111011110101111111111001111111111110111111011110111101111111011011111111110111111111111111011101111110110111011110110111111011011011011010111011111101111111111111111111011111111011111111111111111110111111111111111111111111111101110111110111101011111110111111111101111111111111111111111111111011111111111111111111100111111000111111111111111111111111111111011111111111111011101111111111111011111101111111111111111111111111111111111111111111111110111101111111101111111111011111111111111111111111111101111111111111111111111111101111111110111111111111011110011101111111111111111101111101111111101101111111111111111101111111111110111111101110111111011111101011111111111111111111111111111111111111101110101111110111111111101111110011011100111111111110111111111111110111111111111111111011111111111111011111011111111111111111111111111011101111111111111111011111111111111011111111001111111111111111111111110111111111111101101111111011111111001111110111111110111101111111111101111111111111111110011011111111111111101111111111110101111111110110111001111111111111111011111101111111011011111111111111111111111111111101111101111111111111111111011111101111111111111110111111000111111111111111110111111111111101111111111111111011111111111111011111111111111111111111111111111110111100101111110111111111011111111111111111111100111011111111111111100111111111111111100111101111111111111111111111111111111111111110111111111111111111011111011111111111111111111011111111111110011111111111111111110011111111011111111111011111111110111111111111111110111111111110111111111111111111110110101111111110111011111111111111111111111111111000111111111101011111111111010111110011011011111111111101011111111111111111111111111010111110111111111111111111111101111101111011111111111110110111111111011111111111111111111110111111111111111111011111110111011111111111010111111111111111101110111111111111111111111011111111110111110111110111100111011111101011111011111111111111101111111111110111011111111111101111111111111111001110111111101111111111101110110111111111111111110101111111011111101111011110111011111111011111111111111111001111110111111111110111111111111111111111111011111111111111111011101111111111011011111111011011111101111111111111011101111111111011111101111111110111011101111100110111101111111111111111111111111110111011111101111111111111111111111111011111101011111110011101111111011111111111111111111101111111111110111111111111111111111111111111111111110010101111111110101111111111111111001111111111111111111111011111111110111111111111111111111111100111111111111111111101111111111011111111111111110111111111111111111111111111110111111001111110111111111111111111111111111111111111111110111011111111111111011111111111111111111111111111110111111101110111010111111111011101111111111111111101111111111111011111011111101111111111101011111111111110111111101111011111111111100111111110111111111111111011111110111111110111111011111111111111111111110111111111111111111111111110111111110111101111000110111111111111111111110111011111111101111111111111111111111111111111101111111110111111011111111111111111111111111111110111111111111111111111011111101111110010111110111111010111111111111111111101111111111111111101111111111111101111011111111111111110100111111111111011011111111111111111111111111111111111110111110111011111111111101111100111111111111111111111111101111011111111111111011111111111111101111111110111111111111111111111101101111111111111111111111111111011111101111110111111111111110111101111111111111111111011111111111111111111111011110101111111111011111111100111111111110111111111111111111111111011111110111011111111011111000011111110011111111111111111111111111111111111111111111111011011111111111110011111111111111110101111111110111111111101111111111111111111101111111111111011111111111111111101111111111111111101101110111110111111111111101101111101111110011101111011111111101101101111111111011111111111111111111111111111111111111111111111111100111111110110110111111111111111111111111111111111011111111111111111111111111110111111111111101111111111111111111111101111111011111111101111110111111001101111111111111011011111111110111111111111111111001111111111101111101111111101111111100111111111110110001111111111111101111111111110111110111111111111111110011111111111111111110111110111111011101111111110111111111111111111111111111111001111011111011110111111111111111111110110111111111101110111111101011111101111111010110111111111101111111111111111101001111111111101111111111100111111111101101011111111111111111111111111111101111110111111111101111111110111100111111111111111111110111101111111101101111111111111111111111111111111111011111111111111010110111001111111111011111111111101111111011100111111111100111111111111111111101011011111111110110111111111111111110111111111111111001111111111111111111011111101111111111111111111111101111111111111111111111111111111111011111111110111011111111111111101111101111111011101111011110101111111111111101101111101111111101110111111111111111111111101111011111111110111111011111111110111111110111101111011111111011111111111110111111110111111111111111110111111111110111111111111111111111011011110111111111111111011111111111111111111011111111111111111111111011011111101111110111111111111111100111111111111101111001111101110110111111111111111111111111111111111110110111111111110111011111111111111111111111111111111111111111111111111110110111101111111111111101111111111111111111111111111111111110111111011111111110111111110111110111111110111111101111111110011111110111011011111101111111011011111111111101111111110110111011110111111111111111111111111110111011111111111111101111011011111111111111111101010111111111111111111111111100111111101111111111111110111111111111111110011110111111111011110111111111111111111111111111111111011011110111110111111111111111111101101111101111111111111111111111111111111111101011111111111111110111111111111111111111101001111111111111111111111111010111111111111111111111111111101110101111110111111111110111011011111101111111111111111111110111111111111111110111111111111111111111111111111111111110111111111111111111111111011010111101111111111111111001111110111101111111111111111110111111111111101111111111101001111101111111110011111111111100101111011111110111111110110111111111101111111111111111111111111011111111111011111111111111111101111101111011111011111111111111111110111111111110111111111111010111011111100101111111111101111111111111111011111111111111111111111111101111111111111101111111111111111110110111111111111111111101111111101111111111111100110011111110111111111111111111011111111111111111111101110111111111111101111111111111111111111111111111111111111111111011111101111111101110110101111111111111111111111011100101101111001111110111111111111101111101111111111011111111111101011111111111110011101111111110111101111111111111111101111111111111011111111111111111111110101111111101111111111111111011111111011111111111111111110111010111111111111110110110111111111111111111111111111111111111111111111111111111110111111110111111111110011110111111111111111010111111011101101111111111111111101111111111111111111111101101111011101011111101111011111111111110111111101111111111111011111111111011111111111111101111111111111101111111111111111011111011111111111110011111111111111111111111111111111011111111111111110111101111101101110111111111111111110111111111111011111111111111111111111111110111101111111011111111111111111111111111111011111111111111111110110111111111110101111111111110111110111010111111101111111111111111111111111011001111111111110101111111111111011110110101111111111111111111110111111111111111111111111010111111111111101101111110110111111101111111111111111111111111111111101111101011101111101111111111110111011111111111111111110111111111111111111111111111111111101111111111111111001111111110111111111111111011111111101111111111111111111111101111101111111111110110111011111111111101011111111110111111111110111111110001111111111111110011110111111111111110111111111101111111101111111111100111111111101110111111111111111111111111101101011110011111111101111111101111111011111111101011111110011111111111111111111111111111110111101111111111111110111111111111111111111111111011111111111111111111110111011111111111001111111111010111111111111111001111111111111111110111111111011110111111111111111111111111111110101111111111111111111111011111010100111111111111100111011100111111111111111111111111011101111111011111011111111111111111011111110110111011011111111111111010111111111111111011111111111111111111011111110110111011111111111111101011111111111101111111101111101111111111101111110111111111111101111010111101110111111111101011110111111111111111011111111111111111111111111111011011101111111111111111100111111111101110011101111111111111111111011110111111111101111111111111110101111101111011111111011110111111110011011111100111111111101111111101111111111111111111111111011111111111111111111111111111111111111111001111101111111111101011011111011111111111110111111111101111011111111111110111111111111111111111111111111011111101111110101111111110011111111111110111111111111111011111111111111111111111111101111110110011111101111011111111110111111101111111110111111111111111111111111111111011111111111111111111011100111111111111011111111111011111111111111111011111111111111111111111111101111101111111111111101111111111111011111111011110111111111111111101111111111111111111101111111111111111111111111111111111111101111111111011111111111111111111111111011110110111111111110111111011111111011111101111111111110111111101011111111111111111111111111111111111111111101111111111101111111111111011010110111111111111111101111111111111111111111011111111110110111011101111101111111011111111110101111110110111101111111111111111111111111111111111111111111111111101111101011011110111111101111111111111111111111111111111111111111111111111011111110111111101111101110111111110101111110111111111111111110011111111110111011011111110101011111111111011100011111001111111111111111111110110111111111111011111111111101111111111101100111111111111011111011111111111111111111111111111111101111111110111111111111011111111111111111111111111111111100110110111111111111111111110011111111011011011110111111111111111110101111111111111111111111111111111111011110111111011001011110111111111111111111110111111111111011001101111011111001101111111110111111111111011111111110011011111101111111111111111101111111011111111111111011111110100111111011111111111111111111011111010111111111010111111011111111011111100111111111111111111111011101111111111111111111111111111111101111111110111111111111111101101101111111011011101101111101111110111111111111011111111111111111111111111111111111011111111101111101111111111011111111111111111111111011111111101111111111111111111111110111111111111111111111111111111111111011110101111010111111110111111111011111111011001111101111111111111111111111110110011111111111111111111111111111111111111111110111111111111111111111111111101111111111111111111011101111111111111111111111111101111111111111111111100110111111111011111111111101111111111111011011101111101111111111110111111111111101111111001111111111111111111111111111111111011110111111111111111111101010111111111111011111111111111100111111011111111111111111111111101101111011111111111111111111111111111111111111111111111100001111111111111111100011111111001111111111110111111101111111110111110111111101111111111111111101110101111111111111111101111111011111101111111111111111111111111111111111110111101011111110011010111111110100111011111101111111111111101111111101111110111111111111111111011111111111111111111111111110111111100111111111111110101111111111111111111111111110111101110111111111110111111111101111111111101011111111111111111111101010111111111111111111111111011111111011111111011111111111111101111101111111110111111111111111111001111111111101111111101101111111111110101111111111011111111111111110111111010111011111101111111111011111111101011111111111111110111111011111100111111100110110111011111111111111111111110101111111111111111111101101111111111111111111111110011111111111111111000111111111111111111111101111111011111111111111101111111111011111111111111101011111111011011111111111111111111111011111111110111011111111111111111111111111101111011011111101110111111111110111110111011011111111111111110111111110101101111001111111111110111111111111111100111011111111111111101101101111111011111101111111111111111111011111110111111101101111111111111011111111111111011111111111011111111111101111111111111111111111111111100011111111111111111101101111110101111111111111111111111111100011111111111111111110111111110111011111111111111111111110110111110011111111111111110111111111111111101111111111111111111111111111111111111111111111111111111111111111011111011101111111111111111111111111111011111111111001111111111101111110011110011111111111111101011111111110100111111111111111111111111111111111111111111111111111111110111101111101111111101111111101111111111011111110111111111111111111111111011011111111111111111111111101111111111111111111111111101111111110111111111111111011111111110101111111111111101111101101111101111010111111111111111111001111111111111111111111111111011111111111011111111111111111101101111101111111110111011111111111111111111111111110111011111101111110111111011111111111111111111110111111101111111011111111111011111011111111110011111111101111111110110110100111111111111101111111111111111111101111010111101111111111111111111011111111111111111111001111111111111111111111111111111110111110111110111111101111111011111101101011111011111111101111111111011110111001111010110111011111111111111011101111011101111011111111110111111111011111111011111111111111111111111111111011101110011111111101111011111111111010111111111011111111110111011111111111111111011111111111100111111011111111111111111111111110101101111111111111101111111111111111111111101011110111011011111111101111111111100111111111111111110111010111111111011111111111111111111111111111111111011111110111111111011111111110111111110111111111111111111010111111111011111111110111111111111111011110011111100111111111111101111111110111101110111111111111110111111111111111111110111111101011111011111111101111101111111111101111101011111111101011111100101111001111111110111111111110110101011101111111111111111101111111111110110111111111111111001011110111111111101111111111111001101111111101111111111111111111111110111111111111111111110111111111111111110111110111111111111101111111011111110111101111111111111111111110111111111111111111111111111111111111111111111111111101111011111011111111111111111111111111111111111111111111111011111111111111111011111111111111111111111110101111111101111111111111111111111111101111111111111011111111111110111000111110111111111111111111111110111111010111111010110111100111101111111101110111111111111111111111011111101111111111101111111111111110011111111111111010011011111111011111111111111111111111111111111111111111011111111111010111111111111110111111111110111011111011101111111110101011111111111101111111101111111101111111111111111111111110101111101011111111111101111111111111111111111110110101111101111111111011111111111111111111111111101111111111011111111111111111111110111111101111111100011111110111111111111110110111101111101111101111111111111111111111111110111111111111111111111111111111010111111111111001101101111011111011111111111111011111101111111111111111111011111111011111011111011010011111111111111111111111111011111111111111111101111111011111111011101111111101111111101111111111111111111111111111111111110111110111111111110111011101111111111101111111001111111111111111111111011110111111110111111100101111111111111111111111111111111110111111011111101111101111111111111100111110111011111111111010111101101101111111111100111111111111101111001111111111111011011111111110011111011111101111110111111111111101010111011111111110011111111111111111111111101111011111111111111101011001111011011111111111110111111111111111011111111111111111110110111011111111111111111111111111100111110111111111011011111111111111111111110111111001110111101111110111111111111111101111111111111101111011111101111111111111111000111111011110110111011111110111111111101111110111111111111111111111111101011011111110111111110011111101111111111101111101111111101111111111111111111111111111111111111111111011111111111011111111111011011111111111111110111111111110111101011111111111111111011111111111111111111111111111111111111111111100111011111111111110111111111111101111111111111111100111111101111111111111111111111111111111111111110111011111111011111111111111111111111011111001111110111111111010011110111011100111111111111111101111111111111111111111111111111111101111101101111111110111111110011111111111110111111111111111101110101101111111111101101111111111110111111111111111111111111111111110111011111111111111111111011111111111111111111111111111111111111111111111111111111101111111111111111011111111011111111111101111111110111101111111111111111010111110111111111010111111011111111011111101111111111111111111110111111111011111101100111111111111111111111111111111110111111111111110111111101011111111111011011011101011111101111011111110111110101101011111001111111100111111110111111111111111111011100101110111110111111111111111111111111111111011111111111111111111111111111011111111111111111111111110111011111111111011111011011111101111111110111111111111111111111111111111111101111111011111111111111111111110101111111110111111111111111101111110100111111111111111100111101111111110111111011110111111111011011101101111111001110111101110111111111110111111111110111011111110111111111010111111101111101111111111111011111101111111111111111111111110011110111111111111111111111111101111011011101111111111111111111111111011111111111111011110111111101111111111111111111111110111110110111011111010110111111100111111111111111110111110110111111111111111111111111111111011111111111110111110111111011111111110111011111111100011111111111111111111111111111111011111111111110111111111111111110111111111111111011110111111011110111111111111111111111101101011111111111111111111111111111111111111110111111111101011101101101011111111101111111111111111111110111111101111111111110111011111111110111111111111111111111011111111110111111111011111111110111011111111111010111111111111111111111111111111101111111011111110111111111111111110101011111111111111101111111111111111111101011111111101111111011111110111111111111111110111111111111111111111110001111110111111101011011111111111111111111111111111111111111111111111111111111111101101111111111110111111111110111111111111111111111011111111111111111110111111111111110111110111111111111111011111111111111111111111011111111011111101111011111111010111111011111101111110111111111101111111101111011111111111111111111111111111100111111111101111011101111111111111101110111111011111011101111111111111111111110111101111111111111111111111110111111111111001111111111111111011111111111111111111111011111111111111101001111111011111011111011111111111111111111001111111111111101111011111111111111111111111111111111111111111111111111101111111111111111111111111111111101101110111111111111111111110111101111111111011111111111111111111111111110010010110101111111011111111011111111111111111111111111111111111000111101111011011111011111111111111111111111111111111111111111111111111111111111110111111111110110011111111111110111111111110111111101111111111000111111111101111111111111111111111111111111111111111111111111111111111111111111001111111111101111111110110111110011011110111111111111011111111111101111111111111110111111011111111111111110111111111111111101111111110111111111111111101111111111111111111111111111111111111101111001111111011111111111111111111111111111111111101111111011111110110111111101111111111111111111111110111111111101011111111011011111111111111111111111111011111111011111111111111111011111111011111111110111111111111111111111110111111101111111111111111111111111111111111111111110111111111111101111111111100111111111111110101111111110111111011110111111111011111101111111111111111111111111111111110111111111111111111111111111110111101111111111111011011111111111110111111011111111111011111111111111111111111111111110111011111011111111110110111111011111111011110111111101110110111111111101111101111011111110111111111111011111101111011111111011101111011111111111011111111111111111111011101011111111111011111111011111111111111111011111111111111111111110111101111111111111111111111011111111111111111101111111111110011111111111111111111111110111111111111111111111111111111111111111111111111111111011111111110011111101111111111111111111110110001111111111111110111111111111111111111111111111111111111111111111111101111110111111111111111011110111111111001111111111111110110011111111101111111111111111111101111111011111110111111111111111111111111111011111010110101111110111111111111111011111111110111101111101011101011111101101011111111101111111111011111011111101111111111111111110111111110111111111111111101111111111111011111111111111111111111011101111111111111011111111111111010111110110110111011111111111110011111111111011111011011101111101111111111110011111110111111111111110011111011111110111111011111111110111011111111111111111110111011111111111111111111011111111111110111111111111111111111111101111111101111111111111111011111111111111111111111111111111111111101111111111111111111101001100111111111111111111111111010111011111111001111111111111111111110111010111011111011101111111111010111011111111111111111111111101110101111111111111111111111111111111100111111111101111111111111111111111111111111001111111111111111111101111111111111111111111111111011111111101011011101011111111111111111110111111111111111111111111111011011111111111111011110111111111011111011110101111111011011111111111111111111111111111111111101111111111111111011111111111110111111111111111111111101111111111111111111111111111111111101111111111111111111011111111111111110111111101111111111111111111111111111111111111011111110111111110111111110101111111111111111111101111111111111100011111111011111111111011101111111111111111111111101011010111001111101111111110111111111110111111111111111111111111111111011111111111111111111111111111111111111111111111111111111100111101111111111111111111111101011111111111111111101111101111111111001111111111111111101111111111110111111011111101111111111011101011011111110111110111111011111111001110011111110111110111111101111111111111111111111111111111111111110111111011101111111111110111111111111110111011111111111111111111111101111111111011111111111101111111111111111111111111111111101111111111111111110111111111110111111101111111111111011101011111111110111111111111111111111111111111101111101111001111111111111111111111111111111111111111110111110111111111011111111111111111111110111110111111111101111111110100111111101111000111111111101111111111111011111111111101111111111111111101101111111111111111110111111011110111110101110111011110111111111111111111111111111011111101111110111111111111111111111111101111111111111111111011111011111111111111111110111111111111100101111111111111110111101111111111111110111111111111111111111111111111111111111111111110110111111111111111011111111111111111111111111011011111111101101111111111111111111101100111111111111110111111111111111111111110110111101111111111111111111111111011101011101111111111111111111111111111111111111010101111111111110111101110110111111111111111111111111111111111111111111111111101111011111110111111101111111011111111111101001111110111111111111110111110111111111111111111111111110011011111111111111110111011111111111011111111111110111111111111111111111111101111111111111101111111001111111111111111101111011111111101111101110111111011111111111111111111111111111111111111111111111111111101111111110011111111101111111011111101111110111111111011111111111111111111111111111111111101111110111111111001111111111111011111110101111111101101111111111111111011111111111011111111111111111111111111101111110111111110111111111111111001101111111111011111011110111011111111111111111110101111111111011111110111111111111111111011111110111111111011011111100111110111111111111111111011110111111111111110111111111111111111111111111111011111110101111111111111111111111111111111101111111010110101100101111111111111111111111111111111111111001111100111111111101111011111111111011111111111111101111111110101111111111111111111111110111111111111111111111111111111111101110111111111111111111100111111111111111101011110111111110110101111111111111110111111111101111111111111110111111111111111111111111111111111111111111111110111111111110011111011111011111111111111111111111111011111111111111111111111101111110011111111111010111111111111011111101101111011111111111111111010111111101111111111111111111101101111110010011111111111111111100111111111111111110111111111111111111111111111111111101111111111111111111111110111110111100111111101111111111111111111111111011111111101111111011111111111111111111111100111111111111011011111111111111110111111111111111110111110111011111101111111111001101111110111111111011110111010011010100110111111011111111111111111011111101111111111111101101111001111111011011101111111111110111111111111111111111111111111111111111111111111110101111111111111101111111111111111111111111110111111111111111111010111011110111111111111111111111111011010111111111111111101110111111111101111110101101001111110111101111111111101110111111111110101111111101111111111111110111111111111111111111111111111111011110111111111111101101011101011111110111010111111111111111111111110011110111111111111111111111111111111110111111110111111101111111111110111111111111111111111111111011010111111111111010111111111111111101111111101111111111111110111111110111111111111110101101111111111111111111111110111111110111111111111111110111101111111111111101111111111110111111111011111111111011111111111111111111111101111110111111000101110010110111111011011011101111111111111111111111111111111110011101111110111111111111111101111111111111111111111111111111111111111110111011111011111110111111111111101110111111111111111111100111111111111111111101110110111111111111011111110111011100111111101110111111101111111111111111111110101101111111111011111110011111111111111100111111111111111111101111000111101111101111111111111111111111111101110111110111011011111111111111111111111111111011111111111111100111111011110111111111111111111111111111111111111111111111111111111111111111111001111111110111111101110111111110111111111111111111111111101101111111111111111111111111111110111111111111111111110111111111110011111111111111110011111111111111111101111111101101011011101101001111110111111111101111011000111111111101111111111111111111111101001111111111011111111111111111111111101111111111111101111111111101111111011111111111111111111111111011101101111001011111011111111111011111101111011111111111111111111111001011111111111111111111011111111011111111111111111111111111110111111111111111111111110111110111111111111111011111111111101011111111111111111111111111111101111111111111111111111111111111111111101111001111111111111111011111011100111111111111111111111111111111101111111111111111111111111101011011111111011111110110101111111011111111111111111110111111111110111111101111111111111111011110111111111111111111110111111111111111101111111111111111111111111110111111111111111111111111111111111011110111011111111111111100111111111111111101111111111111111111011111111101111111110111111111111111111011111110111111111111011111010101111111011111111111111011111011111111011111101111110111110101111111111111111101111011110001111111111111111111111111110101111111111011011111111111101111111111011111110111111111111001111111111101101111111111111011111011110101111111111111011111111111111111111111111111111101011101111101111101111111111111111111111111111101111011011111111111111111011111101111111111111111111111100111111111111111111111111011011111111111111111110111111001110111111111110111111101011111111111111111111111111111101101111111111011101111111111111101111111101111101111111111111111111111011111011011111111111111011111111111111110111111111111111111111101111111011111101111111111111111111011111101111111111111111111111111011111111111111111001111111011111110111111011111110111101111111111111011111111101111110111101101111111111101111011011111101111111101101111111111111111111110110110111111111101111111111111011111011011111110111111111111110110110111111110011110111111111111111111100011111111110111111101111111011111111111111111111111011011111110111111110111111111111111111011111111111111111101001111110101111111110111010111110111101111111111101101111111111111111111011011111101101111110111101111111111111111111101111111110111110111111111111111111111111111111001111111001111011111111111111111111111101111111111111111111111110111110111111111110111101111111111111111011111011110010111111111111111111111101111111111111111111111111101001111111111111111111011111110111111101111111111100111111110111111111111111111011011110111011111111111111111111011111111101111111111111111101101111111110111111111111111111111111111111111100111111111111111101101111111111111011111111111111111011101111111111111111111110111111011111111111011111100111111111110011111111111101100111111111111111111111111111111111111111111011111111110111011111111111011111111111111111111011111111111111011111111111101111111111111011101111111111111111111101011111110101111111111111111011111111111111111111011010110111101111111111111111011111111111111111111111111111101111111011111111110110111111111011111101111111111101101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111101111111111111111111111111111111111111111111110111111111111111110111101111111111111111011111111110111111111111101111111111111111110011111110011111111111111111111111111111111111010101111111011111111110111011111111111110110111111110111111111111111111101101111111101111110111111111111111111111011101110111111111010110111111111111111111111111111011111111111111111110111110110111111110111101110111110111010110101111110111111010111111101111011111101111111111111111111111111111111111111100011111101111111111111111111111011111111110111011111110101111111111111111111111111101111111111111111111110111011111111111111111111111111110111111111110111111111111110011110111111111111111111111111111011111110111010111111111111101111111111111111111111111111111111110101111101111111111111111111111111110111110111111111111111111111111101111101111111111110111100111010111111111111111111100111110111111111111111111111111101111111111111111111110011110111110111111111111110111111111111111111111111111111111111110111111011101111111111011111111111110111111111100111111011111101111101111111110111111101111101111111001011111110111111111111011111111111111111111111111111111101111111101011111111110111101101001111111111101111011011111111111111111110111111111110111111110101011111111111111111110111111111111011110111111111110011111101111110111111111111101111010111111111111111011111111111111110111110111111111111111111111111111100101111111111111111111111111111111111111111111111111111111110101011110111100111111111111111111111111110111111110110111101110111111111111011111111111011111111111111111111111111111111111111111111101111111111110111111111111111010111111111111111101111111101111111011111111111101110001111111100111111111111111111111111111011011111111111101111111111011100111111111111111111111111111111111111111111111111101111111111101111111101101111110011111111011111111111011111111011111111110111111111111111110011101110111111111111111111101111111111111111111111101111111111101101111111111001011111111111111101111111111101111101111111111111111111111111111111111111111111111111111111111101111111111110001101111101111101111111111111111110111111111111111011101111111110111111111111111110111111111111111111111111111111011110101111111111011111111111111111111111111111000111011111111111111111011111111111111011111111111111111011111111111111111111110110111111011111111110111011011110111111011111110111111111111111111011111111111111111011110111010101111110111111111111111110101111111111110111110011101111111101111111101111011111111111111111111111111111111111111111101111111111110111111111111011111111111111111111111111111111111111111111111111001111111111111111111111111111011111111111111111111110110111111110111111101111111110111111110111101111111111111011011111111111111111111011111111111111111110111111111111111111111111111011110111111111111111110111111111100111111111111111111111101111111111111111110101111111111101110111111111111111111110110110111111111111111111111111011111111111111111111111111111011111111101011111111111111101111011111111111111111101111111111111111111111101111111111111111111111111111111111111111101111010010111111011111101011111111101011111101111111111111111101111111111111111111110111111111111101011010111111111111110101001111111111111110111111111111101111101111111111110111111111110101111111111111111110110111111111111111111111111111110111111111111101111111111111110011111111101111111101111111111111101011111111101110111111111101111110011111101101111110111111111111111111110110111111111111101111111011111111111110111111111111111101111111111111111111111111111111110111111111101111111011111111111111101111111111111111111011111111111111111101111111111111111111111111110111111111111101111111111111111111011111111111111111111111111111111111111111101111101111011111011111101111111111110110011110111111111111111111111011111111111111011111111101111111111011111111111111111111111111011111110111111111111101111111111111111111111111111111111111100111111111101111100101111111110111101011111110111111110111111110111111111111111011111010111111111111101111111111111111101111111111111111101111101110111111010111111011111111111111111101111111111111111110111110111111111101111111111110111111111110110111111111110111111011111110110100101110111111101111111011111111111111111111111111111111111111111111110111111111111111111101111111111111111111110111011111111111111011111101110011111011111101101111111111111100111111101101111011010110111111111111111111110111101101111111111011110111111111101111111011111111111011010111011111111111111111111111110011111110110111111111111001010111111111111111110111111111111111100110110111111111011101011101111111111111101111011111111111111110111111111111111111110101110111111011011101111111111111111110111101111110111111111111110111110111111111011101101111111001111111111111111001011111011111111111111111111111111111111111111111111111111110111110111111101111111111111010111110110111111111111111111111111111111111111111111111110111111111111111111011111111111011010111101111110101111111110011101011111111010111111111111111111011111011111111111011101111011111111111011111111111111011111101111101111111111111111011111111111111111110110111011111111111111001111101111111111111111111011111111101011101111111110111110111110101111111111011111111111111111010101111111111111011001111111111111111110101100110111111111111111111111111111101111111111111101111110111111101111100110110111011111111111011111111111111111111101111111111110111111111111110110111111100111111111110111111111101111111101111111111111111111111111111111110111111110111111111111110111111111111010111111111101111111111111110101111110111111111111111111000011111101111111011111111111011111111011111111011111111111111010111101110111111111011111110111001101100011011111111111111111111110101111111111111011111111111111111110110110111111011111111111111111011111100000111111110111111111111111111111111111011111111111111011101111111101111111111111111111111111111101111111111011111011111111111111011111111011110111111111101111111111101111111111111111110111111111111011101111111111111011111111111010111111111110110110011111111011111111111110111111111110111111111111111111111111111110111110111111011111111111111111101111111111101111011111101011101111111111111111110111011011101111111110011011111011110111111101111011111101111111110101111111111111111111111011111111011011111111001111011110111111001111011101010111111100101011010101111111111111111011111111111111111111111101111101111111111111110111111110111111110111101111111111111111001111111001011111111110111111111110111011110111101111001011111111011111111111111111111111111111011111111111111111101111111111111111111111111111111111111111101111111101111111111110110111111111111011100111101011111111111010111011011111111111111111111111111111111111010111110110111110111111101111111101110111111111011011111011111111111111111111111111101111101011111011111111111111111011111111101111111110111111111111111111111111110111111111111111111111111111111111111001111111111111111111111111110111111111110101111111011101110111111110111111101111111111011011111110111101111111111111111111111111111111111011111111011101111111011111011111111111110101111111111110111111101111111011111111111111011111111111111110111111101111110111111110110011111111111111111111111111111111100111111111111110111111111111111111111111101111111111111011011110111111110111111110111011110111111111111111111111101111111111111111111111111111111011101111011111011111011111101111010111101111111111011111111110111111111110011111111111111111111111111111110111011111111111111110111110111111101111111111111111111010111111111111111111111111001111110111110111111111111110111111101111111000111111101111111111101010101111111111111111111110111111110111111111111111111101111110111111111110111111111111111111101111011111110111101111111111111111111111111110111111111111011111111111111111111111001111111111110011111111111111111111111111111111111111111111110110111111010101111111011111111101111111111011110110111011111111111101011111111111100111111101111110111111111101111111111101111111111111111111111111111101110101011111111111111110111111111111111111011011111011011111111111101011111111111111101111111101111111111111111101010101111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111011011111111101111110111011111101111011111011111111111101110111111101111111111101101111011111001101111111111111111111111111110111111111111111111101111111111111011111011111111111111111111111111101011011111111111110011111111101111111110111111111110111111111011111111111111111011110111101111111111111111111111111111111111111111111111110111010111111111111111110111111111111111111111111111111011101110111011111111110111111011111111011111111111111111111111111111111011111011011111101111111011111110111111111111101111110111110111111111111111111101111111111111111111111110111111101111111010111101111011111100101111101111111110111111111111111111111101101111111111111111100111111110111111111111111011101111111111111111110111010111111111110111110111111111111111111111111111111111110111101111111111111111101111100110111111111111111111111111111110111111111111111101111111101111111010011111011111101111101111111111111111111111011111111111110101111111111111011111011111111111011111111110111111111100011110111111111111011111101011111111111111111110111111011111111011111111101011010111111011111111011111101111111111111111111101111111101111101101111011101111111011111111111110110101011111111111101111101111111110111111111110111111111010111110011111111111111111011111111111111111101111111011111111111111111111111111111111111111111111110101011100111111111110111111110111111111010111111110111111111011111111111011110111111111111111111110111111111101111110111101111101111110111111111111101110101111111111111111110111111111111111101111100111100111111111111111111111111111111110111110101111110100111101111111111111111111111111111111111111111101101011011111111111111111111111111111111111010111111111111111111111101111111111100111101111111111111111111111111111111111111111111011111111101111111111011101011110111101111111110111111111111011101111110111110111111011111011110011111111111011111110111111111011110111111111111011111101111111111101111101111001110111111111111111111111111011010011011111111111111110111111111111111111100101111111111111110111111111011111111011110111011111100111111111011111111111110111111010110111110110111011011111111111111110111111111111111111111111110101111011111110011111101111011111111110111111111111111101111111011111111111111111111111101111111101110011111011111111111111101110101111111101001011011111011000011111101111111111101111110111101111111111111111101101111111111111001111111111111110111111111011111111111111111111111111101011111111100111011111111111111011111011111111111111111111111111111110111111111111111111111111111110011011111111111111011001110011111111111111111011111111111111111111111111111111111111111111100101111111111111111111111111111111011111100111111111110011110110111111011101011111011111111111111111111111111111111111111111111010111111111111111111011111111111111111111110101110111111111111111011101111111101101111111111111111011101101111111111111111111111101110111111111111111111111111111111111101110101011110111111111111011111111111101111111110111111111111111111111111111111101110111111111111111011111111110110011111111111111110101101111111111110111101111111111001111101111111111110011111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111011111111111111111011001111011111111111110111111011011111101111111010111101111101101111111111111110111110111111111011111111011111111011111111010001111111111111010111111111111111011101111111111110110111111111111111111101111111111111011111111110111111111101011111111110111111111111111101111111111111111111101111110111110111111111111111111111111111011101111101111111111111111111111111101111111111111101111111101111111111111111111111111111011111010101111111111111111111111111111111111011011101111010101111011111111111111100101111011111111111111111111101111111111111011111110010111111111011111111111111111111111111111111111111111111110111111111111111111111111110111111111111110111111101111111111111011110101110101111111111111111111110111111111010111111111111011011111101111111011111101111101111111111111111111111011111111110111111111111111111111111111111111111111110111111111111111111111111111011011110011111100111111111111111011111111101111111111111110111101111111111101111111111110111111111111111110011101111111111111111111101111111111110111111101111111011111111111011101111111011111111111111011011101101111111110101110111111110110011111111111110111111111111111111111111111111110100111111111101110111110111111111111111111111011111111111111111111101111111110101111111111111111111111111111111110111111101010111101111101111110111111101110111111111111011111111111111111011111111101001111111111111111101111111111111111111111111101111101111111111111111110111111110111111011111111111110111110111111011011111011011111011110111110111111111111111111111111101101101001111111111111111100111011111111110111111111111111111111111111111111111111111111111111110111111111101101111111101111111111111111101111101111111111111110111111110111101001111111011111001111111011111111111111111111011111011111111111111111111111101111011111111111111011110111111111111101111111111110111111111011111111111111111110111111101011010111111011111011111011111111011111111111111111101111111111111111111110111111111101111111111111101111011111111110111100111011011111011111111111111111111111111010101111111111111011111111001100111111111111111111111111111101110111111111111110110111111110111101111111110111011111111111111111110111110111111111111111111111101110111101111111111111111111111111111110111111111101011111110101111101111111111111111011101111010101111101111111111111111111111101011111101111011011111111011100110101111111111101111101111111111111111110110111101101111111111111101111110111111101110111111110111101011111111110111111111101101111111111111101111110100101111110111111111101111111111111111111111111111111111110111111011111111111111111111101101111111111111111111111110110011101111101111111111111111111111111111111110111111111111110011111111111101111111111111101111110111101110111110111110111111111110111111101111110110001110111101111111101111100111101111011111110111111111111111011111111111111110111010111110111111111011111110111111111110111111111110111111111111111111111011011011011111101111011111101111111111111011111010111111110111111110111110111110011111111111111101111111111110111111111111111111111011011111111111111111111110111101111111110111101111011101111111101111111111011111111111111111111111011110001111111111111111111101101111111111111111111111111111111111111111111011110111111110111111111101101111111111111111111111111111111111111100101010111111111111111111111111101110110111111111111111111111111111001111110111111111111111111101111110110111111111111111110011111110111111111111101111111111111111111111011111110111111101111111111111111111111111110111110111111111111110111111110111111111111111111111111101111111101111111111111111110101111110111111111111111111110111111110111111111110101111111111111111111111111111111111101111110110111111111111111111111111111111111111111111111111111111111101111101111111110101111111111111111111111011111111111111111011111111111111111100110111111111111111111111111111111111111111111111100111111011111011111111111111111111111111111111111111111111011111111111111111111111110111111111111111001111111111110111111111111101111111011111111110111111111111111111111111111111011111111111111111101111101111111111111110111111111111111111101110111111111111111111011111111111011111110111111111111111110111111111111110101111011111111111111111110111110111111111111110111111101111111111111111011111111111111101111011111111111101111111111111101111111111111111111111111111101111111011111111110111111111111111111111111101111111111011111111111001111111111101111111111111111111110101111111111111111111011111111111111101111111111110111100111111110110101001111110011011111111111111110111111111111111111111101101111111110111111011111111111111111111111111111001011111110111011111111111111101111111111111111111111111011111111111101101111111111011011011111111011111011111111110111111111111110111101111111111111111111111111111111111111111110111111101110111111111111111111111101110111111111111111111011111011111111111111111111111111101101111111111111110111111101111110101111001111110110011000111111111011111111111111111111111110111111111111111111111111111111111111111111111111110111111111111101111011011111011011111111111011100011111111101111111111111111010111111111111111111110010111011111101111111111111111111111011111111111111110111011101111111011111111111111111111111111111111111111110111111111110101111111111111111111101111101111101111111111111110110111011111111010010111111111011111111111111111111111111101111111101111011111111111111111110111111111111111111101110111111111111111111111111010111111111111111111111111111111111110111111111111111011101111011011111110111111111111111111110111111110010111111101011111011111111111110111111111111101111111111110111111111111111111111111111111111101111111111111111010111111111111101111011111111111111011111111111111111110111111111111111111111110111011101111111111011111111111111111111101001111111111101110111111111111111111111111101111111111111111111111111110111111101011111111111011111111111111111111111101111111111010111111111111111110111111101111111111011111111011111111111110110111111111111111100101111011110111111100111111111111110011111101111111111011111111011111111110111111011111111111111111111111111111010111111111111011111111111111111111111011111111101111111101111111111111111111111111101001011111010111011110100011111110111111111011111111111111110111111111111111111111111111111111111110011111111110111111111011111111111011111111111101011110111111111111111111111111111110111011011111111111111111111011111111111011111111001111111111111111111111111111101111111011110111101111111111110111011110111110011111111111111111111111111111110100111111111111111111111111111111111011111111111111100111111111111111111111111111111101111111111011111111111111111111111111111111111111111011111111111111100111111111111100101110110111111011111111111111111111101111111111111111110101111110111101111111111111111011111011011111111111101111011111101111111111111111111111111111111111110111101111101110111111111111111111111111111100111111011111111111111111111011111111011111111111011111011111110111111111111111111111011111111111101101111111111111111111111111101101111101101111111111101111111011111111111011011111111111111111111111111111111111111111111111111111111110011111011111111111011111110111110111111111011111111111111111111111111111011011111011101111111111111111111110111111011111011111110111111111111111111111111111101111111111111111011111111111111101111111101000111011111100111011111111111111111111111011110111111111111111111110010111101111101111011111110111111111111111111101010111011011111111111111111111111101101111111111111111111111111111110111101111100011101111111111111111111011111111101111011111111101111110111111111111111101111111111111011100111101011110011110111011111111101111111111111101111111110101111110111111111110111111111111011111111110111111101111111110111001101011100110111111111011011111111111110111111111011111011111111110011111110110000111111101111110111111111111111111111111111111100011111111101100111111101101101111111111101010111111110111011111111011101111111101011111111111111111111111111110101111111101111111010111111101111111111111111011111111111011101111111011110011111111111110111010111111111011111110110111111111111111111111111111111111111111111111111111111111111111111111111010111111111010111111111111111111111111111111111111111111111111111011111111101111101111101111011111111010011011111110110101011111110111111111111111111111111111111111111111110101111111111101111111111011111111111011010111111111111111111111111111111101111100111111111110111111110110111111111111111111111111101111111001111111110011111111111111111111110101111111110011111110111111111111111111111110111111111011111111011111111111111111111111111111111111111111110111011011111111111101111101011111101101111011101110101111111111111111111101111111111110011110111111011111111111111111111111111111110110111111111111111111111111111111111111111111101101011111111011111111111111111111111111111111111111111101101111111111011111111111111111111111111111111111111111111111101101110111111111111111111011111111011111011111111111111111111111011111111111111111111111111111110111111110111111111011101101111111110111111111111110111111111111111111001101111111101111111111111111111111111111111111011111111111011111011111101111111111110011111111111101111111111111111111001011111111111111111111111101111110110111011011110110011111111111111011010111111111111111111111101111101011101111111011011011101111111011110111111011111111111111111111101111011111101111111111010111111111111111111111111111101111111111111111011111111011111111111111111111111111111111010111111111111011011010111111111111111011011111111111101110111111111111101111111011111110111111110111111111111111111111111111111011001101111111111111111111111111111111101111111101111111111111111111101110101111110101111111101011111111110111111111111111111110011111010111111111101111100101111101111111111111110111101111110111111111111111111111111111111111111101111111111010110111101101111101110111111111111110111111111111111101011111101111111111111111111111111110011111110111111111111111111111111111111111111111111011111111111111111110111111111011111111111111111011110111111111111101111111111111111010011111111111111110111001110111111111111111111111111111111110011111111110111001111111111111111111110110101111101111100111101111111111111111111111111111111111011111110111111111111110111111101111111111110111101111111111110111111011111111110111111111111111101111111111111111111011101111111101011111111111111011111011111111111111111111110101111111111011111111111101111111110111111111110111111111101111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111111111110110111011110111110111111111111111111111110111111101111111111111111101111111111111111101111111101111111111111101111111111111111101110111111111111111111111111111001110011111010111111111111111111111111101111111111111110111111111111111111111011110101101111111111111110100111111011111111111111011111111111110111111111110100111101111101101111111111111111111111111111101111101110111111111111111101111011111111111111111101111111011111110111110110111111111111111111111111111011111110111111111111111010111111111111111111111101110111110110111111101110111111111111111100111101111111110111111011101111111111111001111111111111111111111111111111011111100111101111111111111111111110111110111111111110110011111111111111011111011011111111111011111101111111101111110110111111111111111111101111111111111111011111111110111111101111011011111110111111111111111011111111111111111111011111111111111111111111111111111011110111111111011111111101111111111111111111111111111110110111111111111111011101111111111111111111111111010111111111110111111110110101111111111111111111111011101111111111111101111111011110111111111111111110101111111111011111011111111111111111111111110111101011111111111101111110111111111110111010111111111111011111111010111111011011111111111111111111111111110001101111111111111111111111111100111111111011010111111111111111111111111110111011111111111111111111111111111111111111111001111111101111111111011111111011101111111110111101110111111111111111111111011111111101111111111101111111111111111110111111011111111111101111011111111111111111111001111111110010111111111111111111111111111111111111111101011111111111111011111111111111111111111111111111111111101111011111111111111110111000101111111111100111110111111011111011101111111111111111111111111011111111111111011111111011111111111111111111111111111111111111111111111111111111111011111111111111111111101111111111110111111111111111111111111111111111111111111111111111111111111111111110111111111110111101101111111101101111111101110111111111111110111110011111111111111111111111111111111111111111110111011111111111111111011101111111111101111111111111111101111111111011111111111011111111111111111111001111111111111111111101111111111111111111111111101101111111110111111110101111111111011111110111111111111111111111111111101111111111111111101111111111111111101011110111011110111101110111111111111111101111111111101111111111111110111111110111110111111111111111111111111111101010111111111111110111110101110111111111111101111111110101111111111011111110011011111111111111111110101111011111111111111011111111111101111111111111111111110111010111111111111111111011010111111110101111110101111111111111110111111111111101111111111111111110111110111111111101011011111011111111110111111111110111011111111111111111111111111011011101111111011101111111111111111110011111111011111111111111111111101111111111110101111111111111111111111111111111101111111111101111111111111111101111110111100111111110111111110111111111011110111111111100111111111111110111111111011111110111111111111111111111011101111111111111011111101111111111111111011111111101111111111111100111111011111111111111111111111111111111111110111111101100111111111101111111111111111110111111011111101111111110111111011111111111111111111111111111111111111111111111110111011111111011111011111111111011111111111111111111111111111111101111111111111111111111111011111111111100101011111111011111111111111111111111101111111111111111111101111111111101110111101111111111111011101111100111111111111101101111111011111111111111111111111111101011111111111111111011111111111111110111111111111111111111111101111111110111111011111111111111110111110101111111111111111111111000111110110111111011111111101111111111111111111111111111111100111111111111011111111011111110111111111111101101111111111111111011111111111101111111111111110111111111111111111111111111110111110111111110111111111111101111111110111110111111110111111111111111101111111111111111111111111111110101111011111110111101111101111111111111111101111011111111010011111111010111101111111111111110111111111111011111111011111111111010110111101111111011111111110110011111111111110011011110111101111111111110111111111011111111111111111110111101111101111111111111111111111111111101011111111111111111011111111111111101111111111110011111111111111111111111110111111111111111111111111011111111111111111101111101111111101110111111111111011111111111111111111111111110111111111110111101111111111111111111111111111111110011111111111111111111101111111011111111010111111111111110111111111110011111111111111111111111111111111101111111111011011111111111111111111111111111111011111011111101111011011111111011110111111111111111111111111111111111110110111111111100111111111101111111011011111111111111111011110111111111111111111110110111111111111111011111111111111111101110111111111111111111111111111110111111101111111111101111111111111111110011101111101111111111111111111111111111011111111111111111111110111101111111111111101111111110111111111001111111111111011011111111111111111011111110111111111111111111010111011111111011111111011111101111111101111111011111111110111111111100101100100001111111111111111111111111111111111111110111111110110111111111111111101111111101111101111111111101111111101111111111111111011110111111111111111101111110111111110111111111111111011111111110111011111101011111111110111111111111111011111111111110111111111111111111111111111111111111111110111110111110111111011111111111111101101111111111111111111111101111111101101101111110110101111101111111011111111101111111111111111101111010111110111111111111111111111111010011111111111111111001111110111111111010111011111111111111111011100111111111111111111110111111011111111110111111111110101111011111111011011111110111111111110111111111111111111111111111111111111111111111110111111001111111111111110111111110111111011111111111111111111111111011111011101111111111110110111111110111111111101111111100111111111111111110111111111111111111111111111111101111111110111111111111111111111111111111111110111111011111111111111111111111111111111111111111111110111111111111111111111111111101111011111111111111111111101111111110111111111111111101111111110111110011110111101111111111111111110111110001111111111110111011111111111111110111111011110111111111111101011111111111111111101111111101111110011111111110111111111111111101111111111111111111111111101111111111111111110011111111111111111111111111011011110110111111111111111111111111111111111111111111111111111110111111111111111010111101011111110111110111111111111110011101111111111111111111110111011111111101111111101111111111111011111111111111110111111111111111111111111111111111111111111111111111111111110111011111011111111011011101111111111111111111111111111111110110111111111111110111111111110011111111111111011111111110111101111111111111011111111111111111110111110111111111111101111011111101111111111111011100110111111110111011010111111111111111111111100111111011111011111111111111101110111111011111111111101111111011011111111111110111110111111111111111111110111111111101011111111111011011110111111101111111111111111110111110111111101111111111111111111111111111111101111111101011011111111111111111110111011111110111111111111101111111110111110111011111110011111011111111111111111110010111111111111101111110011111111111111111111111011111110111111111111111111101111111111011111111111111111111111111111111110111101111111110111111110111111111111111110101111111111111001110111111110111011111011111011101111111110111111111111111111111111111111110111111111111110111111111111111111101111111111101111111111111111111111111011111101111111111111111011111111111111111111111011011110111101111111111110011101111111111111111111101111111111111111111111111011111111111111111111111111111011111111111111111011111111111111111110111101011111111111011011111111111111111111011011111111101111111111111110111111111111111111111110111111111111111100111101101111111111111111111111111111101111111111101111111111111111111101010101111101110001110101011111111111111101101111110111111111001101110111111111111111111011111111111011111111101110111111111011111111111111111111011111111111111110111101111111111111111111011111011111010010111011111111111111111111011111111111111111111111111011111111111111111111111111111111111111111111111011111111111111111111111111011011111111111110111101111111111111111111111111111111111111111111111111111111111111111111111101111111111011111111111111110111111111111111111110101111101111111111111111111111011111011111110111111011011111101111111111110111111110111011111111111111111111111111111111101111101011111111111111111111111101111111111011111111111101111111111111111111111111011111101011111101111111101011111110110101111111111111111111111111111111111111111111111011111110111111110110111001111111111111111111010111111111111011111111111111101101011111111111111111111111111111111111111111111101111111101011111110111111100111111110111111111111111001111101011111111111111111011111111111111111111011110111110111111111111101101111111111101101100111111111111111111111111011111110111111111111111111111110011011111111111111111111011111110111101101111111111011111101111111111111111111111110111011111111111101010111101101111111101100111111111111111111111110111111111111111111111110110111111111111111111110111011101111111111111101111110111111111111111111101111111111111111111011111111111111110111111111111111111111111111111011111111111101111111110111111111111111011111111111111111110011011111111111111011101011111111111111111111111111110111111111111101111100101111111111001111111110110111111101111111111111111111111111110011111101111111100111111101111111110111111111111111111111111110111101111111101111111101011111111111101111111111101111001111011111111111111011111111111111101111111111111111101111111011111011111110111111111111111111101111111110111111101111111111100111111011011111111111111111111101111110111111111111111111111111111111011111111110111101111011111111111111100111111111111111111111010111111111111111101110010110111111111110111011111111110011111111110111111111110111111101111111111111111110111101111110111111101111111111111111111111110101111111111111111111111111110111111111111111111111011110111111111111111101011111111111111111111111111111011101111101111110111111111111110111111111111011111101011111111111111111111111110011111111111111101111111101111011010111111111111110111111111111111110111101111111110101111111011011110011011111111111111101100111101111011110110111111111111111111001110010111011111111110111110110111110111111011111101111111111111111111111101111111111111101101011101111111111111110111111101111111111011111011110111111111111111101010110111111111111111111111101111101111111111110111110101111111111111111111110111111111111111111111111111111011111011000111111111111111111111110111101111101111111111111111111111111111101101111111111110101111001011011111111111111111110111111111111111111111111010111111111111011111111111111111110111110111011110111111110101101111101111111011111111111011111111101111111111111111111111011111111011111111111111110111111111111111111011011111111111111111111111111111111111111011111111101111111111100011111111011111110111111111111111111111111111001110011110111111111111111111111111111111011111111101111111111111110111101111111011111111111111010111111110111111111101111111111111011111001110101111110111111111111110111111110111111111110111111111111111011111111111111011111111111001111111111111011111111110111111111111111111111001101111111011101111111101011111011111111111101111111111111111111101111111111110101111111111101011111111101011111111111111111111111101001111011111111111111101111110111111111111111111011111111111111111111111101111111111111111111111111111111111011111111111110111111111110111111111111011111111111111111111111111111111111111101011111111111101110111111111101111110111111111111111111111111111101101111111011111111011111011111111101111111101111111111011111111011101001111111111011111111110011111111111111010110111111011001111111111111111111111010111111111111111111101111011111111111111111111111111011111111111111111110111111111111111111011110111111111101111111110111111111111011111111111111111111111111110111111111101111111111111111111111110111111111011111111111111111111111111111111111111111111111111111111111111111111100111111111111111111101111111111111011111111101111011111111110111111111101111111111111111011111111111111111111110111111001111111111111111110011111111111110111011111111111111111111010111111111111111111111110111111111111111111111111111111111011111011111111111011111111111111110111111111110111111111110101111111101110111001111101111111111111101111111111011111111111111111111111111111111110110111010111111111111111111111111011110111111101110111111111111111101111110111111111011111111110011100011111111111011111111111011111111111101111111111111111111111111111111000111111111011110111110100011110001111111111111111111111110111111111111111111111111110001111111111111111111011111111110111111011111011110111111111111101111110111111111111111011111011111111111111111111111011011111111110110111011111111111011111111111111111111111111101011110111111111111011111111111111111101111111111111111111111111111101111101111010111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111101111111111111111111110111111111111111111111110111110111111111111111101111101011101111011111111111111111101010110111011111111111111111111111011111111111011011111111111111111101111011111111111111111111101111111111111111101111110111111111011101111011111111111011110111011111110111011111111101111111111111110111111111011111110111111111111111111111101111110111111111111110111001111111111111101111111011111111010111011111111011101111111110111111111011111111111111111111110111111110111111111011111111111111011111110111111111111111111111101111111110111111101111011111101111011101111111111110110111111111111111111111111111111111111111111101111111111111111111111111101111011111111111111110111011111110111111111111111111111110111111111101010111111111011111111011111111111110110100011111110110111111111011111111111111111111111111011111011111110111111111111110111111111111111111111111111111111111011111101111111111101111111111111111111111111111101111111110101111110110110111110110111111111111111111111111111111100111111101101111111011111111111101100111110111111111111111111101001111111111111111111111111111111111011111111111111111111110111111111111111111101111111011111110011111111111111111011110111111111111111111111001111111111111111111111111111110111111110111111111111011011111011111111111011111101111011011111111101111110101111101111111101111111111111111111111111111111111011111111111111011111111111111101111111011111111101111110111011111101100101011101111111111111111010110111111011101111110110111011111111111111111111111011111111110111011111111111111111111111101111111110011011111111110111111111111111111111111111111010101111111011111111111101111111110110111111111011111111111111111010111011110111111111011111111111101111111111111111111111111111111111111111111111111111111101111110111111101111111111111111111111111111111111111101111111111111111111111111110010111111001111111110110111111111111111111111111101111111100111111110111111101111111111111111011101111011011011111111110110111110111101101111111111010011110111111011111111111110111111011111110001111110111111101111101110111111111011111011111011111111111111110011111101111111110111111111111111100011110111111101111101111111111111111110111011111111111110111111111111101111101111101111111111111111111111111111111111111101111101111111111001111111111111111111111111111111111110111111101111111111111111111110111110111111001110111100111111111110111111111111111111111110111011101111111111111111111111101101111111111111111111110111111111111101111101111111101111111111111111111111011111110111111101111101111111111111111011101111111111001111111111111111111111011101111111011111111111111111111111011111111001111111011011010111111110111111111110111111110111111111111111111111111111111101111111111111111111111111110111111111111111111011111111101111111101011101101111111111111111111111111111110110101111111010111111111111111101111111111111111111011010011111111111110011110111111111011111111110111101111111111111111111111111111111111011111111111111111111111111111111111111111110111111111011111111111111110100111111111110111111101111011111111111011111111011111111101011111111101011011111110111111111111111111111111111100111011110111111111111011111111111111011111111100111111111110111111111111111111110111111111111111111111110111111111111110101111111111101110111111011011111111111111111111111111111111111101111111111111111111111111011111111111111011011111111111101111111011111111111111111011111111111110101111100111111111111111111111111011111111011110110110111011111111111101111111111111111111111111111011111111011111111111111111110011101011111111110111111111110111111111111110111111011011111111101011111111110111011111011111111101111111111111101101011111111101011111111111111111111111111111111111111111111111111011011111111011000111101111111111111111111111111111110111111111110111111111110111111111111001111111111111011111111111111111101001111111011111010101111111011110111011111111101110010101111111111111010111111111111111010111111011011111011011110111111111111111111111111111111011011110100011111111111110011111111111110100111101101111111111111111111101111111110111111111111110111111011101111111111100111011111100111111011010110111111111111111011111111111101111111111111110101111101111111111111101111111111111111111111111111111011101111011111110110111101101111111011011111101110011111011111111111011110111111111111110111111101111011111101101110011111111111111111111111111101111111111111011111111100111110111110110111111111111111011110110011111111111111111111111111111111111101111111110111101111111111111110111111111111111111111101111110111111111111111111111111111111111101111111111011111110111111111111111111011111111110111111111101111111111111110110111111100111111111111111111111111111101111111111111111111011111111111111111111111111111111111111110111110111000110111110111111111111111101111110110111110111111111001111111111011110111111101111111111111101011111111111111111101110111111111111111110111111111111101111111111111111111111011111111111111111110111111111111111111110111111111111111111001111011111111111110101111101111111111101110111111111111011111111111111011111111111111011110111111111111111111111011010111111111111111101111111111111111111111111111011101011011111111011101111111110111111111111111111111101111111100111111110111111110111101111111111111101111111111111111101111011111011111110111111011101111011111111011111111111111111111111111111111111111011111101111111111110111110111101111111101111110111011111011111101111111111111111111111011111111111111101111111111111111111111111111011111111100111110111011011111111111111011111111111111111101111111110111110111111111111111111111111111111111111110111111011111110111101110111111111111110111111111111111011111111101111111010011011111111111110111101111111101111111111111110111111011111111111111111011101111111111111111111111111101111001111111111111111111110111101111111111111111111111111111111011101111101110111111111111111110011111111011111111011110111111111111111011111111111111111101111101111111111111111111111111101111110111111110111111101111110111111111011101101111110111011111101111111111101111111111111111111111111111101111111111011111101111111011011111111110000111011111101110111111101111111111111111011101011111111011111111110111101111111111111111101011011111111111011111111101011111110111001111111111101111110111101111111111111111111111111111111111111111111111111111111111010011111011101111111111111110111011111111011111111111111111111111011111011011111111111101110111111111101111111101110101011111111111111111110111111111111111111101111111111111111111011101111011011111010111111111111111111111110111111111111111111111111111011010111111111111111111110111111111111111101111011111111111111000111111011111111111111111111111101111111110011111011011111111111111111111111101111110111101111101111111111111111111111111111111111110110111011111111111111111111111111111010111011111111101111101111111111111111111111110111111111111111111101111111101111111111110110011011011111111111111111111010111111111111111111111111101111111111111111111111111101111110110111111111111111111111111111111111111101011101111111111111111011111100111111111011111111111111111111111011101111011111111001111111111111111111111101100111111111111111111111111111111111111111111111111111111101111111111111111111101111111011111111110110111010111111111111111011110111111110111011111110111111111111111101111111111100111111111111111101111111111111111011100111111111111111111111011110111111111111111111111111111011110111111011111111111111111101111111111111111011111111111111111111111111110111111011111100111101110111111111111011110101111110111100111111111111111111111111010100110111111111011111010101111111111111111101111111111111111101111111111100111111111111110110111111110111111111111111101111111110011111111011111111111011111111111111111110111111111111111110111110110111111111110111101111111110101101111101111111111111111111111111111111111111111111111101110111111111110111111110111101101010111111101111111011111111111111111111111111111111111101111111101111111111110111101111101011111110111111111111101111111111101111111111111111111111111101111111111111111111110111110111111111111011011101111011111111111111111111111111111111111111111111111001111111110111111101011111111111111111111111111111011111111111111110111011111111111111111011111111111111110111111111111111111011111111111110111111011111111111111111110111111111111111111111111111111111101111111011111111011011111111111111101001101010111111111110101111111111101111111101011111111111111011111111111111111111111111111111101011111111111111111111111111101111111110111111110100110111110110111111111111111111011011111111111111111111111111111111101011111111011111111111011111111111111111111111001111111111111111111101111110111111111111111111111111111111111101111011110111111111011111111111111111111111101111111100111101111101111110111111111111101111111111111111110111111111110111110111011111011101110011111111011111111111111101111111011111111011101111111111111111011101011111111011011111101111111101010100111111111111111111111111111111011110111111111111111111111101111111111111111111111101111011111111001111101111111110111111111111111111110111101101111011111011100111111111111110111011111111111111111011111111111111111111111111111111111111111111111111111101111111111011110111111111111101111111111111111111111111111111111111111110110111101111011111101111111101011111111111111111110111111111111111111111111111111111111111111111101111111110111111111111011111111011111111111010111101110111010111111111111110111111111110111101111111111111111111111111011101011111111111111111111111101111011111111111111111111111111111111111111111111101111111111011110001110111011011111111111110111110111111111111101011111111101111101111111111111101111111111110111111111111111111111101111110111111111111111111011111111111111111111011111110111111111111111111110111111110111111111111110111111111111011111111111011111111111111001111111101111110111111111111111111111101111111111111111011110111111111111011111111111101111111111111111111111111111111111111111011111111111111111111011111111111111101110100110111111100111111111111111111111111111111111101101101110110001111111101111110110111111110110111111111101111111111111111111111111111111111111111111110111111011101111111101111111111111111011111101111110111111111111111111110011111111111111111111110111111111111111101111101101011111111011110110111111111111111101111111111111011111111111111111111101111111111011111111111111101110111111111111111110111111111111111111101111110101111111111111101111111111101111011111111111111111111111111111111111011111111111111111111111111111111111110010111111111111111111111011111011111111111111011111101111011111111111111111111111111111111111111110101111011111111111111101111111011111111111011111111111111111111111111111010111101111111111111111111111111111011111111111111111111111111101111011111111100111110111111111111111111011011011111111111111111111111111111111101101111001111111011111111111111111100111111111111111111011111111101101111111110111111011011111111111111111111111111110111111111111011111111100111111111111111111011101111101111111111111111101110111101111111111111111010111111001011011111111111101010011111111111110111111111111101111111111111111101011111111111111011111111111111111011111111101111111110111110110111111101101111111111110111111101111111110111111101111111111110101111111111111111111011111111111111110110011111111110111111111111110111111111111111111111111111111110111111011111001111111111011111111101111111111111111111111111111100111111111111011001110111111111111111111111111110111111111111111111101111111111111111111111111111111111111111111111101111111111101111101110111111011111101101101111111111111111111111111111111111111111111101111111111101111111111011111011011111111011111111101110111111111111111111111111111111110111111011111111111111111111110111011101111111111110111101111111111011110111011111010111111101111111101101111101101110111110111011111111011111110111111111110111111110111111110111111111111111111111110011100111111010111111111110101111111111111111111111111111111111111111111101101111111111111111111111001111111111111111001001111111111111100111110011111111111111010111111101110110101101111111111101111111101111111111011110111011111111100111101111111111111110111101111111111111111111111110111111111111111111111110111111111111111011101111111011111011111100100011111101111111111111111011111111110111111111111111111101111111011111111101101111111111111110001111111011011111111111111111111011111110111111111110111111111101111111101110111011011111111111111111111111011111011111111111111111011111110111110110111111111111111111111101111111100111111111110011111011111111111111111110111111110111111111101111011111111111111111110111111101111111011111111111111111111111111111111111111110011110111111111111101111111111010111111111011111111110111111111111111111111111111111101111111001111111111111110111111110111111111111111111111111111110110111111111111111111101101011111011111011011111111111111111011111111111111111111110010111111111111111111101111111110111101110111111010111111101111111111111011111111011111101110111111111111111111110100111111111111111111111111111011111111101111111101111111111011011111111111111011110111111111101111011111110111111111111111011110111111011111111111111111111111111111101110011111111111111111111111001101101111001110101111111111101101101111111111111111111111111111111011100011111111111111101110111111111111111111111111111111111111011111111001111111110111111111101111111111111111111011111111111111101111111111111111111101111111111111110111111111101111111111111111111111111111111111111110111101111111111111101101111110111111100111111111111111111111111111111111111101111110111111111111111111111111110111101110111111111111111111111101111111111011111111111111111111101011111111011010111111011111111110111111111111111111111110101101111101110011111111110111111111111111111111111101111111011111110111011111111111110011111111111111111011111111111111111111111111111111101101111011111111101111111111101111101111111111111111111111111101110111111111111111111111111111111111111011111111111111111110011111111111111110111001111111111111111110101110011111111111111111111011111111111110110111111111111111111111111111111111111111101101111111111101111111111111111111111111110111101101111111111011111011111011111111111111111111111111111111111111111111111111111111111101111011111111111111111110111111111111111011110111111011111111111011111110111111111111101111101011111111111111111111111111111111111111111111111111111111011010011111101111111111111111111110011111111111111111111010111010111111111111110111111111101101111111111010111111011111111011001110111111111111111011111010111111111111101111111111100111111011110111111111111111111111110110110111011111111111111111111010111110101111111011111011111111110111111111111111011011111101111111111111111111111011110111111111111101111111110111111110011111111111111011111111111111101011111111011011111111111111111111111111101101111111111111110111110111111111111111011111010111111111111011111111111011101110111111110111011111001000111111111111111101011111111110111111110110111111111111110011111011111111111111111111111110111111011111111111110110111111111111111011111110111111111101111101111111101111111111111111110111111111111111111111111111101111111110111111111011110111111111111111111111111111011111011111111111111111010111111111111111011111111111111110111111011111111111111111101111111111111111111111111111111111110101111111111111111011101111111111111111111111101111111111111111011111111111111111111111100111111101101110111111111111111111111111111111111111111111111111101111101111111111111111111110101111011111111111111111111101111111111011111111110101111111111111110111111111011111111110111111110111010111111011111111110010111111111110111111111111111111111111110100111111111011011111111111011111111111100111011111111111111111111111111111111111111100001111101110111111111111111111111111101111111111111101111011101110110101111011111001111110111101111111111111111111111111111111101111111111101111111111111111111111110011110111111111111111111111111111111101011111111110011111101111101111101111111111111111111111111111111110111111111111111111110111111111111111111111111111111111101111110111111111111111111111111011011111111111111111111111111111111111111111111111111110111111111101111111011111111111111111101111111111111111110101111110111111111110111111111111001111111111111011101110011111110111111111111111111111111111111011110111110111111001111111011111111111101111111111110110111111111111111101111111111111111111111111110111101111111111111111111111111111111101111101011110111111101111111111111111111111110111111111111011111111111101111111111111111110111100111111111111111101110101111101111101111110101110001101101111111111111111111111111110111101111111111111101111111110011111111111110111111111111011111111111111111101111111011110111111101001101101011111111111110101111111111111111111111111111111111011111110111111111011111011111111111111110111101111111111111111111011111111111111111110111111111111111111111111111101011111111110101111111111101111100111111111111111111011111011111111111111011111111111111111111111111111111100111011111100110111111110110110111111111101111111111111111101111111111110011111111110111111101111111101111111111111111111111111111111110111111111111111111111111111111000111101101111111111111111111111111111111111111111111111111111000111111111111111111011111011111110111111101111101111101111111101011111111111011111111111111111111111111111101111111111111111111101110111111110111111111011111111111101111010111110111101111111111101111111111111111110111111111111111111111111011101110111111111111110111111111111101101111111111011111101111111110111111001010111111011111111111111111111111111111101111111111111111111111111011111111111111111111111111111111111111111111111111100111111111111111111111111111111110111001111001111001111111111111111011111111111111111011111111111101011011111111111111111111111111111111111111111111111111110110111111111111111011111111111111111011110111011111011111110111111111111111111101111011111111100111101111111101101111111111111110111111111111110111111111111011010111101111111011111111111111011111111011101101111111111111111111111010111111111111110111111111111111110011111101111011101111111111111111111111111111111111111111111111111111111111111010001111111110101111101111111111111111110111111111111110011011111111111111111111111111111101111111110001111111101101111111111011111011111101111011101111111101111111111111110111101111101101111111111111111111111111111011111111111111101111111111111111111101101111111111111111111111111111111010111101101111111111110111011101111011100101111111110101111111111101110111111111111101011101011111111111111111101101111111001111111111111101111111011111011101111111111011111111111111111111111111111111111101111110111011111111111110111111111110111111111111111111110111111111111111111010111111111100011011111011111111110111111111110011111111111111111111111111111111111011011111111111111111111111111111111111111101011111111101111111011111011111111011111111111111111111111111111111011111111111111111011111111111111111111110111100111111111111111111111111111111111111011111011111110111111111111111111111111111111111101111101111111111111111111111111111111111110111111111111111111101111011110111111110110111111111111111101110111111011101111100111111111101111110111111111111111100011101111110011111011110110111111111111111101111111111111111111111111110111111111110111111111110101101110111111111111111111111011111111111111111111111111111111011111111111111111111111111111111111011111111101111111111111111111111111101111011111111111111111111101011111111101111111111111111011111111011110111111010111110111011111011111111101111111111101111011111111111111111111111111111111110111110011110111111111011011111111111110101011111111111111111111101111111111111111111111111111011111111111111111111111111111111111101111111111111111111110111111111111111111111011101111111111111111111111111111111111101111111110111111111111111111100110110111110101110110111110111111111101111111101111111001111111101111111111111111111111111011111111101111111111111111111010111111101111101011111101111111111111011111111111111101111111111111101101111110111111110101111111111111111101111101011111101111111111001111111111111101110111111111111111111111111111111111111011111111111110111101111111111111111101101011111101011111011111111111111111101101111111111110111111111111111111111101111111111101110111111111111111111111111111110111110111111111111111111111111111111111111111111110111011111111110111111111111111111111111011111011111111111111011111011011011100011111101111111011111101110111111111111110111011001011111110010111111111111111111111111111111110111111111101111111011011111111111011111011111111011111111111111111110011011111110101111111111111111111111011111111111111111111111101111111111111111111111111111111101111111111111111111011111111110111101111111111111111011111111111101111110110111011111100110111111111111111111111111111111111011011111110111111011111111111111111111110111111111101111111110110111111111111111111111111110111111111111111111110111111111011111111111111111111011010111111111111111111111111011111111111111111111101111111111111111011111111111111111011111111111011111111111111111110101111110110111110101111110101111111111111111111001111011101101111111111011111101111111101111111111111111011011111111111101111110101111101111111111111111111111111111111111111111110111101111111111111111111111101111111111111111111111111111110110111111111111111111111110110111111111111111111111011110111110111111011111111111111101101101111111111101101110111011111111111101111101110111110111110011111101111111110001111111111111111111011111111111111111011101111111111111101111111010011110111111111111111111111111111101111111111110111110111111111011111111111011111111111101001101111111111111111111111101111101111110111111111111101111111111111111111111111111111111111111111111111111011111011111011111111111111111111010100110101111111111111101111111111111111111100111110100110101111111110111111111111111110111011101111111111011111111111111111111111111101111110111111111111111111111111011011111111111111101111110111111111101111101011111111111001111110110110101011111111111011111011111101111111111111111101111111101111111111111111111111111111111111111101010111011111111011111011111111111111111111111111111101011111111111111111110111111111110111101111111110101111111111111111001111111111101110111111111111111111111110111101111111111111011111111111111101111001111111111110111111011101111110111001111111111111101111110111111110111011111011111001111111111111111110010111111110111111110111111011101111111111111111111110111111111111111111111111111111111111111111111111111111111101101111111011111010111111111111111101111111111111111111111110011111111110111011111111111111110011111111111111111101111111111110111101111110111111111111111101111101011111111111111111010111101111111110111111111101110111101111111111111101111111111111011111111111111111111111111111111111101110111011111111111111111111101111111111111101011111101111011111111111111111100111111111111111111101111010111111111110111011111111111111111111111111111111111111111111010111111111111111111111111111111101010111111111111111111111111111111111111111111111111111111111111101101111111111101101111111110111111111110111111111111101111111111111111111111111101111101111011110111111111111111111111110111111111111111111011111111111111110110111111101111111111111101111011111111111111011111111110111111111010111011111111111101111110111111111111110110101111001111111111010111111111111111101111111111111101011111111111111111111110111110111111011110011111111111110111111101111100111111111111111110111111111110111111111111111111001111111111111110111111101011110111110111111001111111111111110101111101111110111111111111111111111111111111101111101110111111111101111111111011011101111111011011111111111111111111110111111111111111111011111111111111111111110110111111111010111011111111111111111101111011111111111111111111111111111101111111111111100111111111111111111111111001111111011111111111101111111111111111111101101011111010011111011111111111011111111111110111111110110111111111111111111110111111011111111111111111111111111111110110111011111011111111011111101111111111111111111111101110111111111111111111111111111101111111111110111011111111111101111111111111111110111111111110011111110111111111111111111110111111111111111111011111111111101111111011111111111111110111111111111111111111110111111011111111111111111111101011111111101111111111111111111111111101111111101101110110111111101111111111101111111000111111101111111111001111111101101111111111111001111111101111111111111111111111111111100111111110111111011111101011111101110111111111111110111111111111111011111111111011111011111101101110111110111111111111111111110111111111111001111111111111101011111111111011101111111111011111111111011111111111111110110111101111111111010111101111110111111111111110111111111111011111111101111111110111111111111110111110111111111101111111111110111111111111101111111001111111111111111110111111110111111111111111111111111111111101111011101111111100011011111111111111001111111111101111111111111111111111111011111111011111110111111111111111110111111111111111111111111111111111111111101011111111111101101101011111111111011111111101111111111111111111111111111111101111111111111011111111110111111011111111111111111111111111111111111111111111111011111111101000111110111111111111111111110101011011110111111111110011101111101111101111101101111011111111101111111101111110111110111111111111101111111111011011111111111111111111101111111011111111111111111111111111110100111111111111110100111100111110111101111101111111111011111011111111111111111101111111111011111111111111110110111101101111111111111111111111111111111111111100100111111111111011011110111111111110111111111101111111111111111111110101111111111110111111111111111111111011111110111011111100111111111111111011001111111111111111111011110111110111111111110111111111111111111101111011100011111111111111111101111111101110111111110111111111111110111110111111111111111100111101111111101111101111111111101111110111111111111111111111111111111111111111111101111111111111111111111111101111110101111010111111111111111111111111011101111111111111111111111011111111111111111111110111111111111111111101111111111101111111011111111111111111110111111111111111111111111110111111111011111111111111110111111111101111111111111111111111111111111111111111101111111111111111111011101111111111111111101111111011110111111111111111110011111111111101111111110110111111011111011101101111111111001111111111111111111011111111111111111111111111111111111111111111111110110111110011111110111111110111111111111111111111111101111101111111111111111101111111111111010111011111111010111111101111111001111101111110111111111110111111111111011111111111101011111111011111111111011101111111111111111111111111111111111111101111110111111111011111111011101011101010111111111110111111111011111011101111111111101111111111010111111111111001111111111111110111111111111111111111111101110111111111111111101101111111111110111111111010111011110111111111111011111011111101111111111111111110111111110111011111110111111011111111111111101111111111101111111011110111111001111100111110111111101111011111111111111111010110111111101110110110011011110111011111110111111111111111111111111111101111111111111111010111111111111111111111111111111111111111111111011101111111111011111111111011111111101111111111111111111111001110110111111111111111111111111011111101111111111101111111011111110101111111011111111111111100111111111111111111111111111101110111111111101011111110111111111111111111111111111111111111001111011111111111011111110111111110111111111111111111111111111111110111111011011111111111111111111011111111111111111011111011111111111110111111111111111111111111111111110111111011101111110011110111111001011111111111011111101110110101111111111111111111111011111001111101011111111110111101110111111111101111110111101111110111111111111111111110101010110111111111111011111111111111111111111110111111111111111111111010111111110111111111111011011111111111111011111111111110010111001111111011111011111111111111101111111110111111111111111111111011111111111111110111111111110111110111111111111111111111111100111111111011110111100111111111111111111111111101111101111111111111111110111111111111111011111011101111111111111101111111011101111111111111111111111111011111111111110111111111111111110110110011011111110011111101111111011101111111101101111111101101111111111101111111111011011111110111111111111111011111011111111011111001110111111111111101111111111111111111111111111111111111111111111111111111111110111011111111011011111111111111111111111111111110111111110101111111111111111101110111111111111111111101111011010111111111111111101111110111111111111111111111111111111111101111111111111101110100110110111111111111111111111101111111011110111111111111111111111110111111111111111111111111111111101111111111111111111101111011011111111110101111111111111101111111111111111111111011110011110111111111111111111111011111101111111111010111111011111111110110111101101011011100111111111111010111111111111111111111110111111111111111111101111011111111111111111111111111111111011111101011101011111111111011100111111111110011111111111111110111111111111111101111111110011111101111111101101110111111111111111110101111111111111111111111111110111111101111110111110110111011011110111111111011111111110111111111111111111111111111111110111111110110101111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111101111101101111111111111101111111111111101111111111110110111010011111101110111110111111111111101111111110111011111111111111111111111101111110011111111111111110111111111111110111111111111101111110101011111111111111111111101111111111111101111111111111111101111111111101111101111101011111111111111111011111111101111011100101011111111011111101111111111111111001111111111110111111111111111111111110111011110111111101101111111111110110101111111111111111101111111110111101011111111010011111101101111111101111101111111111111111111111111111111111011110111111111111101011110101110111101111101111111111111111111111111111111110111110110111110111111111111111111111101111111111111111111110101111111111110111111111111111111101111111011111111101011111011111101111011111111111111111111111111111111111101111111111111111011111111111111111100111111100110111111111111111111101111111110111111111111111111011111111111110111111111111101111111111111101011111111111111001111101111111111101111111111111111011111111111111011101101111111111110111111111111101111111111111111111111111111101111111111011111111011111111111111111111111111111111101111111111111111111111111111111111111111110111111111011011111111101110010101011111111111101111111111111111110111111111111011111111111111111111111111111111111111101011111011111111111011111111111101111111101111111111111101111101111111111111111011011100111111111101101111111111110110111111100111111110111111111111111111111111011111111111111011111111111111111111111111111111111111111111111111111110011111110110110111110111111111111101111111111011101111111101011111111111111101011111111111111111100010011111111110111101111110111111111111110111111111110111111111111110111011111101111111111101111110111111111011111111111111111111011111001011111101011111111111111111111111111111111111111111111111110111101111101101111111111110111111111101111111001011101111111111111111111110111111111111110101111111111111111110111011111111011111111111101111111111101110110111111111111111111110011111011111111111111111111111111111011011111111111111111011111111111111011111111111111111111111111111111011101111111111111111111110111111101111111111111111111111101110111110111111111111111111101111111111111101111011111111110111111111111111111111111111111111111111111011101111111111111111011111111101111111111111111111111111111110111111111111101111111111111111111111110111111111111111110011111111111110111111111111011101111110111111111101111110111111111011101111101111011111111111111111111111111011111111110110111111111110111111111101101111110101101110111101110111111111101111111111111111111111111111111011011111111111101111111111011111111111111111111111001111111110111111111111001110101011111111101111101111111111111111111111101011011111011111111111111011111111011101111111111111111110101111111111111101100101111111011111111111111111111111111111111111111011111111111100111011111011111111111111111101111111111111110111111110111111111101111111111111011111111101111111111011111111111101101111111011111110111111111011111111111111111001111101111111101111101111111111110011111111101111111101111111111111111111111111011011111011101111111111111111111111111111111111110110111111110011111111111110111111110111111111111111011110111011110111101110101111111111010011111011111111111011101111111111111111111111111111111111111111001011110111111111111111111111111111111110111111110111111111111110101111111111100011010111111111111011111111111111111111111111111111111111111101101010111110111111111111111111111111111111110111010110111110111101110111111111111111111111011110111101011111111111111110111111111110011111111111111111111111111111111101101111110011111111111111111111111111111111111111111111110111111111101111111011111111011111111011111011111110011010111110111111111111111101111011110111011111111111111111101101111111111111111111111111111111111111111111101111111111111100111110011111111111110011111111111111111111111011110111111101111111110111110111111010100110111100111110111111111110111111111110111111111111111111111010111111100111111111011101111111011111110111111111110111110010111000011111111111111010111111111111111111111111111111111111111110111111111111111111111000111111111111111111111010110111111101111111011111110111010111111111111111111111111111110111011111111111011101111011001111111111111111101111011111111011111111111111011110111100111110011011110111111111111111111111111111111100111011101111110111111111111111011101111111111011111111111111111011111011110111111110111011111111101101110111110111111101111111111101011101111111111110111001101111111111110011111111111111111101111111111011111111111111111110011111111111111111111111111000111101111111010101111110111101111011111111111111111110011111111111101111111111111011111111111111111111111011111111111101111111110110101111111111110111111110111111111111111111111111111111110111010111111111111111010111111100111111111111111101111111111111111111111111111111011111111111111110111111111111110110111111111111111111111111111111111111111111111111111111111110111011111111111111110111011111111111111111111111111110111111111101101111111111111111111110111011110111111111011111111111111111111111101111111111111111110111110111111111111111111111111101111111011111111111111111111111111111111101111101111101111111111111111111111111111111111111111111111111111111110111111111111111111111111111110111111111101101101111111111100111111111101111111111111110101101111111111111001111110111111110011111111111111110111111111111111101111110111111011111111111111111011111111110111111111111111111111011111111111111111111111111111111111111111101111001111110101111111111110111111011111111101111111111011011111111110101111101111111111111111111111111111111101011111110111111111110111111110111111110011010100111111111111111111111111110111111111111111111111111111111101111111101011111111111011111111111111111011011111100110111111001111111111011111111111111101111110011111111111111111111111111111110100111110111111101110110110111110111111111111111111101111111111111111111100111111111111111101111111111111111111111111111111111111111101011111111111111111111111111111111110111111110111111111111111111111111101111100111011111111111111111111111111111111110111111111111011111111111111111011111111111111101111111111000111010111111111011111111010110111101111111111111111111111101111111111111110111111111111111111011111111111010111111111111111111111111111101011111111110101111111111111111111011111111101111111111111111111111111000111111111111111111111111111111111111111101111111111111111111111011111111111111111110111111111111101111011111111011111111111111111011111111111110111011111111100111111111111110111111111101111110110111111111111111101111111110010111111111111111111111111111011010111111111111011111111111111111111111111111111111111111111111111111101111110011111111111111111111110111111111111011111111011111110111111111111111111111111111111111111001101111111111111111111111111111000011111111111111110111111111111011111111111111111111101111010111011111111011111111110011111111111110111111111111111110111010111111110011101111001111111111111011111111111110111101111111111111111111111111011111111111111111111111111111011110111101101111111111110111111011011111111111111111101111111111111111101111111011111111111111011101111111111111101110111011111111111111111111111111111111111111111111111111111011111111101101101111111111111111111111101111111111101011111111111111111111111010111111101101111111111111111111101110111111110111111111110111110111111111110111111111111111111001111111111011011110111111111111111111111101001111111111111111011011101111111111111111011111111110111111111111110111011111011111111111111111111111111110111111111111111101111111111111111111111111101110111101011101111111111111111110110111111011111111111111111111110111111111111111110011111111111111111100110111111011111111111111111111111111111010001011111111111111011111111101111101101111111101111111111011111111111011110111111111111101111011111111111111111111111111111111111011111111111111111111111111111111110111011111110011111101111111101111111000111111111111110111111101111110111111111111111111111111111111111111111101111011111111111111111111111111111111111111111111101111111010111111100111011111101111111111111111101111110111101111111111111011111101111111101101111111111111111111011111111111111111101111111001111111111111110110011111111111010011111111110111011111010111111110111111101111111111011111111011111111111111111111111111111111111101110011111111011111111111111111111111011111110011111111111111011011110011111111111111111011111011111111111111111111111111111111111111111111111110101111101111101011111111011011011111110110011111111110111111111111111110111111111111111111111011111111111111111111111111111111111111111111101111111111111101111111111001110111111111111111111111011001111111111111111111111101111011110111111111111011111111101111110111111111111111111111101111111111111111111111111111111111111111111110110111111111101111101111110111111110011111111011110111111111111111111111111111111111111111011111111111110101110111111111111111111011111101111111111111111111111111111111101111111111111111111111110011111111101111110011111101111111111111111111111111101111111111010111111111101111111010111111011110111111101111111110111111111111111111111110101111111111111111111111111101101111111111111111111111111111111111111111111010111111111111011111111011111111111111111111111111111111110111111111101111111011111110011111111110111111111111111111111111111111111111111111011011111111111111111111111110111111111111111111111111111111111011111111110111110111110111111011111111111111111111111111111111111111111111111111111011101111111111111111111011100111110111111111111111111111111111111111111101111111111111011111101101111111111011101111100111111111111101111111101011111101111111111111111111111111110011111111111111111111101110111111101111111111111111111111011101111011111111111101110011111111111101111111111011111111110111111111111111111111111111111111111111111111111111111110111101111011111111011111111011011011111101101111111111111011011101111111111111111111110111111001111111111110011111111111111111111011111111110110111111111111111111111111111111111111011110111110111111111111111111111101111111110011111111011111111111101111111111111111111110101111111111111111110101111100111111111111111111111111111111111101101110011111111111111101111101011111111011110111111111011111110111110101111101011101111101111111111101111111111111011111111100111111111111111011011101011111111111111111110110111111111111111101111110111110111111101111111111011010111111101111111011111011111111111111111011111111111111111111111111111111111111111011111011111111111111111111111011111111111111111111110111111111111011111111011111111110111111111111111101111111010111111111111111111011111111111011111111111111111111111111101111111111111110111111111111101011111011111111111111111111111111111111111111111101111111101111111111111111111111111111111101111111111111111111111101111100111111111111111111011111111111011111110111111110011111111111111111111011111111111111111111111110101111111100111111111101011111111111111111111111101111111101111110111111111111111011111110111111111111101111111110111110111111111101111111111110011111111111111111111111101111111111111111111110110111111101111110111111111111111111111101101011111011110111111111111111111111111111111110111101111111101111111111110101111111111111111111011111111101110111111011110111011111101110111111111111111101101110111111111011011111111010111111111111111111111101010111111111111111111111010111111111111111111111011101110101111001111111111101101111111111111111111111111111111111101111010111110101111110111111011111111111110111111011111111111111111111111111011101111111111111111111111111110111111101111111111011011111111111011110111111111110111111011111111111011111111110111011111111011111111111111111111011111111111001111111111111111111111111111110110110101111111111111111110101011111111111111111110111111111111101111111111111111011111111110111111111111111001111101100111111111011011110111111111111111111011111101111111111111111101111111111110110010111011111111111111111111111110111111111111111000111111111111111111111101111111111111111111111101111111111111111110111111111111111111110011111101110101111101101110111110111111111111011111011111111111111110111101111111111111111111111111010101111101111111111110011111101111011111111111111111111111111111111111111111111111011111111111111111111101111111101111111111111111111111111111111111111111111111111111111111111111111111111110110111111111101110101011111111111111010111101011101111111111110111111111111111111101101111111101111111111111111111101111011111111101111111111111111111111111010110111111111111111111111110011111111011111111101111111111111111111111111110101111011111110111101111111011011111111110111111111011111111111111111011101101101111110111111111111101111011111101111111111111111111111111111111111011111111101111110111111110111111111111010111001110111111101100101101111111111111111001011111111111101111111011111111111111111111111111011111111111111111111111011111111111111001111111111111111111010111111101110111111111111111111011111011111111110111011111111011111111111111111111101111111111111111111111111111111111110111001111111111011011101111111111111111101111111111111111111110111101111101101111111111111111110111111101111111111111111111111010111101111111101011111011011111111111111111011010111111011111100111111111110111111111011111111111101111111110111101111111111111111111011111011111111111111111111100111111011111110111110101111111111011111111111111111111011111111111111111111111111111111111111111111111111111110111111111111111111111111111111011110111111010111111111111111111111111111110111111111110111111110011111111111110111111111111110101111111111111111111111011111011101111111111111111111011111111111110111111110110111111111111111111101111111111111111011111111111011110111111111110111111101111011111111111101111111111011111111110111101111111101011111111111110011111101111111111111101111111111110111111111111111111111111111111101110111111111111111101010111111111111011111111111111111111110111111111111111111111111111111111011111111110111111111111111101111111111111111111110111111110111111101111101111111111111111111111111110111111111111111111111111101101111111101111111011011111101111111111111111011101110111110111101011010111111101111111011111110111111111111111111111110111111111011101111111111011111111111011111101111011111111111111111111111111011111111111001111111111111011111111111111111101101101111111000111111001110111111111101111111111110111111111111111111111111111111011111011111111110111111111111111111111111011110111011111111111011111111011111101111111111111111111111110111101011101111011110111010101111111111111111111110111111111111110111111111111011111111111111101111111111111111111001110111111111111111111111111010111011011111110110111111111111111111111111010010111111111100111111111111111111111111111111111110111111111111111111111011111111101111111111111111111111101101111111111101110110111111111111111111111111110101111111111111101111111110111111011111111111111111011101111111111111111111111110111101101111011111111111111111101111111111110111111111111110111111111111111111111111100111011101111111111101111111111110101111111011111111111111110111101111111110111111111111111111110111111111111111111111111111110111111111101111111111111111001111101101101110111011111111011111111111101111111111111100011111110010111101011111101111111111111111101111111111011011101111111111111111111111111111111111111011111110101101101101101110111111111111111101011110111111101010111011010111110011111111111111111111111111111101111111111111111111111111111111110111110111111011001111111111111111100111111111111111111111111101111111111101111111111111111110111111111111111110111111111111111111101101101111111011110101101111111111100111111111111111111111111111101011111111110111111111111111111111111111111111111101111111111111111111111111111111101111111111111111111111111111111010111110111111111111111111111111111111101111110111101111111111111110011111111110111100110111111111111111111111010111101111111101111111111101110111011111111111111111111111111101111111111111111011111111111110111111101111111111111111011011111111111111111111001111111101111111011111111111111111111111101011011111011111100111111111111111111111111111111111111111110011011111111111111111111111101011101110101111110011110111111111111111111111111111111111100111111111101111111101111111011111111110111111111111111111111111111111011111111111101101111111111111101111111111111111011111111111111111111111101111011111111111111011011111111101111111111111110111111111111111101110111111110101111101111111111111110011111011111010111111111011111110111111111111101011101111011011111111111111001110011111111111111111111011111111111111111110111111111110111101101111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111110111111111111100110111011110111011111101101111111111110111111111111111011111111111111111111111111111101111111101111111111110110011111111111111111111111111011011111111111011110111111111111111111101110111111101111110111110111110111111111111011111111111111111111111111010111111111111111111110111110111111111011111111111111011111101111111110101111111111111111111111111110001101111011111110111111111111010111111111111101111111111110111111111111111110111111111001111111101111011111101110111111111111101001011111100111011101111111111111011111111111111111111111111111111111111100011111111111111111111111111111111111111101111111110111111111111111101111111111111111100111111111101111011111111101111111111111111111111111111101111111111101111111111111011110101111111111110011111111111111111111111111111011111111111111111111111111111111101110111111111111111111111110111111111111101111111111110110111111111101111011111011111111111110111111111111111111111111111111111111111111110101111111111111011111111101111101111101111111111111111111111111111111111111111011111110111100111101111111111110111111111011111110011110111111111110111111111111111110111111111110111111111101011111111111111111111101111111111111111110011111111111110111110111101111101111110111011111111101101111111111111111011111111011101111111101111111111111111111110111111111111111111110111111110110111111011111111111111111111011111111111011111111111111111111111111011111111111111111111111111111011111110011111101111111111111111111111111111101011111111011111111111111111111101111111111100010111111111111100111111111111110111101110110111111111111111111110110111111111111011111111111111111111101111111111111111111111111111111111111110110111101111101111110111101111111111111101111101111110111011111111101111111110111011111111111011111111111111111111111111111111111111111111111111111110111101011111111111111011111111111111111111110111111111111111111011111111111111011111111110111111110001111110111111011111110111101111111111111111111111011101111111111101110111101111111011011111111111111111111111011111101011111111111111111011111011111111111111111111111111111101111011111111111111101111111111111011101111111111111111111110111111111111111111101111011111011111111111111111111101111111111111111111111111111011111011111111111111111111111110111101111011111011111111111101111111011111110111010111111111111111111111111111111111110111111111110111111111111111111111111111110111111101001111110111111111111111001111111111111111111111111111111111111111111111111111110101110111111111111110111011111111110111111011111111111111111111111111111111111111111111101111111111100111111111111111111111111011111110111111111101111111111111011111111111111111111111111111111111101101110110011011110111111011111111110111111111111101111111111111111111001111011101111111111011101111111110111111111110111101111111111110110111101111111111111111111111010101111111111111111111111111111111110111111111111111111111101101110011111110111011111111111111111111111110111111111111111111111101111111011111100111111111011101111111011101011111111110110011111111011110111111011111111111111111101111111111111111111111110100101111111111111111111111111110111111111101111111111111111111111011111111110111111011111101111111111111111111111111111111111111111011111101111110111111111111111111111110111111111111111111101111111101101111111111111111111111111111111111111111101111111011101111110111101111111110111101111111111011010111111111111111111010110111111111111111111111111111111111011111111110111111111111111111111111011110111110111111111111111111111011111101111101111111111111111101111111101110111101111111011111111111111111111011111111111110111110111111111111111111111111011110111110111111111011100111110111111111111111111011111101111111110110111111101111111110010101011011111100111111111111111111111100111111101111110110110111111111110110111101111101111111111011101111111100111111111111111110011111111111111101111111010111111111111111111110111111111111111111111111111001111111111011111111111111111111011111111111010111111011111111111101111111111111111111111110111110111111111110111111111111011111111111001111111110101111111111111110110111011111111111111111111111111010111111111010111111100111111111100110111111011111111111101111111111111101011111101111011111111111011011111111011111110011111101111111111111111110011111111111010111111111111101101101111111110101111111111111111110111111111101011111101110110111111101111111111101110111111111111111111111111110111111111111111111110111111111110111111101011111111110111100111011111111111111111111111111111011111111111111111111111111111111111111111110101100111111111111111111111111011110111111111111111111001110111111111111111111111111111111111111111111111111101011111101111111011111101101011100111101111111101110011111101111111110100110111111110110101111101111111111110111100111111111011111111111111111111111011111110111111111011111111111111111111110111111111111111111111101111111111111111101111110101110111111111111111111111111111111111011111111111101111110111111111111111111101011111111111110110111110111111101111111111100111111111111110111001111111111011101111001100111111111111111111111110111111111011011111011111111111001111111101111111110111111111111011101111111111111110111111011111101111110111011011111111011111011111111111111111111111011110111101111111111111111011111111110111111101101111111111101011111111111111111111111111111111011111111111111101111111011011001111111111111110111101111111111111111111111011110111111111111011111111110111111111111101111111111011110111111110111111011101101011111111111111111111111111111111111111111011111111111101111111111111111111111111101111111111111111111111101111111011111110110101111111111011111111101111111111111111111111111111111111111111101111111111111110111111011111111111111111111111101111110111100111111011111110011111101111111111101111111111111111111110111111011111011111111111111110111111111101110111111111011111111110101111111111111111111111110111111111011111110111111101111111111111111011111110111110011111101111111111111011111111111111111111111111111111111111111011011101111111111111101110111111111111111011111111101111111111111111111111111111110111111101111110111101111111011111111111111110111111111111111111111111111111010111111111111111110111011111111111111111111111111111001111111111110101111111111101111111111001111011111111111111011111111111111111111111111110111101110001111111111011111111111111111111111111111011111111111111111111011111111111111111101111011111111111100111111110101111110111101111110100111111111101111111011110111101111111111101111111111110111110111111111111111111001111111111111100101111011101111110111111111011111111111111111111111101011011111111111111011111111111110111111111111111111011011111011111011101111111111111111111011111111011011011011101110101011001111111111111111111011110111111100111111111111111111111110111011110111101111101111111111110011100110111100011111111111111101111111111111101001111101011110111011111101111111110111110111111011111111111110111111111111101110011111111111111110111111111011111111111101111111111111111011101111111111111111111110111111011111111111111111111111110101110110111111111111111111111111101101111111111111111111111111111110111110111111111111111101111111110110111111011111111111111110101111111111111111111111111111011111111111111111111101111110111011111011111111110111111111111111111111011111111111111101011111111011111111111111110111111111101111111111111111111110111011111111100111110110110101111101011111111111111111111111111111111111111111111111111111011011101111111011111111111111101111111111110111111111011110111111011111111110111111101011111101111111111010111111111111011111101111101111111111111101111111111111011111111111101111111111111111101110111111011111111111101111111111010101111101111011111111111111111110111111101011101111111111111111101011111111111111111111011111111100111111111111111111011111111011111001111111101111111111111111111111111111111111101110111111011100111111111101111101111111011111111111111111011111011110110111111111111111111101111111111111111111011111111111011011011111111111110111101111111111110111111111010111111111110111111111111110111011110111101111111110111111111010111111111111101111101111111111111111111111111111111111111111111111111111011111111111111111001110111110111111111111111011011111111110111101111110111111110111111101111111111101111011111111110111111111111011111011111111110011011101111111011111011111111011111111111111111111011111111111111011111011111111111111111101110111111111011111111111111111110111101111111011111111111111011111111111111111111111111101011101111000111111011111111111111111111111111111101111111111111111111010101111111111111111111111111111101111111111111111111111011111111110111111101111111110111011001111011111110011111111111111111111111111111011111111111110101111111011010111111011111011111111111101111111111111111111111111111111111111111101111111011111101111111111111111110111101111111111110111111111111111011111111111111111111111110111111111111101110111101110111111011111111111111111111111001011111110011111110101111111111111111111111111111011010111111111111111111111111111111110011110111111011101111111111110101111111111111111111111111111111111101111101111111111000101111111111111111011111111111000111111111111111100111110111111110111111111111111111001111111011011111111101111111111111111111111101111111111111111111110111101010111111111111010111111111011111101011111111101111110111011011111011111110111111111111101111111011111111111111111111111111111111111111111111111111111111111111111011111111101111101110111111111111011111111111111101111111110110111111111011110010111111111111111110111111111111101111111101111111111101111111111111111001101111111111111111011111111111110111010111111111101110111111111111111111111111111111111011111101111111101111111111111111111111111111111111111111111111111111011111111111111111111111110111111110110111101111111111111111111111011101111111111001111111111111111111111101110111111111110111111111111111111111111111111111111111101011110011111111111111111111101111111011110111111111011111111111111111111111111111110101111111111111111111111110111011101111011111111111111111111111111111011111111101111101101111101111111111111111111111111111111111111011101111111111111101111111111111111111011111101111111011111110111111111111111101111101111111101111101010111111111101111111101111101111111111111111110111111111111111111111001111111111111111011011111111111111111111101111111110101101111111111111111111010101111011111111111111111111111110001111111111111111111111110111111111111111111111111111101101111111101111111111111111111111011110111011111111111111110111101111111110111111110111101111111111111111111111111011111111111101111111111111111110110111111111101111111111111111111111111111111111011101111111101111111011111111011111111110111111111011110001111101110101111111111110111111111110111111111111111110011110011011111111011111111011011111111100111111111011111111101111111011111111111111111011101111111111111111101111111111101011110111111111111101111111101111110111111111111111101111111100111111111111111110111110111111111111001111111111111101111111011111011111011110111111111111111111110011101101111111111111111111111111111111111101111111111101011111111100111111111101101111111111111111011110111111111111111111111111111111111111011111111111111111011111111111111111101111110111111101111111111101111111111111111111111011111011111110001111111110011111111111010011111111111111110101111111111011111111111111111111111111111111011101111111111110111111111111111111101011111111101011111111111011111111111111111011111111111111111111111111111111111001111111111111111011111111111111111111111101110110111111110111111111111111111011111111111111011111110111111111011011111111111111110101111011111111111111111110101111111111110101111111111011111011111111111111111111111111111101111111111111111111111011111101011111111111011111011011111111111111111101111101111111111111111111111111111111111111011111111111111111111111111111111111111111111111111101111111111011111100111110111111111111101111111111111110111111111111111111111111111011111111111101111111110111101111110111111111011111111110111111101111111111011111011111111111111111111111101111111111111111111111101111111111011111001110111111001011111111111111111111111111111111111111101111111100111010111111111101101111110111111111111111111111111110111111111101111110101011111111111111111100111110111111111111111111111110011111111111111111101011101101111101111111111111111111111101111111101111111111111111111111111010111111111111111111111011010110111111111011101111111111110111111111111111111111110111111111111010111110101111111011110110011111111111111011111111011111011111111111111111101101111111111111101111111111111111111111101101011101111101111111111110111111111111111111111111111111111011111111111111011111111101110111111111111111111111101011111111111111111111111111011111111111110111111111111111111111111111011111111101111111110111111111111111111111101111111111101111011111111111111111111111111011111110111111111111100111111111111111111111100111111111111100111011101010111111011101110011111011111111001111111011110111111101111111111011111111111111111111111111111011101111111111011111100111111111011111111110111111111110111111111111101011111111110010111111101110101111111111111111111111111111111111111111111001111111111011101111011111111111011111111110111111111111111110111110111111111111011011110111111111011100111111101101011111010101111111011001111111011111111111111101111011111011011111111101111111111101111111111111111111111111111111111111111111111111111110111111111100111101111111111111111111111111111111110111011111111011111111111111111111101111111011101111111111111111101111111011110111111111011111111111111111111011111110111111111111111111111011111111111110111111111111111110101111001111111111111111111111111101111111111111111111111111111011111111111111111101110111111111111101011111001111111111111011111111111111111100111111111111011111101111111110111111111011101111011111111111111111111111101111110011111111111111111111111111111111101111110101111111110111111111111111111011111111111001001011111111111111111101111010111111111111111111111111111111111111111111111111111111110111110111111111111111011111111101111111101101111111110101111011111111111111111111111110111111111111111111111111111111111110111111111111101111111011111111111111101110111111111111011111111111111111011111101010111111111111110111011111110111111111111111111111111111111111111111101111111111110111111100001111111111111111111111111111111111111111011111111011111111111110111111111111101111101111111101111101111111101111111111111101111111110111101111111101110111111111111111101101001101111101111111111111111111111111101111001111111111111111111111111111111111111111111111111111111111111101011111111111111111101111111111111011011111110111111111111111111111111111001111111110111111111110111111011111111101111111110111101011010101111111011111111111111011111111111111111011111111111110111111111111111111111111111111011111111111111111110110111111111111101111001110101111011101111011111111011111000111111111111111111111011111111111111101011111111111111111111111111001110111111111101111011110111111111111111111011111111111111111011111111111111111111001101101111111111111110111111111110011111111101111111111111111111111101110111111110111111111111111111110111111111111101110111111101111101111101011111111011011111111111111111101111111110111111111110111111111111111111111011111111111101111101111111111111111111111111111111111111111111110111111111111011111111111111111111111111111111111111111111111111001111111101011011111011111111111111111111011011001111111111111111011011111111111101111111111010111011111011111111101011111111111111111011111011111101101110111111111101111111101011111111111111111111111111111101111110110111111111111111011111110111111011110111111111111111111001111111111111111111111110111111111110111111111111111011011111101111111111111111101111110111111100111110011111111111111011101111111111111110111111111111111111111110111111111111111111111100111111001111111111111111111101011011111111011101111110110011111111111111111111111011111110111111111101101010111111111101111111111111111111111111111011111111111110111101111111100111111111111110111001111111111110111111111111111111111111111111111011111111111011111111111111111101111111110011011111111111111111111111111111111111111011111111011101011011111111110111111010111111111111101011111001010111101111111101111111111011111110111111101101111111111111111111111111111111111111111011110111111111111011000111111111111111111110111111110111111111111111111111111111110100101111111100111111111111111111111111110111111111011101011110111111110111111011111111111111011111111111111111111101111111111111111111111111111110111111011111111111111101111010111111110111111111110111110111111111111110111111111111111111111111111111101111110111111111111111011111111011111111011111101111111011101111111111111101111111101111011111111111111111111111110111111110111111111111110111111111111111111111111011111111101111111011111111111111111011111111111111111111111111110101011101111111111111111111111111111111111101111011111111111110111111111111111101011111111111101011111111111111111111111111111101111111111111111111110110111111111111111110111111110101111111111111111111111101111101111111111111111111111011111111111111111110111111101011111001111111011111100111111011111111111111111111111111111101111111101011111111110111111011111111010111111111110011111110111111111111111111111111111111011111111111110111011111111111011111111111011111111111101111011111111111111111011101111111011111111111011111111111111111111111101111111101111111111111111111111111111111111111011111101111111111111111111111111111111111111111110111111111101111110110110111111011111111110111111111111111111111111111111111111111111011110111101111111110110111101101111111011111111111111111110111111110111011110111110111111011111111011111111111110111011111111111111111111111111111111011111100111110111111111111111111111111111111111111111111111110111111111111110011101011111111111111111010111111111110111111111111011110111111111111111011111111111111111110111101111111101111101111111111111111101111111111111111101111101011111111110111110111111110110001111110111111111111111110111111111111110101111111111111111111111111011111110111100111101111101111111111111111111111111111101111110101111111111111011111111111111111111111111111011111111111110011111111111011111111101011110110111111110111111101111111111111111111111011110111100111111111110111111101111011101111111011010111110111111111111111111110011111111111111111111011011111111101111010111011100111111011111100111111111011111111111110101111111111111111111111111111011111111111111111011101100111101111111111011101111111111111111111111111111111111111011111111111111111111111001111111111010111111111111111110111110111111111111111111110111111111110111111111111111111110101111111111111101111111111111111111111111111111111111111110111111111111111110111111111111111110111101111111011011111011111011111111111111111010111111111111111111111111111111111111111111111111111111011010101111111111011111011111111111111100111011111111011111011110110111111111100111111110011111010101011101111110111111111111101111111111111111111111111111011011111111111011011111111011101111011111111111111110111101101111110011111111111111111111111111111111111011111111111101111111111111111111100111111111111101111011011111111001111111111111111111111111111111110111111101110111101111111111100111111111111111111111111101101111111110111110110111111111111111111111111111111111111111011111111111111111011111111111001111111101111111101111111111111111011101011111111111011111101111111111111111111111111111111111011111111111111111101110111010111011111111111111110110101111111111111111110111011111111111111011111110111111110111110111111111101101011111111111111111111111111111111111111111111101111111111110111011111011111111111110111111111111111011111011111111111111111111101111111111111111110111110110111111011011111111111111111111111111111111111111110111010111111011111111101111111111111111111111111011111110111111011111111111110111111111110111110111111111111011111011111111111111111111111111111111111110111111111111111111111111110101111111111111111111111111111111101111111110011111111111110111111011111111111111110111111100111111111111011111111111101111111101111011110111111111111110110111111010111111111111111111111111110111111111110011111111111111111111111001111111100011111011111111111110110111110101111101111111101111111111111101111111111011111111111111111111111101111101111111101111101111111111011111111111111111011111010111111111111111111110011111110101111111111111111111111111111111111111111111111111111111111110100111111010111111111111011111111111111111110011111111111111111111111111111011111111111101111111110111101110111111111101111111111110111111011111111111111101111111111111111110111010110100110111111111111111111111001111011111111111011011101111111111111111111111110111011111111011101111111111011111111111101011101111111111111011111101011111111111111111010111101111111111101110101111111101111111111111111111011111111110111011111101101111111111101111110111111111111111111010111111111111101101111011110101011011111111111101111011101111111111111111111111111010101111000111111111111111110111111111111111111111111111011111111101111111111111111111111111111111111111111011111111111111111111111111111111111111011111110111111111101111111111101111111111111111111111111111111111111111111011111111111111111101111001111110001111111011111111111101011110111111111111011111111011110111110111111111111001111101111111011111111111011110111111100111111111111110111111111111110111111011001111111111111111111111111100011011111111110111111111111111111011110111000111111111101111111110101101111111111110111011100101111111111110111111011011111011010111111110011111011111101111101001111110101111011111111111111111111111111111111110111111111011111011111111111110110110111111111111111111111011111111111111111111111001111111111111101111111101111111111111111111111110111111011011111111111111111111111111111111111101111111111101111110111110101111111111101111111111111111101111111111110111110111111101111111111011111111101111111111111111111111111111111111111111111111111111111111111111111111111011111111111110110011111110111111111111111111101011111111111111111111111111111111111110111111111111111111111111111101111111010110011100011111111101111110111111111111111111111010111111111111011110011011111111111111111001111111111111111111101111111111111111111111111111111111111111111111111010111111101111110111111011111111111111011111111111111111110111011111111011111011111111011101111011111111011111111111111110101101111110111110111011111111111110111111011111111111111111111111011110111111111101011100111110011111011111111110111111110111010111111111111101111111111111111111101111011111111111110111100111111111111111111111011111111111110101110101111111111111111011110110111111111010111101111111111111111101111111011111011111111111111111111111111111111111110111011111111101101111111111111111111101111111111111111101111011111111111101110111111101001011111110111111101111111111111111111111101111110111110111111111111111110110011111111111111111111111111111101111111110111111101111111111111111111111011111110110111111011101111111111111111110111111111111111111111111111111111111110111111111111111111111111111111111111111111111111011101111111011110111011111111111111111101111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111101111101111111111110111111111111111111001111111111111111111110111111001110111111110011111111101111111111111111110111111011111110110111111111110110111111111111111111111111011111111101110111111111111111111111111111011111111011111101111111111111001111111111111111011111111111111111110101111111101111111111110111111111111111111111101111111111111011111101111111111101111111111111111101111111111111111011111111011111111111111111111111111111111001111101111110111011111111111111011111111111111111111111111110111111111110011111101111111111011111111011111111111111111111111111111110011111110110001111111111110111111111110101111111111111111111111011111111111111111011111111111101111111101111111010111101111111111111111111111011111110111111111111111111110011111110101011111111111101111011110111110111111111111111110111111110111111111111111111111111111111011101111111111111111111111111111111111111111111111111110011111111111101111111111111111110111111111111111111111111110111111111111111111111111111111111011010111111111111111111111101111111111111111111101111111111011111111110111111111111111111110111101111111111111110111111111111111111001111101111011111110011111111111011011111111111111001111011111111111111111111111111111111111111111011111110111111101111111011111111111111111110111110111111101111011111111111011011101111111110111111011111111111111011111111111101111111111111111111111110111111101111011111011111111111111111111011110110111111011111111111111111111010111111110111111111010011111111111101111011101111101111111110111111111111110101111111110111111111111110111111101111010111111111111110101111111011111111011111110101101101111111101111110111111111111111011110100111111111111011011100011111111111111111111111110111111010111111111011111111111110011111011111111111111111111111111111111111111111111101101111011111111111111111111011111111110111111101111111111111111101101111111110011011111101111111111111111011111111111111111111110111111011101111111111111111111111111111111111111110111110111111111111111111111111111010101111111011111110111100111011001110111111111110111111111111111111110111111111111111111111111111101111101111111111110111111111111111101111111101111011111111111111111111111111011010111110110111111101101111111110111111011111111011111111011110111111111111111110111101111111111111111111111111111111101011111111100111111111111111110111111110111111110111111111111111111101101111111111100111111011111111111111111111110111101111101111111111101111110110111111111111111111111101101011111111011011111111111111111011111111111111111111111111101111101111011111111111111011111111111110110111111111111111111101011111110111111111111111111110111111111111111111111111110111111111111011111011111110011111101110111111111111111111101111111110111111110111111111111101101111111111011111111101111111111111111111111111111111011111111101110111011111111111111111111111111101111111111111111111111111111111111111111111111001111111011111101111111001111111111100111111111111111111111111111111111011110111111101100101111111111111111111111111111100111111011111111101111111111111111111111111111111111111111011111111101011101010111111111110110111111111111111110100111111111111111011111111111101111111111111111111111111110101111011110111111111111111111111111111011110111111111011100111110110111110111111111111011111111101110111111111111101010111111111111111110111111110111111111011111011011110111111111111111111111011111111111111111110011110111111111111110111111111110111111011100101111111011101111111111111111111111111111111111111111111111111111111111111111111010111111111111011111111111111111111011011110111111111111111111011111111111111110111111111101111011011111111111111111110111111111111111011111111111111111111111011111111100111111111111111111111111110111111111111111111111111111111111111011111111111011111111111110111111111111111111111111111101101111111111111111111111111111111111111111111111101011110111111111111111111111111110111111111101101111011101111111111111011111111111111111111111101011111111111101111101111111111101101111111111111100111111111111110111111111111100110111111111111111111110111111111111111110110111111111101111111111111111111111111111111110111111111111111111111101111111101111111111111111111111111111110111111111011110111111010111111111111111111111101111110111111111111100111111111111111111111111111110111111111111111101111111111101100011111111110111011111111011011111101111111111111111110111110111111111111111111111111111111111110101111111111101111111111111111111111011111111011111011111111011111101011111111111111111111111111101111111011111111111001111111111111111111111111111111111011111111111111101111111111011111111111111111111111111111111111111110011111111011111111011110101111111111111111101111011111111111101011111111111001110011111111111110111111111011111110111110111100111111111011111111111111111101010001111111111111110111111111111111111111110111110111110111111101111011111101110111110111111111111111111111111111111011111111011111111111111111110111111111111111011111011111101011111111111111111111011111111101111111111111101110111111111011111111111111111111111110111111111111111111011111011111101111111111111111110111111111111111111101111111110111111111111011111111111111001111111111011111111110111111111111100111100111111111011111111111111111111111101111111101111111111101011111111111111101111011111111111111111111101110011011011111111111111100111111111011011111111111111111011111111111111111011101101111111110111110111111111101111111101111011111110111111111110111101111100111111111111111011011111111111111111111011111001101111111011111111111111111111111111110111011111011111101111111111111111111111111101111111111111111111111101011111011001111111111111111111111111111111111111111111111111111010111111101111111110111011001111111101101111111111101111111111111110110111111111111111111111111111111111111111111110111011101011011111110110111111111111111111111111111101111111111101011111101101010111111111111111111011111111011111111111111110111111111111111111110111010101111111111110111111111111111111111110111111111111111111111111111111111111011111111111111111111111111101111011111011111111111111111111111111011111111111111111111101111110111111011111111110011111111111110111111011111111111111011111111111111011111111111111111100111111111111111111011111111111111011111111111111111111111111111111111111111110111111111011110111111111011010101111111111111101111111011011111111111111100111101111111100111001011111111110111111011111111111111001111101111111111111111011111101010111100011111111111111111111111011111111111111111111111111111111101111011011111101111111111110111111011011111111111111111111111111101101111101111111111111011111111110111111110111111111111111111111111111111101111101111111111111111111111111111001111111111111111111111011111111111111111111111111111111111111111111111111110011101011111111111111111111111111111111111110110110111111110011111111111111111111111111111111111110111111111111111111111111111111111111101110111111111111111111111110111111101101111111111101111111111111111010010111111111010011101111110110011111110111101111011111111110111111010111111111111101111110111110111111111111111111111111111111111111111101111011111111111111111111111111111110111101111111111011111111111111110111110011111101111111111111101111101011110111111111111101110111101011111111110011110111101110111111111110111101111111011111110111111111111110111111111111111111111111111101011111111111111111111111111111111111111111111111111111101010111111011110111111111111110101111111111111111101111011110111111110111111111011111111111111110111111110111111110011011111111111011101100111111101111111110111111110101111111111111111111111111111111111111111111011111101111111111111101111111111111111111111111001111111111011011111111110111101111111101111111101111111101100111111111111011111111111111111111111111111111110111111111101111111111111111101111111011111111111011111111111111111101111101111111111011111111101111111111111011011001111101111111111110111111100111111110111110111110111111111111111111111111111111111111111111111101111011111111111111011111111111111111111111111111111111111111111011101111110111110111111111111111111111111100011111011111111101111111111111111111111111101111111111111011111111111101111111111101110101111111111011111110011111111111101111001111111101111111111110111111111110111111111111111110111111111111111111110101111110111101111111111110111111110111011111110111111111111111111110100111111111111111110111111011111111110111111111111111111111101111111011111111111111110011111111111111111111111111111111111111101111111111011101101111111101110111111110111111110111111111111111111111111110111111101111111111111111111111111110111111101111111111111111101111110111111111111111011110111111111111011110111111111110111011111111111111111011111111111111111111011011111111111111111111111111001110111111111101111111001001111101101011110110111111011111111111111011111111110101111111111111111101111110101111111111111111111111111111111111110101011111111111111111010111111111111101111111111010111111011110111111111111011101011111111111101110111101101101111111111110111111111110111111111011110111111110101101111111101101110011111101101111111111111111111111110111111110111111110111111011111100111101111111011111111111111111111101111111111111111011111111110111111111111111111111111111111110111111111111111011111111111111110110110111011111111111110111111111111111111111111101111111111111111101111111111111110111111111111111111110111101111011110110111111111111010111111111111111110111111111111111110111111111110111111110111111111111101111110111111111111111111111111001111111101111111111111111011111111110111111111011111110111101111011111111111111111111111111111110111111110111111111111111100111111111111111111111111111111111011111111111111110111111111111101111011111111111111111111111111111111111111111110011111111011111110111111110111111111111111111111111111110110111011111111111110111111111110111111111111101111111110111111100111111111111111010111111111111111111101110111100111111111110011010111110111111111111111111111111111011111111111111111111111111111111111001011110111111010111111111111111101111111111110111111111111111110111111101110111111110101111111110111111111111111111010110111111111111111011111111110111110111111110111111111111111010111111110111111101110101111111101101111111111111011111111011111101111110111111111111010110110111111111111111111011001111111111101111111111111111111101111110011111101111111111011111111111111011111111111111011110111111111101111011111111111111111111111111111111111111111011100101111111111111111111111111111110111111111111111111110111101111110111101111111011011111111111111110111011111111101111111001110110111111111111101111101111111111010111111100111111111110111111111111111110101101111111011111111011111111111111111111111010111111101011111111111111011111111111111101111111111111101111111111101111111111111111111111101111011111111011111111101110011011110110111111111111111111101111111011111111111111111111111111110111111110111001111101111101111111111111111111111111111111110101101111111111111111110111111111110111111111111111111111101110111111111111111111001111111111111111111111111110111011111111111111101111111111111111111111111111110111111111111110110111111111111111111011111111111011111110110111101111111111111111111111111111111001111111111111111111101111101111110111100011111101111101111111101001111111110111111110111111111111111111111110111111101111111111111111111111110101111111111110111111110111111111111111111111101111111111110101111111110011011111111101111111111011111111111111111111111111111111111111111111111111111111111101111111111111111101011011110111110110111011111111111111111111111111111111101101111111111111101111111011111101111110111111111111101011111101110111111011111111111111111111111111111111111111111011111111111110111111111111111111111111111111111101111111111110010111111111110111111111111111111111111111111110011111111111100111111111100111111111101111101110111111111111111110111111111111111111101111111011110111010111111111111111101111111111111010111011111011100111001101111111001111110111110111111111101111101110111111111111111111111011111111111101111011111111101111111100111011110101111101111111111111111011101111111110111111111111111110111111111111111111111111111111111111101111010110101111111111101111111111101001011110111111111100111111111001111111111111111111111111111111111111011111011110111011111111111111111111111111111011110111111100101111111111110111111100111111011111111111101111111111101111111011111111111111111110011111011111011111101111111011111111111011111111001111011111101111010011011111111111111110110111111111101111111111111011111111011111111111111111111110110011111111111101111111111111101111111111110011111101111110111111111111101111110111011101111111000110111111111111111111111111111111101111111111111111111111111111111111111111111111011111110111111111111111111111111111111111111111111111111011111111110111111111111111111111011111111111111111111101111111101011110111001111111111011111111111111111110101110111111111111111111111111111011111011011111110111111010110111111111111101111111111111111110111111011111111111111111111110101111011101111111111111111110111111011111111101111111111111111111011111110110101111111111111111111111111111001111111111111101111111111011101111111111111111101111111111111111011111111111111111011111101111111111110101110111101111101111111111011110101110111111111110111111111110110101111011111111111111111111111111111110111111111111011111111111111011111111101111111111111111111111111111111110111111111111111101011111111111111001111111111111111011111111101110111111111110111111101111101111111111111111111011101111111011111011111111111111110011011111111111111111111111101111011101111111111010101111111111111111111111111110110111101111111111111111111111111110110111111111111111111111111111011111101111111111111111111111111111111111111111101101111111010101111111101111011111111111101111010111111111111111111111111111111111111001111111111110111111111111111111110111111111111111111110010111111011111111111101111111111111111110111111111111001011011111111111111111111111110111111111111111111011101110111111111110111111111111111111111110111111111111111111111111111111111101111111111111111101111111111111101001110111111111101111111111111111111111111111011111111111111110101111111111111111111111111111111111111111111111111111101111111011011110111101111111011010111010101111111111111110111101110111111111111111111111111111011111111101111111110111111111111110111111111011110111111111110110011101101010111111111111111111111111110111111111101111011111111111111111111111111011111111111011111111111111111111111110101110111111111101111111111100111111110111111111111110111110111111111111111111111111111111111111011101111111111111111111111111111111111101111101111110101111111111111101111111111111111111111111101110111010110011111111111111111111111011101111111111011010111111111111101111011111111111101111111111111111111011111101011111011111111101111110111111111111111111101110111111111001011111111100101111111101111111111111110111111111111100111111111111001111101111111101101111101111010011111101111111111111111111011111111111111111101111111111111111111111111111111111111111011111111010101111111111011110111111110111111111101001111011011111111111111111111111101111111111111111110111110111111111111110111111111110111011111111111111111111111111111111111101111110111111011111111111111111111111111111111111111111111111011111111110111111111111111111011111111111111011111111111111110111111111111111111101111111111111111111111101111111111001011111111111110111111111111110001111111111111111111111111011111111111111111111111110111111111110111110111111111111111111111011111111101111111111111011101011111111111111100111111111111111111111111111111111101111111111011111111111101111111111111100101111111010111111111101111111111111111111001011111111111111001111101110011111111111111111111111111011111111010111111111111111111111111011011110101111111111111111110101111101111111111111111111101010111111111101111111111111111111101110111111111101101011111111111111101111111111111111111111111110111101111111111111101111011111101111111111111101111101111111111111111111101111111111111111101111111111101111111011111111101111110111101111111101011000011111111110110011111111111111110111011111111111111011111011011111111111111111111111111110111111111111110010111111111111111111111101111011111111110111111101111111110111111011111111111110111111111011111111111111110110111110111111101110111110111111111111111101111111111111111110111011111111111111110111111111111111111111111111111111111101010110110111111100111101111111111111111011111101101110111111111111111111111111111111111111111111111111111111111111111111111111111111101111111011111111111101111111011111111110111111111111101111111111101111111111011011111111111101001110111110111111111111111111111111111101111111111111111110111111111110111101011111111111111011111111111111011111111111111111111111111111111111111111111111011110111111110111111111111111111111110111110111111111111111111110111001111111111111111001101111111011110111111111111111011111111111111111111011011111110011111111111111101111111101111011011111111111111111111110111111111111111111110101111111110111111111111111100101111111101111111111111001111111111111111111111111111110111111111111111111111011101111111111111011111101111111011111011111111111011111111101111011111111101111110111111111111011111111011011111111111111101101111111111111111011111111111111111111111111111011111111111101011111111111111111111110111011101110111111101111111010111111111110101111111111111111111000111111111111111110101111101111111101111011101111101111111111111111111110110111111011111101111111100111111101101111111111111111111111111111111111111111111111111011111101111011111111111110111111111111111111111111111111111011111011111111111111101111111111111110111111110111111111111110111110001111111111111101111111111111111111111111110111101000101011101111111111111011111111111101111011111111010000111111111111101111111001111111111111111111111001110111111101111111111111111111111101101111111111111111111111101111111111111111100111010101111111111111110111111111011111111111111111111110110001111111111011111111011011111111111110111111111101111111110011110111111101011111111111111011011101111111111111111111111101111110111011111111111111111010111111111111101111111111111101111011111011111111111010111111111111110111110011111101101101111111111111111111111111111110111111111110111111111101111111110110111111111011101111111111111101111011111111101111111111111101111111111101111101101111111111101111111111101111111111111011111111111111110110111111111111101011111111111111111111101111111111001111111111111111011111101111111011111111111111011101110111111111111111101110110111111111111111111101111101111111101111111100011111111111111111111111100111111111111111111111011111111111111111011011111111011010101101011111111111111111111101110101111111111111111111111110110111111011111111111111011111111110111111111011111111101110011111111111111111111111111111110111110011111011111111111111111111111111110111111101011111111011111100111111101011111011111111110111111111011111111011101111111111111100101010111111111111111111101101111110111111101111111111111111111111111101111011111011111101111111111111001010111111111111111101111111111111000111111111110111111110111011110111111111101111101111111011101111111111110111111111111111101111111111111111011111111110110111001111111111111111101111101111011101111110111111111110110111001111111010111101110111111111111111111101110011111111111111111111111111111111110011111010011111111011111111111110000011110101111111111111111011111111100111111111111110111111101011111011011110111111111111111110111111111111111111111111111011111111111111111111111111111110111111101111111111001111111111111011101111111011011111111000111011011111111011010111011111111111111110001111111111111011111011111111111111111111101111111111111101010101111011111011101111011111011111101011111111111111111101111111111101111111111111001101111111111111011111111111111101111111111011111110110011111111111111110111111111111111111111111101011111011111111101001111111101111111111111111100111111111110011110111111111111111111111111111111111111011111101101111111111111111110011111111111111011111111111111111101110111111111111111011111111100111111111111111111111111111111111111111110111111011111111111111100111111110111101111101111111111111111111011011111111011110101111111111111111111101111110111111111111111111111101011110110111110111111111110111110011110011010101111111111001111111111111111111011111111111111111110111111110111111111111011111110011111110111110111111111111111111111011111111111011011111111111111111111111111111111111111111111111111101111111111111111100111011111111111011111111111101110111111111111111111101111110111011111111111111111111111111101111111111110111111101111111111111111010101111111101101011111111110111011111111111111111101111111100111110101111111111101111111100110111111111111111111100110101111111110111111111111110111111011111101111110111111111111111111111111100111111101111111110111101111011101101111110111111111111111011111110111110111010111011111101110111111011111111110111111111101111111110111111111111111110011101110111111110111111111111111111111111111111111111111111111011111101111111111101111111111011011111111111111111011111011111111111111111111111110111110111111011011111111111111111111111111111110111110101111111111111111111011111111111111111111111111111111111111111101111011111111110110111111111111111111011111111111010011111110011111011111101110111011111111111011111111111111111111111101110111010100111111111111101111101111101110111111111011111111111111111111011111111111111101111111111110111111111111111101001111111111111111111111111111111111101111110111111001111111111111001111111110111101111011111111111111111111110111011111111111111111110101111110111101111110111100011111110111111110101111111111111110101111111111111111011111111111111111111011111110111110111111111111011111011111111010111101110111111110111111110110011001011111111110101111110111111110111111111111110111111111111111111111111111111111111101111111111111110110111010011101101101111111111110111111111010110111111111111011111011111111111111111111111111011111111111111111111111111111110111011101111110111111111111011101111111111011111011111111011111111111101110111111111010111111111111111110111111010111111111111111011111111111111111111111111011111111111111111110111011111111111111111110111111101111101011111101111111111110111100111011110111111101111100101111110111111111111111101101101111111111110011110111101111101111111111111111111111111011111111111111111110111111111111111111111111111111111111111111111111111001111111111100111111111111111111111111111101111001111101001111110111101111111110101011111111110111110111111111111011101110111111111011111111111111011111111111100111011111101111111111111111110111111101011101111111111011011111111111111111111111101111101100111111111111111111111111111111111011111111111111110110111011011111111111111111111111111110101111110111111110110111111111011111111111111100110111110101111101111101111111111011111111111111111110101101110111111111111110111111111111111100111111111110111111111111111110111111111011111111111111111111111111111111111111110011111111111111011110111101111111111111111111111001111111111111111111111111011111111111111111111111111111111111111111111110111111111111101101111111110111111110111011111111011111111111110101111111111111110101011011110111111111111110111101101111111111111111111111011111111111111111111111111111101111111111111100101111101111111111111111111111111011111111111111111111111111011111111111110110111111111001111111111111111111111111011110101111111111110111111111111111111111111111111111111110111001111101111111111111011110111011011111111111011111111111111111111011110110111111111111011101111111111111111111101111111111111111111111111111111111011111111111111111111111111110111110111111111011111101111011110101111111111111111111110111101111111111111111110110111111110111110111011111111111100111111011111011011111111111111001111100111111111111111111011111111111111111010111111111111101110111101110111111101111111111011101111111111101111111111111100101111111111101111110110110111111101011111111111111110111111111111111111111111111111111111111111111111111011111111111011111111110011111111111111111111100111111111111111111111111101111111111111111110111111111111111111011100111111111111111011111111111111111111101111111011111110111111111111111111111111111111111111101101111111111011011111111111111111111111111110111111111111111111110101111111011111111111111111111101111111111111111111111111111111111110111110011111111101111111111111111111011101110111111101101111110111111111111111111110111101111111111111111111110111101111111111111111111111011111011100111010111111111110111111111101111101111101110111011111111111111111111111111111110111111111111111111111111011011111001111101110111111111101101111111111111111111111111111111111111111111111111111111111110110111011111110111111111111011101111011111011111101111111111011111111111111110111111111111111110100111110111111111111111111110111111110111010111111111111111111111011111111111111111111111111111111111101111101111010111111111111111111101101111101101111101111111111111111111111011011111111111111111111111111111011111111111011111111111111111111111111011111011111111111111101111111111101111111101111111111111111011111101101111111111011111111111111111111111110111111111111111111111011111111111111011111111011111110011111111111111110001111001111110101101101111111111111111111111111011111110111111111011111110111111111111100011111111111111111110110101011111111111111111111111110111111111110011111111100110111111111001110110111100111010111111011110111111111011011101111111111111111011111011111111101111111111111101111111110111111111111111111110111101111111101111111101111111111111111111100111111111111011110111111110101101111111111111110111111111111111111111111111101111111111111110111111111110111110111111111111111111111110101111111111111111111101111111111111011111111111111011111111111111111111010111111110111111110011111111111011111111111110101111111000111101110111111111111111111011111111111111111011111111111111111111111111111111011111111111111111101111101101111111111111111111111110110111111111111101111111111111011110111111011111101111111111110111111111111111111111111111011111111111111111111111101111111111111111111111111100110111101111111111111111111101001111111111111111111111111111111111111111111111111111010111111101111001111111111111111111111111111111111111011101111110111011111111111111111111011011111111101111111111111111111111111111101111111111111011011111101111111101111111111011110001111111111111110111111111110001111111011111111111111111111101101111011011111111111111111101111111111111111111111011110111111110111111111110111111111111111111111111111111111100111111111111111111111111101111111111101110111101111111111111111111111111111011111111111111011111101111111110101111111101111111011111111111110111011111111111111110110111110111111101111111111111111111111111111111011101111110111011111110111111111111111111111110111101111111111110111011111111111110111111110111111111111111111110111111111111111011111111111111101011011111111111111011001111100110111111111101111011111111111011111111111110110111011111111111111101110101111101111111101111111111110100011111111111111110111111001111100011111111110111111111111111011111111011111111111111111111011011111111111111111111111111101101111111111111111111111111111111111111111111101111111111111111111011100111011111110111111110111111111011011111111111111111101111111001111111111111101111111011111110111111110111111111111111111110011111101111111111011111101111111011010111111111111111110101110111110001101111110111011110111111011111110111111011111111111101111011111011111111010111111111111110111111111111111111111110111111110101111111001011111110110111111010111111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111111011110110111111111111101011110111111111111111111111111111111111110111110111111111110011111101101111101111111101111111110110110111111111111111111111001111101010111111111111111111111111111111011111110111011111111111111111111111111101111111011111111001111111111111111111111111111111101110111111111111111011111111111111111111111111111111111111111111100011101111111111011111111011111111111101111101101111111111111111111111110011011101111011111111101110111111111111111111111111111111111111111111101111111011111011110111101111111111101111111011111111111011111101101111111111111111111101111111101111101111111111111111111111111111111111111011111111111111111110111111111111111111111111010111011111111011111011111111011111111110110111111110111111111111101111111111110111101110111101111100111111101111100111111111111111011001111011111111110111111110111110011101111111111110111111111111110101111111111111111111111111111111111111111111111011111111011111111111011110110111111111111111100110111111111101111111101100011111111111111011111110110111111011111011111111111111111111110111111111111111111111111011111111011111111111111111101010111111111011100111110011111001111111111111111110110111111111111111101111101111101111111111111111111011111101011111111111111111111111111101111111111111111111101110110111111110111111111101011011111111111111111101111111111111111111111111101111111111101111111111111011111101111110111111111111111111111111111111111111111111111110111111111111111111111100011111111101111111111111111101001101111011110111111111111011011111110111100101101111111110101110111111111111111111110011111111111100111111111111111010110111111111111111101111011101111111111111111110111111111111111111011111111111111111111111111111100111111111101101111100111111110111111011001111111101111111110111111110111111111111111111111111111111111111111111111111111111101111111111111111011111011101110111111111110111100111110111111110111011011111111011111111111111110111111111111111111111101111111111111111111111111111011101111111111111011111111111011111111111101111111111010111111111111111101111011111011111111111011111111111110111111110111111111111111111111110111111111111111111111111110111111011011111111111111111111111111101010111111111101011111111011111111111110111111111111111111011111110101111101011111111110111111101111111111111111110111111111111111110011111011111111111111111111110111001111011111111111110111111111111111101101111111111111110111111111111101111011111111111111111100101111111111101111011111111111111111111101111111111111011111111111111111111111111101111111111111111011111111111111011111011111101111100111111111110111111110111111111111111111111111010111111111111111101111111111111011111011111111111111111011111110111111111111111011101110111111111111111111101111111111111110111111111111111111111001111010111111110111011001111110111011110111111111001111111111111101111111111111111110111111110111111111011111111111111111111101111101111111111111111110111111110111111011111101011111111111111110111111111111111111101111111101110111111011111111111111111111111111111111111111110111101111111111101111111111111111111111111111110101111111111111001110111111110111111111111101111111111111101111111111111111101101101111111111111111011111011011011001111101111110111110111101111111111101111111111111111111111101111111010111111111111111110111111111111111111110111111111111111111101011111111111111110111111111111111111111111110111111111111111111111111111110101111111100101111111111111101110111111111111111010111001111111111111111111101111111111111111111111111110111111111110111110111111111101111111111011110110110111111111111111111101111111111110111111111111101111110111111111011110111111111111111111011111111111111111111111011111101111111110111111111111110111111111111111011111111111011011111111111111111111111111111111111111101111111110110111111111110110111011111111111111111111011111111100111111111111110111111111111111111111111111111111111111111111111111111111111111111100111111111110111111111111111111111111101111111111101110110110111111111111111110101111110111111111111111111111101111111111111110111111111111011111011111111111111111111101110111111011111111111011111101111100111111111101111011111111111111111101011111111111111111111111111111011101111111001111111111111111111101011110111111111111111111111111111111110110111111111111111111110111111010111110111111111111111111111111100111111111111111111111111111111101111011110101111111110111111111111111111101111111111101110011111111111111111111111111111100111111111111111111011111011111111011111101111110111111111111010110110111101111111111111111111111011111111110111111111100111110011111110111111111111110111111111111111111111111111111111111111101011111111111111111111111111111111111111111111111011111111111101100111111111111111111111111111111111111010111111111111110111111111110011111111111001111111111111110011101111111000111111111011010111111111101111111111101111111111111111101101111111111111111101111111111111111111111111011111001111111111111111111011111111111111111101101111111111110111111111111111111111110111111110111111111111101101111111111111011111000111111111111111111111111111111111110111111011111011111111111011111101111111111110111111011111111111011111111101111111111111111111110111111101111011011111111111111101110011111111111110011111111111111111111111101111111101111101111111101110111111111111110111111111111110111111111001111111111111111111111100111111101111011111111111110111111111111101111110111101111111110111111111111111111011101101111110101011111111111111111111111111111111101011111111111001110111111111101111111001111111111111111111111111011111110111111101110111111101110111111111110111111111111111011101111111111101111100111111101111111111111110111011111111111111111111111111111011111111111111101111111101111111111111010111111111111111111111111111111100011111111111111111111110111111011111111111111111111011111111111111111101110111111111111011111111101110110111111101111111111111111111110111001111111111111011011111111111101111111111111111111111111111110101111011111111101111110111001011111111111011111111110111111111111111111111111111111111111010111111111111110101111111111111111111111111111100011111111111111011111111111111111110011111111111100111111111010111111101011111111101111111111111101111111011010111111111111111111111111111110111111111011111111101101111111111111111111111011111111111111110101100111100111011111101111111111111110101111111111111111111111011111011111111011111111110111111011111111111111011111111101111011101111001111111011111111111111111111011111101111111111101111111110111111111011111111111111111111110101111111111111111100111111111111111111011111111111111111111111110111100111111111111111111111111110011111111111011111111111101110111111111111011111111111111111111111111111111010111111011111111111101110111011111111001111101111111111111110111010111111111111111011111111111111110101111111111011111111111111111111111111111111111111011111111111111111111101111111111101111111011111111111111111111110111111101111010111111111111011111111011111101011111111111111111111111111011111111111011111101110011011111111111111110111111111111011111111111111111011111111111111111111111011111111111111111111111111111111111111111111111111101111111011111111011111101111111111111111011110111111110111111111111111111111111111101111111110101111101111111111111111111111111111011101111111101111111101110101111111111100111111100111111110111111111111111111111111111111010011111111111111111111111111101111111111111101111111111111110111101111111101101111111011110100011111111111011011111110111111101111111110111111111101111111111111110101101111111111111111111100111011111111011110101111101111111111111111110011111111111100011111111111111111111111110111110111101111111111111111111011111111111111111111111011111111111111101111011101101011111110111111111111111111111111011101111111111111111111111111111101111101011111111111111111111111111111101111111011111111101111111101111101111111111111111111111111111111111011111111011111101111110101111111111111111111110111111111101011111111111111011111111111111111111011111111111110111111111111111111111111111111111011111101111111111101111110111111111111011111101011110111101111111000111111111011111001111111011011111111111111101111111111111111011111111001111111111110111001111100111111011111111111111101011111111111110011111001111111111010111111111111111111111111101111111111101111001111111011111111100111111111111111111111110111101111101011111111111111111101111111011111101111111101111111011111111111111110101111111111111111111110111011111111111111111111111111111111111111011101111101011111111111011110111111111111110111111011111011101111011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111110111111001111111111110111111010111101111111111011111111101101111111011111111111111111111111111011111111111111101111111110101111101110011101111111111111000111111111011111111111111111111111111111001101011111011100111111111111110111111111111111111111111111111111111111111111111111111011001111111111111111111011111111111111111111111011011111111111111111111101111111111111011111111111111111111111111111111101111101111111101111111111111101111111111110111111111010111111111111111111111111111001111111111101111111111111111111001111001111111111111011111111101111101011110111111010111111111111111111111110111011111110111111111111011111111111101111111111111011111111101111110110111110110111111111111111111111111100101111111111011111111111011111111111111111111011111111111111111111111101110111111011111111101101111111111111111111101110101111111111111111110111111101111111111111111111111111011001011111111111111111111111100111111011011111111111111111111111101111101111111011111111111111111111110111111111111011111111111111110110011111011110111111111111110111111010111111111111110111111111101111111111111111011111111111111001110111111101111010111110111110111111111111001111111111111110011111111111111111111111101111111111111111101111111011111111111111111111110111110111111111111111111111110111111111111111111111111011111010111111011100111111111011111111011110111011111111111101110111110111111111111111101111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111110111111111111111111111111111110111111011101111101111011111111010011111111111110111111111111110111111111110111111011111011111110111111111111111111111111111111111111111110111111111111110111111001111111111111111111001101111111110111111111111101111111111110011111101111110111111111111111110111110111100011111011111111111111111111011111111111110111101111111111011111111110111111111111111010111101101110111111111110111111111111111111111111101111111111111011111111101111111111101111011101111101111111111111111111111111111111111111110111111111111111111111111011111111111111011001111111111111111011111111011111111111111111111111111111100111111101111111111111101011110111001111101101111111111111111111111111111111110111111110101111111111111111111111111111111111111110111111111011111111011111111111110111111111111111111001111111111111111111111111111111111111111111111111111101111111111101011111111110111111111101111111011111011111100111111011111101111111011111001110111101101111111111111111111111101111111011011111101111011111111111111111111111111111111111101111111111111111101111111111011000111101111111111111111111111110111111111011111111111111111111111111101111111111111111111111111110111111110111111111011111111111111111111101111101111111111111111111111111111110110111101111111111111110111111111111111110111111111111111100111101111111111111111110111101111111101111111111111111111101111111111111111111101111011111111011101111110110111111111111111111111111111111111111111111111111111111110111110111111111111101110111111111111111111111111111111101011111111111111101101111111110101111111111111111111111111100111111111100111011101101111111110110111111010111111111011011111111111111101111111011111111111110111111110111111110110111101111111111111111111111110111111111111111101101111111111111101101111110011111101011111111111110111111111111111111111111111111111111111111111111011111110111101011110011111111111111111101111111111111111111111101111111111111111111111011111111101111111011111110110011011111011111111111111111101101111111111111111111111111101111110111111111111111111111111111111111111111110111111111111111011111101111111111111111111110111111111111111111110110111101111011111111111011111111111111111111111111111101111111111111011111111111111011001001111111111011111111111011111111111111111101111111111101111111111111011110111111110111111111111111110111111111101111111111111111111101111001111111111011111111101111110111101111011111111111111111110111011111101111111111111101111111111111111011111111111111111111111110111111111111110101111111011111111101011111101011111111011101111111110111110111111111101111111111010111111011111111111111111111111011111110111111111111111110011111111111111000011111111010111110111111111110110111111111110111111111111111111111111011111111111101111011111111111111101111111111111111011110111111111111111111111111111101111111111111101101111111010110111111110111111111111111111111111111111111111111111101111011111011111111111111110111110111111111111111110111111111111011111111111111011111111111111110111101110111111111111111110111111111111111111111111111111011111111101110110111111111111111111111111011011111111011111111111111111101111011101111110111111011111011111111111111111111101011111111111111111111111111011111101111011110111111011111111110111111111111111111110111111111111111111111111101111111011111111111111111110111111111111111111111111111111111111111110011111111011111011111111111101111101111111111111101110111111111111111101101111011111111111111100111111111111111111111110111111111110111111111111101111111111111011111111111111111111111111111111111111111111111011111111111111110011111111011111111111111111111111011111111111111111110111111111111001111111111011101111001110111111111110111111101110111110111111111111111111111111101111111111111111111011111111111111110111111111111101111111111011111111111111111111111110111100110110011111111111111110111111111101110111111110111011011010111110111111111110111111011111111111111101111011111101111111111111111110101110111111111111110011111111111111111111101111111111111111110111111110111111111101110101110111101111111111111111101011111111111111111111111011011111111100111101111111111101111111111111100111111111111111101101111111111111111111111111101111111111111111111111101011111111101111111110110111111111111111111111110111101111111111011111111101111111111111111101111111111111111111111101111111101111111101111111101111111111111010111111111111111010111111101111111110111111101111111011101111101111101111110111111111111111111010101111110111111111011111111111110111101111011111111111111111111011011111111101111101111111111111011111111111111111111111111111111111111111111111111111101111111111111101011111101111110111111111111111110111011111101111110001110111111111111111111101111111111111011111111111111111101111111111101101111111111111111111111111111111001110101111111111111111111110111111101011111111111111111111111111111111111110101011111011111111110111101111111111111111111110111011111111111111111111111111111111111111110111110011100111111111111111111111111000111111111111011101011111111111111111111111111111111111101011110011111111111111111111011111111111111111111111101101111111101111111111111111011111111011101111111111101111101111101111111111111111110111111111111111111111111111110111101111111110001111111111111101011111111111111111111111111101110111111111111011110111111110111111110111011111111111111111111111101111111110110111111111101111111111111001111111110111111101111110011111111111111011111111111111011111101111111110011111111111111111111111111111011101101111111111111111111111111111110111011101111111111111111111111111111110111101011011111111111010111111111111111111101011110100110111111111011111111111111111111111111101111111111111111111110101110111101101011111111111101111111111111111111110011111111111111111111111111101111101111111111111101111100111111111101111111111111111011111011111111110111111001111111111111011111111111111110111111101110111111111111111111111111101111101111111011111110111111111111111111111111111111110010111111101110110111111111111111111111111111111111111011101111111111111111111111011011110111111111111101111101111111111111111110111111111110110111111111110111111111111110111100010111011111111111111110111111100110111111111111101101111111110111101110111111111111111111111011111101111111111111111111111111101110011011111111111101101111111111111111111111001111111111111101111101111111011111111111111111111011111110111101111111111111111111111111110111111111111111111111111111111111011111111111111101111111111111101111111111111111111011011111011111111011110111010111101111011011111111101111111111111101101101111111111111111111111101111111111111111101111111111101101110010111111111111111111111110111111111111111111111111111011011101111111111111100111111111111111011111111111111111111101111111111111111111111111011111011111111111111100111111111111111111111111011111111111111011111010111111111111111110111111111101111111111100111110111011111111101111111011111111111011111011111111111011111111111011111111111111011110111111111111111111111001111111111111111110111111011011111111011111101111111110111111111011111111111111110101111111011111001111111101001111111011101110111111111111011111101111101111111111111111111111111111111110111111111111111111111111111111111101011111101111111101111110111101111111111111011111111111111111111111111110011111111111011111111111111111111111101111111111101110111111111110011111111111110110111111111111101111111111111111111111111111011111001111111111111111111111101111111111111111111111111011011111111111111111100110110111111111011111111111111111100111111110111111101111111101111011011111111111101110110100011111111110111111110111111111011111101111101111111111111111101011111111101111111111111111111111111101111111111111111101111011111011111111111111111111111101111111111111111011111111111111111111111111011111110110111111111101111111111110111111111110111101101111111010111111111111111111111011111111111111111111111111111111111110011111111111111101111101111011111111111111111111111111111110110110111101110111111111101110111101111111111111111111111111110111111111110111111111111111111101011011111011011111111111111111111111111111111111111111111111111111111110111110111111111111111001101101101110111011111111101110110111101111111111111111110110110111111111111101111111101011011111111111111110101011111111011111111111111111111111111111111011111111011111011111111111111111110111100111111110111111101111111111111110111111111111111111111111111011111110111111111111111110111111111111010111111101111110111111111111011111111111111001101111111101111111111111111111010111111111110111111110111011010111111111111111111111111011111111111111111111111111111111110111111111011111111111111101111111111111111111111111011111110101111111111011111111111111111111111111111111110111111111111111111111111111111101111110011110011111111101110111110111110110111111011111111111001111111110111111101111111111110111111111111111111111111110111111111001011111100111101111110111111011111110110011011111111111111111111011111111111101111111110110110111110111110111111111111111110111111110110111111111111101111111001111111111101111110111111111111101111111011001110111101111111111111111111111111011111111111111111111111110111111111111111111111111111111011101101111111111111111111011110111101111101111111110111101111111011111111111111111110111111111011111111111111101100101111111111111011111101111111111111111101110111011110111111111111111111011111100111111110111110111111111111111111110011111110111100111111111111011110111111011111101111111101111111111111110111111111111111111111111111111111111111101111110100111111111111101111110111111111111111111111111111111111101111111111111111111111011111111111111111111111101101011111111110111111111111111101111101110110110111010011111111111110111101110111111110101111011111111111111111101111111111011111111111111111011101111111111110111111111111011111111100111110111111101111111111101111111111111111101011111111111111111010111111111111111111111111111111111111111111110011111111111111111111101111111100111101111110111111111111111111111111101111101111111111101111111101111111111111111111111111111111011111111010110011111111011111111110101111111111111111111111101100111111101111111111111111111111111111101111101110111111011011101111101111101111111101110111110111111011110111111011110111111111110110111111101111111111111111111111111111111111111101111111101111110010111101111111011111111111110111111111111111111111111111111111111111111111101111101111111111111111111111011111010111111111111111111111110111111110011111111110111111111111111111111011111111111111111111111110111101111111111011111111110111111011111111111111011111111110111111101111111111111111011111111111111111111111111011001111111111111111111011101111111111111111111111101111111001111111110101011111111111111111111111111111111111111111111111111111101111111111111011111111110011111111111111111110111111111111111011001111111111111110111111111111111111101111111111111011111111110111101101101111110111011111111100111111111111111110111100111111111111111011011111111111111111111111111111110111111111101111111010111111111111111111111111111111111111111111011111111110111111101111111111111111111111101111111110111111111111011111111111111111111011111111011110111111110111110101101111111110110111010111111011111110111111110110110111011111111111111111111111011010111110101110101111111110111111111111111111111011111111111111111111110011111111011111011110111111110011111111111111101111111111111101111101011111011111101111111110110111111111111010111111110111110101111111111111111111011111111111001111111111110011101101100111111011111111111111111111111111111111111111111011110111101101111111111111111111111111111111111111011110111011111101101111111111111111111111111111111111111100110111110101011111110111110111111111111111111101110111111111111111110111111111111111101111111111010111111110111111111111111111111011111111111111111011011111010111111111110010011101111111110111111111111111111111111111111111101111111111111111111111110111110111110101111111111111110010111111111111111111111111111111111101111111111111111011111111101111101101111011111111101111111110111111111111111111111111111011111111110110111110101111110111111011111111110011111111011111110111111011111100111110111111111111011111111111111111111101111111111111111111111111111111111111101111011111111011111111111111111111111111110111111111111111111101111111111101111111111111110110111001111111111111111111111111110111111111111011111111111001111111111111111111111011110111111111111111111101101111110111111111111111111111111100111111111111111111111111111111111111101011101101111111110011111111111111111111111111111111111111111111110011111111110101111111011011011011110111111111111111111001101011111111111111111111111111111111111111011111111111111111111011101111111011111111111111110111111111111111111111111111111111111111111111101100111111111111111111111111110111111011111111111001101111110111011111111011111111111111001101111110111111111111111111101101110111111111111111111011111011110111111101111101111111111111111111011111111111011111111111011111111111111111101111111111100111111111111110111101011101111111111101011111111111111111101111111001010111101101111011111111111111111111110111001111111111111111111111011111111111111111101011110111011111111111111111111011010111011111111111111111111111111111101111111111111111101011100111101110111111111111111111111110111111111111111111111111111111111111111111111111111111111111101111111111111111111111111111011111111111111111111001111110110111111111111111111011110011111110111100111111111111111011111011111111111111111111111110111111111111111111111111111111111110111111011111111111011111111001101111111111111111111011111111111111111111111111011111111111101011011111111011101111111010111111111111111111111111111111111001111111111111111111011111111011111111111111111111111111111011011111111111111111011101111111111111111101111111110111111111111011011111111111011111111111111111110111111101110111111011111101111111101111011111111111111111111111111111111111111111111011110101111110111111111111111111111111111111111111111011110111111111111111111111111111111111110101111111101111111111111111111111110110111011111101111111111101111100111111101101111111111101111111111111110111111111111111111101111111111110111111111110111111111110111111011110111111011111110111111111111111111111111101111110011111111111111111101111111011111111110111111111110111111111101111101101111011111111111011101111111110101011111111111110111111111111111111111011011111111110111111110111111110111011011010111111111111111111011111111110011111111111111111111111111111011011111110111111011111110111111100111110101110101111111110111110111110110101111101111111111111111111110111111111111111111101111111111111111110111111011111111111011000111111111111101111110111111111011111111111111111111111110111111111111011111111111111101111111111111111111111110111011101111011110110111111111110011111011111111011101111111110111011111111111111011111111111111111111111111111111011111111111111111111011101011111011111111111111111111110111101111011111111100111111111111111111111111111111111111111111111111111111111111110011111111111111111111111111111111111111111011110111111111111111111111101111111111111111111111111111111111111111111110111101111011111111111111111110111011111111111011111111110111111001011111011111111101001111111111111111111110111111101111111111111111111111110111101011111111010111111111111111111111111011111111111111111110111111111111111111111111111111111011111111111110110110111110110111111111111111110111111111101011111111111110101111111111111011111111101111111111111110110111111111111111101110111111101111111101101111111111111111111011011011011101111111111111111111111111111111111111111111111111111111101101111110111111111111111111111111111111110111111110011111101111111111101011111101111111101111111111111111111111101101101011111111011011101110111111111111011100111111111111111111111100011111110111111111110011111011111011101110111111111111110111101111111111111110111111101011111101111111111111101111111111111111111111111111111111111101101111111111111111111111111111111111111111111111111110011111110111111111101111111111011111110011111111111111111111111111111011111111111111001111111101111111011111111111111101111101111111111101111011111111111111111001111111111111111111111111111111011111111110111011111101011110011111111110101110111111111111111111111111111111111111111111111111110101111111111111111111111111101111111111101101111111111011111111111111111111111110111111101111111111111101110111111111111101111111111111111111111011111101111111111111011111110111111111111111111111111111111111011101111100111111011111111111110111111111111111111111111111111111111010110111111111111111111111111111111111111111111111101101110001111101111111111111111111111111110111111110111110111111111111111110111111111111011111111101111101111111111111111110111111111110111111110111111111111111111111010111111111011101111111111110110111001111111110110111111111111111111111111111111100111010111111111111111011111011110111011111111111011111111111110111111111110111111110110111011101011111111111010111111101011111111111111111111111101011111111111111010111111111111111111111111111111111111111101011111111111111010010111101010111111111111111111111101111111101111111111101111111110111111111111111111111101110111011111011111111111111111011111111111111111001111111011111111111111100111101111110111111111101110111011111110111111111111111101111111111111111011111111111111110111011111111111110111111111111011101111111111110111011111111111111111111110100111111111111101111110110111111111111111111101110111111111111011111110111111111111111111011111111111111101111011111001111111111111101111111011111110111111111110101111111110111111111111111111101110111111111101111111111111111111111111011111111111111111111111111011111111111111100111101111111111101111110111111111111111111111111111101111111111111001111111101111111111111110111111111111111111110111111111111111111111110111010101001011111101111111111111111101111111111111110110111110111111111111111111111111111111111111111111011110101111111111111111111111111011111101111111111111111111111111111111011111111111101111111101111111111111111100111111111111111111111111111111111101111111110111111111111111111011111111111101100111110110111101111011111111011110111111101111110111111111111111111111111111111111111101100111111111011111111110001111111111111111011111111111110011111111111111111111111111111101011111111101111111111101110111111111111110111011001111111101111101111111111111111111111111110000111011011111111111011111101101111011011111111101101111111110111011111111110101111111011111011110111111111111111111111111111111111111111111111111111011111111111111101011111111111110101101111111111111111110111110111111011111010011111111111111011111011111111101111111111111111110111111110111111101110111111111111111110111110111111110111111111111101110111111111111111111110111111010111111111111110111011111011111111111111101111111111111111011111111111111011111111111111111111101011111111111111111111111011011111111111101111111111011001011111111111111111101111111111111111111111111001111111111101111101111111111111111111111011111111111110101011110111111101111111010111111111011111110011110111110111111111111111101111111101110111111111011111101110111010111111111111111111111111111111111111111111111111111111111111111111101111110111111111111101111111111010111111111111111011110110111111111111101111111111111111111101111111111101111111101111111111111011111111101101111111111111110111111111101111111111111111111111111111111111110111011111101011111111111111111101111110111111110111111111101111111111111111110111111111110011111110101111111111111111101111111111011101111111111011111111111111111111111011111111111111101111110101111100111111110011111111111111101111111111111111111101111110111101111111111111111111111111111111111111110101111111111011111100101111111111111111111111111111101101111110111111111111111111111110111101111111101111111111111111111111011111111111111110111111111111111110111111111111110111111110111111111111110111111111111111011011111111011111111111111011101011111111111101111111111111111111111111111111111111111111111111011111111101111111101111111011111111101111111110111111101110111011111111111110101111111111111111111101111111111111111111111111111111111111101111111111101111111111110111011011111111011011111111101110111111110111110111111011111111101111111111111111111011111111111111111101011111010101111111111111111101111111111111111110011111111111101011111111111111111111111001111111110111111110011111111111111011111110101111110111101111111111101111011111101111111111011101101111111101011110111111111110111111111111111101111100111111110111111111110111111111101001111111111111111111111110111111111111110111110111111111111101111101111111111111111100111111111101111111111111011111101111110111111111101111111111111001110111111111111001111111111111111111111111101011111011111111111111010011111111111101111111111111011110111110111111101111111111111111011111111111111110111111111111111111111111110111111111101111111111011111111110111101111111111111111111101111101011111011111110111111111111111111111111110111111111111101111111111110011111101111111110011101111111111111111011111111111111111110111111111111111111111111111111111111111101111111111111111111101111111111111111111101111011110111111111111111101111110111111110111001101111101111110111111101111111011111111110010111111111110111110111101111111111010110111111111101111111011111111011101111111011101111111111111111111111111111111111101111111111110101111111111111111111111111101111010110111111111111111111111111101111111111110110111110101111101011111100111011011101111111111111011111111111111111111111111111001111111010111111111001111111111110111110111111111111111111001111111111111110101111111111011111111111111111101010011111111110111111111011111111111111111110011111111111110111110111111111111111110110111111111011110110111111111111111111111111101101111111110111111011111111111111111111111110111111111111111111001111111111101111111111110111010111111111111111110111111100111111001111111011111111111111111111111111111101111111111111111111111111110011011111111101110111111111111111011111111011111111111110111111111111101111111111111111111111111111001110111111111101111111101111101111111010101111111111111111111111111111101111101111111111111111111010110111111111111111111111111111111111111111111111101110111111111111101111111111111111111111111111111111100110111110111111111110011011111111110111111111111111100111111111111111111101111111111111111111111111111111111111110110110111111111110111110111111111111111111011111111111111111011011111111111111110111111111111111111111111111111111101011111111101111111010111111110111111111111101011111111111111010011111101011111111110011111111101101111111101101110111111110111111010111100111111111111111101111111111111111001011111111111111011111111111101111111011111111111111101111111111111111111111011111111111111111111111111111111111101010111110111111101111111111111111111111011101010111111111111111111100111110111111111111100111111110111111111111111111111011111111111111011110111111111111111111111111111011101111111111011111111111101111011111011011110111111111011111110111111111010111111111111111111111011110111111111111111011111101101111111001111111111011111111110111111101111111111111111111110111111111110101111111111101011111111110111111011111111111111111110111111111011111111101111111111111111111111111111111110011111011101111110110111011101111111110111111111111111001010111111110111111111111111011111111011111111110011111111111111110111110111111111111111111101111101111111111110011111111111111110111111111111111111111111111101111101111111111101111111101111011111111011111111111010111111111111111011111111101111111111011111101101111111111111111110111111111101011111111111101011111111111111110011111111111111111111111111011111111111110011111101101111101111101111111111111111111111101100011010111111101110101111101111111111111111111111111111110111110111111111110111111111111111110111111111111111101011111101111111000111111111101111111111110111111110110111111101111010101111111111111111111100111111110111110111111110110110111111111111111111011111111111111111111111111111110111110111111111111111111111111011111111101101101111111111111111101110111111011111111110111011111101101111111011111111111111111111111111110011111111111111011111111111111110111011111101111011111111111111101111111111111111101111111111111111111111111111111111111110111111111111111111111111111111101111111111111111111111101111111010111111111110011110111011111111100101101111011111111111111011111111111111111011111111111111111111111111111111111111101111111101111111010111110101011111111111111111111111111111011111111110111111111111111111111111111011111011011111111111111011111111101111111111111111011011111111111111111110111111010111111011110101111111111101101101011111011111011111111111111110111111001111111111111101101111111111111111111010111111111111011111111111111111111111011111111111111101111011101110101111111110111111111111111111110011111111111111111111111111111111111011111111101011110111111111111111111110101101111111111111111111110111111111111111111101111111111111111111110111011101111111111111111111111111111111111111110111111011111101011111101111111111110111001011111000111011111100111111111101111111111111111111111110111101101111111111111111011111111111111111110111111111111111111111101111111111111011110111111100111111111111110111110101111111101011101111111110110111111011111111110111111011111111111111111111101111111111010011111011111111111111111111111111111101101011111110111111111101111111111111111111111111101110101111011111111111111111111111111111111011111001111111111111111111101111111111111111110111111111111111011111111111111011111111111111111111111111111101111111111111111111111011011011111111111101111111111110111011111111111111110111111111111111111011111110111111111111111010111111111110111101111011110011111101101111101111111111111111111001111111111111111111111011111111111011100111111101101011111111100111011111111111111111111111111110111111111111111111111111111111111111111111101111101111111111111110111111101110111111111111011011111110111111111111111111010111011111111111110111111101011111111011111111101110111111111111111111111111111101111111111111111111011111111111111111011111111111101111011111111111111011111111111110111111111110111111111110011111111111110011111111111111111101111011111001101111111111111111111111111111111111111100111111111111111110011111110101111111011111111111111111111111100111111111111111111111111111110111111111111011111111111111101111111111111111011111111111111111100110111111111011111111111111101111111010111111111101101111111110111111111111111101110110111111111101111111111101101111111111111111111111111101111111111111101111110110000111011111111111111111111111111111111111111101111111100111111101111111111111111111111001111111111111110111101111101111111011101111111011111111111111111101011111111111111111111110111011111111111011101111111111111101111111111101111111101111111111111111111111111111111111111111111111101111111001111111101101111110111110111111111111111111111011111111111111111011010111111111111111111101100111111111100111111101111101010111111111111111111111111011111111111111111111101111111111101110011111111111111111111111101101111111011111111111111011111111110101111111111111111111111101111111111111111110011111111111111111111111111011110011111101100111111110110111111111111111111011111111111111111111111111111111111111111011011011111111111111111111111001111111111111111111111111111111101011111111011111111111111111011111111011111111111111111111010111111011111110101111111101111111011101111111111111101111110111111111111101111111111111111111111111111111110110111110111111111011110111111011111111011111111111111111111110111101101111011011110111010111111111111011111101111111111111111111111111111111011111011111111011111101011111111111111011111110111011111011111111111111111111100111111111111111110101110101001111111111111111111111111011111111111111111111111111110111011111111111111101111111111111011111101111111110111111111111111111111011111110101111111111111111111111111111111111111110111111111011111101111111111001111111111111111111111111111111110111111011111011101111011111111111111011111111111111111111111111111111111110111111111101111111111111110110101111111111111111111110111111011111111111110111111111111011111011101111111111110111111111110101111111111111111111111111111111111111111111111111101111111111111111111110111111111111110101100001111101111111111111111111111111111101111111111110111111111111101101011111111111111111110111111111110101111111111111111111111111111111111111111101011111111111111111100111111111101111111111011111011111111111111111111111101101011111111111110111111001101111111111111111101111111111111101111110111111111010111111111111111111111110111111011111111111111111111111111111111111111101010111111111111111001111111111011111101111111111111111111111111110111111101011101111111110111111111111111111111111111101111101111111111101111110111111111111111111111111111111111111111101011111111101011111110111111111110111111110111101101111011111111111111111111011111111110111111111111111011111111111111011111011111110111111011111111111111101110111111111011110111111011111111111111001111111111111011111111111111011111110111111111111110111110111110111101101110111111111111111110011111111111111110111111111011111111101111011111111111111011111111111111110111111111111111111101111111111111111111111111111111111111110111111111111111111110111011111111111111111111101111111111111111111011111001101111101111111111111011110111111111111111111101001110111111110101111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111011111011101111110111111111111110101110111111111101111011011011111111011111111111111111111111111111111101111111111110110111111011101011111111111111111111111111111111111011111111110100111111111101101111111111011101111111111111111111111000111011111111111111110111111111101111101010111011101111111111111111111111110111011110110111101111111101111111111110111111111110111110111111111111111111011011111111101111011011111111111111111110001111111111111110010111111111110111111111110111111101111111111111101111011111011111111111111111111111111101111111111110110111111111111110111111101111011110111111111101111111111101111011111111111110111111011111101111111011011111101111110110111111011111111111001101111101111110111111111110111011111111011111011101111111111110110111110111111111110111111110111101111110111111111111111111111111111111111110111011111111100111111110101111111111101111111011111111011110111111111111111111011111111100111111111111111111111111111111111111011111111111111111111111111111111011111111111101111111101111111110111111011111111111111111111111111111111111011111111110111111111111111111111111111111111111111101101111111111111111111111111110111111111110111111111111010111111111111111111111111111111111111101011110111110111111110111110111101111110111110101110111111001101111111111111111101111011111111101111101111111101111111111111111111111111011111111111111011111111111110111111111111111111111111111111011111111111110110111111111011111111111111111111111111111111111111111111111111010011001111010111111111111011011101111001101110111111111101110111111111111111111111111111101011111111111110110111111110101101011101111110111111111111011111111111111111011111111110111111111101111111111110111111111111111101111011111101111111110111111111111111111111111111110111111110111110111111111111111111111111111111111111111100111111101111111111111111111011101111111111010110111111111111111111111111111101111111111110111011111111111111111111011111111111101111111111111111101111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111111011111111111111001111111111111111101101111111111111111111011111111111110111111101110110111111011111101111111111110111111111011111111111111111111011011111111110111111111111111101111101111111011111111111011111111111111111111111111111011111101011100111111111111110001111111111101111111101111111111001111101111101100111111111101111111111110111111111111111111001111111111111111111111011011111111101111111111111101011111111111111111111111101111011111111101111111011111011111111111100111111111011111101111101011111110111111111111111111111111111111111111111111111111101011111111111111111111111111111111111011111111101111111111011111111111111111101111111011111111111111111111111111111110111111111011011101101111111111111111110001101111111111111111111011111011111111111111111110111111110111111111111111111111111111111010111111111111111111011111101111111111111101111010111011111101111000101011111111011111111111011111011111111101111011111111111111011111111111111111111111111111011011111111111111111111011110101111111111111111110111100111010111111111111111111111111111111011111111111111110111111111011111110111111011011111111111111111111101111111111111111111111011111111111011111011111111111111111111011111111111111111111111110111111011111111111111111111111111111101111101111111111110111111111111111111111101011111111111111111100111111101111111111111111110110111111111111111011110111111110111111111011111111111111110100110110111111111111111110111111111111101111011011101110111111110111111111111111101111011111111111111011111111011111111111100111111111010101111101111111111111111111111011111111110111011111101110111111111011111111111011111011011111011111111011111111101110101111111111111111101111111011111110111011111110111111111111101111110111101111111101110111111111111111101110110110111111111011111111111111110111101011110111111111111111111111011111100011111111111011011101111111010111101111111111111110111100100111111111111111111111111111011111111111011111111110111111111010111111101111110011111111111111111111111111011111101011111111111111111101110111111111111111111111101111110110111110011111110101111110111111111110111111111111111011111111111111111111111111111111111111111110110111111111101111111111111101111111111111111111111011111111101111011111110111011111111111111111011011110111110011011111111111111111111111110011111111111111111111110111111111111111111111111011101111111111110111111111111111111111010101101101101111111111111111111111111111111101111111101110111110111010011111011011111011111111111111011111111011011111111111011011111110111111111101111101111111111101111110101111111110111101111111111111111111111111111111111111111101111111110111111111111111111111111111111111111111111111111001011111111111101001111111101111111111111111111111111101011111111010011111111111111011110111110111111001101011111111111111111111111111111111101111111111111111111101110011111111111111111111111110111111110111111111111111110111111001111001111111110111101111111111111111111111111111011111111111001111111111111111111111111111111111111111011111110111111111111111111110111111111011011111111111101111101111111101111111111111111110110101111111111111111111101111111111111111111111111011011111111111111111101111111111111111111111111111111111111011110111110010101101111111111111101111111111111111111101111111111011111111111111111111110111001110111101111111101011111111111100111111111111111111101110111110111111111100111111111111111111111110101101111110111110110111110111111100111111111111111111110111111111011011111101111111111111101111110111011111111111111101111111111111011111111111111110111111111111111111011111111111111111111111111111111111101111111111111110111111111111111110111110111110111111101101111111101110111111111111111011111111111111111111111111111111110111111111111111101111111111101111111101101111111110111111111111111111011111111011111111111111111111101111110110111101111101111101111111101111111101111101111111111111111111111111111111111111111111111110111111111111110111111111111101111101111111111111111111111111111111111111111111111011111111111111111100111111111011111111111101111001111111111110101111111111111111011111111111101111111111011111111101111010110111111110111111111110111111111111110110011111111111111010111111111111110111111111101111110111011111110111111111111111111111111111111111101111111111011111101101111111111111111101111111111111001010011111111111111111111110111111111111111111111111111111011111111111111111111111111111111111101111111011111111111111111111111111011011111111111101111110111011111111101001011110111111110111111111110111111101110111110111101111111111101001111111111111111101111111011011111111111001111111111101111111011010011110111111111111111111111101111111111111111110111111010111111111111111111011111111010111111111111111111101101111111110111111101111111111111111111101111111111110111011111111111111101111111111011111111110111111111111111111111111111111111111111110111110111011110111111111111111111111110001111111011111111111111110111101111011111111110101101111100111111111111111110111010111111111111110111111110111111110111111111111111111111111011111111011111111110110010011111111111011111111111111110101111111111101111111111111111111111111111110011111111011111101111111111111110111111111111111111111111111111111111111111111111111101110111111111101111111111011111101111111111111111111110111111011110111111111011111111110111111111111111111011111111101101101111110001111111111101111111111111111101111011111110101111111111111111111111111111111111111111111111111011111011010111110011110111111111111111111111111111111111111111111111111111111111101111111111111101111110111111111111111111111110011101111111111111111111111111010111011111111101111110111111111111111111111011111111111110111110111111111011111111111111111111111110011111011111110111111111111001011011111101101111111111111110111111111011111111111111101111111111100011111110111111111111011110111111111111111111111111111111110111111111110111111111111111111101111111111110111110111111111111111111111111111111110111111111010111111111111111111111111111111111101111111111011110111111111011010111111111111111101111111111111111111111011111010111111110100111110101111011101111110111111111111111010011110111011110111111111111111111111111111111111111101111011110110111111111111111111110010111111111111101111111111111101111111111111111111111101111111111111101111111111111110110111111111111101111101101111011111111111111111111111111111011110011111111111111111111111011111111011110101111111011111111111110111111011111101111111111111111111111111101111111111111111111111111111111111101111111111111111111111011111110111111110111111111111011110101001111111111110111111111111111010111111110111111111111111110111111111111111111111111011111111111111111111111111111111010010111111111111111111111010101110111111111101110111011111011101111111111111101101111011111111111010111111111111110111101011111110110111111111110111111111111111111111111111111111111111111111111111111111111111111110111111111111111001111110111111111111011111101110101111110111111111111111111110111111110111111111111111111111111111011101101111111111111111111111111111111111111101111011111111111110110011111111111011111111011111111111111111111101111111111111111111111111011111111111101111111011111111111111111101111111111111111111111111011010001111111110111111111111111011111111110111011111111111111100111111111101111111110111111111111111111111111111011111011111111111111111111111111111111111111101111111111111111111111100111111111111111111111111111111111111111111111111111111101101111111111110111111111111110001111101111111111111111111111111101110111001111110110111111111010111111111111111111101110111111111111101111111100111110111101111110110101111011001111111111111011111111110111111111101111111111111111111110110111011101101110110011111110111111101111111111111111111111110111111011110111011111111111111101111101111110111111110011011111111111111111110111101111101110111111111111111111111110111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111111111011111110111111110111110111001111111111111111111111101111111110111011011111111111111111111110110111111111111111111111011111111111111111111011011111111111111111111110110011111111111101011111111110111111111111111111111111111111110111011011111111011111111101111011111111111111111111111111111111111111111111011101111111111111110111011111111101101011111111111111111111111011111111111111011111111110111101111111111101111111111111111111111101111101111111111111111111011111111111111111111111111111111011111111111101011111111111111011111101110111111111110101111110111110111110101111111111111111111111111011111111101101111110111111101111101110011111111111111111111110111011111111110111111111111111111111111111111011101111111110111111111111111111111011111111011111111111111111111110111111111111011111111111111111111111101101111111111111111111111110011111110111111110101001111111011111111111111110101111111110111111111111111011111111110110001111110101111111111111111011011111110011111111111100111111111111010111111111111111011111111111101111111110111111101111111111111011111011111111111011111011111011101111011011111111111111111111111111111111111101011111111111111111110111110111101111111111111110111111111111011111111111111111111111111111111101111111111011111111111101111111111111111110111111111111110111111111111111111011111101011110111111111111111011111100111111111011111011111111111111111111111110111111111111111111111111111111011111111110101111111111111111111011101111111111110111011111111111111101111111111011111111111111011111111111111111111111111111111110111111011111111111111111101111011111111111110011101101111111111101111111111111111111101110111111111111111111111111111111111111111011111111111111111111011111111111111111111111111111110111011111111111111111110111111111111111111111011111101101110111111001111111111111111111111111111111101111111111110111111011111111111111111011111111101110101111111111111110111111111101111110111111011101111111111111110111111011111111110111101110110111111111111110111111111110111011111111111111111111111111111111111111111111110111011111101111111100111111111101111111111111111011111111111110011111111001111111111111111111111111111111111111111111110111101111111101111011111111110101111111111111011111111111111111111111111111111111101111110111111011111110111111111011111101111111111111111101110111111111111111111110110111111111111111111110111111001110101111011111111111011111111111111111111111111111111011111110111111111111011011111111101011101111111111101111011111111111111111111011111111111111111111111111111111110111111111111111111111111111011111111101111101111111011110111111111111111111111111101110111111111110111111111010101111011111111111101111111101110101111111011111111101111101111110101111111111111111111111111111111111110111111111110011011111111111110111111110111111111111111110110111111101111111101111111111011111111111110111111111111011111111011101111010011111110111111111111111111111111110111111011110111111001111111111111111111111101111111111111111111111111111111111110111111111111111011111101011111111101111111011111111011111111111111111111111101111111011111111111101111011111111111110111111111110011111101011111111110110111111101111111011111110111100111111111011010110011111011100111111100111111111101111111110111111101111110101111111111111111011111111011111111111111111111111111111111111111111111111111111001110111111111100111111111111111111111011111111111111110111111111111111111111111111111111111111111111111111111110011111111111001111100111111111111111111111111111111111111111011111111111111110110111111011111111111101111111110111111111100111111111111111111111111111111111111111111111101111001111011111111111111111101111111011111001101111111111111111111111111111111011111110111110111110111111111111111111110111111111111111011111111111111110111011111111111111111111011111111111110110111111111101110111111110111111111101111111111111111111110011111111111111111101111111110111111111111111111101111111111111011101000110111111111011110111111110111111111101111111100111110111111111111111111111111011011111111111111111110111111111101111111111011111111111111111111110111111111011011010111111111111111101111101111111111110111110111011111101111111111111111111011110111111111110111111111101111111111111111111111101111111111111111110111100111011111111011101011111111111111111111111111111111111111111110111101111111111111111111110111111111111111111111111111111111111111111111111111111111111111110111110111110011111111101111111101111111111111011111111111111110111111110111111111111011111111111011111111111111111111111111111111111111110101111111111111111111111111111101111101111011011011111111111111111111111011010111111111111111000111111101111001111111111111111010111011101111111110011111110111111111111111011111111111110111110111011111111111111111111111111111110011111011110111111110111111111111111110111101111111110111111111111111101111111111111111101111111111001111011111111111111110001110111101110111111101111111110111101111111111111111011111111111111101011111011110101111111111110111111011111111111111111111111101111111111111101111111111111101111110111111011101111110111111111111011111111011111111111111111111111110110111011101111111110111011111111111111111111111111111111111111111110110111111111111111111110111101111111111011111111111111111111101111101111111111111111110111111110011011110010111111111111011111111111011111111111111111111111011011111111111111011011011111111111101101111111111111111111011111111111011111111111111111110011011101111111011111111111111011111001111111111111111100111111111111111100111111111111111111111011011001101111111111110011011111111111111111011111111111111111011111111111111111111111111111011111011111111111110111111110111111111111111010111111111111011111111111110111101011111111111111001011111111101111111111011111111111111111101111111111111111111011111011111111111111111111111111110011111101111111111110111011111111011111111100101111101111111011111111111111011111110111111111111111111111111101110111111110101111111111111111111101111101111111111111110111111111111111111101111111111111111010111111111100111011111011011111111011011111111111001111111111111111011111111101111111111111111111111101111011111111111110111111111111011011111111101111101110111110100110111111111111111011111101111111111111011111001111111111111111111111011011111111111011111111111111111111110111011101111111101111101111111111110111011110111111111111111111111111011111111111111101101111101101111111011111101111111111111111111101001111111111101110111111111111110111111111111011111111111111111111101111101111101111111111111111011111111111111111111111111111111111011111111111101010101011111110101111111111101111101111111111011111111101111111011101101111011110111111111111111011111111111111111111011010111011111111111111011111001111001111101111111110111111111111111111111011111111011011011011011010111111111111111111111111111111111111111111111111111111111111110110011110111111111101011111010111111111110111111111111011001111111111111110111111111011111111111111111111011111111111111111111111111111110111111111101101111111111111111101111111111111101111111111101111111111111111111111111111101111011111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111110111111111111111111111111111111111111111111111111111100111101111111111111111101111110111111111111111010111111101111111111111111111111111111111111111010111111111111110010111011111111101111111111111111111111101111111110111011101111011111111001111111111110111111110111111111101011111111111111111111111110111111111111111111110111111011111111110001101111111111011101111111111111111111111111111111011111110110110111110011111001111111111111111011111111111111111101011111111111111111011111111111111111111111111111110101011110111111101111011111111111011111011111111111111110111011111110111111101011111111101111111111111111111111101111111111111111111111111111110111110111111111111111111011111111111111111101101111111101111111111110011110011111111111111101101101111111111111111111111111111111111111111111111110111101111111111111110111111001111101111111101111010110110111111111111111101111111111111111111111111110111111111111101110111111011101010111011110101111001011111011111111101111111010111111011111111111111111101111001011010111111011111111111111111101111110111111101111011111111011111111111111111111011111111111111011101111111111111111111111111111111111111111111111111101111111111111110111111111111101110111111011100111111111010111011111111111111111111110111111001111111111110111111111111111101111111111111111011111111111111111111111111111011011111111111111111111101111101111011111111111111111111111111111111111111111010101111111111111111011111111111111111100111011111111111111110111111111111111111111111011111111111111011110111100111111110111111111111101111111111011111111111011111111111111111111111111111111111101111111111111111111111111101111110011011111101111111111111111111111110111010111111101111111111111111111011111111111111101111110111111111011111111111101111111001111101111111111111111111011111110111111011111111111110111111111111101011111101111111110111111001110111111111111111111111011111111100010011111101101110011111111111111111111111101110111110011111111011111111111111011111111111111111111111110111111111110111111101111101111111101111111101110111111111111111111111111011111111111111111111111111011101111110111111111101111111111111011111111111111111110111010111111111111111111111111111111100111111110111010101011101111111111110101111111111111101111111111111111011111111011111101011111111101111111111011111111111100111111111111111111111111011110101111111111111101101111011111011111110011111011111111111111111100111111101111111110101101111111111110011111111111101111111111111111111111111111111111111101101111001110111111111010110101111111111111111110111111111111111110111111111111110101111111111111111110101111111110101111111111111111111011111110111111111111111111101011111110111111110110111111101111111110111111111111111011111111101001111101111111111111111111111110111011111111111111111111111110111111111101110111111100111111111111110111101111111101111111101111111111111011111011111111111111111111111110111111011011111111111011111111111111111111111100111011111111110111111111110111111111111010111111111111111111111011111111111111111101111101111111111111111111011101111111110111111110011101111111111110111111111111111110111101110111111011111011111011110111111110111111111111111011010101111111110111110111111111111111111111111111111111111110111111111111111111111111111111111111101111111111110111111101101111101111111111101111111111111111111111111111110011111111111111101011111111111111111011111111111111111101001111101110011111101111101111011111011110111101111101101101111111110111111110111111101111111110111111111111101111011111111111111111111111111111111111111101011111110111111111011111111111111111111111111111110111111111110111101111011111111111111111111111111111000110111010111011111010111111111111111111111010111111111111101101111111111110111111010111111011111110111110111111111111111111111111011111011111111111111111011111111111111111011111110101011111111111111111111111111111111111111111111001110011111111011110100101111101111111111111111111111111111111111111111111101111111111111111111111111111110011111111111111111011111110111111111110011011111111111010111111111111011111111111111111101011111111101111111001111011101100110101111111111111111111111111111111101111111100111110101111011111111101111111111111111111111111111111101111111111110011111011111111111101110111111111111111110111111111111111110111110111111111111110111111101111110111110101111111111111111100111111111111111111111111111111101011110011111011111001110111101111111111111111101111110111111111111111111111111111111110111111011111111111111111111111111111110110111111111010111111111111111011101111111111011111111111111110101110111111111111111011111111011111111111111101100101111111111110111111110111111111111111111111111111110111111111101111101111110111111111111101111100101111111111101110010101111111111110111110111011111111011111110111111111101111101111111111111111111111111111111111111111011111011111111111111111111111111011111111111100111011111111110111110111111111111110111111110110111111101111111110101101111111101111111111111110111110111111110111111111111111111101101101111111101111111111111111111111111111011111111111110111101011111111111111111101111111111111111010111111111100111111111111111111110111101111111111011111101111111111111111101111110110011111111111110111111010110111111111101111111111110111111110111011111111111111111111111101101111011110111111111111111110111110111111111111101111111101111111111111110111111111111111011111110101111011111101110111111111111111111111101111111111111111111111111111111111111011111111111111111111111111111011111101111111111110111111111011111110111111001111111111110111111101101111111101111111111111011111111111011111111111111111111111111110111111111111111111111111111111100111111111101111111110111111111111010111111111111001111101111111111111111011111111111111111101111111111100111010101110111111111111101111101101111111101111101111111111111111101111111111111111111111111111110111111111101111111111101111110111111111111111111110111111101111110111111101111111101110111111111111111111111111011111111111011011111011101111111111111111101111111111111111101010111111111101111111111111111111101111111111111111101111111001111111110110111111111111111111101111101111111011111111111111111111111111111101111111111111111110101111111011111011101111111111111111110111111111111111110111111110111011111111101111111111111110101111101111111011111111111111111110111111111111111101111111111011011111111111101111111111011101111111111111011111111110101111111111111101011111101011111111111111111111111111111110011110111110111111011011110111111111111111101111111111111111111111111111111011110111111111110111110011111111111111111111111111111111101101111111111111111111111111111111110111111111111111101011111111111111011011011111111011110111111111111111111001111111111111111111111110101111111111101111111111110111111111111110111111111111111111111111111101111111111111100111111111111110111110111111111111111111111010111111111111111111111111111111111111111111111111111101111101111001110111111111111111111111110111110111111111111111111111111101011111011011111111011111011111101011110111111101111111111111111111110111111111101111111111011111111101101111111011111011111111110111111110111111111111111010111110111101101111111101111111111111111111110011111011011111111111101111111111111111101111111111111110111111111111111111111111110111111111111111111111101111111111111111111111111111111111111111101111111111111111111111111111111110111111111111111111111111111111111111111111111111111111110111111111111111110110101111111111111111111111111111111111111111111101111111111101111011011100111110111111101111111111010111111111011111101111111111111111111110111110111111111111111110111111111111111111111111111111111111111111111101111111111101111111111101111110101111111011111111111011111111111111111011110111110111111011111101111111110111101110111111101011011110011111111111101111111011111011111111111111111111111111110010111111001111111101111111100111111101111111011110111101111111110111111111110111110011011111111111111011101111111101011111111101111111111111111111111110111111111111111111111101111111110111111101111111111111111010111111111111001011001111011111111111111011111001111110111111111101111111111111111011111111101111111111111111111111101110111111111111111110011111111111110111111010111111111110101111111110011111111101111111111111111111111111101111111111111111111011110111111111111111111111111110111110011111111111101111111111111111111011111111111111111111011111111111011111011111111111111101010111111011111111110111101110111110101101111111111111110011111111111101101110101111110111111111111011111111111111111111101110111111111111011011111111111110001111111111110111111111101110110111011100111111111111111110111101010111111111110101111111111111111101111101111001110111111101111111111111110111011111111101011111111110111111110111011111110111110111111101111110111111111111111111111110111111111100111111111110111110111111111111111111111111101011111111101111111111111111111101011111111111111110111101101111111111011100110111111111111101111111111111111101111111111100111111111111110111111111110111101111011111111111111111111110101111111111111111011110111111101101101111011111111110001011101011110111011111111010111101111111110111111111110111101111111111111110111111111011111111111111101011111111111111111011111110111111101101111111111111110111101111011111111110111111111101111111111101111111111101111110111111111111111111011111111111111111111101111111111101101111111111111111111111111111111111111111111111011111111011111111111111111111110110111111111111111111110111111111111111101111101101111011111111110111111111011111111111111111111111111110111111111111111011111011111111111111111111111111111111111111111111111111111111111111111111111111111111101111111011111111111111111111111011111101011111111011011111111110111110101101101111111111111111111110111101111111111111111011110111111111111001111011110101011111111111011111110111111111111111111011111111011111111111111111111111101111111111110111111111111111111111111111101111111111111111101010110101011111110110111111111101111111111111111101111111101111110111111101111111101111101111111010111111101111111111111110111111111111111111011101011001111101111111101111111111111101110101111111011110111111111011111111111111111111111111111111111110111111110111111011111111111101111111011111111111111111011111111011111111011111111101110111111111101111111111011111111111111010111111111111111111111101111111110111111111101011111011111111011111011111111111111111111111111101111011111111111111111111111001101111111111111111111110110111111111011111111011111111111111111111111111111111111110111111100111111110111011111111111111111111110111110011011111101110111111101111111111111111101111111111111111101111111111111111111110111011111111111001111111111111111111111110111111111110011101111111111111110111110101111110111111111110111101111111111111111110111111111011011101111111111111111111111111111111111111101111011111111111111110111111111111111111111111111111111111111111111111111011111100111111111101111101111101111111111011110101101111110111111111111111101101111111111111101101111111111111110111111000111111111111111111111110111111101111111110111111111111111111111111011111011111111111111111011111111111110111011111111111101111111101111111111111111011111111111010111111111011111111111110111110101111111111111110011111111111111101111111111011111111111111111111111111101111111111111111111111111111111011011111111111111111111111111111111101011111111111110111011111111011111011101111111011011111111111111111011101111111111110111111111111011111111011111111111101110111111111111111111111111111111111111111111111111111111111100111111111111110111111111110110111111111111111011111001111111111101111111101101111111111111111111111111111101111111101111011111111100111111101110111011111111001111111110111101111101111111101011011111111101111111111011111111111111111010111111111111111111011111111111010111110111111110011111111111101111111111111111101111111111111100111111111111110011011111111111011111111110101111111111111111011111111111111111111111111111111011111111111111111111111111111111111111110011111111111101111111110111010111111111111111111111111101110011111111111111111011111111011111111111111111111111111111111101101011111111111111111111111110101111111111111111111111111111111110111111111111101111111101111111111111111111111111100111111111111111111111110101111111111111111111111111110010111110111111111101111111111111111111011111111111111101111101111111111111011111111011111111111110110111111111111111111111111110111111111111111111111011111011111111111111111111101111101110111111111111111110000011111111111111111111110111111111111111101111111111111111101111100011111111111101111111111111001110111111111111111101111111101101111111111111111001111111110111110111111011111111110111011111111111111111111110111111011111111111111111101111111111111110111101111110111111111101111011111111111111101010101011111111111111011111111111111110110111101111111111111101111011111111111111111111111111101111111110101111111111111011111011101111111111111111111111110110111111111111111111111111111111011111011111111111110101111011111011111111111111111111011111011111111111111111111111011111111111111111111111101110111111101111111111011111111111111111111111101111011111111111111111111101111111111110111111111111111111111111111111111111111111111111111111111111011111111111101111111111111111111101111111111111010111111111111111111111011110101111111111111111111111111111111111111111111111111111111111111111111111101111101111111111111111011011111111111111111111111111111111111111011111111111111111101111111111111111111111111101111111111011001111101111111111111111111111111111111111111111111011111111111001111111111111111111111111110011111110111111011111111111111111011111111101101011101111111111111011111111111111111111101111111111111111111111111111111111101011111111111110111110011111111111011011111011111111110001111111111111111111110111111101111001111111111111111011111111111111011111111111111111110111111111101111110111110101111111111111111110101111011111101111011111111111100111111110111011111111111111111111110111111011111111111111101111111111111111111101101001111111111111111111111011101111111111011111011111111111111111111111110111111111111111111101101101111111110111111111011011111111011110111111110111101111001111110111111111111111101111111111101111101111111111111111111111111001111111110110111111111111110110111111111111011111111111111111111111111101111111111111111111011111111110101111111010111111111111111111111011111111111111011111111110111110111111101111111101111110111010111110100111111111101111111111111100110110111110111111111111111111101110111111111111011111011011011111011111101111111111111111111110111011111110101000110111101111111101011111101111111111111101111111111111111111110111111111111111111101111111111111110111111111111011111101111101110111111111111111111101111011111111111111100111111111111111111111111111111111111111111111111111111101111011111111111111111111111111111001111111111111111111001111111111111111111111111011111110111111111111111111111110100111111111101111111111110111100111111111111111111111101111111111111111111111111111111111111111111111110111111101111111111101111111111111111101111111010111111111110111111011110110111111111111111111111111011111111111111111111111101111011011111011111111101111111111111111111101101101110101111111110111111111111111111111000111110111011111110111111111111111111111101111111111111111111101101111101111111111101011111111111111111111111011111111111111111111111111111111111111010111111111111111011110110111111111111110001111111101111111111111011111111111011111110111111111111110111111111101110111011111111011011111111011111111111111111110100111111111111111111111111111001111111111111111101011111111011011111111111111111100111111110111111111111111111111111011111111011101100111111111111010111111111111011111111111111111100111111111101111111111111111111111101101110101111101101111111010111111111111111111101110111111111111111111111011011011111111111111110111111111111011101111111111111111111111111111111111111111111011101111101011111111011111111111111111111111011111111101111111111111111111111111101111111011111011111111011111111101111111111111111101111111011111111111111011101111111111101110111111111111111111001111111101110111111101111111101101111111111011111111111111011101110111111111111111111111111111101111110111010111111011111011111111111011111111111111111111111111011111011111111010110101111111110111001101101111111111111111010111011110111101111111101101101111111111111111011111110110111111111010111111111110011111111111111111111101011101111111101001110011111011111010111111111110011111101111111111111101111111111111111111111111111111011101111111111111111111110110110110111101111111111111111011111111111101111111010111111011110111011011011111111111110111111111111111111111111110111001110111111111011111111111110001111111111011111111110111111111101110010010111110111111111111110110111101111011111111101111111111111111111111101111111110111111011111111110111111111111111111111011111010111111111111101101011111111111111111111111111111111111111100111101110011111110111110001111011101111111111011111111111111011111111111110111011110011111111111111111111111111011111110011111010011011111111111111111111111111111110111111111100101111101110111111111111011111101110111111101111111100111111100111111111111011111011111111111101111111111111111111110111111111111111111110111111111111111110111111011011100111111111111111111111111101111111111110011101111101111111111111011111110111111111111111101111110111111111111111110011111101101110111111111111111011110111111111110111111111011111011110111110101101110111111111111111101111111111011110111111111111011111111111111111111111111111111011110111111011111111111110101111111111111111111111111111111101111111111111100111110111111101110111111110101111011111101011111111111111111111101011111101111111111111111111111111111111111110111011111111011111111111111111101001110111111101011111101111111111111111111101101111101011101111111111111111111010101111111111111111111111111111110111110111111111111111111101111111110111111011110110101111111111100111111111111111111111111111111111111111111111111111001111111111111111111111111010101111111011111101111011111111111111111111111111011111011110111101111111111111111111111111111111111111111111101111111111111111111111101111110111011110111111111011111111111011111111111111111111111111111011111111111111110111010111111111111111111111111111111110111111111110101101111011111011111111111111111101111111101111101111001111110111111111111111111111111111010111011111111101111111111111111101111111111111010111111111111111111111111110010111111111101111011110110010111011011001011111010111100110111111111111111110111111111110111111111111111111111111111111110101011101111111111101111111011111111111111111111111110111101011011011111111111111101111110111101111111111101111111010111101111111111111111111111111110111111010111011111111111111111110111111110111111111111111101111111110110011111010111111111100111111111111011111111111111111111111111111111101111111101111111111101111011001101111111111111011111110111111100111011001111111111110111011111111110101011111111111111111111111111101111011111101110111110111111111111111111111110111111111101111111111011111110111101110111111111111101110111101111001111010111111111111111111110011011111111111111111111111111001111001111111001111111111111111111101101011111111111111011110111111111100111111111111111011111101111111111111110001111111011111111111111111111110111110111111110111111111110111011111111010111110111111111110111111111101111111111100111111111111101111111111111111111111011111111111010111111111111110011011111101111111111111111101111111011111111111111111111111111111111111111111111110111111111110111111110111111111111101111111111011111110011111111111111100111110011011111111111110111111111111111111111111011111111011111111001111111111111111111111111111111111100111111111111111111111111011111111111100111111111101111111111111011011111111111111111111111111111110111111111011011011111111111111011111111111111011111111111101111111111111111011111110111111101011111111101101111111111111111111101111111111111111111001111110111111111011110111101111111010100111101111111111111111111111111111111111001101111101111011111111011111111111111111111110111111111011111110011111011111111111111111011111111011111110111111110111111011111111111111111111111111110111111111111111111111010111110111101100111111111101111111111110011111011111111110111111111111111111001111111111111011111111111111111111111110111110111110111011111011111111011111100110110111111111111111111011111110111111011111111110111111111010011110111111111111111111001101111110111111111111111111101111111111111111111111111111011111111110111111111101011111110111111101111111111111111111111111111110111111111111101111111111111111101111111110111111111111111101111111111111101111111110111111111110111111111111111101111111111111111111111111111111100111111111111111111111111110111111101111111111111111011111111111101111111111011101111111110011111111111111101111101111111111111111111111111111111110010111111111111111111111111110111101111111111111111111111010101111110111101011110011101111111101111111111110111111101111111111101111111101111110111111011111111111110111100111111111111111111111111110111111101110111111111111100011111111111111111111111111111101011101101010111111111111111111111111111011101110111110111110101111111111110101111111111111111111111101111111101110011111111111111111010111111111111110111111110011111010111101011011111111110111111011111111011111111110111101111111111111011110111011111111011111101011111111111111111111111101111011111111111111111111111110011111111111111111011111101111111111111101111111111110111101111111111111111111111111111110111011110111111111111111111111110111111111011110010111101111111001111111111111111111111101111111101110111111101111111111111101011111111111110110111111111111110111111111110101111111111111111111100111110011111111111101110111111111111111111111111011011111111011111111111100101111111111111010111111111101111101011111111111111111111111111111111111111111111111111111111111111111111111110111111101111111111110110110011110111111111111111011101111110110111111111111111111111111111101111111111111111011111111111111111111111111111111111111111110111111111111111111111111111111111111111111110111111111111011011111111111111110011111111111110111111111111011101101111111111111111000111111111111111101111111111111101111111111111111111111111111111111111111101110111111111111111111110010111111111111111110111111111111011111111110111111111111110101111100110111101011111111111011111111101101111011111111011111111111111111111111111111111111101111111110111111011111111011011111111111111111111111111111111111111111111000111111111011110110111111101111111101111101011111111110111111111101111111111111111111111111111111110111111111011111101111111111111111111110111111111101111111111111011111111101111111111011111111101111001101111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111011100111111101111111111111111111111011011111111110111111111001111111101111111111111111011111111111111111111110111111111110111111111101101111111111111111111111101111111111111101111111111001111110111110111111111111111111111101111111101111111110111111111111111111111111111111111111111111001111111111111111111111111111101111101111111110110111110111111011111111111111111111110111111011111111111111111111111101110101111100111111111111111110111111011111111110110111111111111111111111011111110110111111111111001111011111110111111100011111111111111111110111110111111111111111111111111111100111111111111110111111111111100111111110011110111111011111111111101111111111111111111111111110111111111111111111111111111111111111111111111110111101110111111111111111111111111111110111101111111011110011111101111001111111101111111111101101111111111111111110111111111111111111111111111101111111111011111111111111111111011111111101111111111101111111110111111111111111111101111111111111111111101011111111111111111111111011111111111111111111111111110111110111111111111110111111111110111110111111110010111111110111111111101110111011110111111111111111111111111111111110111111011111111111111101111101111101111101101101111111101111101111111111101111111111111111110011111111111011111111111111111111111111111111001111101111111101111101111111111111111111111111111111011111111111111011111111111111111111111111000111111110111111111111101101111111111111111111111011110111111111111111111111111111111111111111111110111101111111101111111111111011011111111111101001111011111111101111011111111110111111111101111111111111110111111111111111111111111101111011101111101111111111011111111111111111111011110111111110011111111111111111111111101011111111111111111111111111111111111111111111111000101011111011111111111111111111101101111111111111111111111111111111111111111100011111011111111011011111111111111111111111110111111111011101110111111111111010110111010111111111111111111111111111011111111111110111111111111110111111111110111111011111111111111111111111101111111111111111111111111110111111111111110111111111111101111111111010111111101111111111111111111110101111111111011111111111111101101111111111010111111111111111111111111111111111011111101011111111110111111101111111110111111111111111111111110111111110111111111111111111111001111111111111111101110111111111110111111111111111111111011111111011111111111110111111111111111111111111101111111111111111011111111111000111111111111111111111101111111011101111011111111111111111111111011111111111111111111110111111011110111111111111111111001111111111111011110111110111110010111111101111011111111111111101111111111111111101111111111111111011111111111111111111111101111111111111111111111111111111111101011011111101111111111111110110111111111111111111111110111111100111111011111111011011111111111111011111111111111110111111111111111111111111011111100111111111111101111111111111111111111111011111100111010010111111111011111111111111111111101111110110111011111111111101111111111111111111110111011111111111111111111111111101101111111111111111111111110111111110111111110111111101111101111111111111111010011111111111101111111111111111111110111110110011110111011011111111111111001111111111111111111111111111110111111111111111011110111111011110110101101111111111101111110111111111111111011101111111111111111111111111111101111111111111111111110011111111110101011111111111110011110111011011111111111111111011111111011111111111110110110111111011101111111111101011111111111011011111111111011111111111101111111111111110111101111111111111111111111111111010111011111111110111011011011111111111111111110111111111111111101101111111111011111110111101111111111110110111111111111111111111111111111111111111111111110111111111111101111111111111111101011101111110111111111111111110111101111111111111111111111101111111111111101101110111111111111110111101111110110011011111111111111111111111111111011111111011101111111111111110111110011111101111111010111111111110011111111111111111011011111111111111111101111111111111110011111111111011011111111111111010101110101111111100111111111111111111111111111111111111111101111111111111111111111111111011111111100111111001111111110011111111111011111111011111111111111111111111011111111111111111011111111111111111111111101111110110111111111111111111110101110111111011111111111111101111011111111111111111111111110111111011111111111101111110100111011011111111111111111011111111111101010011111111111111110101111011110111111111111111111111111111111111111111111111011110111111101111111111111111111111111110111111111111110111111111111111111101111111111111110111111111111110111111111100111111101110111111111111111111011111111111111111111111101111111011111001111010110111111111011111111101111111111111011111111111101111111111110110010111111111111111111111111110110011111111111111111111011100111111111111111110111111100111111100110111111111111111111110111101011111101011111111111111111111011110101111111101111111110111111111111111111111111111111111111100111111111111111111111111110101111110011111111111111110011111111111111111011101011111111011101111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111110101111111110001100110011111111110111011111101110111111110111111111111100111101111111111100111111111111111010111111111111111111111100111011111111011101110111011111111111001111111111110111101111100111111111111111111101111110111110111101101111101101011111111101111111111011111111101111111111111111110111111111111101110111101110111011111111111111111111111111111111011111111111110101111110111111111110111011111111111111111111111111111111110111111111110100111111110101111011101111111101111110111111111111111111111011111111110111111101011111111111111111111111110111111101111101011011111001111101111111111011111111111111111111011111111111111111111111111001111111111101011111101111011111100111111101011111111111111111101111111111110111111111111101111101100011111111111011111011111111111111101111111110111111111111111111111100111110111101111111110111111111111111111110111111111111111011110111101011011111111111101011110111101101101111111010111101101001101111011111111111101111110111111111111011111111111011111111101011111111110011111011111111011111011111111111111101111111111101101010101111111111111111011111111111111111111111110010111111111111111111111111011111111111111011111101111111111111111001111111111110110111111111111111011111111111111011111100111111111111110011111111111101110111111101111111111110111111111111111011011111111111111111111111111111110111111111111111111111111111111111111111111111111111111011111111111101110111110111101011111111111111111111110111011111100111111101011111111111111111111101111111111111011111111111111111111111111101111111111111111111010111111111111111111111111101111111111111111111111011111111111111111111111011111111111111111111111111111111111110011111111111111101011111110111111110100111111111010111111111111111111011111111111111111111111101011100111111111111111111111111101101111111111111111111111111111101111111101111111101111111101011011111111111011101111111111111111111111111011111111101111111110111111111111111110011111111001111111101111111111111111111111111111111111111111111111111111110111101111111111110101111101111110110111111111111111111111111111111111111101110111110110111111111111111111111111111111101111111110110111111111011111111111101101011011111110111110111101111110111111111110111011111111111111111111011111101111111111110111111111111111111111111111111111111111111111111111111111000111010111111111001111111011111111111111111111111111101110100111111101111011111111111111111011111111111111111111111111101011111111111111110011111110100111111111101111111111111110111111111100111111111111111111111111111111101110111111111111111111111111111111111110110111111011011111110111111111111111111111101111001111111110111110111101111111111101111111111111111111111111001111111011111110011111111111111111111111111111111110111111111001111111111111011111111111101111110101111011111110111111111111001111111111111111111111110011111111111101111111111111001110011111001111111110110111110111110111110011111111111110111111110011111111111111111111111110011111111011111111111101111111111111111111111111111010111011111111011111111111110101111111111111111111111111111111111101101111111111110111111111111010111011111111111111111111011111111111111111111111111111111011111111111101111101111111111111111111111011111111111111101111111111110111101011010111111111111111111111101011111111111111111010110111111111111111011111111111101111110111111111111100111111111111110111111111111111101111111111111111111001111111111111111111111111110111111100111111111111111111111111111111111111111111111111111111111111111011101111111110011111111110111011111111111111111111111111111111111111111111111101111111111111111111011111110111101111111111101110101111111111111111101101111111101111111101111110111011111111111111101110010111110011111111110101111111111111111111110111111111111111111111111101111101101111110111111111011111111110110111111111111110111111010111111111111111000111111111011111011111110111111111111111111011111111111001111111111111111111111111111111111111011111111111111111111111101110111111111111111001111111111111111111111111111111111111111111101111111111111111111111111111111101011111111011111111111111111111111111101110101111111111111111011111111111111111111110111111111111111111110111111111110111111110111110111111111110111111101111101111011111011111111110111011011111111111111101111111111111111111111110111111111111011111111010111111111111111111011111111110111111111111101011111111111110111111111111111101111111011011001111111111101010111001111110111111111111111110111111111101111111101111111111111111111101101101111111111111111011111111101111011111111101111111111111111111101111111111111111111111111111111111011111111111111111111111111101110101011111111111111111111111111111101111111111111110111110111111111110111111101111110111011111111111101001111111111111110111111111111111111111111111111111111111111111111111111101101111011001011111111111111111101011111111111111110111111011110111111111111111111111111111101011111111111101111111111111111111111111111111111111101001111111111111111111111111111111101001111110011111111011011111111111111111111111111111111111111111101111111011111111111100110111111110111111111011111110011111111111111101111101001111111111101011111111111111111011111111110111101110101111011111111111111101101101111111111111101111111111111111101111111110111111111101111111111111111101111111111111111011111101101111111011100111111010111110011011111111111101111011111111011111101101111111111111111111111111111111110111111011111111011110111111111111111111111111111111111110011111011111111101111110111101111111111111111110111111111111101111111111101111111111111101111111101111111111111111111111101101010111111111111111111111011111101111101111111111111111011111111111111111111111111111111101011111111110110110111110111111110111111111110110111111101111111111111101111110011110111111110111111110111111111111111011111111110111110111111111111011111101111110111110111101111011111111111111111110111101111011111111111011111110111011111111111111111101010111111111111101111111111111101111111111111101111011111110111101111111111101110111110101011111011110101111111011111100111111111111111111110111111111111111111111111111111111111101111111111111011111111111101111111111111111111111111100110101111011111111111111111101111111110111011011011111111111111110011111111111111110111111110110111101011111111111110111111111111011101101111111111111111111110111101111111111011111111111011111111101111001111101100111111100001111011111111111011111100111111111111111011011010101111111111111111111111111111101111001111111111111110111011111111101111011111111110101111111111111111111101111111111111111110111111111111111111111111101111111111101110111101110111111111111111111101111101111111101111111111111110111111110011111111111111111111111111111111111111111111101111111011110010111111111111111110111011111111111111111111111111111111111111111111111111111111110111010111111111111111111111110111111111111111011101111011111111111110011111101101101011011011111101111111111011111111111111110011111111111011110111111111011111110111111111101111111111111111111111111110111111011111110111011111011111110111011111111111111111111111011101111011111111111111111111111111111111111110101111111111110111110111111111111111111111011111111111110111111111111110111011111111101111111111111110111111111101111111111111111111111111111011111111111011111110111111111111111111011111111111011111011011111111111101111110110111111111001111111111101111011111111111110110101110111111001111011111011111111111111010111101111110111011110111011111111111111111111111110111001111111111111111110111111111111111011111111111110111111111101111110111111011111111011100111111111111111111111111111011111111111101111111111101111011011111111111101111101111111101101001111111111110111111111111011111101101001111111111111111111111111111111101101101011111111101111011111111111111111111111111110111111111011111111111111101111111111111111011111011111111111001110111111111111111111011110111111101111111111111111111101110110111111111111011101111111111111110111111111111111111011110110011101111101111111111111111111111110011111011111111110111011111111101111111111101111111101111111111111110111111111111111111111111111111111110111111111011111111111101111110111111110111111111111111110111111111011111111001111111111011111111111111111111111111111111111111111101111111011111111101011011111111111111111110111110111111111111111111111111001111111111111111101111111110111111111111110111111111111111111111111110111111111111111111111111111111111111111110111111111111011111111101011111101111111110111111111111111111111111110111111111111111110100111100111111111111110101111111111111111111111111111111111111111111111111111111111111111011111111111111111111110111011111110111111111111111111110011110111110110111110101111111111111111111111111111111111011111111111111011111111111111111111111111101110111111111110101111111111011111111111111111110111011111001111011111110111101111111101111111111111111111111111011111111111111111111101111111100111101111111111111110111110111111111111111110111111101111011111110111110110111111110011111101010111101111011111111101011001110111111111111110111111111111111111111111111111010110111111101001111110111111111111111001111111111111111111111011111111111111111111111111111111111111110111111101111011111101111111111111111111111111111110111111101111111111111111111110111111011111111111111111110111100101111111111111111111111111111111101111111110111111111111111111111101101110111110111111111111111111001011111101111111111111111111111111111010011111011010101111111111111110110111110110111101111111111011111111110111101111111110110111111111111111111111111111111111110101100111101111111111101111111111111110111111111111111111111101111110111111111010111111110111101111111111111111111111110111111111101111101111110110111111101111111110111111111111111011111111110111101011111101111111111110111111111111111110111111111111111111111111011111001010110111111111111111111101111011111111111111111101111111111111111101111111111111111111101111111111010111011111111110110111111111110010111111011011111110111011011111111101111111111111110111111110111111011101111011111111011111111110111111111001101111111111111111011111111111111111111111110111110111111111111101101111111110111111111111111111110111111111111111011011111111111101111111111111111111111111111110111111111110111111011111111111111111011011111101111101110111111101111110111111111111110111111111111111111011111111111111111111101101110111111111111111111011011111111011111111111111111111011111111111111000101111100101111110111101110111011111111011111111111111111111111111111111101111111110111101111111110111111111111111111111111111111111111111111111111111111111101111111111111111111111111111111111111111111110111101111111111111111111111111101111011111111111111111111111110111111111111111111111110111111111111111011111111111101111111111001111101101111111111110111110111111110111111111111111111111111111111111011101111111111111111111111101101111111111111111111111101111111011111111110110110111111111111111111111011011111111111101111111111111111111111010111111111111111111111111111111111001111110111111111110111111111011111111111111111111111011111101111111111111111111111111111111101011111111111111101011111111111111111111111111111111011111110111110111111111101111111111110111111111111111110111111100111011111111111111111111111111111111111011111111111111111011111111111110111010111111111001111111011111110111111111111111111110011111111111111111110111111111011111111111111111011111110111111101011011111011011001101111111101111111111011111010111111111111101110111111110111111111111111111111101111011111111111011111111111101111011111111111111101111111111111111111111111111110111111110001111111110111110111111111111101011111111111111011001111111111111111111111001111011111111111101111111111111111111111111111111111111011111111111111111111101101111111111111111111111100111110111110111111110101101111111111111011111111111111111111111111111111111111101011111111111110111111111111110111111111111111111111111111111111111111111111111111111111111011111111111111111111100111111111111111111111111110111011110111111111111111111111111110111011101011111111111111111111111100111011111111111111101011111111111111111110111111111100011110111010111111111111110101111111111111111011111111111111111001111111111110111111101111111100101111111110110011101111111111111111110111111111111111111111100111011011111111011111111111011111111111110111111111111111111101111111110111111101111111111111011111111111111111111111111111111111111111111111111111111100111111101101110110101111111111011111111111101111111111111111111111111111110111111111111111111101111110111111110011111111110111111111111111101111100111111111111111111111111111110111111111111111111111110111111111111111111111111110111011111011111111111111111111011011010101111111111111111111111101111111101110111011111111111011111111111111110111101111111111111111110111111111111111111111111111111110110011111111111111111111111111111111110110111111111111111111101111111011111111111110111001111111011111111111011110111011111111111111110111111111111111111111111111111111011001110111111111111111111111111011111111101111011111111111101101111111111111111111011111111111111110111011111011111111101111111111111111111111111111111111111111101110111111111111111111110111111111111111111111111111111011111111111111111111111111111011111111111111111111110111111101111111110111110111111110011111111111111111111111111100111111111111011111111111111110111011111111111111111111111011111111111011110110111111111110111111111111111011111111011111110111111111001111111111011111111111111111111111111111111111111111111111111111111101111001111111101111110111111101111111111111111111111101111111111101111111111111111111111111111111111111111111111111111011111111111111111111101111011111001111101111111111111111110111110111011111110111111111111110111110101111111111110111111111111101011111011111111111111111111111101111111111111111111111111111111011111111111111111111111111101011111101111111111111111111111011111111011111011111111011110110111111111111111111111111111110111111111111111111011111011111111111111111111111101111111111111111111111111100111101110111101111111111111111111111111011101111111111101111111111111111101111111111111111110100011111111111110111111111011110111111111111111111111101111111111111111111111111111111111111111111111111101100111101111111101011111101111111111111110111111111011011111011111111101111111111111111111111011111111010001111111111111111111101111110111111111111110110101110111110111111111111111101111011111111100111111111011101111111111111111111111111111011111111101101111111111111111111111011101011111111111111111011111111111101111111111111111111011111111111011111111111011011111111111111111011111111111111111111111111111111100111111111111111111011111111111110111111110111111111111011001111111111111111110111111111111111111111111111111111111111111111111111111111111110111111111111101111111011111111111111111111111111111111111111111111101101011111110101101111111111110111111111110111111110111111111111111111111101101111111111111111010011111111101011111011111111111111110111111111111111111111010111100111111011111111110111111111111111111111111111111111111111111110111111111111111101111111111111001111101111111111111111111111111110111111111111011011111111111111101111111111111101111111011111111111111111111111111111111111111011111111111011110011111111111111011111110111111101111111111111110111101010110111011111111111111111101011111111111101111111111011011111111111111011111111011111011111011111111011111111111111110111111111110111110111111111111111111111111111111111111111111110110111111111110111111111111111111111111111111010111101011101100111110111111011111110101001111111111111111011110101111111110111011111111111110110111111011111110111011111111111110011111111101111101101011101111111101110110011111101111111111110010111111111111111111111011011110111111111111111111101111011111111110111111101110111111111101111011111111110111111111111111111111111011111111111111110101111111111111111111111111111110111111111111111111011111111110111101101101111111111110111110011101111111111101111011110111111011111111011110111111111111111111111011111111111111111111111111101110111111111111111111111111111111111110111111111111111111111110111110111011111111011111111111110101111111111011000100111111110111111111011111111111100111101111111111111111111011111111011010111111111111111110111111111111111101111111101111111111011111111110111111001101111111101111111111110111111111101111111110111111111111111111111111101111111111110111011111111111111111101111111111111111111111111111111111111111111111111111111111111110111100111111111011011111011101111011111111111111111111111011111111101011111111100111111111111111111111011111110111111111111101111000110110111011101110111111111111111111111110111111101111111111111111101111111111111111111111111111111011111111111111111111101111111111111111101111111011110111111111111111111110111111111111111111101111111111111101111111111111111111111111011111111111111111101011111111111011011011111111011001111111110111111111111111101111111111111111111111111111011110111111111111111111111111111111111011111111111111111111111111111101111111111111111111110111101111110110111111111101111111111111111111111111101100111111101111111111111111111111111111111111111111111110111111101111111111111111101111111111111111110111111101111111111111111111111101111111111111111011011111111111111111111111111111111111111111111011111111111111111111101111111111110111111111010111111111111011111111101111111101110111101111111010001111101111111111111111011111111111011101111111101101101111111111111111011111111011111111111110111110111111111111011011011111111111111111111111111011101111111111111111110101111111111111111110111110011111111111111111111111111111111111111111111111101111111111111101111111111111111111111111110100111101111111111111110010111111110111110111111101111100111111110110111111111011111110111011111111111111101111011011111111111111111111111111111111111111111110101111101111111111111111011111111111111111111111111111111111111101111111111111111111111110111111111111111111111111111111111101101111111011111111111111011111111110011111110111111111111111110111111111111111111011111100111101111111011111011111110110111111101111111111101111111011111111011111111111111011111111111111111111111111111101110111111111111101110111101111111101111111001111111111111110111111111111111111111111111011101110111011111111111111101111111101111111011111111111111111011111111111111111111111101111111111111110011110111111111111111111111011101111011110111111111111011101111111101111011101111111011111111111111111111101111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111011100110101111111111110111111111111111111111111101111110111111101111110001111111110111111111111111111101111111111111110111111110011111111111011111111110111111011111101101111011111101111111111011111111101111011111011110111111111111111111111101111111111111111111111111111111111111101101111111111010111111111111111110111011110111111111011111111111011110110011110111111110111101111111111111110111111110111111111111111110111011111111111111011111111111111111111111101111111111111111011111111111111101111111011111110111111111111111111110111100011111100111111011111101101111111111111111111111111011101111110111101101111101111111111111111111111111001111111111111111111011111111111111110111101111101011111111111111111100111111011111011110101101111110011011111111111111111101101111111111111111111101111111111111010111111111111011111110111111110011111111011011111101101111111111011111111111111111011101111110111111111111111011101111111111111110010111111111111101111111111110111111101111111110101111111111110111111111111111111101111111111111111011011111111011111111011111111111111011011111111110110111101111111111111111111111111111111110111111111110111111011111101111111111111111011111101111111111111111111111111111111111110011111111111111111011111111101101111111111111111111111111111111111011101111111111111101111111101110111110111111111011111111111101111011011111111110111111101111111111111100011111111111111111111111100111111111001111111111111001111111111110111111111111110111111111111111101110111111111111111111101111111111111111111111111111110111100110111111111101111111111111111111110111111111101111010111111111100110111111101111101110111111111111110110111111111111101111111111111111111111111111111111111111111111101111111111110111111111111111111111111110110111111111011110111111101111111111111011110110111111111111111111111101111111111111111111111111111111111111101111111111111111111101111111111111111111110111111111111111101111101111111111111111110111111111110111111111111011111111111110111111111110111111111111111110111111111111111111111110111101111111011101101111101111100111111111111111111111111111111101111111111111111011111111111111111011111111111011111111111110111111111111111111111111111101111111110111111110111111111011100111111111111111111111111111111111011111111111011111000111111111111111111111111111111110111111111111111111111111101111101111111111110111111111110111110111111111111111111111111111011110111111111111011111111111111011111101111111111111111111011111111111111101111011111111111111110111111011111111111110111011110111111101111111101111111111111111111111111110111110111111111011110111111011111111110011111111111111011111111011110110111111010101111101111011111111111111111011111111111011111111111101111111111111011111111111111110111111111111101111111011110111111111101111111111011111111011111100111101111111111111111111111111110111111111101111111111111111111111101111111101111011111111111111111111111111011111111111111111111110010110111111111110110110101111111101111111111110111111111011111111111100111111101111011110111111111111101111111111111110111111111111101101001111111111111111111111111111111101111111111111111011111111111111111111111101111111111111111111100110011111101111101111111111111111111111111111111111111111111110111111111111011111010111111111111111111111011111011111111111111111111111111110111111011111101111111111111111111111111111111111101111110111010101101111111111011111011111111111011011111111110001011111111111101101111111111111111111111111111111111110101111110111111111011111111111111111011111111111111110111111111011111010111010011111111111111111111111111111111111111111100111111110111111111111111111111101111101110111111111111110111111111101111110111110111111011110011111111111101111111111111111111111111110111111111111111111111111111111111101111111011111111111111111111111111111011111111111111011111111111111111111111110111111010000111101111111111111110110011111111111111111111111111101111111111111111101101111111111111111001111011101101101111111101111111111011010011101111111111110111110111001011111111110111111111011111111111111111111101101111111111111111110101101111111011101111111111111101111111111111100111011111111111111110111111110111111111101110111111111111111111111111111111111110001111111111111111011101110111101111111111111111111111111111111110011111011111111111011111111111111111111111111111101111111111111111111111110111111011111110111110011111101111111110111111111010111110110111111111111111111111111111111111011111111111111110111111111110111111111100001111111111111111111111111111111101111111110111111111011110111011111111101110111111111110111010110111111111111110111110111111111011011111111111111011101111111111011110111110111111011010111111101111111101111110111010111011110101111110011111110111111111111111110111111111111111111101101111011111011111010111111111101011111111011111111111110111101111111111011111111111111111111111111111111111110111111111111111111111111011111011111011111011111111111111001111111111111111111111011101111111111101111110111111111111111111111111101110111110111111111111111111111111110110111101111111111111111111111011111111111111101111111011101111111111111111111111111111111111111111110111111000111110110000110111111110111111111111111111001111110111111111111111111111111111111111111111111100111101111111101111111111111101111111111111101101111011111101111111110101101111111111111110101011011111111011011111111101111111100111100111101111111111111111011111110110111111111111101111111111111101111111111111111111111111111111111101111111111111111011111111111111111111111111111111111111101111011111011111110011111111111111111111111101110111101111111111001101111111111111111111111111010110111111011101111111111111111111111111111011111111011111111111101111111100111111111011111111110111111111101110111111010111111111111111110111010111111111111111101111011101111111010011111111111111110111111111101010111101011111111111111111111101011111011101111111111101011101010111111111111110111111101111111011111111111111111111111111110111110110111111111111111111011111111111011111111101111011111111001111111111011111111111111101111111011110101111100111111111111111111111111111111111111011111111111111011111101101011111111111111101111111111111100110111111110111111010110111110111111111011111111101111111111110111101111110110111111111111101111111011111111111111111111011110011101111111111111111110111101111111111111111111111111111011110111111011111111111111111111111111111111111111111111010111111110101111111111111110111111111111111011111111111111101111100111111111110011111111111110111111100111111111111111101111111100101110111111111111011111111101101111110111101100111111111010011111001111111101111011111111101111011011111111111111111111111110111111111111111101111111111111111111111001111111111111111010111111111111111111111111111111111111111111111111111011111111111111110111101111111111011111111111011111111111111111011011001111111011111011111111111011111111111101111110111111111100111111111111111111111101111111111111111111111111011001110110101011111111111111111111111111111111011111011111111101111111101111110101111111111111111110111111111111011110111111111001101110111111111111111111110111111111111111111111111011111111111111111111111111111111101111111011111110111110111011110111111111111111111111011111111111111111111110111111111111111111110101111111111111111111111111111101111111111110011111111101111111110111101111111111101011111111111111111111111111111010111011111111110110111111111110111111111101111101111110111111111111011111111101101101111111111111111011111111111111111111111111111111011111111111111111111111101111111111101111111111111101010111111110111111111111111111111111011101111111101111111111101111111110111111111111111111101111111011111111011111111011111111111111111011111110000111111111100111111111111111111111111101111110101011111101011110111111111111111111111111111111111111111111111111111111111111011111111111011110111111111010111111011111111101111111111111111101111111111111011110111111111111101011110111110111111011001111111111011110101110010011111101111011011111111111101111111111111111011111101101111110111111111111111111111101111011111011111101111111111111111111111110111111111111110111111111111101111110111111101111011111111001111111111111111110110101111100111111111111111111011111111111111111111011111111110011111011111110111111111111101011111101111111101111101111111111011111111110111111111110111111111111110111111111111111111011111110011111111101111111111111111111111111111111111111111111111111111101011111101111111111111111111111011111111101111111011111111111111111111111111111011111101111111111111111101111110101111111110111011111111111111101111111111111100111111111111111111111110111111111111111111110111010110111111111111111111111111010111111111011010111111111111111111111111111111111010111111010011011111111111110111111111111111111111111111111111111111110111101111101111111111111101111011101111111111011111111111111111110111111111111111111111111111111110111111111111011011111111111111011010111111111111111001111111011111111111101111101111111111111111111101100111111111011111111111111111011111111111001110110111111111101110111111111110110111111111110111111110101101111111111111110111111111111101111111110011101111111111111111111111111011111111011111101111111101111111110111010011111001111111111110001110111111111111111111111011111111011111111111111111111101011111100111111111111111111111111101110111111111111111111110111111111111011111111011110111011011111111011111011110111111110011111111111111111111111111101111001111101111111111111111111111110111011111111111100111111111111111111101100101111111111111111111111010111111011111111111111111111011110111101111111111111111101111111111111111111111101110111110101111111111111110111111111110110111111110111110111111111111111111111111111111111110111110111110111110001111111111110111111111111111101111111111111101111111111110110111111111111111111111111011011111011110111101111111110101111111011011111111111011111111111111111101111111101111111111110111111111011111111111101111111111111111111111100111011110111111111110111101111111111111111111111110111111111111111111111111111111101110111111111111111011110111111011111111111111111111111110101111011111111111101111111111111111011111111111011111111011111111111111111111111011011111110111111111111111111111111111111111011111111111111111100111110011011111111111111111101101011111111101101111001111111111011011101111110111111111011111111111111101111110111111111111110111111111111110111001010110111111101111111111111111111101101011111111111111110111111111111111111111111100111111111111111101111111111111111111111110111111011011111011111110111111111111111111111101111111111111101111111010111110111111111101111111111111111111101111111111111111011111111111111111111111111011111111111111111110100011111111111011101111111111011011111111111101111111111111110011010111101111111111111111111111111111111111111011111111101111111111111111111011011111111111101110110111011111111111111111111011111011111100101111110110111111111111111111010111011101111111111111111110110110111111111111111101111011101111111111111111111111111101111011111101111111111111111111111111101101111101111011111111011111110111111111101111111111111111111111111111110111111110110111101111101111111111101101111111111111111111111111111011111111111111101111111111111111111111111111111111111101111111101001111111110111010111011011010111111111110110111111111011101011101111111111111111110011111111011111111111111101100111110111111101111111111111111111011101111111111011111111111111101111101111111101101001011001111101010111111111111111111111101110111011111111111111011111111111111111111111011111010100111111111110111111001111110111111011111111111111101111110011110011011111011111111111111111111101111111111111111110011001111111111111111111111010111111111111111111111111111110111011111011111101111111111111111111111111110101110111011111101111101111111011111111111111100111111011111111101111111011011111111101101111110101111111111011011111111101111001111111101111110101111111111111101011111111111111111111111111111110111111111111111111101111111110111101110111111111111011111011110111111110111111111011111111111110111111011111110111111111111011110111111101111111111111111111111111111111101111111110111110111011111111011110111111101111111010110111101111011111111111111111101111111101111100111111101011101111111111111110011111111110110111111111101111111111111111111111111111110111111111101111110011101111111110111111111010111111111111111111111111111111011111111101001111111111111111111111110111011101111111110111111011111110111110111101111111011111111111101111111111111111111111111111111111111011111111101111100110111111110111011111101111111110111111111111111111111110111011111111111111111111110011101111111101111111111011111111111111111111110111111111101111111110111111111111111111011111111110111111111111110111110111111011110110111111110111011111101011111110111101111110101111111111111011111111111111111111111111111111111111011111111111110101111111110011111101111111101111111111111101000111111111101110111111111111111101111111101111111111111101111111111011111111111111111101111111111101111011101111111111110111110111110010011111111101111111111111111111111111111101011101111101111101100101111111011111111111111111011111111111111111111111111111111110111111111111101111111111011110111111100110111111111101111011111111011011111111100111111111111111111111101111110111111111111111111111111110111111111111111111111111110111111011111011011111011110101111111111111111111111111111111111001111111111111111111111111110111101011111111110111111111111111101111110111111111111011100101111111111111011111111111111111111101111111101111101111111111111111111111111101111000111110111111101110111111110011100111011111100111111111111111111111111111111111111111111111101111111111111111111111101101111111111111110111111111111111011111101101111111111111111101111111101111111111011011101111111111111111111111111111111111011111101111100111111111111111110111111111111011111111111111111111111110101111111111111111111111111110111111111111110111011111111111111111111011111111111111111011111110111011110111011110111111111111111011111111101110111111111111101111111011111111111101111111111111110111111011111111111110111111111110111111111110111111111111111111111111101111111110110111101111111111111111111111111111101111111111111100111111111111111111111111111111101111111011111111111111111111101111111101111111111111111111111111111111111111111111100111111111110111111111111111111111101111111111111111111110111111111101111111111111110111111111101101111011111111111111111111011111111111111111111111111111111111111111110110111110111111011111101111101111111101110111111110110111011010111111101111111011110101011111111111101111111111101111111111011111111111111111101111111101111110111111110111111111111111111101111111111111111111111111111111111111111111110111111111110011100111111111011111111110111111101111111101111111111110111111111111111101111111111111111110111101110111111111010111011111011111111101110011111111110111111011111111011110111111111111011111111011111101111111011111111110111111111111111111011101110011111111110110111111111011111111111111101111111111111111111001111111111111111111111111111111111111111111111111101101111111100111110111101110111111111111111011111111101111111110111111111111111110111111111110111111111111111111111110011111111111111111101111111111111111111111111111111101111111111111111111111111111111111111111011111111111111111111111111111111101111111101111111011111111111111111111111111111111111111101111111111111111111111111110111111111101111111111111110110111111111111111111111100111100111111111111111111111111011111111101010101111111111101111111111011111111111111111111111111101111110110111111111111111110111111111001011111111111111100111111111111111111111101111111111111111011111111100111111111111111101111111100000111111011111111111111111111111111111111111111111111111111111111111111111101111011111111111111111111111101111111111010101110110111011110110101111101111111110111111110111111111111011111011111111111111111111111011110111111111010111111101111111111111111101111111111100111111111110111111111111111111111111100111111111111101111111110110101111111101111111001111101111111111101011111111110111111011111111111010101111111111111111111111111111011110111111111111111111111111101111111111101011111111111110110111111111111111111111111111111011011111111111110011111111111111111111111111111111111011101101101111110111110111101100110110111111001111111111011110111110101111111111111110111101111111110111101111111111111111111111111111101011111101111011110111111111111111111111011111011101111011111111110111111111111111111111110011111111101111011111111111101111111111111111111111011111011111111101111111111111111111111111111111111111011111100011111111111110111111111111011111111111111101111111111110001111100111111111111111111111111101111011111111111111111111011111111111111111101111111111111101111111111111101111110110111111111111111111111111111110111101001111111011111111111010111111001111111110111111111101111111111111011111111111101111011111101111111110111110011011011111111111100111110111111111110011111111011111111111111111111111100111111111101111111110111111111111111111111111111111111111111111111111111111111111111111111101111111101111111111111111111111101111111111110111110111111111011110111111111101011100111111110111111111111111111111111111111111010111111110111111111111111111111111111111111111111011111111111101111011111110111111111110101111111111111111111110111111111111111110101111011111111111111110110111101011101111111111100111101111111111111111111011111111011111111111011111101111011111001111110110011111101011111111101111111111111111111111111110101111111010111111110111011111110111111011111111111110111111010111111111111111111111111111111111101101110111111111111111111111111111111101110011111111111111011111111110111111111101101101110111111111111111011011111111111110111111111010111111111111111111111111111110111101111111111111111111110111111111111111101111111111111111101111111111111111111111111111111111011111111111111111111111111111111101111101111111111111111110111011011111111011011111111111100111011111111111111110111111011110110110101111111101110111111111110110111111110111011111011111110111111110111101111111011110111011111101111111100111100011111111111111111100111111111111111111111111111111110111011111111111111111111111111111110111110111111111001111111111110111111111111111111111111111110111111101111110010111111011100111111111111111111111111011111111111111111111111100011101110111111110111101111111101111111110110111111111111111011111111111111111111110111111111011101011110011111111111111111111011011110111110111111101101111111111011111111111111111011111111101111111111111111111111111011101111111111100101111111111111111111111111111111111110111111111110111111111111111111111110111111101111110111101111111101111011111111111111111111111111110011101111111111111111110101111011111111111111111111111101011111111111111111111111100111110111111110111111111011111111001111111111111101111111111111111011111111111111011111111111101010111111111111110111011111111111111011111111110111111011101111111111111111111111111111111101110111111111111111111101111010111111111111111111111111111111111111111100111111111111111111111111111111111111111010111111111111110111111111111101111110110110111101111111011111111111111111111111111111111111111110011110111111111111110101111110111011101111111111111111111111111111101111111111110011111110101111111101111111111111111101100101110111110111110110111111101111111101111111111111111111111111111111111110111111111111111111101111111111111011111101111101110111101111111111011111110111111111111111101011111111111111111111111111111111111111111110110111111111111111111110111011111110111111111101111101111101111111111111111111111111110011111011111111111111111111111111111111111011111111011111111111111111011011111111111111111101111111111111111110111111111111101111101111111101111111111111011110111111101111111111111100111111110111101111111111111111111011011111111101111111111111011111111111111111101111111111111110111111111111101101011111111001111111111111111111111111011110111111101110111111011101110111011111111110111111111110111110111111111111111111111111111111111111111111110111111001111111111111111111111111111111111111111111110111111111111111111111111111011111111111110111111111110110111110110111111111111111011111111111111111111110111111111111111111111111101111111111111111101111111111111111111111110111110111111111111110111101111111110111111100110111111111111111100111111111011111101111110101110111011111111111111111100101111111110111111111111101111111011011111111111101111111111100011111111111011011101111111111111110111111011111111011111111111111111111110110110111011111110111011111110111111101111111111111111111111111111111111111111111111111111110111011111111111011111111011111111111111111111101111111111111111111111111111111111111111111110111111111111111111111110111111101111111111111111111101111111011111111101111101111111111111111111111110110110111111111111101110111111111111111111111111111111111111111111111111111011111111111111111111111101111111111111110101111111011011111111110111111111111111111111111110111111111001101111111111101111111111110101111111111111111101111111111111111111101101111110111111011011111110101111111111111111101111101101111111111110111111111111110110111110111110110011111110101111111111111111111011111001111110111110111111111110111101111011111001111101111111111011111111111111110101001111111111111111111111101110111111111111111101110010111111111111111111111111111111111011111101111011111111111110111110111110011111111110101111111111111111111111111010111111111111111011011111110111111111111001111111111101110100111111111110110111111111011111111111111111111101110111101111011111111111111111101110111111111111111111111001111111111111101111111111111111111111101111111111111111010111111111111111011110111111111111111111111111111111111111111111111111101111101110111100111101111110110111111011111111111111111111111111111111111111111111111111110111011111111110111011111111111101110111111110111111111111111110001111111111111111101111111111111110110110111101110111111111111111111111111111111111111111011111011101111111101111011111111111111111011011111011111111111111111110111101111011111111111111111011011111101111111111111111110100101111110110111111111111111111011111111111111111101100110110111111110011111111111111111001111111111111111110111110111111111111111111111111111110111111111110111111111111111111101111111111011101011111111111011110111111011111111111111111111111111111101111101111111010111111111111111111110110111111111111111111111101111111111111111111011111111111111111111111111111111110111111111111011101110111111111111111111101111111101111111111111110011111111111110111111111111111111011111011111111111111111010111111111111111111011111111101111101110011111111111011111111111111111111111111111111111111111111111111111111111111111111110011111111111111111110111111100111111111101111111111101110111111111111111110111101111101100111111111111111111100111111111111111111011111111110111101111011111011111111111111111110111111111110101011011110111011111111111110111111111111011111111111110111111100111111111111111111111111111111111111110011011111111111111111111111101111010111111111110110111101111111011111111111111111101001111010011111111111111111110011111101111101011111111111111111010111111111110111011111111101111110101011101111111011111111111111011111111111111111101111111111111111101101100111111111111111111111101111111111111111110111101111111111111111111111010111111111011101011111111111111111111111111111111111101110110111111111101111111110111111011011111111111111111101111111111111011111111111111111111111111111101111111111111111111111111111111111111111111111011111111111111111110111011111111111111111011111111101101011011101111111111111101101101110111111111111111100111111111110111111111111111111111111110111111111111111111111111111111111101111111110111111111111111011111111101111111111111111011111101101100111111111110011011111110111101111111101110111111111100111111111111110110100111111111111111110111111111011111111110111111111111110111111110111111111111111111111111011111111111110011111111111110111101111111111111111011111111111111111111111111111111101111111111111111111111101111111101111111110111111111111001001111111111111111010110011111111111011111100111111111111011111111111110111111111111111111111111111111111111111110111101111110111111011111111111110111111111111111001111110001111111101111111111111111111111111111101011111111011111111111111111111111110111111111101010111111111111111111111111011111111111011111101111111111111111111111110111111011011011111101111111101111111111110111111011101111111111111111111111101111111111111111111111111111111111111011111101111111101111111111111111110111111111111111111111110111111111111111111111111111111111111111111111111111111101111111111001111111111110111111111111111111001110011111110111111111010111110111111011101111111111111111111111111111110111110111111110111101101111111011111111110111111111011111111111111011111111110111111111111011111101111111111111111111101111111010111111011111011110110011101111111111111111110111111111111111111111111110111111111100111111111111101111111111111111111111101111111111111111101111100111111101101101111111111111111111111101111110111111011111111101011110011111011111111111111111111111101111101111111111111111111101111101011111011111111111111111111101110111111111111111011111111111101111111110111011111111111111110111011101111101111111111111111111111111111110110111011111111111111111110111111111111111011111111010111111111111111111111111111101111111111111111111101110111011111101110111111111111111111111111111111111111111111010111111111111111111110111110111111010111111111110111111111111111000001111011101111101011111111101111111111111101111111111110111111111111110111111111111111111111011111111111111111111111111101111101111111111111011111111111111111111111111111111111111110111111111111001111111111111111111111111110001110111111111011011100111111111111111011111111111111111001111111111111111111111110111111111111111111101101111111111101011110110111111111111111111111111111111110101111101110111101111111111011111111111101111111111111110111011111111111111111011111111101111111111111111111111111111101111111111111111111111111111111111111101111111011111111001010111101111101111111111111111111111111111111110111101110111011011111111101101111111111101101111111111101111110011111101111101111111011111111110111111111101111111110110111111110111111111011111111111111111111111111111111110111111111111001110111111111111110111110111111110111111111111011111111111111110111111111011101110111111111111101111111111111111111111110011111111111111111111111111011111101101111101111111111110011111111111111101111111111110101111111111011101111111011011111011111101111110111111111111110110111111111111110010101111111111111111111111010111111111101111110111011011011110011111110111101100111111101111111111111111110111111111111111101111111011011111111011111111111111111011011111111111111111011001111001111110101111111111111111111111111111111101111111011101101111111110111111111111111100111111111011111101111101101111111101111111101011101111111111111111111111111111111111111111110111011111011111111111111111111101110011101110111111001111111011111111011111111111111110111110111011111111111111110101111111111110011111111101111111111111011111110111111111011111111101111111111011111111111011011111101111111101110111111111110111111111111111111111111111011101111111110111111111111111101111111111111110111111111111111111111110111111001111101111011101111101111110111111111011111111111111100111111111110111111111111111111111111111110111111110111111011101111111110111110111111011111111111111111111111111111011111101110110111111111011101110111111111111111100111111101111011111111010111111111111111011111111111111111111101111111111111011110111110011111111111101111111111111111111111111111111111111111111011110011111111111110111111011111111111111111101011111111111111111110111010111111111111101011111001101101110001111111101011111011111101111111111111111111111011111111111111111111111110111111001111111111110111111011111111111111111011111111111111101111111111111111111110110101111111110111111111111101111111011111011110111111111111111111111111010111111101111111111111111111111111101111111110111011101101111011111111111111111110111111011111111111110111111110111001111011101111011111111000111111111111111110101011111110001111110111111111111111111111011111111111111111110111101111110111111111111111111111111110111111111111111111111101101111101110111111111110100111101111011111111101111111110111111111101111011101111111111111111111111111111111111101111011011111011001101111111111011110111111111111111111111011111111101111111110111111111111111111111111101111011101101110111010111111111100101111011111111111101111111111111111111110110110101111111111111111111101111111111111111111111111011111111110111111111111111111110111111100111111111111011111111111011111111111111111111111111111111101111111111111111111111111111111110111101111011110111111111111111011111101111111111110111011111111111111111110111111111010111101111101111110111111101111110111111111111111111111111101111111111111110111111111101111110101111111111111101111110111111111010111111111111111111011101111011110111111111111111111111111111011111101111111111111111111111111111111111111110111111110111111111111111111111111111011111111011111111111110111111111011101111111011111111111101101111111111011101111101111111011111110111001111011111101111111111110111111111010111111111111111111111111111111111111110111111111111011111111111110111111111111111111111101111111110111101111111111101111011111101111110111111111110110111111110001110111110011111101001111010111101111110111111111101111111111111111111111111111111111011101011111111111111111111111111101111111111111110101111110101111111110011011111111111111100101111111111011111111111011011111111111111111111101111011011111111111100111111111111101111111111111111101111111111111111101011111011101111111001111111111110111111111111110011101111111111111111111111111111111111111111111100111111111111111110111110110011111111111111111111101111101111001111111111111110011011111111111011111111111011011111011111111111111101111111111111111111111110111101110101111111111111111111111111111101111111111110111111111101111011111111111111110111011111111111111111111110101111111011111101101111111111111111110111111111111111001111011011111111111111110111111111111111011110111111111111111110011111111111111111011110011111111111110111111111111111111111111111111111110111111111111111111110111111111111110101111101111111011111111011101100111111111111111111111111111111110111111111101111101101111111110111111111111111111111111111101111111011110111101111111110111111011101111101111111111011111111111111111111111110011111111111111111100111111110111111111111111111101111111011111111101111111111111111101111111111111111111101111101111011010110111111110111111110111001110011111111111111111111111110111011111111111011111001111111101111011100111111111111111110111111111111111111011111111111111111111111011111111111101111111111111101011111101111111111111111111111111111011111111111110101111111111111111111111111111111111111100111111111111101111111111111111111111111111111101101111111111111101011111111111101101111111111111111111111111111111111111111101110111111111111111111111111111011111111110111111111110111011111111111111111111011111111011111101111111111111111111110110111110111111111111111111111010111101110111111111111110111011011111111110111110111111111011110111111111111111011111111111111111101111101111111011111111111111111111011111111111111110111101111111111011100111111111111111111110111111111101111111110111110011111111111111110110111111111111111111111101111011111101111111111111111111110111111111111101111111111110111011111111111111111110111111011101110111111111111111111110110111111111111111111101110111111111011111111101111011101111111111111110000111111111111011111101111111110111111111111111111111011111111111110111111011110011111111101111111100111111110111111111111111111111111111111111111011111111111111011111001110111111111111011111011111111111111011111111111111111110111111001111111111111101111101111111101111111111101111111111110011111111011111111111111101111001111111111101111111110011111101111011111111111111111111101111111111111111111111110101111110110111111100011111111111111111111101111101110111110110111111111111110110111110111111110111111111001111111111111111110111111111110101101111011111101011101110111111111111111001111111010111111101111111111111101111111111111111101111011111111111111111111110111011010011110111111111111011111111101111111010110111111111110111111110111011111111101111111101111111111111111111111110111111111111111111110011101111111001111111111111111111111111111111111110111101111111111111111111111111111111011111011111111111111111111111010111111110111101111111111111111111111110101111111111111110111111111111111111110111111111111111011011011110111111111101111111111011111011111111110111111111111111011110111011111111101011111011111111111111111111111111111111110111111011111111111111111111111111110111011111111111111111111111111111111101111111101111110111110111111111111111111111101111111111101111111101111011111011011101011111111111111111101111111111011110110111110111011111111111111111111111111111110111111111110100111111010111111111011111111111111110111111011010111110110011101111111001011111111111110110011111110111111111111111111101111111110110111111111111111011101111111111111010111111111111001111010111111001111111111111011111111111111111111111111111111110111111111111111111011101111110111111111111111011111110111111111111111111011111110111110111111111111111111011111111101111111111111111111111110111111111111111111110111101111110111111111110111111111111111111111111111111111111011111111111101111111111111111011111111111111101111111111111111111111111111111110110110101101110111010011111111111111111111111111111111111110111111111111111111111111011111111111111111111111111111101111111101111111111111111011111111111111111111111111111111110100111111111011111111111111110111111111110111111011101111011110101111111111111111111011111111111111111011011111111111110111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111110111111101111111111111111010111111111111110111011101111111100111110110011111011111111011111111111111111011111011111111111110111111111111101111110111011111111111111111101111111111011101111111111111111111011111111111111111111111111111111111111111100111111111101101111111101111111110111111111111111111110111101101111111110110111111101111111111111011011111110111100111110111111111111111111111101011111111111111111101111111111111110111111111111111011111111010111111111110111010111101111111111101101111110111111111111011110111111010111111111111111111111111111111101111110111111111111111110111111111111111111111011101000011110111111111111011111111110111111111111111111101111111111111111111101111111111111011011111111110101111111111111100111111111110111011111111111101110111111100111011111010111111111111111111111011111001111111111111111111111111111111101111101111111110011111111111111111111111111111111111101111111111111111111111111111111110111011111111100111111011111111111111111111111111111111111111011110010111111111111111111111111111110111001011011111111111111111010111111011111111111101001111111111111111111111011111111110111111111110111111111010111111111111111111111111101111011111101111111010111111111111111110111111111111111111011111111111011111111111111101101111111111011111111111110111111111111111111011110111111101111111100111111110011111111111111011111111111101101111111111111111011111111111111101111111111111111011111011111111111111111111111111111111111111111111111111111111110111111110111111111111111111111101111111111011010111111111110111111011111011111111100111111111110101101111111011111111111111101111011111111111111111111111111110111111111111111111111011111111111111101111110111101111111101111111111111001111110111111111111111111111010100111001111111111111110111110111111111111110100111011111101111101111101110111111111111111111111111111110111101111111111110101111111111111011011110111111111111111111111111111111111111111111111111111111111111011111011111101111110011101011111111111111101111111101111111111101111111101111111110111111111111111111011111101111111111111011111101111101111110111111111110111011111101111111111011111111111110111111111111111111111110111011110011111101111010111111111101111111111110111111111111111111111101111111111111011111111011111011111111111111111011111111111111111111111010111011111011011111111111111110111010111111111111111111111111110011111110110111111111011111110111111111110110101101101111111101110011111100011111111111111111011011111111011111111111111111011011111101111111101111111111111111101111111111011111111111111111111111111111111111111011111111101111110111111111111111111111111111111011101111011111110001111011011111101111111111111111111111111111111111111111111111111111111111110111111111111111111111110111111110111111111111111110111110101101011111111111111111111001111111110110110111101111110101011111110011111111111111101101110111110111111111111111111111101111110110111111111111101110111111111011111111111111011111101101111111111011111101111111111011010101010111111111111111101101111111111011111111111011101111101111111111111111110111110111111110111101111111111111111111111111111111111111110101111010011111111111111111111011101110111111111111111110111111111111011111111111111010100001111111110111111111111111111111110111100110101111111011101111101111111111111101111111111111111111111111101111111111101111011111111111011111111111111111111111111101111111111111011111101111111111111111111011101111011101110111111101111110111011111111111111111111111111111111111111110111101111110101101111111011101101011101110111111111111111101111111101111111111111111111111011111111111111111111111111111110111011111111011111110110011111111111111111111111111111111101111111111011111111111111101111001111111111110111111101111101111111111110011111111111111111111111110111111111111111111110111011111111111101001111101111101111111111111111111111111111111111111111111111111111111111111111110111111111101111101111111111011111111111111111110111111111010111111011111111011101111111111111111111111111111111110100110111011111111111011011011111111111111111111111011111111110011111011111111111111111111111111111111011111101011111111111111111111111111111011111111011111011111111111111111111011111111101111111111111111111101111111111111111111111111111010111111111111111111111011111111111111101111011111111001111111111111011111101011111111011110111111011111101111111111111111111111111011111011111111111111111011111111111101101111101111111111111111111111111110111111110111110101101111111111011111111111011111111111111111111111111110111111111111111111111110111111010110101111111111111111111110111111011110110111110111111111111110111111111101101111111111111111111111111111111011111111110111101111111111100111111111111001111111110111111111111111110111111111111111011111011111011101110111111111110011111101101111011111111111111101110111111111101010111111111111111111111111111111111111111110101101111101111110111111111101011101111110111111111111011101111111111111111111101111111011111011111111101111111111111011111001111111011111111111111111111111111111111111111111111111111111111111111011011111111111111111111101111111111111111111111011101111110110111111011111111011111111110111111111111111111110111111111111110111111101111111111111111011111101111111111111111111111111011101111111111111111111111111110110111111111111110111110111111111111111110111111111011111011111111111111111111111001111111110000111111111111001001111111111100111111111011111111111111111111111111011111111111111101111111111111100011111110101111111111110101111111110111111100111110111111110101111101111011101111111111111111010111111110111111101111111111110111111111111111101111111111111101111001111111111111111111111001111111111111101111111011111111111111111110011101110111111001101111111111110111111111111111111111111111111111101111111111011111110111111011101111111111111111111111111111111011111111111111111111111111111111011111111111101110101111110111111111111111011101111111111111111011111111111111111110111111111111011111111111111111101010111110110100111101110111111111111101111011111111110111111111101011111111101111111111011111111111111111111111111111111111011110111111011111101111111110011110111111111011111111111011111111111111111111110111111111111111101111111110111011011111111110111111111111011111111101111011111110111111011111111111111111111111111101111111111111011111011111011111111011111111111011111101111111111110111111111011011011111111111111111111111111011111111111111110111101111110111111111111111111111111101111111110011111111101110111111111111111101111111111101101101011111011110111111111111101101111111111101111101111011111111011011111111011100111111111111110111011101101111011111111111111111111110011111101111111001110111111111111011110101011111111111111111111111111111111111111111101111111101111111111111111011111111111111111111001111001111111011111111111111111111111011111111111111111111111010111111111110111111111110010111111111111111111101111111111111111110111111111111111111111111111111111111011100111111111111110110111111111111111111111111101111101111111110111111110111111111111111111011111100011111111111101111111011101111111110011111111111111111111111111111111011111011111111110111101111111111111111111101111111111111101111111111111111111111101111111011111111111110111111111110111111111111111011111111111110101111111111111111111111111111110111011110111111111111111111111110111111111111111101111111101111111111111111111111111111111111111011111011000110011111101111110111101110111111110111111111111111111111110111111111111111111111111111111111011111111111101111111111111011111101111111111101111011111111111011101111111110111111011111111111011111111111111111111111110011111111101111011111111111101111001111101111111111111101111111011111111110111111111110111111111101111011010111111111111111111110110111101111111111111111111111111111011110011111111111011111101111111111111111111111110111111110111111111011111111111111111101101111111111110110111111111111111111110011111110111111111111111110100101111101111111111101111111111111111111111111011111111110111111111111111111111011111111111110110111101111111111111111011101011111111110111111110111111011111111111111111110101111111101111001011111111111111111111111111101111111111011111111101111110111101111110111111111111111111111111111111110111101111011111111111101111111111111111111111111111111111110111110111111111111100110111111111111111111110111111111011111111111111111111111111111111111011111111111111111011111111011111011111110101111111111010111111111111111111111111111111111110111011011111111111111111111111111111111111100111111111110100111111111101111111111111111111110111111111111101111111111111111110111001111110111101110011111111111101101111110111111111111111111101111101010111111111111101111111110111111111111111111111111001111111111111111111111111111111111111111101111111111111111111111101111111111111111111111111110111111101111111111111111111111011111111011111111111111111110111111110011010111111111111111111111111111111111111101111111011110111111100111111110011111111111011101111111111111111111111111111111111111111111111111111111011111111110101111111111101110111111011111111111111100111111111111111111111111101111111011110111011111111111011111011111111111111110111101111111111111110111111111111111111111111111111111110111111111111111111111100111011111100111101101111111111111111111011111101111111111011111111100111111111010101111111111111111101111111111111111011011111111111111101011111111111011111111111111101110111111101111111111111111111011111111101101111101111101111111110111111011111111111111111111111111111111111111110111111101111111110111111111111111111111111111111111111111110111011110111111101111111111101111111101111111111111111111001111111011111111011111111110111111111111111111111101111111111111111111011111101111101111110111111110111111010111111111101111011111111111110111011111111111111110111111111111111111110110110111111111111011110111111111111111111111001111111101111111110111111111111110101111111111011111101111101111111111111110110111111111111011101111111111101111111111101011111111101111011111101111111110110111110111111111111110111111110111111011011111111111111100011111110111111111101011111011111111101011111111110111111111111111111111101111111111110111111111101111111111111111111111111111111111111111100111111111011101111111111111111111101111111101111111111111111111100011111111111111111101011111111111111111111011111100111111111110111111111111111111111101111011111111111111110111111111111111111111111111111111111111011111111111011111111111011111111111111111111011111111111101111110111111110111111111111101111111111101111110100010111111111111111111111111100111011111111111111110111011110111111111111111111011110111110111011111111111111111111111101111110111111011110101011101111111110010111111111111111111111111110111111010011001011101010111111110111111111111001001111111111111111111111111111111101111111101110111111011111111111111111111111111111111111110111101011111111111111111111111111111111011111111111111111101101111111111111111111111111111111101111111100111111111101111111111110110111000101111111101101000111111111110110111010101110111011111111111111111111100111111111111111110101111111111111111111111111111111111111111111110111111011110111110111111111111110101010111101111111111110111111110101111111111101111010111111111111111111111110111111111111101111111111111111111111101111111101111111111111111111111111111111010101111111111111111011111111101110111101110111111011111101111111111111111110111110111000111111011111111111111111111111111111011111111111011101111111111011111111111011111111111111101110111111101111111011111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111101111111111111111111011111101110111111111101111111111111111111111111111111111101001111111111110011111111111111111111111111111111001111111111111111111110111111111111101011111111110110110111111111100111111111110111111110111110111111111111111110111101111101111111111111111111111111111111111111111101111111101011111111111111111111111011111011011111111101111110111111111111011111001111111111011111111110111111101010111110111110111001110111111111111111110111111101011111111111110111111111111111111111111110111111111111111111111111111110111111011010111101111111111111111111111011101111101011111111011001111111111111111111011111111111111101110110111101111111011111111111011110111111111111111110111110111111111011111111111011111111110101111111111101110111111111111111101111111111111111011101100011111111111011111011111111111111001101111111111111111011111111011111011110111111111111111111111111101110111010111111111111011111111111111111111111111111111111111111111111111111110111111111011111111111111011111011111111111111111111111101111011101111110110111111101011111111011111011111011111111111101111110011011111110000111111111111111111111111110111011111111101110111111111111111111011011011111111110111110011111110111111111111111110110111111011111111101110111111110111010111111111111111111111101111111111111111101111111111111101111111111011111011011111111110110110101111110110010111111111101011111111111011111111111111111111110111111111111111111111110011111111111111111111001111111111011111111111111111111111111111111111111111110111101111010110111111111111111111011111111111111111111111101101111111101111111111111111111111111111111111011111111111111111111111111110111111111111101111111101111111011111111011111101110111111011111111111111111101111111111011111111111111111111100111000111111111111111110111111111111111111111111111111110101011100110111111111111111010111111011111111111111111011111011111111111111111111111001101111111111111110100111101111111111110111111011111111110111111111111111111011111110111000111111111110111111111111011111110111111111101111111111101111111111111111111011111110111111011111110111111101111111111110111111111111111111111111111101111101111111111111111111110111111111111111101111111110111110111111111111110111111111010111111011100111111111111111111111110010111101110111110111111100011111011111010111110111001111111111011111111101110111110111111101111111101111111111111111111111111111111101111111111111111011110111011111111011111110111111111111111111111111111111101111111111111111101111111111111111111101111111110111111101111111111111110111101011111111111101111111111111110111111111111111111111111111011001100011111111110111111111111111111111101110100111111111111110111111111111111111101111111111111111111111011111111111101111111111101111111110110111011111111111110111011111111111111111111111111111111011101111111111111111110101111011101111111110111111111111110011111101111111101111111111111111111111011011111111111111111111110111111111111111111111111101111111111111001111111111111111111011110111111111111111111111111111111111011111101010111111101111111101111111110111111111111111111111111111111111011101111111111010111111110111111111110111111111111111111111110111010111111101111111111111111110111111111011111111110110111111111111111111111110111011111111111111111111011111111111111111011110111110101111111111111111111111111110110110110111111111001111110111111111111011101111111111111111101111110111011110101101110111101111111110110111111101111111111101111111111111111111111111111111111111101111111100011111110111111111111111111111110111111111111111111111111011111101110110111111111111111011111011111011111111001011111111111111111111111111111101111111110101111101011111111001111110110111111111111111111111111111111111111111110111111111111110111111101111111111111111111111111011011101111111111111011111110011111111111011111111111101111111101111011011011110111111111111111111011110111111010111111011111011111011111010101111111111111101101111111111111111111111110011111110111111110111111111101111111110111101111111111001110110111110111111111111111111011111111111011111111101111111111111111011111110111111011111111101111111111111111111111011110111111011101011111111101111101111111111111111111011011111111110111111111111111111111111001111111110111101011101111111111111011111111111111011111111111111111111111111111111111111011111101111111011111111111011111111110101111111111111111111111111111101111101101111111110111111101111111011101111111111111011111110101111011001111111111101111111111110111111111111101111011111111111111111111111011011111111101111111111111111111111111111111111111111011111111011110111111111111011111111111101111111111111111111111111001111001111101011111111111111111111111111111111111111011111111111111111110111111111111111110111111011111111111111111111111111111111111111111111001111111011111111111111011111111011111011111111101111111111111011111111011110111110110111101110011110111111111111101111111111100111111111111111111111111111111111111111011111101111011011101111111110111111111110100111111111111111111111111111110101111111111111111111011111111011111111111111111111110110111011111111111100111111111111111110111111111101101101111111111111111111111111111111111111011111111101111011111111111111011111111111111011010110010111111111011111111111111111111111111111011111111011111110000111111111111111111111101011111111011111111111111110111111111111101111111010011111111111101111111111111111111111111111101110111111111011111111111111111111111111111111111111011010110111111111111111111110011111111111011111111011111111111001111111110111111110111111101101111111111011111101111111011111001111101111111111111111111111101111011111110111111101011111110111111111111101111111111100111111111111111111111111111111111011111110011111111101011111111110110111111111111111111111111111110101111100011111111110110111101111111100111101011111111111111011111111111111110111110111011111111011101111111111011110111100111111111111111111111111111111101111111111111111011111111111111011111111111111111111111111111111111111111111011111111111111111111111111111111111111111110011111111111111111111111111111111111111111111111111111101111111111111111111101111111111111101101001111111111111100111111111111110111111111111100111111111101101111111111110011111111111111111111111111111111111011101011111111111110111111111111111111111101111100011111111101111111111111111111111111111111111111110100111110111111111111111110111111111111111111110111111111111101111111111111111110111111111111111111101111111111001111111111111111011111110111101111111111111111111111101111111111111111111111111111100111111111111111111111111111111111010111011111011111111111111111110111111010101011111111110111111101111111110110111111111111111111111110111111111111111111111111111111111111111111111111100111111111111110111111111111111111111111011111111011111111110111110111111001111101111111101111101111111111110111111111111111111111111110111111111011111111111111111111110111111111011111111111011111011011111111101111111111111111110110111111111111111110111111111111111011110101111111111111111111111111111111111111111111111111111111111111011011101101111011101111111111111111111110111110111111111111111110111111111001111111111111101111110011111111011101111111111111111110110111111111111111111110111111111111111111111111111111111110111111111111101111101111110111111111111111110111111101011111111101101111111111111011111111101111101111111111111111111011011111110011101111111101111111111011111111111111111111111111111010111111111110111101111111010011111111111111011111111110110111111111010111111111111101111011111001111111111011111111111101101111111100111101111111111111111011111101110101111111111111111111111111001111111111110110111111111101111111111111111111111111101111111111111111111111111011110111110101111111111110111011111111110111111000111111111111110111111101101101111011110101111011010111111111111111111001111111110101110110111110111111111111111111111101111111111101111111111111111111111111111111111111111111111111111111001111111011111111110101111111111111101111101111111111111101111110111111101111111111111011110111111111111011111111111111111111111111110011111111111111101101111111111101110111111111111111111011111111111111111011111111011111111110111111110111111000010111111110111111110111111111111110101011111111111111111111111111111111111111111111111111110100110111111111111011111111011011111111111111111111111111111111111111110111111111111111110111111101110111111111111111111111111110111111011111111111111011111111111111111111111010001111111111111111111110111111111011111110101111111111110111111111111101111111011111111111111101111111111111111111111111111111111111111110111011111111111111111101111111111011110011111101111111111111111111110111111111110101111011111111111111111111111101111110111111111111111111111011111111010111111101010111111111111111111111110111111011110111111111001110111111111111111111111111111111111000111111000111101111111111101111101111011101110111111101011111111111111111111111101111110111111111111101111101111111111011101111110101011011101111101011111111011111111011111111010101111111111111111111111110011111110111111011111111101111111111111111100111111011111111111011110111101111111111111111101111101111111101011111111111110111111111101111110101111101111111111111111110111111111111111111111111101110101011011111111111111111101111111111111111111111101111111110111111111110111111111111111101101111101111111111111111011111111111111111111111111111111111110111111111111111111110111111111111111111110111111111111111111111011111110110011111111111111110101111101111111011111111111111111111111110101111111011101111111111111111111111110111011111111111111111111111111101111111011101111101111111111111011100111111111111111111111111111101111111011111111111011111111111111001111111111111111111111111111111111111011110111111110111011110111011111111111111111111111111011111111111111010111101111101111111111011111111110101111110111111110101111110111101101111001111011111111011111111111111101111100101100111111111110101110111111110111111011111111111111110011111111111111111111111111111111111011110111111111111111111111111111110111111111111110011011111101111111111011111110111110111100111111111111111111111111111111111101111111111111111111110101111110111111110111110111111111111111111111111011111111111111111111101111111111111111111111111111011101111111111111111111011111111110111111111001110111111111111111111111111100111111111110111111111011111111111011011111111111101111111111111011111101111111111111110111111111111111011111111011110101111110110110110110111111111110111111011010111111011111111111111111011010110101111110111110111111011111111111110111111111111101111111101110011110111111111111111011110110011111111111011111111110011011111111011111110001101111101111111111111111111111111111111111111111111111110011001111111111010111010111101111111111111111110011111101011111111101111111111101111111111111111111111111110001111111110111111110111111111111111111111111111111101111110101111111111111101111111111111111011111111111111111010111111111111111111111111011111100111111111111111111111111111111111101111111111111111111111101101011111110111111111011111111111100111111111111111111111111010111111111111111111111111111111111111111111110111110111111111001111111111011101111111111111111101101011111011111111111111111111111110110101100111111111111111011101111111111111111101111111111111111111111110111111111111110110111111111101110111111111111111011110111111101111111111111111111111111111011111111111111111111011111111111111111111111111111111111011111011111111101111111111111111111111110011111111111111011110111101111111111101111111011111010111111111111111110111011111111111011111111111111110011111110111100111111111111111111101111101110111111001111111111111111111111110111100111110111111011111011111111011111111011111011111011011111111011111111111111111111111111111101111111101001110001110111111111111111111111111111110011101011111111110111111111001111110111111111111101011111111111110111111111111111111111111111111011111111111111011111110111111111111111011111111111111111111111111011111111111111111111111111111111111011111110111111100111111111111111111110111111111101110111111011111111111110011111111111110111110111111100011111110111111111111111111111111111111111111111111111111101111111111111011111111111111111111110111111101100111110111110111011111111011111110111101111111011111111101111111111111111111111111111111111111111111100111111011011010111011110011011111111110111111111111011110101111111111011111111110111111111111011111111110111111111011111111100111110111111111101110011010111101111111011111111111111111111101111111111111111111111111111110111111111111110111101111011111111111111110111110111111111111111111111111111111101011111111111111111111111111111111111111111111111111111111111110111111111111111001111111111111011111101111111111111111111111111111011111111111111101111101111011101011011101011001110111111111111111111110111111111011111011110111110111111011111101111111111101111111011011111111111000111111111111110111111011111111111111111111111110111111111111111111111011111111111111111110111111011110111111001111111101101111110111011111111111111110111111111111011111111111110111111111111111111011111111101111011111111011101111101111111111111110111111111101111111101110110111110111011111111111111111011111101111111111111111101011111111101111111111111111111111111011101101111111011111101011111111111111111111111111111111010111111111111111111111110111111111111110111110111001111111111111111110111111101111111111101111111111111111001110111110111101011111011111111110011111111111111110111111111111111111110110111111111111011111011111110111111011111111111111111101111111011111011101111111111001111110111111010111111111111101111111111111011111111111111111111111111111101111111111011111111111111111110111110111011111111111110011111111011111111111111111111110111111111111111111111111111111111111011101100110101111111111111110111111101111111111111111111110111111111100111101111111111111111111111111111110111111110111011111111110111111111101111111111110101111111111111101111010111110011111111011111111111111011111111111111111111101111010111110011111111110111111111111111101111111101011111111101111111111011111111111111111110010101111111011111111110111111111111111101111111111111111101111111111111111111111111111111111101110100011011111111111111111101111111111111111111111111111101111011111111111111111111111111111101111010111110111111111111111111111111111111111111111111111111111111111110111111101111111101111111111111111110111101001111011011110111111111111111011111101111111111111111011111111011111111111111111111111101111111110111110111110101111110111111111101111111011111101110111111111111111011011111101011111110111111111111111111111011110111111111111101111111111111111111111111111111111011111111111111101111111100011111111111111110111101110101111111111111011111100111011101110111111101111111111111111111111111111110111111011101111101111111111110111111111111111111011111111110111111111110111111110111111111111111111111110011111101111111111111111111111111111011111111011111111011111011111011101110101011111011111111011111111111111111111011111011101111111111111111111110101111101111111110110111111111111111111111010111111111111111011111011111110111111111011110111111111111111111111111111111111111111111111111111111111111111111111111111111011111111100111110111111111111111111011111111111111111111111011111110101111111011111011111111111110101111111111111111111111111111111111010111011111111111111111111111111111110111011111111111111111111111111101110111111111111111111111011111111111111011111111111111010111111111011111011011111111111111111111111110111110110111101111110111101101111110111111101111111110111111111111111111111111111111110111111111111111111111011011111111111111111010111111110111011111111111010111111111011111101111111111111111111011111111111101111111111101111111111111111111111101011111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111101111111111111110111111111101111101111111100111111101110111111111111111110101111011101101101111111111111111111111111111101111110101111111111101110111111111111111111111111111101111111011111111111011110101111111111111111111111111111111101111111011111111111111111010101111111111111111111011110111111011001111111101111111111111111011111111111111011111111111111111101111111011111111111111111111101101111111111111111111111111011111110011111101111111111111111111111101111111100111111110111111101111011111111111111111111111111111101111111111101111111111111101111111111100111111110111101111011111111111111111111110111111011111111111111100111111101111101111111111111111111111111111111111101111011111111111011111110111111111010111101110111111111111110111111111111111111111111111111111011111111111111111111111111111111110111111110101111111111101111111111111011111111111111111111111111111111111110111111111111110111111111001111111111111110111111011111111101111111111111111011000111111100111111011111111111111111111111111101011111101111111111111111111111111111111111111111111110111111111110111011111011111011110111111111111111101100111111111011111011011101101110111111111111111111110111110111111101111100111111111111111111111111110111111110111111111111111111111101110111111011110110111111010111111111111111111111101111111111111111111111111111101111110001111111111111011100111111111111110111111111111110000111111111111011011011111111111111111110111111111111110111111111111111111111101111111111111111111011011111111111111111111111111111111111111111100001110111111111111011110111111111111111111111111101110111111111111011111111111111111111111110111111110111111111111111111110111111100111111111110110110111111111111101100111001101101111111011111101100111110111111111111111111111111111111111101101111111011111111111110111111111111111011011101111111010111111111111111111011111111111111111111111011111111111111111110111110111111111111111111111011111111110111111111111111111011011111110111110111111111111101111111001101111111111111111111111111111111111111111111110111111111111111111111111111111111111110101101111111110111101111110111111111111111111111111111111101111111111111101111111001111111110111111111111111111111111111110111111111111111111111111111111111111111010111111101111101111111110101110001011111111011110111111111110111111110101111111010011101101111111111011101111111101111111101111111011111111111111111111111111111110110100111111111110111111111111111111111111110111111101111111111101101111111111111111110111111010101101111111111011111111101111111111111101101111111110111111101111110111111111111111111101111101011111101110100110111111011111011101101111001011111111111011111101111111111111111111111111111111111101111111111111111111110111111101101111111111111111111010111110111111011111111111111111110111111111011111111111111111111111111111111111101111011111110111111011111111100111111111111111111111111111110111110011111111011111110111111111111111111011111111111111111111111111111101111101111111111101111111111111111111111111110111111111111111111111110111011111111111001111111111111111111111110101111111111111011101111111111101110111111101111111011111111101111011111111111111111111111111010111111111111111111111110011111111111011111111111101011111101111111111111111111111111111111111011011111111111010111111111111111111011111011111111111111111101111111111111111111111110111111110111111111111110111111111111111111110111111110111111111111101111111111111111111111111111111111111111011111110111111111111111111111111111111111111111111111110111111111111110111111111101110111111111101111111111111111101111111111111111111111111111111111111101111101101100111101011111101111110100111011110101111101011111011111000111101111111111011011111101111011101101101111101111111111101111111111111111111111111111111111111111111111110111111000111111111101101111111111101010111110111111111111111101111110111111111111111110111111011101111111101111111111100111110111010111110110111110111111111111111111111111111111111111011111111011111111011111011111011111111111111111111111111111111111111111110110111111111111011110111111111111111111100111111111111111111011111110110111100111111111011111110101110011111011111111111110011111111100111011111101111111111111111101111111111111101111111111110111101111111111111111111011111111011111111001111111101100111110101111111011101110101111110111111110111111111111111111110111111111111111111110111111101100101111111111101111111101111110011111101111110111111011111111101111110111111111111111111111111111111111101111110111101111111111111111101111111111111111101011111111011111111111111111111111111101101111111101111111111111111110111011111001111011111111111111111101111111011110111111011110011111111111110100111111111111111111111101101110111110111111111111111111111111111111111111111111111111111111111111111111101111101111111111001101100011111111101101111111111111111111111111111101111011111111111011111111111011111111111111111111111011111111111111111101111111111111111111100111100011101101101111111111111101101111111111111111111111111111111111011111011111011011111011111111111111111111010111101011100111111111100101111111111111111101111100111101111111111111111111111111111111111101111111111111111111111110111111110111110111111101110111011111110011111100111011111111101101111111111111111111011011111111111110101111111111100111111011011111011111111111111111111111111111111111111111101111111111111111111111111011110111111111111111111111111111110111111101111111111110101110011111110011011111100011111111111011011111111111110111111111011111111111111101111111111111110111111111111101011111111111111111111011111111111111111111101111111011111111111111111111111111011010111111110011111011111111111111110111111110111111101110111111111110011111101111111111110111101111011111111111111110111011111111111111111101111111111111111111111101111111111111111111111101011101111111111111111011101111111101111111111111011101111111111111111111110011111101111111111111111101011111111111111111111111111101111111111111110111001111111111111110111111111111011111111101111010111111100111010111111111111111111111111111111011111011111111111111111111011110011111111111111111111111111111011111101111111011111111111110111111111111111111111111101111111111101111111011111110111111111111111111011110111111111110111111111111111111111111111111111111111111011111010111111111111111101111101111111111111111011011100111011111111111111111111111111111111111111111100110111101111101101011111111111111111111111110101111111110111111111111111111111101011111100111111111111111111111111111111111010110110111110101111111011011111111111110110111111111110111111111111110110111111101111111101111011111111111101111111111101101111111111111111011011111011111111111111111111111111111111111111111111111111111111111111111011111111111111011111111110111111110111111111011101111011110011111111000010111110111101111111111111111111111111111111111111111111100111111100111110111111110111111100110111111111101111111111101111111111101111111111111111111011011111111111111111111111101111111111111111111111111111111110101111111110101111101101111111111101111111110111111111111011111111111111111111111011110111111110111111111111111101111101111111111111111111111111011111101011111111111111111111111111111111111111110101111110111100101111011111111111111111111101111011111111111111110111111111111111111111111111111111110111111111111111111101111110011011111111101111111111111011111111111111110111111111101111111111111101111111111111111111111111111111111111110111110011110011111111101111111111111111111111111100111100111111111110111111111111111111111111101011101101111111111101111111111111111111101111110111111111111111111111110110111111101011111111111111111100111011111111011111111111111111111111111111111111111011100010111111111111111101111011111111111111111111110011111110111111111111111111110111101111111011111111111101111101111111111111111111101011111111111110111011111111111011111111111111110110111111111110111111111111001111111111111111111111110111110011101111111111111111111110111011001111111111111111111111101011111111101100111111111111011011111111111111011011111111111111011101111101111110111011011110101111111111111111111111111111111101111111111111011111110111011110111011111111111111111111010111111111111001111111111111110111111111110111101111110110101111111111110111110111111011111111111010111111111111111111111111111111111011111111111111111111111111111101111111011110111111111111111111111111111011111111111111011101101111101111111011111111110111111111111111111011110111101110111110111111111111111111111111010111011111110111101111110111111111011111001110111011111111111111111101111111111101110111111111111101101111111111111111111111111111111011111111111110111111111111111111110111101111111111101111111111100111111111111111111101001111111011111110111011111111110111111111111111111111111111111111110101011111110111111111111111110111111111110111111111111111111111111111111111111111101111111110111111110101111111111111111101111111111111111111111111110111111111011111111110111111111111101111110111111111111111110110111111111101011111110111111111111111111111111101111101111111110011111110111111111111111110111110111101010111111101111110111111111111111111110111111111111001111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111101111110111111111101011111111111111111100111101111011101111111111111110111111111101111111111111111111111111111111111111110111111111111110101111111011101111111111111111111111111110111001111111111111111101110111101111111111111111011111100111111111111011111111111111111111011111111111100110101111111111001111111111111111111111011111111111111111111111111111111111111111111111111111111111111111110111110111111111111111111011101011101100101111111111111111111110101011111111110100111111011111111111111111111111010011111101111111111111111111111110111011111111110110111011111001110111111111110010111111111111110111111100111111010111101111111111111111111111111010111111111111111111111011110111111111110001111101111111111011011111111111111111111111111111111111110110111111111111111111111110011111110111111111111111111111111111110010111111111111101111111111101001111011111101101111101111011111111111111111111111110111111111111111111111111011110111111111011011111110111111111111110101111111111111111111111111111111111111111110111101110111111110111111011111110011111011111111111110101111101101111111101111111111111111111111111101111111111111111011111111011111111100111111111111011111101111111111011111111111011111111111010111110111101111111100111110011101111111111111111111011011111111111011011011111111111101111111111001111011111111111111111111101111111111111011111011111111111110111111101111111111111111110101111110101001111111111111111111111111111101111111111110110111011111111110111111011011111111111110101110100111111111001111111111111111111111111111111111111111101011011111111101100110111111101101000111010111111111111111111111111111111110110010111111111111111101111101111111111111111011101110111110111111011111111111111111111111111111111110010101111111111111111111111111111111111111111111111111011111101010011011111111111111111101111010111111111111111111111101111111111111110111111011111101111110111111011110111101011111011111111111111111111111111111011111111111111111111111111100111110111111111101011110011111111011101111111111111110101111111111111111111011011111110111111111111111111111110101111111111111111111111111101111111111111111111111010111111111111111101111111111111111111011111111111110111110111111100111111111011111111101011111111111111111011100101111111111111111111111111111111111001111111111111011111111111111110011001111111110111011111111111011011111011110111111111111011111111111111111111101111111111110111011111111111011111111111111111111111111111111111111111111111111011111111111110011011011101010100111111111101101111111111111111111110111011110111111111111111111111111011111111111111111110111111001100111100111111111011111011001111111111101111111111111111111111111111111111111111110110001101011111101110111111110111111111111111111011011111110111111111110111110111111110111111111111111101011111101011111111111111111111101111110111111111111110110111111110111111011111111111111111111111110111111110110101111111101111111111111101111111111011111111111101111111111011101110111111111101111100101101111111111111111111110111111111111111111111111111111011101101110111101111110111011111111101101111111101111111111111111111111111111111111111111011111111111111111111111110111111111111111111111111111111111110111111111111111111011111111111111101111111101111111111111111111111111111111111011111111101111111111111111101111111011111110111101110111110111111111110111101110111101011111111111111111111111111101111111111011111010111101111011111111110111101111111111111111111011111111111101111101110111101110111011101111101111111111110011110110111111101111110111111111111111110111111111010111101111111111101111111111111011110111111110111111111111011011111111111111111101111111111111101111111011111111111111101111111111111111110111111111010111111111111011111111111111111101111111101111111111111111111111111011111110111111111011111110111111111111111111111111101111111101111111101111110011111111011110111111101111111111111111110111010100101111111111011111111111111110111001111111111111111111111111111111110111111111111111111111111111111100111110111111011111111111110111111111111111101111111111101111111111011111101111111111111111110111111111101111111011111111111011011111110111111111101011101110010110111111111111111111101110111111111010111110111111111111111111101010111111111111111111111111111111111101110111111111010101110111111111111110111011110111100111111111011111110111111110101101111111111111111010111111111011111010101111111110110011111011111111111111111110010011011110101111111111101111111011011011111111111111111110111111111111111111111111111011111101111110011111111011111111111111111111111111111111110110111111111101011111111111111111111011111111111111111111111111110111111111101111111011101101011111111111111011111111101111111111111110100111111111111111110111111111111111111111111111111111111111111111111110111111111111111111111111101111111111111111111111111111111111101111111111111111011111101111111111111111111110110111110110111111111111111111010111111111111111011111011111111110111111111110111111101110111100110111111111110111111111111111111111111111111111111111110111111111111111111111111111110111111111111111111111111111111111111111111111111111111011111011111111101111111111111110110101111111101111111111111111110111111111111111111111111111111110111101111111011111111111111111110111101110111111111111111111100111011111111111111110111111111011111111111111111111001011111111111110111111111111111111110111111111111111111111111111111110011111110111111111111111111111111111111111111111111011011111111110111111101111111111111111111110110101111111111111111111111111111111111111111111111111111101111111111111111111011010110111111111111111111001111111111111111111011111111111111111111111101101111111111011111011111111111101111110110011111111111011111111111111101110111101111111111111111111111111111111110101111111110111110011111110111111001111111111111011111101101010111111011111111111111111101111101110111111111110111111111111111111111101111011111111111111111111001111111111111111101111101111110111111111111111111111111011111111111111111111111111111111111111110110111111111111111100011111111101111111111111111111111111101111111111101011111111111111110111111011111111111111110111111111111111111111111111111111011111000010111111111111111111110111111111111111111111111111111111111111101111111111111100111011101101111111111111111111111111111111111001111111111011011111111111111111111111111111111011101111010111111111110111101111101111011111111111111111001110111111111011101011111111111111111101110111100111011011111111101111101111001111111110111000111111111101111111111101111011111111110111111110111011111110111111011110111101111011111111111111111111101111111111010111111011001111111111111111101111111011111111111111010111110111111111011111011111111111111101111110111111111110011101011111111111011111111111111111111011111110111011111111011011111111111111111110111111111111101111101110111111111111111111111111110111111111110111111111011111111111110111111111111111111111111101111111111110111110111111111111111001101111111111111111111111011111111111111111111111111111101111111111111111111111111111011110111111001111110111111011111100111111110101111110111001111111111111011111111111111111111111111101111111111111111111111111111111111111110110011111111111111111111111111110111110111111011111101111111111111111111111111111111111111111111111111111111111111111101011111111111111110101111111111101111101111111011111111111011111111111111011101011111111110111111111111111111111111111101111111110111111111111111111111111111111111111111110111111111111111011110111111111111111110100110111110111011111111111110111111111111111111011111111011101111101111111111111111111110101111111011111111111111111111101110011101011111111111111111111011111111110111111110111111111011111111101111111101111111111111111111011111111111111111111111111111111110111111111111111111111111111111111011111111111111111111111111111101111111111111111111111011101111111011111111101111111111111011011110111111101111111111111101111111111111011011111111111111111111101110111011011111110111111111111011101111111111011111111111111101100110110111111111111111101111110011111011111111111111111111101011111011111111111111111111111111111111111111011111111011111011011111111111111111111111111111111111100111111111111111111111111110111111100111101011110111111111111110110111111011101110111111111101111111111111111111111111111111111111111111110111111111110111111111111110011111110001111011111111111100101110111011111111111111111111111111110111111111111111111111111111111111110111111111111111111100111011011101101111111111111110101111111111111110101111111111111111101011111111111101111111111111111111111111111111110111111111110111111111111111111111111011111110111111111100111111111111110111111111111011011101011111010111111101111111101111011111111111111111111111111111101111111111101111111111111111111111111111111111111111101111101111111111111101011111111101101111111111101111111111101111111111111111111110111111111111111111111111111111111111011111011111111111111111111111110010111111111101101111111111111001111111111111111111111110110111111011111111111111010111111111111111111011111101111110110011111111111101101111111111111111111111111011111111101111110100011111111111110111111111100111111101011101110110111111111111111111111101111111111111110111111111111101111111111101111101111111111111110111111110111111100111111111111111101110111111111111111111111110111111111101111011111101011111111111111111111111111111101111111111111111110101111111111101110111111111111111111111101011101110110111111111101011111111110110111110111111110111111111110111110101111111111011111111101111011101111111111111111111111111111011101011111111111111111111111111111011111110111111011110110111111111111111101111111110111111010101101111110111111111111111111111111111111111111111111111111011011111111111111111111111111111111111111100111111111111111110111111111111111111111111111111111101101111111011111111110011110111111111111111111111111001111111011111101110111101111111111110111111111111111111111110111111111111111111111111111011111111111111011111111011111111111111111111111111111111111011111111111111111110111110111111110110011111111011111111110011111101111110111111111111111110101111111111111111111111111111111111011011101111101011111111111111110111011110111111111111111111111011111111111111111111111100111111111111111111111111111111101111111111111111101110110111111111111111110111011101110011111011111111110111111011111111111111111110111111111010011111101111101111111110111111111111111101111111011111110111011111111111111111111111111111111111011111111111111111111110110111111011011111110111111011111111111111011011111111111111111111111111101111111111111011111111111111111111101111111111011011111110101111111111111101111111111111111011111111011111001010111111111111111111011111111111010111011111111111111111101111111111111111111111011111101111111111101111111111101111111111111111110111111111111111010011111111011111111111111111111111111111111011111111111110101111110111111111110110111101111100111011111111111101011111101111111111111111111111111111011111111111111111111101111111111111111110111111111111111111111111111111110111111111111111011111111111111101111111111111111101111111111111111111101111111111111111111111111111111111111111110110011111111111111011101111111111111101111101111111111111111111111111111111111111111011111111111111111111111111111111111111011110101111111101111111111011101111111111110111111111001111111111111111111111111111111101111111111101111111111011011101111111111111011011111111110111101111101111111011101110111111111111111111111110110111111111111110111111111101011111111111111111111100111101110110111111111111111111111111100111111111111111111111111111110111110111111111111111011111111101111111111111011111111111111111011111111101111111111111110111111111111111111111011110111111001111111011111111111111010111110111111011011111111111101111111111111111111111111011111110111111111111111111111111011111111110111111001011111110111111111111010111101111111111110111011111111111110111111111111111111110011111111111111111111111111101111111111111111111111110111111111111111111101111111001111111111111111111011111111111111111111111111111111111111101111111111111111111111111011111111111011111011111110011111111101101111111110111111111101111111111111110111111111110011111101111111001111111011111111111111111111110111011111111111111101111111111111110101011011111111111111111111111111111111111111111111111111111011111111111111101111111111110111111111111111110111101111111101111111111011010111111111111111111010111011111101111111111101111111111111111111111011111011111110111111111111111011111010111111011111111111111111111011010101110001111011111111101111101111111111101111011111111111011101111111110111111111111011111111111111111111111111111110111101111111111111111111111111111111111110111111111111111111111111111111111101011011110111111111011111111111111111111111111111111111011111110111111111111110111111111111111111111101100111111011111111110111111111101111010111111111111111111111111111111111111101110111111011111011111101011111111111111111111100111111111111111111111110111111111111111111111101001111101111011010011111111111111111111111110111111111111111011101111111110111111111111011111101111111111111111011111101111111111111111011111111111111111111111111011111111110111111101110011111111101111111111011111111111101101111110111111111101111101111111111111101011111111101111111111111101111111111111111111111111111111111011011111111111111111101111111111111111111111111111111111111111111011111100111111111111111111111111111111111111111111111111111111111101111110111111101111101111111111111111111111111111111111111111111101101011101110110111111111111011111111111111111111101111111111111111110111111011110111111111111111111111111111110111111111111011111111111111111110111111101101111011111011111110010101011101111111011111111111111111111111111101111111110011111111111111111111111111110111111111111011110001111101101111111111111111111111111111011111111111111111111101111111111111111110111111111100111111111111111111111111111111111111111111111111111111111111111111111101111111111111111111111111101111110101111111111111110111111111110111111111111111111111101111111110111110111111111011111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111110011111111011111011111111101111011111111111111111111111111101011111110111111111111111111101111111111101011011111111111110111110111111101111101111111111111111011111111111111111111110111010111101111111111111111111111111010110110101011111111111110111111111111111111011111111111111011111111011111011111011111111111111111111111111011101111111111111111111111111111111111101010111111110111111110111111111111111011111110011111110110111111101111010111111111110111111111110111011111111011111111111111011111111111111111111101111111110011111101111111111111111110111011101111111111011101111011111111111111011111111111111011111111111111111111110111011110111111110111111111111101111101111111111111111111111101111101111111101111111111111011111111111111111111111111111111111111111101111111111111100111011111101111111111111011111111111111111111111111110111111111111111111111110011111111111111111111101111111111111111111111101111011111111100110011111101111111111111111111111101011111011111111111111100011111111110111111111111111111111111111111111111011111111110110101111111111111111111111111111111111111111101101111011111111111111111110110111111111111111111111111011111011110111110111111111111111011110111011101111111111111111111111111111011111011111111111111111111111111111111111111011111111110111111101111101111111111111111111111111111111110111110111111111111101111110111111111111111111110111111111111011111111111111101010011111111110111111111111111111111111101111111101101110111111101011111101111111111111111111111100111111110111111111111111111111111101111111011111111111111111111111111111111111011110101111111111111111111101101111111111111111111111111111101111111111011111101111111111111111111101111111111111101101111111111111101111110111101111011110111111111111110101111111111111111111011111111111111111111111111110111111111111111111111111111111011111111111011111111110101111111111111111111111111111111111110011110111011111111111111111111011111111111111111111111110111110111111110111111110101101111001111111111101111111110111110011011111111111111111101111111111111111111111101111111111101111111010101111111111110111111111111110111110101111111111111111111111111011111111110011100110111111101011101111111111111111111111110111111101111111111111111110110111111111111111111111111111110111011111111111111111111111111110111111111101111111111011111111111111111111111110111111111111011111111111010111111111111111111111011111111111111111111111111111111111111111111111111011111111111101111111101111001111111111101111111011110101111110111111111011111111111111111111111111110111111111111011111001111111011111111111111111111111001111111111011110111111111100111111110111111111111111111110111111010111111111101111101011111111111111111110111111111111110101111100110111011111111111101111111111111111010111101111111110111110101111111101111111100011111110111110011111111011101111111111011111111111111111110111110111111110011111111111011101111101101101101110111111111001111011111111111111011011101111111111111111110111111111111101111111111111011111111011111111111111111001101111111111111111101111111111111111111111111111111111111101101011111111111111011110111101111111111111110111111011111111111111111010111101111111111111111110111111100101111111111111111111111111111111101111111111111111110011110111110111111111111111111101111111111111101111111110111111111100111111111111101111111111111111111101111111111111111111111111110111111111011011111111111111111111111111111110101011111100111111011001111011111111111111111111110111110111111111111011111111111111110111111011111111111111001111110111011110111111111100111011111111111111100111011111111111011011011110111001011111111111111110111111101111011111101011101111101111011111010110111111111101111111111111111111110111111101111111110111111111110110111111111111111011111111111111111111101110101111111011111111011111111011111111111111111110110101111111111110110111111111110111101111110111111111101111111111111111111011111111111110111110111111110111111110111110101111111111111101111111101111111111111110111111110111111101111111111011111111110111110010111101111001111111111101111111111111111111101111111101111011111111111111110111111111110111111111111111101011111111011111111111111011111110111111111110101111111111111011011011111111111101111111111111111110111111111111111111111111111111110111111111111111011111111111111111110111111111111111111111111011111111011111111111011110111111111111001111111101111111111111100111111111111111111011111111111111111111111111110101110101111011101111111111111111111111101111110011111111111111011111011110111111111111111111101111111111111111111111011111111111111111111111111111101111111111111110111011111011111111111111111111111011111111111111101111111111111101111111101111111111111111101111111111111111101110111111111111111111001111111111111111111111111111111101111111111111011110111110110110111111111111111111111111011111111111111111111111111111111111101111010111011110110111111111111111111111111111111111111111111111111111111010011111111111111101111111111111111111011100111111111111110110111110111111111101011111111111111111111110011111111101110111111111111111111111111111111111111110011011111111101111111111011111111110111111111111111111111101111111111111101111011111101111111110111111111111111011111111111100111111111111011111101111111011111111111010011111111111111011111010110111011111111111111111111011111111110111111111011111111111111111110101111110111111111111111111111101111111111111111111111101101111111111111111111011111101111111111111111111111111110011011111111101111111110111111111111111111111011111111111111100111011111111111111111101111111111111111110111111111111011111100111111111101111111111011101111011111111111111111111011111111011111111111111111110111111111111111111111111111111111111111101111000111111111111010111111111111011110111111111111011111111111111111111111111111010101110101111111111111101101111111111111101111111111111111111101111011111111011111101111111111011010111111101111111011101111111011111111010101111111111111111111111111110111111101111111111111001101011111101111111011111101111111101111111111111111011111111111000111111110101100110111111101111111111111111011111111111110111111111111111111101111011111101110011111111111111111111111111111111101111011111011111111111111011111101111111101110111111111111111110111111111111101111111110111101111011110111111111111011111111111111111111111111111111111111111111111111111111110111111111111111101111100111110111111111111011111011111111111111111010111111111011110111011111111111011111111111111111111111111111111110111111101111111011101111111011011111111100111111111011011111111101111111111111111011111111101011111111011111111111111101101111111111101111111111111101111111111111111111111111111111100111110111111011111111111111111111111111111111111111110011011111111101111111111111111110011111011111111111111111111111111111111111111011111111111011111011111110011111111111111111111111111101111111101111111111011111011101101011110111111111111011011111111111111111110111110111011101111111101111101111111111111111111110111111111111111101111111011111011111111111111111111011111111101111111011111011011111011111111111101111111111111111011111111111111101000101111111111111111110111111111111111111101111111111111111011111111111111111111100111111110111111111111111110111111111111111110111010111111111111111111111111111111111110101111111001011111111111111111111010111111111011111111111111111111111111111010011101111011111111011111111100111111101110111101111111111011111111111111111111111010110110111101111111111100011111111111111001111111111111111111101111101101111111111111111111111111101111111111111111111011111111111110111111110111011111111111110011111101111111111111111111111111110101111111111111111111101111111111111111101110110111111110101111111111111011110111111111111101111111111111011111010111111111111111101111011111101111111111111111111111111111111100011111111111111111101011111111111110111111111101111111101111101111111111111101111111111111111111111111111101111111011010111111111111111111111111111111101011111111110101101111111111111111101111111110110011001001111011111111100111011101111111111111111111111111111111111111101111111111111111110111011111111111111111111101111111010111111011011110111111111010111111111111111111111110111110111111111101110110111011110111111111111111111111111111111111111011111111111111111111111111111111111110111111111101111111111111111111111111111111111111110100101111111111111111111111111110111111111111011111111111111111111101111111101111011111111100111111111111111111101101111101111101110111111011111110111111110110101111111011111111101111011101111111010111010011011101111111111110101111101111011111111111111101101111111011111011111111111111111001111111111111111101011101111111111111111111111111111111111111111111111110111011111111111111111111111111111100011111101111111111110111011111111111111111111100111111101100111001111111110111111111111111111111111111111111011111001111111111111101111111111111111111100111111111111111111111111111111011111111011111111111111110111111111101111101111010101111111111110111111011111111111111111111111111111111011111111101111111111110111111111111111111111011111111111111111111111111111101111110110111111111101111111010111111111111101111111111111111111101111111111101110110111111111111011111111111111111111111110101111011011111111111111111101011111111111101110111111111111111111111011111111111111111111111101011111011111011111111111101111101111111011111101111111001111111111111111111111111111111101110111111111111111111110101111111011111111111101111110111111011010111111111111111111011010111111001111110111111111111111011111111011111111111111111111100110011111011111111011111111111111111111111111110101111111111111111011110101111111111001111111111101111011111111111111101111111111011111111111111111111111111111111001111101111111101111111111011111111111111111101111101111111111111011111111101111111111011111111101111011111111101011111011111011111111111111111111111101110111111111111011111011111111111101111111111111111101111111111111111110111101011111111111111111111111111000011111110111111111111111111101111111111101111111111111111110111110111111111111111111101111101101111111111011111101001111111111111111111111111010111101111011111111111111111111101100111110111101110111101110111111111111011111111111101111011111111110111011110111111011111011110101111111101111111111111011111101111111111111101111110101111101111101001101111111110111111111101111111111011111111110111111111111111111111111101111100111111111111011111111111111111111111111111111110111111111101111111110111111111111111111111111101111111111101111111001111010111111111101110011111111111110110011111111110111111110111111111111111111110011011110111111111101011011111111101111101111111111011110101111111101001111111011111111111111111111111111111111111111110111111011111111101101111111111101111111111111111111011110101111101011111111111111001011111111111111111111111111111111111110110111111111111111111110111110111111110111111111111111111111111011111110111111111010111111111111111111110111111101111111111111110111111111101110111111111111101111101111101111111111111111111111011111111111111101111111110111111111111111111110111111110111111011110101111111111110111111111100111111111101111111111111111111111111111111110111111111111111111111111101011110111111111110111111111011111111101111111111111111111111110011110011111111111111111111111111111111111111111111111111101110111101111111001111101011111111111111101111111101110111011101111111111111001111111111111111111111111111111111111111011100111111111011111111001111111111111111100111111111111111111111111111111111111111111111110010111101111111111001111111011111111111111111011111101111111111110010111111111111111001111111111111011111111111111111111111111110111101111111111011111111111011111111111111111101111111011111111111111111111111011111111111111111111110111111111111110010111101111111111011110111111111111111111111011111110111111111111111111111111111111111111110111100101011111111111101111111011110101110111111111101111111111110111111011111111111100111111101011111110111111110101111111111111111111011111111101111011011001011101111111111111111101111101110111111111110011101101111111111111111111111111111111111111111110111111111111011111111111101111111111111111111111011111111001111111111101111101111111111111111110110111111111111111111111101111111111111111111111111111111111111111111111111011111111111011111100110111111011111111111111111111011111111101111111111111111101111111101110111111111111111111111111111111111111111111111111111111111001111111111111111111111110110111111110111111111111111111111111101100101111111110110111111111111101111101111101111111111110011111111011111111111011111111111110101111111111101110110111111001111111111111110111101111111111111111101111110111111011111111111111111110111111111111111111111111111111111111111111111111111111011001111111111111101101111111011111111111111011111111000101111111111111111110111111101111011111111111101111111011111111111111111111011111011111110011111111111101111111111111111111011111111111111111111111111110111101111011011111111110111111111111111111111111111111111111111111111111111011110101111111111111001101010111111111111111111111010111111111111111111111111111111110101111111111111101111111111111101111111111111111111110111111111111111110111101110111111111111111011111011111110101111111110111111111111111111011101111111111111111111111111111111111111101111111111101101111110111111111011111110101111111111111111111111111111101111111111111111111111011111011110111011111111111110111111111111101111111111111111110111111111101111111111100111111111110111101111111101110111110111110101011111010111111111111111111111101110011110011111111111111110110111111111111111111111111111101111110011111111111111111111111111111111111111111111111111111111111101111110111111111111111111111111011111111011110111111111111011111110111111101111111011111101111101101111110011111111011111111011111111111111111111110101111011111111111111111111111111111111111110101111101111111111111111011111101011111111111011011111111111111111111111111111111111111010111111101111111111011111110111111111111111111011101111111111110111011111111111011111101111111111111111111011110111111111111111111111111111111101111101111111111111111111110100111101111111111111111111101101101111111111111111101111111110111111111111110110111011111111111111011111111110110111111111111110101101011011111111110111111111111111101111111111110111111111111111111111111011111111111111111111111111110111111111110101111011111111111111111111011111111111101111010111110111111111111111111111111111111111101111110111111111111111111111111111011111111011101111111111110110111111111111111111111111111111110111111110111111110111111111111111101110010101111111111111010111111111111111111111111111111111101111111111111111111111101111111111111111101111111111101111111010110110111011111111111111111111111101111111101111111111111111101010111111101111111111111111111111111111001100111111111111010101111111110111110111111111010100111111011011111111011111011111101111101011101111111111111111110110111011111111111111111111111110011110101011111111111111011111111011111111111111101011111111111111101111001111101111111111111011111100111111111111111111111111101111111111111111111111111111111111011111111111111011110111111111001111111111111110011111111011111010110111011111111111111110111111111111111101111011111111111111111110111111101110111111111101111111111011111111111111111011111100111111111111111110111111101111101111101111111111111111101111101111101110111111111111111111111111111111010011110111111111110111111111111111111111111110111011010011111111111111110111101111111111111010111111111001111111111111011101111111111111010111111111101111111110111011111111111110111111111111111011110111111111111111011111111111111110111111111111111111111111111111111111111111101101111011111111111111111111111111111111111111111011110111111111111110111111111111111111111111111111010111101111111111101111111111101111111111101111111111111111111111011111111111111110110110111011011100111111111111101111111111111111011111111111111110111110111111111111111111111111111110111111111111111110111100111110111111111101111111111111111101111110111111011111111111111111011111110111111111111111111110111111111111111110111101111111111110101111111111111111111111111111111101111111011111111011111111110111111111101111111111111111110111101101111110111110101111111111111111011111111111011111111111110011111111111111111111111111111111111111111111111111111111110011111111111011111101011111101111111111100111111111011111111111111111111111110111110101111111111110111111111111011111111111111111100111011111110111111111111111111111111111111111111111111111111101101111111111110111111111111111011111111111011111111111011111111111101111111111111111111101111111111111100111111111110111111011111111011111111110011111111111111111011111111111111111011110011111110111001111100111111111111001111111111101111111111111111111111111111011111011111111101111111111111111101110111111101011111010111111110111111101111111111111111111111111111111111101111101111100111110111110111111111101111111111111111111111111101111111111111111111111111111111110111001111111111110110111011111111111111110111111001111111111111111111111111111111111111111111111111101001101011111111011110011111111100101111111111111111111110111110111111111011111111110010101101111111111111111011011101111111111111111111001111011110111111111111111001111111111011111110111110101111101111111111111111011111111111111111101111111111111111011111110111111111011111111011110111110001110011101111111100111111111111111111110111111111111101111111111111111101111111111110111111111111111101011111111111111111111101100111111111111100111111111111111111101111111101111111111111111011100111110110111011111011111111111111101111111111110101101111101101111111001011111111111111111111011111111111111111100111111111111100111111101011111111111011111111111111110111111111111111111010111111111101111111111111111111111101111111111110101011111111111011011111011111111111101111111111111111111111010111110111101111110111111111111101111111111011111111111111111111111111110111111111111111111111111111101111111111111101111111111111001111111111111111110011111111111001111110111111111101110111111111111110111111011111111110111111111111011111111111111111111111111111111111111111111011011111111110111111101111111011110111111100111111111111111111111111111111110111111111011101111011111011110111111111111111111111111111110111111100111011101111111111111111110111111110101101111111111111111111110011101011111111101011111110110111011111011111111011111101101111110111111111111111111111011111111111111111111110111111111111101011101101101111111111111101111111111001111111111111111111111111111011101010111111111111111010111111110111111111111111111111111111111111111111111111111111010111111101111111111111111110111111110111111111111111011111101111111111111111111101111111110101111111111011111111111111111111111111111101111111011111111111101101111101111111101111111111111111111011111111111111111111111011111011111111111101111111111001111111111111111111111011101111111111111101111011111111111111111111111111101111111111111111111111111110111111111111111111111111111011111111011111111111111111111111111111011111111011111110111111111111111111111111111101111011011110111111111111111111111111111111101111111111111111110111110110111111111100111111001111101111111101001111111111011111111011101010111111111110111111111110111111111111011011111111111111111101011111111111111111111111111011111110110011111111010111111111011111111111011111111111111111111111111111011111101011111110101111111111111110111111111111011110111110111101111111111111111111111111111111011111111111111111111111111101111111111111111111101111111110111111111111110001111010111111111011111111111111111111111111111111011111010111001010111010111111101110111111101111111111111111111111111111111111111111111111111101111110110111111100111111101011010111011111111110101111111101110001111111110111111111111011111111111101111111111111011111111111011111111111111110110111111011111111011111111111011111011011111111111111011111111111111111111111111111111111111111111101100101111111111111110101111111101111011010110101110111001111111111111111111111110111010111110111111110111011111111111111111111111101011011111110110111110111011111111111111111011111111111110111111111111111111111111111110111111111111101101111111111111111001111011110111111101111111111110111111111110111111111111101111111111111111111111111101111111111111101111111111111111110101111011111111111110010111111111111101110101111101111011111111111011111110111111111111011111111110011111111110111111111111111111111111111111111101011111111011010111111111111110111111111111111101111101111110111101111111011100111111111011111111111011110111111111111111111110110111111110111111110001111111111101111111111111111111111111111111111111011111111011111111111101101111111111010111111111010101111111111101111110111111101100111111101111111101101111111111111101011111101101111111111111111111011111011111111111111111111111001111001111111111111111111110111011111111111110111011101101111100111111101110111111111011001011111111111111111111111111111111111101111110111111110111101111101111111011011011111111101101111111111111111111111111111111111111111111111101111111111101111101101111110111111111111111111111111111111111111111111111111011010111111101101001111101111111111001111111011111111011111110111111111111111101010010101111111101110110111111111111110101111111111011111111111111111111011111110111111111111111111111111111111111111110111111111111111111111011111111111111101111111111111110101101111101111111111110110110111111111101111101111111111111101010111000111101111111100110111111111111111111111111100111111011010101111111111111111111111111111111111111111111111111111110111111111011111111111111001111111111111111111111111111110111110111101111111111011101111111111111111011011111101111110111111111110001111111100111011111111111111101101111111111111111111111111111111111111111110111111111111011110101111111111101101111100111111111111111111110111111111111111111111011111111111111101010111111110111011111111111111111111111111111110111111110101111111111111011111111111111111111110101111011011101111101111111110111011010011111111111111111111111101111111111111101110111111111111111111111111111111111111111111111101111111011111101111111101110111111111111111111111110101110111111011111111111111111111111110110110111111111111110111101100011011111111110111111101111111110111111111111111111111111110110111111111111111011111111111101111111111011111111111111111111111101111111011101111011111111111111111111110011111110111111111111111111110110111111111111111111111111111111110111111100111111111111111110111111111011011110110111111110111111111111111111111111111111111111101011101110101111111111110111111111101111111111110111111111111101011111111111111111111111011111111111110111111111111111111111111111111111111111111011111111111111110111101111011111110111111101100111111110111111111101111111111111111111111111010111110110111111110111111111111111111111110011110111111101110111011110101110111111111110110111111111111110111011111011111101111111111011111111111111111111111111111111111111111101110111111101111111011111111111110111111101111111111111111111111111011011111111101011111111101111111111111111011111111111111111111111111101111111111111111111111111111111011001011111111111011111111111110101111101101111111111111111101111111011111111110111011011101111111111101111101111011011111111111111111101111111111111011111110111111110111111111111111001111111111111111111111111101111111111111100111110110111111101111101111111011111111111111111011111111111011110111111111111111111111111101111111111111101101101111111111110111111111111011110111111001111111111011111111110101111111110111111111111111111111111111111101111111111101111111111111111111111111111101111111111111111111111111011111111111111111111111111111110111111111111111111011111111111111111111111111111111111111111111111111111111111111111111011011111111010111111011111111111111111111010111111111110111111111111110111111111111011111111111111111111111111111111011101111111111111111101111011101110111111111111101111111111111111111111011110110111111111110001111111111111111111111011111111101111111111111111111111011111111111111011111111111110111111111111111111100011111101111111111101111111111111110111111111111111110111111111011111110101111101111111111111111011111111110111111111111011111011111111111111101111110111110101111111111110111111111111111111111111111111011001111111111111111111101111111111111111111111111111111111111001101111111111001110111111111111111111111110111111101111111111101111111111111111110011111011111110011111110110111111111111111111111010111011111111101110011111111101010111111111111101101111111111111111111011110111111111111111111111011111111111110111111001111111111111111110101111111111111111111111111111111111111111111110111111111110111111111101011111111111111111111111111110111111111111110110111111101110111101011111101101011111111111111101111110111011111111111111111111111111111111111111101100011111111111111111110111111101111111011111101110111111111111101111111111111111111111111111101111111111111111011111011011110011111111110111111111111111111111110111111111111111101111111111011111111111111111111110111011111101111011111101011111111101111111111111101111011111111111111111111111010111111111111111111111111111111111111111011111111111111111111111110111111111111111111111111111111111111111011111110111111110110111110111101110111001101111111111110111111111111111111011111111111111010111011101101111011111110111111011111111101111111111011111111111111111111111110111111101111110011011111111111101111110110111111111111111110111111111111111110111111111111111111111111111111011111101000111101001111111111111111101111111111111111110011101111111111111111111111101111111111110111101011111111110101101111111111111111111111111110111101111111111101110111111111111111111111111111111011101001111111111111111110111111111011111111110011111111111011111111111111101111111111111111111111111111111011111111111111101011111011001111111111111111110111111111111111110101111111011110111111111111101111110111111111101111011111111111111111101110111111111111101011110111111111111101111111100111111111111111101101111111111111101110111101011111011011111101111111111111110111111111100111011111111111111111111101111111111111111111111101111111111111111111111111110111101111111011111111110101110011111111011011110011111111111111111111111101111111011111111111100111110111111111111111111110111111111011111111111111111111110111111111111111111111111010011111111111110111111011111111111111111111111111111101111111101110111111111111111111111011111111111111111111111111111111111111101111011011111111111111111111111111111111111111111111111111111111111111111111111101101111111111111111111111111111111111101111111111111011111111111011111011111111111011011111111111101110111110110111111110111111111111110111111111101111111011111101111111011111111110111111111111011111111111111111111111111111110111111111110001111111111111111111111111111111111111111111111111011111111101110111111111111111111011111111111111011111111111111111111111111101111011111111111111111111111111111011111111111111011111111111110111111111111111111101111110111111111111111110111111111111111111111111111111110111101011111111111111101111111111111110011011111111101111111111011111011011110100111111011111111111011111101101111111110111110101110111111111111111111110111111111111111111111110111011111111111111011111101111111111111101111111111011110111101101111111111111111111111111111111110111101111011111111111111011111111101111011111111111110101111111111111111111111111101111111111111110111111111111111111011101111111111111111110111111110111111110111111011111111111111111101111101110111101101111111111111011111101111111111011111111111111111111111111111111011111111110111111111101110111111101111111111111101111111111111111111111111111111101111011111111111110111110111011011110101111111101110111101111111111111111111110111011111111111111110011111111110110010101101111101111101111011111111111111111011110111111111111111111111111111111111111111111111111111111101111111111111011111111111101111001101111011111111110111011111111101111110111111111111111110111111111111011111100111001111111111101101110111111111111110111111111111101111111011111101011111111101111111111101111111111111111111111101111110111111111111111111111011111101110111111111111111111111111111011111111101011111111111111110111111101111111111100111111111111111111111101111100110111111111110011111111110110111111111111111110111111111111111111111111111111111111111111111011111111111101111011111111110111111111111111110111111110110111111111011011111111111101111111111111111111111111111110100111101101111111111110110111111111111111111111111111111111011111111111111111111111111111011111011111111111111111111111111100001111011111110111111101111011011111111111111101111110111111111111111111111110111111011111111111111010111111111111011011110111111111111111011011111111111111111011110111010101111111111011111110111011111111101111110111111111111011111111111011111101111111111111011111100111111111111111101011001111111111111111111101111111111111111111111111111111111100011111011111110110111111111111111111011111111111111111111110111111011111111110111111111101111110111111111011111110111111110111111101110111111111011111111111111111111111011111111101111111111110111111111111111111111111111111111111111111011111111101101111110110111111111111111111111111101111111111111111111001101111111111111011111111101110111111110111111111111011111111111111111111111111101111111111111101111111111111011100011111111111111111111110111110111011111111111111111111111111110111111101111111101111111111111111111111111111101111111011111111101111110111111101111111111111110011111111101011111111111101111111111111111011111111111111111111111111110111111111111111111110111110011001101011111111111111111111111111111111111111111111111111111110111110111111111111111011111111111111111110111110111111111101111111111111110111110111111111111111111111010111111111111111110110011101110111111111011110111111111111111111111111111110111111111111111111111101111111111111111111111111111110111111111111111111011011111111111111101111010111111111111111011111111111111111011101011111111111101111111111000111111111111111011111101111111011111111111110111111111111111011110101111101111110111111111111110110101111111111111101001011111111111111111011111111111111110111111111111111111111011111111111111111011111111101111111111111110110111111111111011111110111110111111011011101111111111111111111111111011111111111111111111111111111111010111101111111111110111111111111111111111111111110110101111111111111111111111111111111111111111111111111110111111111111110110111111111111111111011111110111111111111111111110111111111101110110111111111111011111101111111010101101110111111111111111111111111101011111111010111111111111111101111111111111111110111111111111101111111101110111111111111111110111111111101010111111101111111111101101111111111110111111111110011111111111111101111110111111111111111111111111111111111110111111101110111111101111110110111110111111111111111111111101111101111101110111011111111111111101110111110111111111111011111111101111111111111111111111111110111111011110111011111111111111111110111101111111111111111111101110111111111111111001111111011011011111010110010111110111111111111110111111111111111110111011111111111011111111011111111111111101101110111111111011111111111111111111111110111111111111111111111100110101110111111010111110101011111111111111111111111111111111111111011111111111111111001111111111111111111100111111111110111111111111011110111111101111111111111111010111111111111001111111111111111011111111111111011011011011111111101111111011111111111111111111001111101111100111011111111111111101111010111010111110111111111111111111101111011111101111111111110101111111111111111111110111111111011110101101111011111101111111111111111111111101111101101110111111111111111111111110111111101111111111111111111111101111111111011111111111011111111111111111110011111111101111101101111111110111111101111101111111111111110110111111110101110101111111111111111011101110111101111111111111101110111111111110111111111111111111111110111111111111111111111111111111111111111110111111111111001110011111111111111111111111111110011111101111011111111101111111111111101111111011111111110111111111110111101111111111111111111111111111111111110111110111111111111111110101111101111110110111001011111111011111111111111111011111010011101111101111111111111101111111111111101111111111111111011111111111011111111111111111110111111111111111111111110101111101011111011001111011101111111111111111111011111101111110111111111111111111111111101111111111101101101110111111011110111110111111110111111111111111111111111111011011111111111111111111111111111111111111011111111111110111110111111111111111111111111011111111111111111010110111101111111111110111111101110101110011011111111111111111001101111111111011111110111111110111101111111111111111110111001111111111111010101111110111111111111111101111110111111111101111111111011111111111111111111111111110111111011011111111111111111111110111111101111111111111111111101111011111011111111111101111111111110111011101110111111111111111111111111011111011111111111111101111111101111111101111111001111011111111111111111111111111110111111111101111011111111111111111011101111111111111100111111111111111111111111111111011111111101101111111111110111111111111111111111111111111111111111011111110111111111111101111111011111011011111011111111111111111111111111010111111111111111111111111111110111111101111111011110001111011011101111111111011111111111111111111111111011111011111011111111011111111111110111110111111111111110011101111111111011011111001111111111111111111101101111111011111111111111111111011111111111111100111110111111111111111101111101110111011111111111111111111011101111101111111111111111111011111110111111111011111111111111111111111111111110111111111111111111111110111010111110111111111111111110111101111111110110101111111111111111111111111111111101111111111110111111110111111111110111011111111111111011111111111111111111110111111111111111111111111110110111111011111111111111111101101011101111111101111111111111110011111110111111111111111111111011111111111111101111111111111111110111111011111111111111111111111010111111001011111101101111110100111011111111111010011111111101111111100111111111111111111111011111111111111111110111111111111111111111011101111011111111111111111110110111111111101111111111111101101011101111011011111111101111110111111111111111111111111001110011111011110111111111111111111111111011111111111011110011111111111111111111111111111111011111110111111110111011111111110111111011111011011111111111110111111011111111111111101111111111101111111111111110111011111111111110101111111111111111111110111111101111111011111111111111111111010101011010111111111110111111111111111111111111011111111111111111111111111110111111111111111111111111111111111111011011011010111111101111111101111011100011111111111111101111111111111111111111111101011111111011111111110111111111111111111011011111111101111111111111101011111101111111111111111111110111111111110111111111101111111011111111011011111111111101101111111111111111011111011111111111111111111111110111111101111111111111110111111111111111111111111111111111111111111111111111110111111111111111101111111101010111101111101111111101111110111111110111101111111101111111011111111110111111011011111111111111111111111111101111111111111110111110011111110101111111111111111111111011111111110111111111101111111001111111111111111111111101111111111111111111101111111011110110111111111111111011111111111011111111111111111111111111111111101101111110111101011111111101111111111111111111111111011101111111111111111111111111111111111111111111111111010111110111111111111111111111111011111111110111111111111101101111111111110111100111110111110011111111111111110111111110111101111001111111011110111110011111110111111011111101101111101111001011111111111111111111111110011111011111111101111111111111111111110100101111111111111011111111111111011111011111111111111111111111011111111101111111111111111110111011110111100111111111111100011111111111111111111110111101111111111111110110110111111111110111111110111111011111111111111111111111111111111011111111111110101111011111111111110111011101111111111110011110111111111101111001111111111110111110111111011111111111111111111111111110011111101111111101111011011111111110101111111111111111111100111111111111101111110111111111111111011111101111111111111110111111111111111011111111111111101111111110111100111111111111111110111111111111011011111111111111110111111111111111111111111111111111111111111101110111111111111111011101101111111111111101011111101111110111111110111110111111111111011111111101111111110111111111111101010111111100111111111111111011111111101011111101111111111111111111011111111111111101111111111111111111011111111111101111111111111111111111111111111111111111111111111110011111011111111111111111111110111111110111111111011101111101101111111111011111111111111111111011111111100111111011110111111111111011111110111111011111111111111111111101111110111110101111111101110011111111110011100111111110011111111111111111111110111011111111111111111011111111111111111110110101111111111101111111111111111111111111111111111101111111111101111110110110111111111111111111011111111111111111111111111101111111111111111111011111010111111111111111111111111111111110111111101111110111111011111011111111111111111111111111111111111111111111111111111111011111111111110111110110110111111011101111111111111111101111111111111011101111110011101111100111101011101111111111101011101011111101111111111111111111111111111111111111110111010111111111011111111011111111110110101111111110111111111101111111110111111111010111101101111111111111011101111111101111111111111110111011111111111011111110101111111011011110110111011111111111111111010111111111111111111110101110111101111011101111011111011111111111111111100111111011111111111111111111111111111111111111101111111011111111111111110111111111111111110111111111110011110011001111101111111111111111110111111111111110111111111111111011111111111111011101111111111111111111111101111111110111111111111111111101111111101111111101111110111111011111111011111111011111111111101001101111111111111111111101111111101101111101111011111111111101011111111110110111111111111110111111111111111111111011010111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111101011011011111101111111111111111111111111111111111111111101111111110101110111111101111111110110011111101111111111111111111111011110111111111111011110111111111110111111111101111111111101111011111111111011111111111110011111111111111111110111100111011110111101111111111111111111111111111111111111111101111111111111111111111011111111111111111110111111111111111110111111111110111011111111111111111111111111111110111111111111111001111101111111111111100101111111111111001111111111011111101111111111101111011111111111111111111111101111111101111110011101111111111111111110111111111111111111110111110111110101111111111111111111111111111111111101111011111110111111111010111111111111111111111110111111111101101111111111111111111111101110101111011011111111100100101111111111111111111111111011111110111111111111111111111110110111111101111111111110101011111111111110101111111111110111001110111111101111111110111111111111111110111111011101111111111111111111101111111111111011111101111111110111011111110111111011111111111111111111111111111111011011101111101111111100111111011011101111111111101111111111111101111111111111111110111111111111011111111101111111111111111110111110101111111111010101111110111111111101111101111011011110101110111111110111111111011111111111111111111111110110011111011111111111111011111111111111111111111110111111110111110111111110111101111111111111111111011111111011111111111111101011111111111111111101111111011101111111111111011111111111111111111111111111111011111001011111111111101111111111111010111100110111110111111111111111111111111111110111111101111111111111111111111111111011111011111111111111110111111111101111111111111011111111111110011100111111111101111111111101111111111111111111111111111111110111111101111111111111111111111111011110111111111111110111110111111111111111111111111111111111111111011011111111111111111101111111111111101111101011111111111111110111111011100101111111011111111110111111111101111011111111111111110111101101111110111110111101111111111111011111110111111111111111111011101111111101111111111111111011111111111111111101111111111111111111111111111111111111111111111111111110110111111110110111111111111011011111111111111111110111111111111111111101111111111111111001111111111111111111111111111011111111011101111111111111111011111101111110111111111111111111111111111111111110011111011101111111101111011111011111111111011111110111111111101111111111111111011111111111111111111111111011111111111111111111111111111011111111101111111111101111111111111111111111111111111111111111111111111011111111111111101111111111011110101111111111111111111111111111111011111111111111111111111010111110111111101111111111111111111111110100111111111100110111111111101101111011111111101110111101111111110111110111011111111111111111011111111011111111011110111111010011111111111101111111111111011111111111111111111111111111011111111101111111111111011110111111101111111111110111101010011111111111111111111111111111111111111101111111111111110101101111111111111101111111111101111111111111111110110111111001111111110111011111111111100111011111111111111111111101101111111101101011111111111111111111111111111111100011111111101110110111111111111111111011111011111111111111111111101111111110101111111111110111111111111111111110111111111110111111111111111011111110111101111111111111101111011111110010111111111111111111111111111111111111111010110111111111111011111111111111111110111111111101111110011111110111011111111111111011111111111110111101001111101111001111111111111111111111111110101011111111111101111101111111011111111010111111101111110111010111111111111111101111111111011111111111011111011111111111111110111111111111111111111110110111011111111111111111111111111111111111011101111101111111111111110111111101111111111111111111111111111110111111111111111111111111111111111101110111111001011100111111000111001111111111111111111111111111111111110111111111110111101111111111111111111100111101111111111111011111110111111111111111111111111110111111001111111111110111111111110111111111111111101111110111111111111111001111111111111111111101111111100111011110111111111111111101110111111111111111111111111101111111111111101111111111111111011110111111111111011111111111110111111111111101111111111101111111111111111010111111111111101111111111101111111111111111111111111111111111111111101110111111111111100111111111111111111011111110111101111111111111110111101101111111011111111111111101111110011111111101111111111111111111111101111111111111111110111111111111111111011110111101101111111111111101111111111011111111111111011111111111011011011111111101111111011111011101111101110111111111110011111111111111111011111111111101101111111111001111101111111111101011011101110111111111011111111111111111111100111111111011111111111111111111110111111111111110111111111111111111110111011111011111111011110111111111111101011111111111111111111101111111101111111111110111111111111111111111001111111111111111110111111111011101101111111111111111101111111110111111111111111111111111110111111111111111111111011111111111111101111110111111111011011111111111110111111111111101111111111110111111111111111111011111111111111011111111111110111110111111111111111111111111111110111111010110111111111111111111101111011111111110011001111111111111111111111111111111011111011111111111101111111111111111111111111111101111111111111101111110111111111110111111111111111111111111111111111011111111111111111111111011101111111111110111111111111111111011111111111111011111111111111101111110111111111111110011110111111011111111011111011111111111110110101111111111001100111111111111111111110101111111110111111111111101111111111111111101111111111111011111111111111101101110101111101111111111111111111111111111101111111101110111111111111111110011111111111111111011111110111111111111111101111011111101111111111111111111111110111101101111111111111110111011111111111111111101011111111111011111111001011111101111011111111111111111110111111100111101111001111111011111101100111111111111101111101111111111111111111111111111110111111111111111111111110111101111111111111111111111111011111111111101111101011111111101111111111111111111111111111011110101111111011111110111111111111011111011111111111101111111111111111111111111111110110110110111111111111111110111111111101011111001111111111111011101111111111111011111101111111111111111111111111111111110101111111111111101110111111111110111111111111011111011111111101101111001111111011111111110110111111111111111111111101111111111111111111111110111111011111111111111111111111101111111111101101111101011110111111111100111011111111101111111011111011111010111111110111111111110111101101100111111111111111111111111111110111111101111010111111111101111111110101010111110111111111111111110111111011111111111110111101111010111101111111011111101111111111110101111111110111011111011111111111110111111011111111111111111111111111111111011011111111111111111111111111111111111111111011111110111111111100011111111111010111110111111111111111101111111111111101111111111111101010111111110111111111111111110011111111111111111100111111111101111111011111111011011110101111111110110111111111111111111111111110111110111111111111111111111111111111111110111110111111111111111110111111111111111111111111111111111101111111111110111111111111111101111111111111000111111101111111111111111111101111111111111101101111101111111110111111101111111111111101111111111111110111111111111101111111111101111111111111111111111101111010101111111000111111111110111110111111110111101111111111111111111111111101111111111111111101111111111111111011111111111111111111111111111111111111111111111110111111111101111111111111111111111111111111111111111111111111111111111111111111111111110111111111110111101111111111111011111111111011010111111011111110011111111111111111111101111111110111111111111111111111111111111111011111011011110111111101111111111111111110111111111111111111101011101111111011101101111111111111111110111111111111111111111101111111110111101111110111111111111111111001011111111110111111111111111111111111101111111111111111010111111111110111111011111110111111111101111111111111111011111111101111111111111111111011011111111111111111111111111111111111111111111111111111111011111111111101011101111111101111111111101111111111111111111111111111111110010111111111011111111101111111111111011111111111111011101111111111110111111111011110111101011110111111111011110111011111101111110111111111111011111110101111110101111111111111101111111111110011111110111111111111111111011111101101110111111111111001111111111111111011111111111111111111111111110111111111111011111111111111111011111111101111111111111111011111111111111111111111110111111011001101111111101011011111111011111111111110111011111111111111101111111111110111110111111111111011111111111110001111111111011110111111110110111111111111111111111111111111111111111110110111111111111111011111111111111101111011111111111110111111111111101011111111111111111111111111111111111111111111111011111111111111111111111111111111111111101101111111111111111110100111110011110111111111111111111111111111111011111111111110110101111011011111000101101101111011111110111111111111111011111111111111111111111111110111111010111111011111111111111011111111111111110011111111111110111111111110111101111111111111011111111111111111111111111111101011111111110111111111111111111111011111111111111111011111111100111111101111011110111110111111111101111111111111111111111111111111111111111111110111111111111111111111110001111111111111111110111111101111111111111111110111111110111111111111111110101011101111101111111110101111111111011111111111111111111111111111001111111111111101111101111111111011111111111101111111011101111101111111111111011110111011111111111110111111111111111111111111111111111111111111111111111011111011111111111111111101111101011101111111111111101111111111111111111111111101111111111111110111111011111101111111111111011111111111101110111100111111111111110111111110111111101011111111111111111111111111111111111110100111111111111111111111111111111111111111110101111110111111110111111111111111111111111111111111110111110011111111111111111111111111111111111111011111111111111111111111111111111111001111111111111000011101111111111111101111011101111011111111111111110111111111111111111111111011111110111111011111011111111111111111101111111111111110011011101111111111110111111101111101111111111111010110111111111110111011111111101111011111111111111110111111111101011111111011111101111111101111111111110111111111011111111011111111010111111101101110110111010111111110111111011111011110111110111111111110111111111111111111111111111111110101111111111011111111111111111111111111110111111111111110111101111111110110011111101111111111111111111011111101111111111011111110011111111110111111111111111110011011110111111101001111111111111110111111111111011011101011111111101111111111111111111111110011110111111111111011111111111111111111111111111111011011111111111111111011010111110111111101111111111111110111111111110101111111111111111111111111111111111111100111111111001111111111111111111111111111111111111011111101111111111111111111111111111110111111111111111110111111100111111111111011111111111111111111111111111110111111111101111110111111011011101111101111011111101110111101101111110111111111101101111110111111001111111111101111111111111111111111111111111111111110111111111111110111011111111011111111111111111111011100111111111111011111111111111111111111111111111111111111111111111111111111111011111111011111111101110111111111111111110011111111111011111111111111101111011111111111110111111110111111111111111110111110110111111111011111111111111011111110101111011111011111010101111111111111111111111111111110110111111111111101111111111111111111111111111111111111111110111111111111111111101111111111101111110111111111111111111111111110101111111111111011111111111111111110111110111111111111101100011011111111111110111111111111111111111011111111101010111111111011110111111111111011011111111111111111111111111111111111111111111111111111101111101101111111110101111111111111011111111111111111111111111111111111111111111111101111111111111111110111011111011111111111111111111111111111111111001111011011101001111110111111111111111111111011011111111111111111110011111111011111011111111111111111111111111111111111111111111111111111111111110111111111111111010111111111111111111111111111111111101111111011111111111111111111111111011111111111111011111111110011111011101110111011110111011111111111111111111111111101111111111111101101111010111111111111011111111111111111111111101111111111111111110111111110111111011101111110111111111111111111101111111111111111011101111111111111011010111110111111111110111111111101111111111111111111111111111111111111111011111110111111111111111111111111111111011111111111111111011011111111111111111111110111111111111111111111111111111110111111111111111111101110111111111011111111111111111111111110110101111111111111111111111111111111111111111111111011111111111111111111111111110110111110111111111101101111111111111111101111111101111111111111111111101111111101110111111111111011111111111111101110101011111111111111111111111111110110110011111110111001011111111101110111111111111011111111111110011111101110111111111111111111111111111101111111101111111111111111111111111011111111100111111110011111111101111101111111110111110111110111111111111111011111111111111111111101111111111011111111011111111111111111111101101111111111111011111110111111101111111111111011111110111111111101111111111111111101111111111011111111111111101111011111110111011111111101111111111111011111111111111111111111110111111011111111111111111011111111111001111111111111111111111111111111111001111111111111111111110110111111111100111111111111111111110111111111011111111111101111111111111111111111111111111111111111011111011111110111101111111111111111011111111011111110111111111111111111111110111111111010100111011111100111101110111111111111111111111111111010111111111111111111110111001111111111001011111101111111111011100111110011101111111111111111111111011111110100111111011011111111111101011111111111111110111111111101111011100111011111101111111111011111111111011011111111111111111111101111111011111011110111111101111111111111111111111010111110111111111101111111110111111111111101111111111110111101111111111011101111011111111111111111111111111111111111111001111111111011111101110111011111111111111111111011111111011110111111111101101110111111111111111101011101111111111111110101101111111111111111111101111111101111011111111001111110111111111101111111111111011111111111111111111111100111111111111111111111011111111101111111111111111111111111111111011111111111011111101101101111111111110011011111111111111111011011111111111111111111110100110111011111111111111100111111110111110111111011111011111011111111111111111111111111111101111111110111111111111111101111100111111111111111111111111111111111111111111110111101111111111110101111111101101111111101111111111111111110111101011111111111111011111011111111111111111011111011101111111101111111111111011111110111111111111111011011111111111111111111111011111111111111011111110011111111111111111011111111011111101010111111111101111111110110111111111011111111001111111110111111111111111110111111111111111001111111111111111111111111110111000111110111111111111001111101111111111111111111111111111111100010111111111001000111111111111111111011111100111111111111111111111101111111111111111111111101111111111111011111111111111111111111111111110001101111111110111111111111111111111101111111111011110111111111011011111111111111111111111111110111111111111111111110111010111111111111111011110111110111111111111011111110110111111111111110111111111111111011101111101111110111111111111111011111110111110111011111111101111101111111101111111011111011111111111111111110111111110111111111111111111110111111111101111110111011111111110111111111111111111111111101111111111111111111111111100111111111111111111011111101111111101111111111111111111010011111111111111111111111111110111101111101111101111111111111111111111111111111111111111111011111111111111111111001111110111111111111110111110101110111101111111111111111111111111111111111111111101111111110111111011111011111111111111101111111110111111111111101110111111101111011111111111111111111111111111111111111111111111001111111111111111111111111011111111111111011111111111110111001011111010111111011111111111111111111101111111111111111111111111111011111111111110110111101101111011111101111111111111111101111111011111111111111110111111110111111111101111111110111111111111111111111111110101111110111111111111100011111111110111111111111101011111111111111111011111111101111111111011111111111111001111111111001110110111111111010111111110111111111011111111111111101011111111111101111101111111111111111111111101111111111111111011111111111110111111011111111011011111011111111111111111001111111111111111111111011110111101111110111111111111101111011111111010111111010111111111111101101111111111101101111101111111111101111111111111111110111111101111011010111111111101111111111111010111111111011111111111111110111111111111111001111101111110111111110111111111111111111011111111111111111111111111111101101111111111111101111111011001111111111110101111111111111111101011111111111111111111111111111111111111101110111111111110101110111011111110111111011111110111111111111111111101101111101100111111111111111111111111110111011110100111111111111111111101110011111111101111111111111111111111110111111111111101111010111111101011111111111110111111010111110111111111111011111111101111111111111111111101111110111111111111111111111110111011011111111111111111101111111111111111111111111111111111111101111111011111111111111101111111111111011111011111111111111111111111101101011111111111111011111111111111111111110111111111111111111111111111111111111111111111111111111101111111111111111111111111111101111111111011111111111111111011110110111110111101111111111111111111111111101111111111111110111111111111111111111110111111101111111111111111111111111111111111011110111111111111111111111110111111111111111110111101111111111100111111111111111101011011111110111101111111111111110111111101111111111111111111111111111101011111110011111111101111110111111111111111111101111111111111111011111111101111111111111111101111010011110111101111111111111111111111111111111011111110111111111101111111111111111110011111111111111111111111111110111011111111111011111111110111011111101011111111111111111111111111011011111111111111111111101111111111111011111111111111111111111001111111111011111101111111111111111101111101111111111111111111111111111111011111110111111111111011111111110111111111111111111111111111111111111111111111101111111111110111011101111110111111111110111111111101111111111111011111111111111101111011111111101111111111011111111111111111111111111111110111111110111111011111111111111101111111111111111110111110111111110111110101011101110110011111111011110111111111100111111111111011111111111111111011111111110111111111111101110111111111111111111111101111101001011111111101111001111111111011111111101111010111101111111111111111111111111110111111010110111010111111111111101111111111111111110110111111101111101111111111010111110111111111111101111111111111101110111111101111111111111111111110111011111111111111111110101111111101111111111111011111110011000111110101111111101111011111111110111111111111111111110111110111111111111111110111111111111111111111111101111111001111111110111111111111111101011111011101111111111011101111011111111001011111111111110101011111111111111111111101110111111111101111111111111110111110011111010111011011101111111111010111010111111101111111111101111111111110011111111111101111111111111111111111011111000110111011011100111111111110011111111101111110111111101111111111111110111101011111111011111000110011111111101111110111110111111011111111111101111111011110111111111111110111101101111111111111111111111011111011011101111111111001111111111111011111111111111101011111111111111111111111111111101111111111110111111111110111011111111111110111111111111111101111111111110111110110111111011111111111111111011111111111110111011111111111111111001111111011111111111111111111111011111111111111101111111101111110111011110111101111110111001111111110110110111111111111111101111011111110111111001111111101111111111111110111111111111011111111101111110111101111111111111111111111111111111101111111111111111111111111111110101111111111111111111110111111111101111111111111111111111111111110111111111111111111111111101111011111111111111111011111111101111110011111111101111101111111111111111111111111111111111111111011111111111101111111111111111111111110111011111111111111111111111111110111100110010111110111111111101111111111110111111111110111111111101111111111111101101111011111111111101111111101111111111011111101111101011110111111110111110110111111111111111111101110111111111111111111111110101111111111111111111111111111111111111111111111110111111101111111111110111111111111101011111111111111101111101111111111111111111111101111101111111111111111111101100111111111111101111111110111111111110111111111111111111111110111011001011111111011110111111111011111111111111111111111111111111110001001101110111111111111111111111011110111111011111100111111101011111111111111111111111111111111111101010111111100111101111111111111111010011111111111111111111111111111010111110111011111111101111111111101111111100111110011111111111111111101110111011111101111111111111111111100111111111110111011101111111110111111111111101111111111111111111111111111110011111111111111111111111111111111111111110011101111101011111111111111111111111110111111111111101111011111111111111111111111111111111100111111111111100111111111110111111111111010011110111111111111111111111111010111111111111111010111111110101111111111111110101111111111111111111111101111111101111111111111111101110111111111111011111011111110111111111111111111111111111111110111011111111111111111101111111110111111101111111111111111111110110011111111111101111111111111111111111111111001111111111111110111111111111110111101111111111110111111111111111111111111111111111111111111111111101111111111111111111111111111111111110111111111011111111111111111011110101111111111011111101111111111110111111010101111111111111111111111111111111111111111111111111111111111110111111011101111111111111111111011101111111111111111111111110111111111011111111111111111111111111011100011110111111111111101111111101101111110111111111111111111111111011011111011011111111111111111111111111111111111111111011011111111111101011111111111111011111111111111111100011111111111111111111111101111011111111111111111111011101101110101111111111111111111111111111111111111111111111111101111111111111111111111110111011111110111111111111110111111110111011110111101101111111111111100111111111101101111111111111111111111101111111111111111111111110011111111111111010101111111111111111111111101111111111111111111111011011111111110111111111111111111111111111111111111011111111111111111110111111111110101111111111011111101111111111111111111111111111111111111111111101111111111111111111111111111111110111111111110111111111110111101111111111110001110111111111111111111111111111111110111111111111010101111111111111111011011111110111110111111110100111111110111111101111111111111111001111100111111011011111111100111111111101111111011111111110111111101111111111111101110111101110111111111010111111111111110111111111010011100111111101100111111111101111111111111111111111111111110111111111111011111111111111011111110011111101111111111011111111011111111111111111111101111101111111011111111110111111111101111111110111111111111101111111111111111111111111100110111111110111111111101111111111111111111111111101111111101111110111111111111011111111011110110111111111111010111111111110111101111111111011101111111111111110111011011111111111101111111111111111110111111111111110111111011111101111111111111100101011111110111101110111111111111111111111110111111111101111011111111111110111111111111111111101111111111111111111111111111111011111111101111111011111111111111111111111011111111111111111111111111111101111111111111101111111101101101111111111111111011111011111111010111101111111101111110111111110111111111111110101111111111111111011111111101010111011011111111111111110110011111111111111111111111111101011111001111111011111011001110111101111111101111111111111111111111100111110110111111111111110111111111111111111111111111111011100011111111111111111111111101111111111101111111111111111111011111111111111111111011111101111111111111101111111111111111010111111111110111111110011100111111111100111111111111101101110111111011111111111111111111101111111111111100111101111111111110011011111111110111111111111101111111110111111111111111101111101011011111111111111111101111111111111111111111111101101111110110111011111011111111010111111101101111111111111111111111111111111100111111111111010111110110101111111111111100111111011111111111111111111101111011111110111011111111111101111111111111110111111110111011111110111111111111111111101111111101111011111111111111111111111111111010101101111111111111111111111101111111010111101111011101111111111111111111111011101111111111011111011111101101101111111111111111111111111111111111111111101111111111111111111111111011111111111111111101111111111111101111111111111110111111111111111111101111111111111011111111111111111110111111111011111111111111111111111111111110111111111111110001101111111111111111111111111111111111101111111111111101101111111111011101110011111111101111111011111111111111111111011111111110111010011111111111011011111111111111111111111111111111111111111111111111101111001111111111111111111111001101111111111011101111111111111111111111111111111111110111101111111111111111111111011111111111111111111111111111110111011111101111111111111111110111111111111111111111101101011111111111111111011111111100111111011111111111111111111111011111111111111111111111111111101111111111111111111111111111101101111111111111111111101110111011011110001011111111111111110111111111011111111111111111111111111111111110111111110111111111111111111111011111111111111111111111111111011011111111111111111111111111111111011111111111100111111111111111101111111111111111111111111101111101111111111111111111110111111111111001111111111111111111101111111111110111011111111111111111101011111111111111111111111111111111011110101111111001011111111111111111111110111111101101111111111101111101111111111111111110111111111111111110111111111111111111111110111111011111010111111111111111111110111111111111111111111111111101111110101111111111111111111110111111111111111101111011111111111101110111111111111011111111111111111011111101110110110111111111111111111011111101011111111111111111110110110111111011111111110110111111111100111111111110111111111111111111111111110111101111101111111111111111111111111111111111101111111111111110111111111111010111111111111111111111111101111101111111101111110111111111111111111111011110110111111111111111011110111111011111111111111111111111111011111111111111111111111111101110111111100111111111011110111111111111111111111111111110111111111111010111111111111111111111011111111111101101111111110111111111111100111111110111111111111111110111011011111111111111111111111111111111011111111101110111111110111111111011111111111111111111111111011111111011100111111111111111111111111111111111111111110111110111111111100110011011110101111111111111111110111111111111110111011111111011011111111011111111111111101110111111101111011110110111011110111111100111111111111111110111111111111101111101111111111011111111111111111110001111111111110111101111111111111011110111111111111111110111111101111111111111010111111001011111111110111111111111111110111111111011110111101111111111111110111111011111111011111111111101101001111111101111111111110101101111111111110111111111111111111111111111111111111110010111111101111111111111111111110111111111110111101111111111111111111111111111111110111110111111111101100111111111110011101111100111110111111111111111110111110111111101111111111011111111001111110110101111111111111011110111111011111111111111111110111111111111100111011111111101111111111111101111111111110111111111111111111011101111011111111111111111111110111111111111001111111111111111111111101011111111111110111111101111111111111111111111111111111110111111110111011111111111111111111111111101111111011111111111001111111111101011111111111111111001111101111111111111111110110111110111101111101111111111111011101110101111111010111111111111111111111110101011111101111111011111110111110101011111111111111111111111111111011110101111110111111111101111001110111111111111101111110111111111110100111110111101111111111111111111111111111011011011111111111111011111111001111111110111100010111111111111111111110111111111111111111111111111111111111111111111111111111111101011010111111111111111111011011111011111111111111110011111011111101111011011011111111111111111111111111111111111101111110101111101111111111011111111111110111111111111111111110101111111111111111111101011111110011111111111111111101110111111101111111111111111111111111111111111111111111111111010111111100111111111111111011111111101111111111110111111111011101011111111111111111111111111111110110111111111111101111111111111111101111011111111110110111111111111111011111101111111111110111111111111111111111111111110111111111101111111110110111111111101111111111111111111111111110101101111111111011011111111111111011110011111111011111111110101101111111111111111111011111111011111011111111110111111111111110111101111101111011111111111111110101111111111011111111111111111111111111101111111111111111011110011011111111111111111111111111111111011111111110111111101011111111011111111111111111111111110111111111101101011111111111111111111011110111101111111111111111111111011111111111110101011111111111111111001011000111111111111111111110111111111111111111111111001111111111111101101111101101111110111111111111111111111011111111111111111111011111111111111111111111111111111011111111111111100111111011101011101110111111011111101111111111111111111111111101100111111111011101111011111101111111111101111111111111111111101011111111111111111111111110111111110111111111110110111111111111111111111101111111111110111111111111111111111111111101110101111111111101111111111111111111111011111111111110111111111111101101111011111011111111111111111110111111110111111111111111110101111111111111111111111111111011111111111011111111101111110111111111111111011111111110101111111101111111111111111101111101101011011111011111111111011101111111111111111111111111111111111111111111111001111111101101111111111111111111111111111111111011011111100111111111111110111111111111111111111111111111111111111111011111111111111111111111011111111110111110111111111011011111111011110111111011101111011111111111111111111111111111111011111111111111111101110111111111111111011110111111111111111111011111111011111111111111111111011111111111111111111111111111111110001111100111111011010111011011110111111111111110101111111101110111101111111111101111111111111011110111111101011111110111110111111111111111111111111011111010111111111101111111101110111111111111111101011111111111111110111111111111111111110101110100111111111111111111111111011111111111111111010111111111011101111111111111111111111111101101111111011111011110111111111111101011101011111111101101111111111111111111111111111010111101111111111101101011111111111111101111101111011111111111111011111011111111110111111111111111111110110111111011111101110110111111011111111111111111111111111111111110111111110111111111111110111111111100101111101111111111111111111111111111111111111111111111111111111011110111111011111011111011111111101011111110111111111111111110101111111111111111111110111111111011111111111111111111111111111101111111110011100111111111101111011111011110111111111111111111111011111111111111010111110111111111111110101111011111111111111111011111100101011111111110111111111111111111111111111111110111001011111111111110111110111101111111111111111111111101111111111100011111111101111111111110111111111111011111111111100011111111011111111111111111101111111110011111111111111110111111111111111111111111011111111111111111101111111111111111111111111111111111110111111011110011111110111101111111111110111111111010101110111111110111111101111111111111111111111111111111111111111111011011111111101111111111111111111110110111111101111011111111111111111110111111111111111011111111111111011111110011111111111111111111111111111111101101101111111111111111011011111111111001011111111111111111101111111111111111110111010101111011111111111111011111111111111111101111011111110111111111011101111111111111111111111111111111101011111110111111011111111111111111001111111111111111111011111111111111111111111011111111111111110111111111111111111011110111001111111111111111111111110111111111101111111110111111101111110111101111111111111111101111111111111111111111111111111101111111111111111111111101111011111110111111101111111101111111011110101111111111111111111101111111111111111111111111101111001111111111111111111111111111101111111111111110111100111111111110001111111111111111111011111111011111011111101100111111111111101011110101110111111111111111011111111111101111110110111111111111111101111110111110111111101111110111111111101110111111011111111111111111111011101010111111111111111111111111111111111101011111111111111111111101110111111111111111111111111111111111111110111111110111111111111111111111011011111110111111111111111111111111111111111111111111111101111111101111111111111110011111111011011111111111111111111111111111111111111111111011011111011011101111111111110111111111111011110111110111111111111111111011011111111110111110111111111111111111111101111111111111111111100111110111111011111110111111111110111111010101111111100101111111111111111111101111101011101111111111111101111111111111111010111111011010111101111111111111111111111111111011111111111111011111111111100110100111111111111111010111111111110101011111111111101111101111111111001111111110111111111101011011111101111111111111111111111110111111111010111111101011111111111111111111111111111111111111111111111111110111111111111111111101111111111111101111111111101111110111111111111111111101111111111111011111111111111111111111100111111111111111111111111111111111111111111111110101001111111111111111111110111101111111111110111110111111111001111101111101111111111111001101111111111111111101111111111101111111111010111111111111111111111111111111111111111111111111111111111100111111111111111111111111111110111111111110101111110111111111111110110111111111111111101111111111111111011101111101111111111101111111101111101110111111111111111111011111111010111111111111110101111111111111111111111111111111101111011111111001111111111001111111111011111111110111111111111111101111111111111111111111111111111111111111111111101111111111001111111111111111011111111101110110111111011111111111101111111111111111111111111111111111111111101111111111111111011110111111110111011111111101111111111011011111111111101111011111111111111111111111110111111111111110111011101111110111111111010110111011111111111111111110111111111111110110111111101111111111111111111011111011111111111111111111111011110111011111011111111111111101111110111011111011111111111111110111111111111011111111111111111111111101111110111111111111111101111111101110111111111111111111111111011101111111011101110111111111101111111111111111111111111010111111111111111111111101111110110111101101111111101111111111111111111111111101101111111111111111011011111001101111101101011111111111011111110111111111111111111101111111111111111111111111111111111111101111111111111111111011111111111111001111111111111111111111111111111111011111111111110110111111111111111111111111100111111111111111011111111111110111111101111111111111111111111111111011101111111111111111101111111111111101111101111110111111111111111111111101110111110111111011111011111110111111111111001111111110110111111111111111101111111111111111110111111111111111111101111101111111111111111111111111111111011111111111111111110111111111111111111111110111101111111111111111111110111111110101111111111111111111111111101101111110111111111111111110111111111111111111111110110110111111111111111111101111111111111111111111111101111111111111111111101111111111111111111111111111110111111111111101111011101110011111111111111111011111111111110111111111111101111011111011111111111111101111110111011011110111111111111100111110111111100110011111111111111111111111111011011011011111110111111111110111111110111110111111110111111111111111111111110001111111111101111111111111011111110111111111011101111111101110111110110111111010101111111111110111111111110111110111111110111101001111111111111111111010111111101111111111111111111111110111111110101111111111111110111111111111110111111111111101111111111111111111111111111001111111111111111111011111110111111111111110101111111111111101111110110111111101111111111100111111111111111111111111111101011110111100111111011111111111111111111111111110111110111111111101111101111111111111111011111111110111111111111011111111111111111111111111111111111111111111111111111111111111110111111111111111111111101111111111111111111111111011111111111111111011011111111111111110101111101110111111111110111111111111111111011101111111111111111111111011111111111111111111111010111111111111111111111010111111011010111111111111111111111111111111111111111111111111111111111111110111111111111111111100111101111111111111111111110100111111111111011111111101111111011111011111111110111111111111111111111011111111111111101110110111101111011111111111111101111111110111110111101011111111111111011011101111111111111111111110111111111011111111111111111111111111101111111100111100011111111111111011111101111110110111111111111111111111110111111111111111111111111110111111111111111101111111110111111111111111011011111111111110101110111111111101111111111111110111111111111111111111110111111111001111111111111111111111101111111111111111101111111111110111111011111111111101110111011111111101111110111111110111101101111111111111111111111111001101111111111111111111111111101111011110111111111111011111111111111110111100111111101111110111111111111111111111111111111111111111111011111110111111111111011010111111111111111111111101111011101111111111111111100111111101111101111111111111111111111111101111111111111111111111111111111111110111111111111011111111111010101111111110111111011111111111111111101011111111111111111111111111111001111011111111111111101111111111111111111100111100111110111111111111111101111111111111101101111111111111110111111111111111101111111101111111111101111110111111111111111111110011011111111111111111111111111101111100111111111111111111111111111001111111111111111111110111111111111111111111110111111110111111111111100111111111111111111101111111111111111011111111111111110110111111111111110111110111110111111111011101111111111111111111111011111111111111111111111111111011111111111111111111111111111101111111111111111111111110111111111111111111111110110111001111110111111101011111110111110111111111111111011111111111101111011111111111011111111111110100111111111101111111111111111111111111101101100111011111111110111111111111111111111101101011000111111111011100111111111011111011111111111101111100111111111011111101111111101111111110111111111111111111111111111101111110111101111111111110101111111011111110101111111011111111110011111110110110111111111111111111011111111111111111111111111111111111111110111111110101111101111110111010111110111110111111111111111111111110110111111111111111111110111111101111111111111010111111111111011111101111001100111111110101111111111111111111011111011110111011111111110111111111110111011111111111111111111111110110111111011111011111111111111111111111110111110101001011111111111111111111110111111111111111110111111110111111110111111111111111001111111111101001110111111101111011111011011110111111111111111111100111101011111111111111111111111111111111111110101011101111111101111111111111111011111111111111111111011111111111111111111111111111111111011111111111111111111111111111111111101111100101111111111111101111111111111111111111111011111111111111111111111111111111111111110111111111111111111111111111111101111111111111111110111111111011111111111111111111111101101101011111111111111110111111111111101011111111111101111111111111111011011111111111111001111111111111111111101111110110111111111111111111101011111100101111111111011111111101111011110111111111101011111111111011111111101111101111111111111111111110111111111110111111110111111011111111111100011111111001011111111111111111011111011011111011011011111101111111111111111110110111101111010110111111111111111011111111111111111111011110111111110111110011111111111111111111111111111110101110111110110101111001011111111111111111111101111111011011111111111111111111111111111111111111111111111111111111111101111011111111111111111110010111110110111101111111111111111110111111100111111111111101111110111111111111111111111111111111111111111111111111111111111111101111111111111111101011101011101111101101101111111111111111111111111111111111011111110111010111101111111111111111111111111111001111111111111111111101111111111111111101101101111011111010111111111111111101011111111111111111111111111111111011111111101101111011111101111111111111111111111111110111101111011110111111110011111111111111111111111111011111011111111101111111011111101111111111101111111111101011111111111101110111111110111111111011111111111111011111111011110111111111111110111110010111111101111111111111111111111111111111111111110111111111011100111111111111111111101011111111111111111110101111111111111111111111111111111011111111011110101111111111111111111111111101110111111111101101111111110111111011111111111101111111111111110111111111110111111110111111111111111111111111111111111111111111111111101111001111111111111111111111111110111111111111111111011111011111111111111101011111111111111110101111110111111111111111110111101101111111111111011111111011110101111111111111111111011111111111111111110110111111110010111110010111111111101111101111011111111111110010111110111111101111111111111111011111111111111110111100111110111111111011011111111111111110110111111011111111101011101111111111111110111111111111111111111111111111111101111111111111111111111111111111111110111111101111111011111111111111110111010111101111111111111111111100111111110111111111111110111111111111111111011111111111011111111111111111101111111101110111111111111111011111111111111111101111111111101111111111111110111101111111111111111111111111111111101111111110111101111111111111110101111111111011011111111111111111111111110111111111111111111111110111101111111111110111101111011111111111101111111101101111111101101101111110101111111011111111110111111111111110111101111111111101101011011101111111111011111101111111111111111101111110111111011110111000111011111110111101111111111111111111100101101111111111011111111111111111101111111011111111110111111111111111111111111111111111111111111111110111111111111111111111110101111111111110110111111111011111111111101001111111111111111111111111110111111111111111011111111111111101011111111111111111111111111111111111111111101101111111111111011101011111011111111111111111011111111111111011111101111111111111111111111011111111111111111101110111101111111100111111111011111111111100011111101111111111010111111111111111111111111111111111111111111111111111111111111111110111011111111111111101011111011111010111111111111111111011110101111111110111111011111111111111111111111111111101111111011111110111111111111111101111111111111111101011111101111111111111111111001111101111111111101111111111111111111111111111111111111111111111111111011111111011110111111101111101111011111111110101111111011111110111111111111111111111011111111011111111111111101111111111111101011100111111111100111111111111111101101111111100111110111111111111111111111111111011111111111110101101111110111111011111111111111111111111111111111111101111110011101111111111101111111111111111111110111111111111100111111111111111111111111111111111011111111111110111100111100111011011101111011111101111101111111111011010111110110111111111111111101111111101111111111101011111001111111110111111101111111111110111101111011110111111111101110111101101011111111111111111111111011001111101111111110111111111111111111111111011111111111110111011111111111111111111101101011011111111001111111011111111111111111111101111111111011111110111111111111111101111111111111111111111111011111111111111110011111110110011111011111101101011110111111111111111111111111001111111111111011101111011111111111111111111011111111111111011101111111110111101101111111111111111111011111111111111111111101101100111011111101111101011111111111111111111101111111110111111111111111101111111011111111101111010111111111111111111111110111111101111111111111111101111010111111111111111111111111110111111111111111111101111111111111111111111111111111111111111111111111111111111111101111111100111110111111111111111011111111101111111111111111111011111111011111111111111111111011111101111110011111111101101111111111111111111111111110111111111111101111111101111111110111110111111111111111100111111111111111111111111111111110111111111111111111111101011111110110111011111111111011101111101111111111011111111111111111111111111111111011111111011111100111111110111111100111110111111111111110111111111111111101001111100111111111111110101111111111111111111111101110101111101111111001001111101111111111111111111111111111111111111111111101111111111101111111111111111110111100111111111111111111111011011111111110011011111111111111111011111111111111111011011111111111111011111111011111010111111111111101110101011111011111111111011011111111111001111111111111111111101111111111010111111101111111111111111111111011011111111111111111111111111110011111101110111111111111111111111111011011011111111111111101111111111101111111111101111111111110011111111111111111111011111101101101111111111011111111111101111111111111101111111100101111111111111111111110111111111111111110101111001111111111111111111011111111111111011111111101111101111011111111111111111111111111101111110111111111110101111111110111111111111110111110111110111110111011111111111111011101111111111101111111111101101111111011111111111111011101111111111111111111111111010111111111111111111110111111111111111111101111111110110110110011111111111111111111111111111111110111111111011111111011111101111110111111111101111101111110110111110011111111111011111111111101111111111111111101111111111111111110111111011111111011111111111111101111111111111111111101111111111111111111111111101111111111110111101101011111111111111101111111111111101111110111111111111111111110011111111111111111111011111111111111011111111111111111001111111111111111011111111111111101111101011111111110111011111011111111011111110111111110111111101111111111111111111111111110101111111111111111011111111101111111111111111111111010011110111111101110111111111111111111111111111111111011101110101110111111111111110111111111111111111111111111111111111111111110111111111111011111111111111110111111111111111111111111111111111111111111111111111111001111101111111111111111111111111111111110110111111101110111111011101101111111111111111111111111100110110111101111111111111110111101110111111111111011111011111111110011111111011111111111111111111110111111111111111111111111111111111100111111111111110111111111111011111111111111111011111111111111111111111111101110111111111111011101111111111111111110001101111111011111101111111110001111111111101111110100111111110111111001111111111111111100111111110111111111111011110110111111111111111111100111111111001111111110111111111111111111111101111111111111111101111111111010111011101111111111111111110111011110111111110111011011101101111111111111101111111111011101111111011110111111111101011111111111111110101111111111101111111110111111010111111111011101111111110011110111111011101111111110111111010111111111110101111111111111111111111111111101111111101111111111011111111111110111111111111111111111111111111111111011111111011111111111111111111101111111111111111110111111111111111111111111111101111101111111101111111011111111111111101111111111110111011111011111100111111111111111111111101110111101111011111111101111111111111111111011111111111110111110111111111111111111111101101111111111111111110111111111111111111011011111111111111111011110111000011111111111111111111111111101110111111111111111111110111111111111110111111111011111101111110001110111111110101110111111110111111111101111011111111111111011111111111111111111111111111111111111011100110111111111111111111111111111011101111101111101101111101101111011111111111011100111111111110111111111111111100111111111111111111101111101111110111111111111111111111111111111110011111111011111110101111111111111011111011100111111111111011111101111111111111111111111111111111111111111111011101111111111111111111101110111111111011111101111111111111011111101111111111111011110111111111011111111111101111111111111101111111101111101111010111111111111111111111011011101011101110111111010110111111111101111011111111111111111011111011111111101111111110111111111111111111011111111101111111111111111110111111111011111111011111101110111111111110110110111111111111111111111111011111111011111111111011110111110011101111111111111111111111101111111111111111111111111110111111111111111111111111011111111111111111111111111110111111101111111011110111111111111111110011011111110111111111111111111111111111111111101111111011111111101111010101111111111011111101111011111111111101111111111111001111111111111111111001111111011111111011011111110111111011110111111111101111111101011111110111111111111111111111111111011101111101111111101101111111110111011111101101110111110111111111111101111111110111011111101111111110111111111111110111110111111110111111011100110111011111111111111011011110011111011111100011111111111111111111111101111100111111111111111110110111111111011111111110010110111111101101111011111111111111111111111111111110011111011101111111110110101111111111111111101111111111111111111111111111111111101011111101111111110111111111111111110111111111111111101010110111111110111111111101110111011111111111111111011111111111111111111111110111111111111101111111111111111111111111111011111111111111111110111011111111111111111110111101111111111101111111111111111101111110111111111011111111101101111111011111111111110111101111111111111111011010111111011111111111111111111001101101111111111111111111111111111111110111101111111111111001111111111111111111111101111111111111111111111011111101101111110111111111111111111111111111111111001101111111101111111101111101011111110111101101111111111111110111111111111111111110101111101111111111011111101111111111111111111100111011011111111111011111111011111111011111111011111111111111010101111111111111111101111110110111111111111101011111111011111111111111111111111111111111111010110111110111111111111111101111011111111111110011111101111111111101011101111111111111111111111110011101111111111111011111111111111111111111111110111011111111111111111111111011111111111111100011111111111111111101111111111111111111111111111111111011111010111110111111111110111111111011111111111111110111111111111111111111111111111111111111111111111010111111011001111111011111111110111111110111111110110110011111111111111111011111111111111111111110011011101111111011101111111111111011111111111011111111111111111101110111011111111111111111111111111111111111100111111101111111111111111110011111111111101111111111111111011111111111111111111111111111111101111111111111111101111101111111111111111111111111111111110111111010011111111111011111111111111111111111110011011111110111111111111110111111111111111011111111110111111111111111111111111111111111111011111111111111111111111111101111111111111111011111111111111111111111011111011111111111101101101111111111111111111111110111111111111111111101111111011111111101101011110111111010111111011101111111111101111111011111111111111101111110111111111011111111111011011111111111111011111111111101111111111111111011111111110011011111111111111111111111111101110111111111111101111110111111111111111111111111111111111111011011111111111111111101111111001111111011111111111110111111111110101111111111111111111111011111111111111111111111110111111110111011111111111111111111111111001111101111111111111111111111011111100111011111111111111111111111101111010111110011111111111111111111111111111111111101011111111111111111011111111101101011111110111110111111111110111110111011111111111011111111011111011111111111111101111111110011111111111111111101111111111111111110111111111111111111111111111011111101110111111111111111111111101001110111111111110101110111111011111111111111111111111101101111111111110101110111111111111011111111111111111111101111111111111111111111111111111011101111011111100111111101111111111111111111111111111011111111110111111111111111111111111111111111011111100111111011110111111111111111111111111101111111111101111110111111110111111011111111101111111111111111111111111111111111111110111111111111111111111110111111111111111111111001111001111111111111001111111111101111111111111011111111110111111011110111111111111111001111111111111111111111110111111111111111111111111111111111111111111111111111111110010111111111110111111111011111111111111111011011111111111111111011010111111111111111110011111111111111111111111111010111111111111111111101110111111111111111111111111111111111111111110111111111110111011010111111111111111111111101111111111111111011111111111111111111111111010111111110111101111111111111111110101111101110111111111111111110010111011011111111101111111101010111110111011111111111110111111111111111111010001111111011101111110111101111101010111111011111111111111110111011011111111111111101110111111111111111110111111111111111111111011111111111111111010111111111111111111111111111111111111110111111010110111111111111111011111011111011111101111111101111111111111111101111011111111111110111111111111111111111111111111111011111110111110111111111101110111111011111101101111111110111101111111111111111111111111111111111111111111111111111011111111101101111110011111111011111111111111101111111110111111111111111111111111111111111011111001111111111111111110111111011111011111111011111111111011111111111111011101111111011111111111111111111011111101111101111001111110001111111111110111111111111111110111111101111111111111101011111111111111111011111011111111111111110111111111011111111111111111111111111111011111001111111111010011111101111111111111111111111111111101111111011111111111011111111111111111110111111111011111111111110111010111111111111111111111111111111110111111111110111110101111111111111111111111111111111111110011111110111110111011101111110111111111111101110111111111111101111101111101011111101111111111010111101101010101111111111111110110010111111111111110111111111111111111110111101111011111111111111111011101101101111111111111111011111111111111111011101101111111111111110111111111111110111111100011011011111111111110101111111010111111111111111111111111111011111111111011111111011111111111111111111111111011111110111011111111101011111111011111011111111111110110111111111111111111111111000111111011111111111000111101111001111111111101111100111111111111111111111110110111111110111111111011111101101111011111111111111111111101111111111111111111111110111111001111111111011111111111011111111111111101011111111111111111011111111111111111101111011111111111111011011111111011111111111111111111010111111111111101111111111111111111111101101111111110111111111111111111111111111111110111111110110110111111101111111111001111111011111111111111111111111111101111111111110111101111101110111111110111111111111111111111111011101111111111111111111101111111111111111111111111111100111111111111011111111001010111111011111111111111111111111101011111111111111011110111111111111111111111111101111011111111111111111111111100111011111101111111111111111111111111111111110111101111111111111111111010111111111111101111011110111111001111101111111111111111111111111011011111101111011111111110111101111111111110111111111111101111111111111111111111111111111111110111111111111111011111101111111011111111111110111111001011111111111111111111111110111111010110011111011111111100111111110111111111111111011101101111111110111111111111111110111101111111111100011111110101011110111111111111111101111101111111111111011111111111111111111111110111111111111111111110111110110111111111111110111111111111111111111111011111111111111111011111111111110101011111111101110101111101101111111111101011111111111111111111111111111111111111111111011111111100111101101111111111111111110111111011011111111111111101111111100111111111111111101111111111111111111111111111111011100111011001111011111111111110111110110111111111010111111011111111111111111010111111111111111111111110011111111111101101011111111111101111111111111111111101111011110011111111111101111111111011111111111001111111111111111010111111111111111111011111111111011111111111111101111101111100101110110111111101111111011101111011111011111111011111111111111111111111110111110011101111011111111111111011111110111111111111111011110101110111111111111111101011111111011111111011111111111111111111111111111111101011111111010101101111111101110101111111111101111110111111111110101011111111011111011110111010111111111101111111111101111111101111111011111111101111111111110111111111011110111111111111111111111111111111111111011011011011111011111111111111111111111111111110111111110010110111111111111111111101111111111111110111101101111111011111111111110111101111011011101111111111111110111111111101110111111111101111111111111111111011111111111111111111111111110111111110111111111111110111011111111111111111111111111111111111111111111111111101101011111111111111111100111111101010111111111111011110111110111110111111111110111111010110111111111111011111111111111101111010111111111111111111111110101111111110011111111101111111111111111111111111111001011110010111111101111111111111111111111111111111011011111111111111111111111111110101110011011111111011111111111111111111111111110111111111111111111111111111111111111111111111111011101110111111011111011111111111110110111110101111111111111111111111111111101111111111011111111111110101111111111111111111111011110111101111011111111111111111101101111111111111011111101101111011111111111111101111111111111011111011111111111111111110101111111111111111111111111101011110111011110111101111011110110111111111011100111001111111111111111011111111011111111101111111111111111111111111111111111111111011111111111111111111011111111111111111110111101110111111111111111111010111111111111111101111111111111111101011111111111111011111111110111110111111111111111111111110111111111111111111111111111111111111111111110010011111111011111111110110110111111011110111111111111111111111111111011111101111111111111111110111111110111111111101111111011111111111111101111011110111111111111111111111110111111011101111111111111111111111111100111110111001111111111111111111111111110111111111011111111111111111111101111111111111111011111110111111111111111111101011111111111111111111111111111111111111111111111111111011111111111110111110111110111001100111100111111110110011101110110111111111111111111101111111111111011011111111111111111001111101111111111110100111111111111111111111111111110001111101111011101111111111111011101110011110111110101111111111101111111101111111101111111111110111111111111111011111110111011111111111011011011110111111011111111111111111111011011011011111111111111111101001111111011101111111011111111111111111111111111110011111010111111111111111111111110011001111111101111011111110111111111011111111101111111111111100111111111111111110111111111100011011110111111110111111111110111111111011111111111111111111111111111111111111111111111110111110101100111111111111111111011111111011111111111111111111111111110011111111111100111111111110111111111111110111010111111111101111111111110111111100111011100101111111111111110111111011111111111111111111111111111111111101111110110011111111111111111111111111111110110011111111111111111111111111111101110101110111111111111111111101100111011111111101111111111111111110111111011111111010101101111111101111111111111110111011111111111111111110111111101111111111111111111111111111111111111111111101101111011111111111111011111111101111111111111101001111111111110111111111111111111111111111111111110111110110111111111111111111110011111111111111111111111111111111110111111111011111111111111111111011111111110111011111111111111111111111111111111011111111111111111111111111111101111111111111111111101111011111100111111111011011111111110111111101111101111110111111011101111111111111111111111111111111111111111111111101111111011111111010010101111111111111111111111111101111011111111111111111111111111010011111010111111111001111111111110101011111110111111101111111111101111111111111111111011111101111111111111111111111111111111111111111011111111111101111010001101111110110111111111101111111100111111111111101111011111111111101111111111111111111111110111111111101111111111110111111111111111111111111111110110111111111001111111111111111111111111111110110111111111111111101111111111111111111111111111111111111111111111110101101111111111111111111101111111111110111111111111111111111110111111111111111111111110110011111111011011010011111111111111111111111111111111111111101111111111110111110111111111110111111111110110011011111111101111111111111111111111111111000111111111100111111111111011110011110111111111110111111111111111101111110111111101111111111111111111110111111110111111111111111111111111111111111111111111111111110111101111011111111110110110111101111111111111111111111111111111010111111111111111111111111111111100011111111111011110111110111111111111111011110011111111111111110110111101101111111111011111111111111111111111111111110111111110111111111010111111111111111110111111111101011111110101111111011111111110111111111111101111111011111111111110111111111111110011111111011111111110111111111111111111101111111011111111111110111111111111111111111111111101111111111111101111111110111011110111111111111111111111001111111111111011111111111101111110011011110111111111111111101111101101101110111111111100111110111111011111111111111111110111111101111111101111111101111111111111111111101111110111110111101011111111111111111111111111111111111111111111110111111011110111111111111011111111101110111111111111111111011011111111111111110111110110111111111111111111110111111101101011111111110111111111111111010010011111111011111111110111011110011111111111011110111111111111110111111111111110111111111111101111111110111111011111111101100101111111110111100011101011111111110111111111111111111111011111111111111101011101111110111111011111111111101111111111011011011111111111101101111011111111111111111111111111111111111100111110101111111111111011111111111111111111111111110111101111111111110110111111111011101111111101101111111111101111111101111111111111111111111111111111101111111111011101111111111111111111111001111111111101100111110111101111111101111111111111111111110111110111111111111110111111110111111111111111111111111111111111111111111110110111101111111111111111111110111111111111111111111111011111111111011111111111111111110111111100011110111101111110101110111111111111111111111110111111111101110111111111111111111110111110111111111111111110111111111110011101111111111111111111111111010111101111111110111111111111111111111111110111111011111101111111111110111111111011111101111111111110111111111111111111111011011111111011111111011111111111111111111111111111111111111111011111111111111111101011111110111111111111111111111111111111011111111111111110111111111111011010111111011101011111111010110111101111111011111111101111111111111101111101111110111111111111101010111111110100111111111111111111101111111111111111111111110111111111110111111111111100111111111111111011110111011111110111111111111111111111111011011111111111111111111011111111101111111111111110111111110101111111111011111111101111111111111111111111111111111101111111011111111111111111111111110111111111111110111111111111011110111111111111111111110111111111111111110111101111111111111100111101111111101110111111101111110111111110011111011011111111110111011111111111111101111100111111111111111111111111111111111101011111111111111111111101111111111101111111111011111111101111111111111111111111111101111110111111111111111011111111111101011111111111101111110110101111111111111111010111111111101110111111111111111111111111111111111111111111111111110111101110011111011110010111111111111111111101110111101111111111111111111111111011101101100111111111111110110111110111111111111101110111101111111111111111111111111111101111111011111111111111111011111111111111111101111111111111111110111111111111111110110111110111111111111100110111011111111111111110011111111111111111111111111111111111111010111111111111111111111111111111101111111111110111111111110111111111111111111111110111111111101111111111101111111101111111100111110111111101111011111111111011111111101001111111111110111111111011111111100111111111111111111111111011101111111111111111111111101111110111111111111111111111111111111111111111111111110111111111111111111111111101000010111111111111111111111111111011111111111110011110111111111101111111111011111111111111111111110111111111110111101111111111011111111111111111111111011111111111111101111111011011111111111111011100110111111011111111110111011111010111111111111111111110111111111110111111111111111111111111111111111111111111001111111111111111111111111111110111111111111111111110111011110111111111111110011111111111111111111111111111111111111111011111111110111111111111111110111110111111011111111110111111110110101111111111111011111111111011111111110101111111111111111111111110111101110111111111111111111111111111111111111111111111011111111111111111111110111111111100101111111111111111111111111111111101011111111111111111111111111101111111110101011011110011111111111111111111111111111111101111111101111111011111111111111111111100011111011111111111111111111111111111101111111111011111101111111111110101111101111111111110111111111111111011111011111101101111111011110111111111111011111110111111111110111111111111111111111111111011111011111111111111110111111111101111111101111111111111111011110111110111101110111111111111111011111101111111111111111111111111110111111101111111111111111111011111111110111111101111111111110111111111111111011011110101111111001111111111111111111011111100111111101110111111111111111100110111111111111111101111111111111111111111111111111111101111111111111110101111010111111111101110111111011110111111111111011110110111110111111111111111110110111111111111111111101011111111111111011101111111111101111111111111101101011111111111111110111011111011101111111111111111110111111111111111111111111111111111111011110111111111011111110101011111111111111111111111111110111111111111111111111111110111101111111111011111011111101101101111111111111111111111111110111111111111111111111101111101111011111011101111111110111111111111010111111011111111011111110111111111111111111101111111111111111111111111111101111111111000101011011110111111111111011101101111111111111111111101011110111111111011011111111111011111111111111111111111111111101110011111111111111111111110101111111111101110111111111111000111111011011111111111111111111111111111111011111111110111111111111110111111101111111111111111111111111111111111111101111111111111111111111111111111101011111111111111111011111111111111111101011111111111111110111111111111111111111111111111011011111101111111111111111011011111111111111111111111111111011111111111111111111111101011111011111111000111111111101101111111111111111111110111111111110111111100011111011111111111111111111110111111011111111111111111111111111011111111111111111111111111111111010111101111111111111111111111111111100101111011111111111111110110011110101110111111111111111111111111111111111111111111101111111111110111111111110001111111111110111111111111111111111110101111111111111111111111011111111110111111111111111111111111111011110111111011111111110111110111101110111111111111110111111110111111111111111111110111101111111111111111111111111111111111111111111111111110111111111111011111101111111111110111111110111111111111111110111111111111011110111111111011111111001111111111111111111111101011101111100111111101110111011011111101111101111101111111111111111111011101111111110111111111111111011000111111111111111111111111110101111111111111111110111101111011011111101111111111101111111111111111111111111111111111100101111111110111101110111101111111111101111111111111101111111111111111111111111111111111111110111011111101111101111111111111101111110101111111111111111101111111111011111111111111011111111111111011101111111111110111111101111111110111111111010011111111111111110110111111111111111110110111111111111111111111111011111111111111101101111111011110101111110111111111111111111111111111111111111111111111111111111101101111101110101111111111011011011111111111111111111110111111111111110110110111111111111111111011111111111111111111111111111001111111011111111111011001111111111111111110101111111111111011111101111111111011111111101111011111111111111101111101001111110111111101111111111111111111111011111111111110111111111111110111100111111111111111111111111111111111110111111111111111111111111111110111011111111111111111111111111011111111101111111111111110111111111111111110111111111111110110111111111111011111111111110011111111111111101111011111111111010111101111111111111111111111111111111101101111110111111111111111111111011111111111111101111111111111111011111011111111111011110111111111111111011101011111111101111111111111111111111011111111110100100111111111111111011110111110111111111111111011011011111011111111111111111111111111111111101111110110111011111101111111111111111111110111111111101111011101111111111111111101110111111110111111111111111011111111111100111111111110111111111111011111111110110111111111111110111111111110011111011111011011111111111111111111111111111111111111111111111111101101111111111101111011111101111110110111111111111111111111111111111111011011111011110111111110111111011111111111111111111110111111111111111111111111111111111111110111101111111111011111111111111110111011111111111101110111111101111111111111111111111101111111111111110111111111111111111111111111111111111111111111011111101111111111111011111111111111111110011111101110011111111111111111111011111011111111111101111111111111111111111111111111110111111111111111111111011110101110101111111011111111111111111101111111111111111111111110111111111111111111111111010111111110111111111110110111111111111111111101111111111111111111111111111111111111110111110101111111111111111111110111111101111111111111111111011111010111110001111111111111110111111111111111111111111111111111111111110111110111011111111111111111101111111011111111111101111101111110111111111011111111011111101111111111111110111111101111111111110110111111111111110111111100111011111011010101111111111111111110011110101111111110111111110111111011111110111111111101100111111111111111111111111111111111101111110111101011000011111111111111111111011111011111111111111111111010111111101111111111111011111111111111111111111111111111111111111110111111110111101111011111111111111111111111111111011111011101111111111111100101111111111111111111111111111111111011111111111111111111111111111111111011111111111011111011111111111111110111101111111111111111111111110011111111010101111111111111111011111111111111111101111111111111111111111111111111111111111101011111101110111111111111101011101111111111111101111111111000111111111111111111111011111111110111101011111111111001111111111101111111110111111111111111111011111111111111111111111101111111111111111101110011111111111111111011111111111011111101111111011111111111110111101111111111011111101111111111111111111110111110111101101111011110111111111111111111111111111010110111111011111111101101111111111111101111011111111111100111111111111011111111011111111111101111111111111111111110111111111111111100101111111111111111011001111111111010111111111111111101001111111011111011101101110111111010011111011110111011111011111110011101111111111110111111111111111111111011110011101011111111111111011111011111111111111011110111111111111111111111111111011111101111111111111111111011110111111011111101111111101011111111111111111111111111111111111110111101111111111111111011101111111111111111110111111111111111111111111111011111111111111111111001111111101011111111110111111011111111111111111111101111111111111111111110111110101010101111110111111111011111111111111110011111011110111111111111111111011111111111101111110111111100111111111111111111111111111101101111111101111000111111111111111110111111111111111111111110111111111111110111111111111111111101111011111111000101111111111101111111111111111111111011111111110111111101111111111111111111111010111111111111111111111101001111111111111111111011110111111111111111111111110111011111110111111011111011111111011111111111111111111100111111011110111101101111111110111111110111111111111111111011111111011011111111111101111111111110111111111111101111111111011100011111011111111111111111111111111111111111011111111111111101111111110111110011111010110111010011111111110101101101111110111111111011011111111111111111111111111111111111101111111111111111111111111111111111101011110111101111111111111101111111111111111011111111111101111111111111111111111111111111111011111111111111111101110101111111111111111110001111111111011111101111101111111110111101000110111110111101011111111111111111011111111111111101111111111111111111111111111010101111111111100111110011111011111101111110101111111011111110111111011111111111111110111111111111111111111111111111010011111111111111111111111111111111111111110111011111111111111111011111111110110111110101110110111111101110101111011011011111111011111111111101111111111111111111110111111011111111111011111111011111101111111110011011111011111110111110011111111111111111011111110111111111101010111111111111111111111111111111111111111111101111111111111111111111110110111111111101111111111111111110111111111111111101111110111101111111111111111111111111111111110011111111111110111111101111111111110101111111111011111111111001111111111111110111111111111111111110111111111011111111010111110011010101111101111101111111101111101111111111111111011110011111111111111101111111011110111110111111111101111111111111011111111111011111111111110111011110101011011111111110111111111111111111111111110100110111111111111110100011111011111111111111111101111111111111111110011111111111111101111100111111111111111111111111011111111111111011111111111111101111111111101111101111111111010111011111111101111111111111101111111111111111111101101111101111111111111101110111111111111111111111111111111111111111101010111111011111011111111111101111111001111111111111110111111111111111011111001111111011111110111011111111111111011111111101110111010110111111110111111111111111111101010101111111111111111110011011111111101100111111101111111111111100111101101111111101110101111111111011111111111111111111111111111111111111110111110110111101111011111111111111111110011111111111111111111101110110111111011111111111111111111111111101111011011110101011111100111111111001011000111111111111111111111111011101111111111111111101111111111101011111111111111111111111111111111111011111110111111111100111111110101111111111101111111011111110111111111110111110111111111111111111110111110011101011110111111111111111010111111011101111101111101111100111111011111111111011111111111111111111111111110011111111111110111001111111111111101111111111011111111111111101111111111111110111111111111111111111011101111111101111111011111111110101111111111111111011111110111111111111111111010111111111111111111111111111111111111111111101111111111110111111101111111111111111111111111111111111111111111101111111111111111110111111111111111111111111101011111110111111011011111011111111111111111111111111111111111111111111111111111101111111101111111111111111101111111111111111101101111111111111111111111111111011111111110111111110111111011111111000101000111110101111011111111110011110111111111111111111101111101111111010111100111111111110111110111111111111100111111011111111011111111111111111111111111111110111111111111111110111111111011111111011111110111111111111111111000111111111011111111011111111111011111011011111101111111110111111111111111111111111111111111111111111111111111111111100011111111101111111101111110101111110111110011111110111111101111111001101110111011111111111111111111111111111100111101111111111111111101111111111111111111111111011111111111111111111111011110111111111101111101111011111101111111111111111111111111111111111010111111110111001101111111111111111111011110111111011111111111111111111111111111011111110111111101111011111111011111111111111111011111110111111111111111111111111111111011111111111111101111111111111111111111101111110111101111111111011111111111111101101111111111011111111111111111101101111011111111111111011111011111111111111111111111111111111111110111111111111101111111111111101111111111111111111111111111111110111111111011111111111111110111101111011111110111011101111111111111111111111111111111111111111111011111101111111011111111101111111011111111111111111111111111111111011111101111111111111111011101111111111111111111111111111111110111111111111111111101111110111111101111111111111111111111110111111111111111110111111101011111111111111111111110110111111011111111101111011111111011101111001111110111111101111011111111110111111111111111101111110111111111111011111111110111111111111111111111111111111100011111111111111111011111111111111111111110111011111111111111011011111011111101110010111111111111111111101111111000111111111111111111111111111011111110111101111111111111111111111111111111111111111011111111111111111111011111101111111101111111111111111111111111101111111100111111101010111111111110101111111011111111111101111111111111111111111111111111111111111111110011111100111111111111111111111111111001111111111111111101111111111101111111111111111111101111111101111011111011111100111111111110111101111111110111111110111111101111101101111101011111111111111111111110110111111111111111111101111111111111110111110111111101111111111111111111111111111111111111101100011101111011011111111111111111111111111111111111011111110011111101101111111111110110111111111111111110111111111111111111111111111111111111111111111111110111111111110111111111111110111101111111111011111111101111110110111111111111110111111111101111100111111111110111111111111111111111111111111111111111111101011111111111111111111111111111101111110111111111101111111111111111110101111111111011111111111101011111111111111111010110111011111011111011101011111111101111111010111111111101011100001111111111111111111111011111111111010011111111111111111111011111111111111111111110111101111011110110111111111111110111111001111111001111111101111111000111111111111110011011111111101111111111111111111111111111111111011111001110111111111111111101111111111101101111111111111111111111111011111111111111010101111110111101111111111111111111101101011111111011111101111111111111110111111111111101111111111111111111011111111111111011111111111011110110111111000111111101110111111101111110011111111111111111101111111111111110110001101111111101111111111111101111111011111111011111111111111011111111011111111111111111111101111001111111011110111111110111111101011010111111111111111110111111111111111111110111111111111111111111001111111111111111111111011101111111111111111011110110111110111111111011111000011011111001111111111101011111111111111011111111111011110111111111111111101111111111111111111111111101110111111110111111111111111111111111111111111111111111101111111111111110111111110111011111011111011111111111011111111111111111111111110111111111111110111111111011111111101010111101111110111111111111111111111111111111011111111111111111011110111111110011111111111111111111011111011111011110110111111111011111111111101111111111111111111111101111111111111111111111111111111111111011110111101111110111111111111100111110011011111101111111111111111111111111101011111111111111111111111111111111111111111111111001101110110111111111111111101111111111111011011111110011111111101111111110111111011111111111111111111110111110111111011111110111111111111110111011111111111111111111111011011111110111111111111111111111010111111111111111111101111111111011111111111111111111111111111111111101101101111111111111111110101111111101101101111100110111101111110111111111111111110111011101011111011111111010110111110110111111110111111111111111110111111101111111111101101111111111110111011111111111111111111100111110111111111111111111111111111011111111111111111111101111111110111111111111111101011111111011111111101111101111111011111100111111101111101111111011111111101111101011101111110011111011111001111111111111111111111011111111101111101100111111111111111111111011111111110011111111111111111111111111110111110111111011111111111111111110111111111111111111111110111111110111100111111111111101011101100111111111111011111111111111111111111111111111111111111111110101110111001111011111111011110111110011111011111111110001111111101111111111111111111111111111111111111011111111111011111011111111111111110111111101111111111011111111111101111111011110101011011110101111111110110111101111111111111111111111111101110111101111111101111111111110111111111111011111110111111111111111111111111111101111111111111010111011011111111111111110101101111111111011111111111111111111111111111111100111001111111111111111111111111111111111111111111111111111111111111111111111111111111111111110101110111110111111110111111101111100101111110111101111011101111111011111011111111101111110011111111011101101111110111111111111011111111111111110111011111111111111111111111111110111111111111111011101111111011111101111111101111111100111111111111111100110111111111110111111111111111111111111111010111111110111111101111111111101111111110111111111111111100111111111111111111111010111111111110111101111111110111110111111011111111111111101111101111110111111111111111111111111111111111011111111111111111111111111111001111111011011010111111111111111001111111111111111001110111111110110111111011111111111011101110111101111111111011011011111111111111011111110111011111111111101011111111101111101111111111111111111111111111110101111111111110111011111111111111111101110111011111111110111111101110111111110110111111111111111111111010111111111111101111111111111111111111111110111111111111111111111111111111111110111111110111111111110111111111111101111110111111111111111111110111111111111010111101101111111111100111011111111110111111011011111110111111111111111111111111111111111111111111111111111111011111111110111111111111111111110110111111111111111111111111111111111111111111100111111110011111111111111111111111111111111111111011101111110111111111111111111111011011111111111111101111111111111111111111111110111111111111111011111101011111111111011010111011111101110110111111111111111101110110001011110011101111111110111111111111011111111111111111111111101111111111111111111111111111011011011111111111111111111010111110111111111111111111111111111111111111111111111111111111111111111110111111011111111111101111111111110111110111111111110111100111111111111111111111111101111111111111111111111110111111111111111111111111111100111110111111111111110111111111111111111111111111110111111111111111111111111111011111111111111111110111111101111111111111111111011111011111111011111001110111011111111111101111111111111111110111011111111111111111111011111111111011111111110111111111111111110111111111110111011111111111111111111111111111111111111111110111111011111001111101110111111111111111111101111111111111110111111111111111111001111101111111111111111111111111111111111101011101111111111111111111011111111111111111111111111111011111111111111111110101111110010111111111111111111011111111111110111110111011100111011111111111111011110101101111011101111011111111111111101111111111111111111111111101111111011111101111011111111111011111111010111111011011111111111111110101111110110111111101110111011111110111111011111011111111111111011111111111111111110011101111111111111111011101110101111111100110111111111111101111111111111111111111011110111111111111111111111111111111111111111111001011111111111111111111111111110111011110111111111110101111111111011111111111110110111011111101111111111111111111011110110101111011111110111111111011101111111101111111111111111110001111111111111111111111111111111011111111011111111111111111111111111111011111110111111111111111111111110111111111111110111111111111111111111011111111111101111111011011111110111111011101111111111111111111111111111111111111111111111011111111111111101111110111101111111111111111111111111111101111011011111111001110111111111111111111111111111111111111110101011111111111111011111111111111101111111110110111111111111111111111111111111101111110111101111111101101111110100111111111111111111111111111110111111011111111111111111011111111110111111111111111111111111110100111111111110101111111111011111111111111101111111111111111111111111111111111110111111111111111011110111111111111011011111111111111110111111111111111111111111101111110011111111111111110011111011111100111111111111110111111110111111110111111111111111111110101111111111111111111100111111110111111110101111011111111111111111111011111111111111111111110111111111111011101111111111111111110011111101111111011011111011101111111111111111111101111101111111111101111110111111111111011111110111111111111111111011101101111101011111111001111111111111111111111111110111111111111111111111111110110111111111111011111111111101111111111111111111110111111110111101111111110111111111111111111110111111010110101101111101111111101111001111111110111111111111111111011010111111001111110111111101111111111111111111111111111111111101011111111111111111111111111111110101011111110111111111110011101111010111111111111110111111111111111011111111111111111111111111011111111111111111110111111111111011111111111111111111111111111011111111111111111111011111111111111111111111101111101111111111111111111101111110011111011111111111111110101110101011100111111101011111111111011111111111111111110101101001111111111111011111111101111101111111111111110110111001111111111111011111111110010111011111010110111110010111111111110111111111111110011111111111111111111111110111111101111111111100110111111011111111111110111111111111011111111101111110111001111111111111111111111111110111111111111111111110111111111110111101111110111111110001111101111110111111111111111111101111111111111111111110110011111011111101111111111111111111111101111011011111110111110111110110111101111011111110111011111111111011111110111111101111111111111111111110011111111011111110111111111111101101111110111110110111111111111111111010111111101111101111111111101111111111111111011111111111111111111110111111111111111111111111111111111110110101001111111111111110111110111111111111011111110111111111011011101111111111101111110111111111111011101110011111111111111101110111111111111111111110111111111111111111011100010011111101111111101111111111111101111111111100111110111101111111111111111111111111110111110110111111110011111111011111110111110111111111111111011111110111110111111111101111111111111101111101111111011111110111111110111111111111101111111111100111111101111111010111111111111111111100011101111111111110111011111111011011111111111111110111100111111111111111011001011111111111111001101111111110110111011111101111111111111111101101111101110111111011111111111111111111001111111110111111111111111111111111111011111111111011111111111111111111111111101110111111111111111111111111111110111111111111111111111110111111111011110111111111111111110111101111111111111001111011111111011101111111111111101111111111111111111011111111111110111111111111111111101101111111111111111110111111111111111111111111111101111111111111111111011101010111111111111111110111111111111111111111111111111111111111111111111111001111111111111111111110111111100111111111111111011011111111111111111111111111111111111111011100111011111111110110111111111111111110111111011111111101111111111101111111110111011111111011111101111110111111011110111111111111111111101011111111111111111111110110111011110111111101111111111010111111111111111111111111111111111111111110111111111111011111101110101011111101111111101111011011111111111110111111111110110110110110111110111111001111111111111111011011111110111111111111011111110101101111111111111111111111111110111111101111111101111111111111011111011111111111111110111111111111101111111111011110111111110111010111101011111111111111011111110111111101111111110111111111011111111101111111111110111111111111011111111111101111111111111111111111111111111111111111111111111011111111011111111011111111111110011111111111000111111111111111110110011110001111101011011111110111101011111111110011111111101111111111111111111111111110111111111111111111011111111111111111101111111111111111111111111011001111110111111111111111111111110111111111111111101111111111111111111111111110111101111111110111011111110111101011111111110111111111111111111111111111111111111100111111011111111101111111111111111111100101111111101011111111111111111111110111101111111111111111111111111111111111111110111111111111101101001110111101111011110111111101101111111111111111111111111111111111111111111111111111111111111111111110111011111111111111111111111101111111101111000111111101111110101111111111111111110111111110110111111111111111110111111111011111110111110011101111111110111101111111111111111101011011111111011111111011101111101011111011111111111111011111111101111111111111111111011111111111011111110111111111101111111111101111110011111111110111100111111111111110111110111101110001111111110110110001111011111011111111111111111111111111101101001011111010110111111111111111111111011111111111111111111111111101111111111111110111111110111001111101111111111111110110111111111111111111111110111110111111111111110111111111111111111111111111111110111111111101111111111111011111011111111111111111111111111011111111101111010111111111111111111111111111011111001111110111111111111111011110111011111111111111111111110111011111111111111111100011010111111101101011101111101101011111111111111111111111111111101111011111111111111111100101111111111111111111111101111110111111111111101111001111111111110011110111111110111111111101111101100111110011111111111111111011111111111111111111111111100011111111111111111011111111111101111111111111111111110111111001000111110011111111111101111101111011111110111011111111111111111111111101111111111101111111111111111011101101111111111111111111101111111111110111111011111111111111111111111100111111110111101101101111110011011111111111111111111111111101111111011111111011101011101111111110111111111111111111100111111111111111101111110111111111111111011101111111111110111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111111110111111111111110101101111011110101111111111111111111111011111111111111111111011101111111100111111111111110010000111111111111110111111111101101111101110111111111111111101111111111111111111111111111111110111010111111011111101111111111111111111111111111110111101111011111111011111101110011111111111011111111101110111101111011111111111111101110111110111111111100011111111111111111011111111111111111111111111110111111011111111111111111111111111111111110111101111111111111111011101111111011101111111110111111111110111111111111111111111111111111111110111111111111111111111111111111111111110111111011101111111111111111111111101111101111111111101111011111111111101101111111101111011111111111111111111111111011111111111111111111111111111011111011001111111111111111110011111100111111111111101111111110111111111111111111111111111110111111111111111111111111110111111111110110101011111111111111111001111111110111011111111101011111011110110111111111111111111110111111111011111111101111111111111100011111111111011111111111111111110111110101111111111111110111111111111111111111110011111110001111111111111111111111111111110111111101011111111111111111111111111111111111111111011011111111111111110111111111111111100111011111111111110110111111111111011111111111111011111111111111111111111111110111110111111011110011111111110101111011111001101101111111110001111111111111111111011011111101101111111111011111111111111111011111111111111111111111111111111011111111111111111111011111111111110111111111011111111111111101111101111111111111101111110111111011111111111111111111111011111111111111111111111111110101111111101111111111111011111111111111111110011111111111111111111110101111011111111111011111010111111100111110111111111111111111111111111110111111111101111111111111011111111111111111111110111111110110111111101110111011111111111011111011111111111110111111110111111111101111011111111111111111011111101111110011111111111111111111111111111111111111101111111111111111111111111111111011111011111101111111111111111110111111001111111111111111111111011111111111111111111111111110011111111111111110101110011111011111111111111110110111110111111011111111111111110110111111111110111111101111110011111101111111111111111111011101111110111111111101111111111111110111111111111111111111110111111110111110111111111111111111111111111111111111111111111111111111111111110011111111111111101110111111111111100101111110111111111110111110111111111111111111111111111111111111011111111111111111111111111111111111111111011111111111111111111110111111111110111111111111111111100111111111111111001111111101111110111111111011111111111111111111001111111111111111111111101111111111111011111111111011111001101111111111111111111111111100111110110111011110010110111011111011111111011111111111111111111111111111110111011111111111111110111010111111111101111111111100100111111110111111110111111101111111111101110111101111011011111111111111101111110101011111111111111111101111111111111111111111101111011111111010111111111111110111110111111110111111111111101011111111010110111111011111111011111111111111111111101111111111111111111111111111111111111100110111111111110110011111101011111110111111111111111111111111111111111111111111111111101110111111111111111111111110011111111111111111110111111111111111111111110110111111111111111101101111111101001111111111011111101111111111111111111101111111111110111111011111111011111101101101111111111111111111111111101111011111110111111011111101011010111111011111111111110111110111111111111111011110111110111111111011111101111111111111101110111111111111011111011111111111111111111110111010111110101111111101111111101111111111011101011111111111111111101111011111111101101111101111111111111111111111111101111111111111111111101111110110110111111111111111111110011101111111011111101101111111111111110111110111111110111111111011111111111111111111111111111111111111111111101111111111111110111001111111111111111011111111111111111111111111110111111111110111110111111010111111111111110111111111111111111111111111111111111111111111111111111111011111111111011111111111111111111011111011111111111111111111110011111111101111101111111111110111111111111111111111111111111011111111111111111111110111111111111111111111111111111110111111111110111101110111111111111111111111111111111111111111111111101111110111111111111111110111111110111101011101111110111111101101111111111111110111111111110111011111111111111111111011111101111111111111111111111110111111111101111111111111110111111111111111111111111111100111111111111111111111111110110111101111111111110111111111101010111111111110111111111110111111111111111111111111111110111111111111110111111111111111011101100111111111111111111111111111111111111111101111111111011011101111111111110111111111011111111111111111111111011111111111111111111110011111111111111101111101111011111101111111111111111111011110111110111111111110101111111111111011110111111111111111111111110111101000111111101111111111111111011111100111011111111110111110111011111111111011111101011110011101111111111111111111111111110110111110111110111111111111101111110111111111111111111110110111111111111011111111111111111111111111110111011111110111101111111011111101110111111000011111111111101011111110111111111111111111111111011111111011101110111111111111111101001111101011111111111011011111111111111111111111111111110111111111011111111111111111111011111111111111111011111111111111111111110111111111111101101111101110111111111111111111111011110111111111111101011110111111111111111111001101111101111111011111111110111111111111011111110111101111111111111110111111111111111011011110111111101111111111111111111111111111011111011111010011111111111111111111111110111111111011101110111111111111111111111111111101111111111001110111111110111111111111111111111111111111111111010111111010111111101111011111111111011111111111111101111111111111101111111111111111101111101011111111110101011101111111111111111111111111111101111111111011111101111111111111101111111100111111101110111011110111111111111111111111111111111111011111011111111111110111111111101111010111111101111111111110110011111111110111111111011111111111111111100111111111111111111111011111111111111011110111101111111111111111111111111111111111111111011111111111111111101111101110101111111111100111100111111111111110111101111111111101111111011111011011101111111111001101111111111111111111011111111111111111111111111111111111111111101111111101101111111111111111111111111110111111111111110111111111111110111101111111111111111111111111110110111111110111111111111110111111111111010111111111110111110101111111111111111111111111111111110110101111001111111011111111111111111101111111111111011111111101111111111101111110101011111100111111110111111111011101111111111101111111111111111111111111111111111111011101111011111111111011111111111111111111111111111011111111011110111111011111011110111111111101101011111111111111111111111101111111111111110111110111111101111111110111111110111111111111111110111111111111111111111001111111111111111111110111111111011111111111111111111001101101111111111111101111111110111111111110101111101111110111100111111111101111101111111111111111111111111111100111101101011111111111110111111111011111111101111100111111110111111111011111101111101111110111110101111110111111110110111111111111111111111111111111111011011011111111110100111101010111111111111111111011111111110101111111111101111110110101101111111111111111110111111111111111111111111111011111110011111111111111111111011101111111111111111111111111110111101111111101111011111111111100111111011111111110111110111011111111111111011110111011111110111011111010111111011111111111111111111111111111111111111111111111111111110111111101100111111111111111111111111111111111111011111111111111101101110111110111011111111111111111111110110111110101111111111111111011111111111111111111110111111111111111111111111110111111111111011111111111111111111111111111111100110011111111100101111011111111111111111111110111111111101110111111111111011110111111111111111111111101111111111101111111011101111111101111111111111111110111111101110111111110111111111111011011111111111111011100101111111111111111110111111111111110111111111111111111111111111111111111110111101110111111111111111101111111111111111111111111111111011110111111110111111111111111111111111111111110111110111111111011111111101111110101110111111011111111011111011111111111111111011111111111111111110111101111111111111111111111101111111011111111111011011111101110100111111010110111111111111111011101111111111110111101111111111111111111111111111111111111111111111111111111111111101111110001001111011011110110111111111111111111001111011111111111111111111011111111100111111111111111101111001111111111111011110011111101111011111101111111111101111101101011110111011111111011100111111111110110101111111111111111111111111111111011111111111111111101011111111101111101111111111011111111111111111111111111111111111011111111111111111111111100111111111110011111111111111011111110101011101011111110111111110111111101110001111101110011111111110101111111111111111101111111111111110111111101111010110111111111111111111111111111111101111111111111111111111111111111111011111111111010111111111111011111101111111111111111111111110111111111111111010011111110111110111111111111111110111111111111111011111111111011111111111111111001111111111111010111111111011101011111001111110111111111011111111111111111111111111011111111111110011111111111011111111111111111011111111111111111111111101111111111111010111111111111111101111111111111110111111111100111111111111111111011011111111110111111111101111111111011111011111011111111111111111110111111110111111111111011111111101111111110111101111111111111011111101111110111111111111111011111111111111111101111111111111111011111111011111111101111011111110101111111111111110011101111101111111001111111111111111111111010111111111111111011110111111011111101101111111111111101100111111111111111111111111111011011111111111111111111111101111110111111111111111111111111111111011111111111001111111111111111111101111111111010111111111111011111111111111111111110111111111111111111111111110111111111111111111111111111111101111111111111011111111011110111101101101111101111111111111111111011101111111111111111111111111101110111011011011111111111111111101101111001111110111111011111111111111111111111110111111110011111111110101111111111011111111110111111111101111111111111101111111110111111111111011111111111011111111111111111111111111111111001111111011111111101111111111111011111111111111011111111111111011011111110111011111110110101111110011011111110111111111111110111011111111111111111101111111111110111111111101111111111111111111111111111111111110111111111111111111100111110111111111101011111111101111110111110111111100111111111111111100111111111111011101011110111111111111111111111011101011111111110111111111111111111111111111111101111111111111111011101111110011101011011111111011101011111111011111111110111111111111111111101111011011101111111111111111010111001010111111111111111111011111111111111111011111111111111111111111111111111011111111111111111111110111111111010111111101111011110011111111111101111111011011111111101101110111101101111111111111111001111110111011111111011111111111111111111111111111111111111111111111101111111111111111011111110011111101111111111111111111111111111111111111101111111111111001111111111111111111111111101111110111111111111111110111101111111111111011111111111111101111111111101111111111111010111111111111111111111110011111111111111101111101111111111111111111110111111111111111101111111111111110110111111111111111111111110101111011111110111111111111111101111111101111111111111111110110101111110111111011111011111111111110111111111011111111111101111111111111111111111001011111111111111111011111101111111111111111111111101111111111101111111111111111111111111111111111111110111111111101111111111111111101111111111111111101111111111111111111110111111111110101111110101101011111111111111110011111111111110111111111111111111111011111111110111111111111111111111001011111111111111111111110110001111111111111110111111111111111111101111111111111011111110111110111111111101111111111111111011111111111111111111111111111111011111011111111110111111110111111111011111111111111111111111111111111110111111111011111111111101111111110111110111111111111111111111111111111111111111111111110111111111111111111111111111111111101111111111101111101111111111111111111111111111111111110111111111111111111111111111111111111110110011111111111111111111101111111110111111101111111111111111110111101111111111110111111111111001101111011111111111111101111011111101111111110111111111111111111011111111111111111101111111111111111111101111111111111111111111111111111110111111111110111101111111100111111111111110011111111111111101101111111111101111111111111111111111110111111101111111111111111111111011111111111111111101111111101111111101110111111111111111111111111111110111011111111111111011111101111111111111111001111111110111111111111111111110011111111101111011111111111111111011101111111111111111111111111111111111101111101111101111111111101111010111101111011111110111111111101111110101110111111101111111111111111111111101011111111111010111111111011111111111111111101111111111111011101101111101111110111110011101101011111111111111111111111111111111111111111111111111111111111101111111111111101111110111111111111100111111111111111111110011111011111111011111110111111111111111111111111111111111110111101101111100011011111111111111011111110111111111101111111111111111111011111111111111111111111011111111111111111111010101101001111111111111111111111111111111111011100011011111111111111111111111111101111101110111111111011100011111111111111111110110111111111111101111111011111111111111011111111111111111101111011110111011111111111111111111111111111111111111111011111110111110111111111111110111111110111111111111111110010111111110111111111011111111111111011111111111111111111111111111110101011111111011011110011111111010111011111111101111111111111011110111111111011101111111111110111111111111111111101111111111101111111111111111111111111111011111111111111011111111111011111111011111111111111111111010110111111111111111111111111001111111111011011111111111101011110011001111111111111100011111101111111111111111111111111110111101111111110111111011110110101111111111111111111111111111111111001111101111101111010110111111101111111111101111111011111111111111111111111111111100111111111101111011011110111111101111111101001111011011110111111110111111111111111111101111111111111111111111111111111101111111010101111111111111111111111111111111111110111011111111111111111111111111101101111111110101111011111110100101111111011111110101111111011111111111111111110111101110111111111011111111110111111101111110111110111111110111011111111111111110101111111111111101111111111111111111111111111111111101110111111111111111111111111111011111111111111111111110111011111111110111111111111011101110111011101110111100111111111110111110111111111110111011111011110101111111111111111111111111111111111111111111111111111111011111011111111101101111111110111011111011111111111111111111111011111111111011111111011111110111111111111111100111111111111011111111010111111111111001011111111110111110111111111111111010101011111111011111101111111111111111111110111110111100111111111111101111111111111111110110111111111011111111111111111111111111111110011101111110111101111111111011111011111111101111111011111011111111111111111111101111111010111111111111111111111110111110111111111111111111011111111111111111011011101111111111111111111111111111111011111111011110111111111111111110111111111111111001111111111111111101110111111011111111111110111111011111111011111110111111111111111111111011111111111111110111111111111110101111111111111111111111111111111111111011111111111111111111011101111111111101111111110111111111111111111110110111111111111011111101110111111111011111111111101110111101111101111111101101111110111111111111111111011111111101011011011111111011011111011110111011111110111111110111111111000110101110111011111011111111111111111111111111101111111111111111111111110101111111011111111111111111111110111111111101110111101011101111111111100111110011111110111111111101111111111111001111111111111111111111111111111111011111111101110111110111011111111111111111111110011111110111111111111111111011011111101111111111110110111111111111111111110111111111111111111111111111111011101111111011111111111111111011111111111111111111110111111111111110101110111111111111111111111111111111111111111111101111101111111111101111111111111111111111111111111111111110111111111111011111111111111111111101110111101111111111111111111111110111111011111111111111111111111101111011100011111111111111111111101111111110111111101111100110111111111011111101111111111111110001111101111111011111111101110101111101111111111011111111111111111111111011111101111111111110111111111101111101111111011011111110101111111101111010111111111111111111111111111111111101111110111111111110111111011011111111101111111111111110111111110111011111111111111111111111111101111111001111011111110111111111111111111111111111101110110111111111111111111111110111111101111111111011111111111111111110111111111011011111110111111111111111111111111101101111111111111111111111011111111000111111111111111111101111101101111111111111111111111111111110111111111111111111111111011111110111111111111111111111111111111111111111101101101111111011111111111011111111111101111011111111111110111111111101111111111100111111111111111010111100101101011111111111111111111010111010111111111111111111011111111111111111111111111110101101111110111111111111111111111011111111011101111011111111111111111111111111111111111111111011111111111110111101111111111111110111111011111111111011111111111111111111101111101101111111111111111101111111011111111111111110111111111111111111011001110111111101111111111011100110111001101111111111111111111110011101111111111101111111111100111111011111111011110111110111111110111111111111111101111111011111101111111111111101111111111111011111101111111111111011110101111111111110111111011111010111111111111011011111110111111111111111111111111101111111111111111111111110111111111111111111100111111111001111111111111011111111111111111111101101110111111110111101111111111110110101111010101011011111111111110111111011111111100111111011111111111111111011111111111111101010111001111101111111111111111111110101111111110111110111101011011111011111111111111111110111111111111111111101011101011111011101111111011111110111111111111101011111111111111111111111111111111111111111110111111110111111111111111111111011111111110111010111011111101101111111111111111111111111111111111111111111111111111111101111111111111111111110111011111111111000011111111111111011111110111111111111101111111111111111111110111111111111111100110111111111111111111101111111111111111111011111111111111111111111111011111111111111111111011110111110111111111111111111111111111011111111111111111111011111111111010111111111111110001111111111111111100110011111111011111111110111111010111111111111111111111011111101111111111111111111101111111111111111111111101110111111111111110111111111111111111111111111111110111111111111111111110111111000111111111101111110111011111111111111101111110101111111111101111011111111111011111011011110111111110111111101111111110110111111111111111111111111101101101111111111111111101111111111111011111111111111111101111101111111111111110111100011111111011011110111101111101011101111111111111111111111110111111111111111111111111111011111111111111110111111111111101111111111111101111110101111111111110111111111110011111111111011111111111111111101110111011111101110111011111111010111111111110111111011111111011111111101111111111111110101001111111111111011111011111111111111111101111111101111011111111111111111011111111111111110110111111111111111011011101011101111111111111111111011111111111111111111111111111111111111111101111011111101011111111111111111011111111101111011111111111111111110101111111110111111111111101111111111111111111101011111111111111111111110110111111111111111111111111011111110111111111111111111111111111110111110111111111111111111111111111111111111111111101101101111111010101111010111111111111111111011101101111111110111011111111111111111111110111111111111111110111110111111111111111111111011111111111111111111111111111011111111111111111011111011111011111110111111101111111111111101110011111110111101011111001111101011111111111111111111101011111111110111111111101111111111111111111111011111110111111101011011111110111101101111110000111111111111110111111101111111111110111111111111111111111001111111110111011111111110111111111111111101111111111111111111111111111111111111111111111111111111111111101011111111111111111111111111111111111110111111111111111111111101111111111111111101110111111111111111111111111111111111101111111111101011111100111111111111111111111111111111111011111111111111111111111111111111101111111111110111111111111111101111011111111101111111110101111111111111111110111111111110111111111111111110111111111111111110111111111111101011111111111101111111111111111111110101111011011111111111111011011110111111110111111111110111111101111111011111111111111111011111111111111111001111101111111111111101111111010111111111111111111111111111111110011111111111011110111111011111111100111111110111111111111101111111111101101111111101111111110110111111101111111111111111111101101101011111011111111111110111111111111110111111101101111011111111111111111011111111110111101101111111100111111011111111011111111101111011111101111011111111110111101111111111111101110110101111111111111111111111111111101111011111111111111100111111111111101111111111111111111011111111111111010111111111101111111101111111111101111111111111111111111111111011011111111111110011111011011111111111111111111101111111111111111111101111111001110101111111111101111101011111111101110111111111111111110011111011101111111111101111101111111111111111111111111111101111111111111111111111110111001111111111111011111111111011111111011111111111110111110111111111111111111110010111111111111111111001111111111111111111111111111111101111111111111001111101111111111111111101101111101011111111011111111101111111011111111111111110111101011111101011111110101111111111111111111111111011111111111111111110111111111111011111110111111111111111111111111111111111110111111111101111111010110111111111111111111111111111111011101111111111111101111111111110011101101111111111111111110011111111111111110011111111110111110011110111101111110111110111111111111111111111111111011111111111110110111111011011111111111111111110111111111110111111111110111111111111110111111111101111111011111111111111111011111111111111111111101111110111111011111101111111110111111100111111011111111111111111111111111111110111111111111101111111111101111111111111111111110111111111111100111101111111111111111111111111111111111111011111110111111111111110111111011011111111111111111111011111111111011111111111011111111111111010111111111110111111110111111111011111111111111111111111011111000111011111110101111111111111111111111111111111111111111111111011101111001111111111111111111111010110101111101111111011110111111111110111101011111111101111111111111011111111111111101011111111110111111111101101011111111111111111011111011101101111111111111111111011111111101111101110111111011111011011111111111111111111101111011111111111111111010111111111111101111111110011111111111111111111111111111110111111111111001011111110111101101111011101111111111101111111111111100111111111111111111011101111111111110111111111101111111111110111111001101111111111001110111111111111011111111111111111111111111111101110111110111111111111011101111101111111111111111111111111111111110111111101111011111111111111111111111111111110111111111111111101111110110110111111111111111111111111111101111110111111111111111111111110011011111111101111111111111111111111111111111101111111110111111110011111110111110111111111111111111111111111011111111111111111111111111111111111111111111101111101011111111111111111111111111111111010111111111011111111011111111111110111111111111111111101111101111111111111111111011111011110011111011111111111011101110111111111101111110111011111111111111111111111111111111011111111111111111111111101101111111111111011100111111111011001101111111110110111111111111111111111111111011111110011111011111111101111101110011111111011111111111011111111111111110110111111111111111111110111111111111111111011001110111111110111111110111111111111111111111011111101111011111111111111111101101111111111111111111111111111111111111110111111111111111111111111111111011001111111111111001111111111111111111111111111111111101111101111111101111110111011111111111111110111111111111111011111011111111111111101010111111101111111011011111111101101111111101011111111111111111111111111001111111111111111111111101100111111111111111010111111011111111101111111111111111111111111111110110111111111011101111111111111110111101111111111111011101111111111111111000111111111111010111111100111111111111111111111111111111111111101111111111100111110110011111110011111111111011011111111111111111111011111011111111111011111101111111111111011110011111111111111011111111111111111111111111111111111111111101111111111011111111011111101111111111100111111111111100111110111111111011111101111111111111111111111111111111111111011011111111011111111111111111111111111111101111111111110111111111111111111111001111111111111111111101110111101111001111110111111111111111111111011111111110110111110111111111101101111111101111111011101111111111111110111111011111011111011110111000111111111111111111111111111110011111111111111111101111111110011011110011111101111111111111111111111011101111111011111111111111111101111111111111110011110110111111111111111111111111111111111101111111101111111010111011111111111011111111011111111111111111111110111110110111011111011111101111111111011111111111110101111011001111111111101111111111101111111111111111111111110111111111011111110110111111111101101110111101101111111101111111111111111101111111110011111101111111111111111110101111111011111101111111101111111111110111111111111111110101111001111111111111111111111101111011111111111100111110101101111111111111011111111011111101111101101111111111111111100101110111111111101111111111111111111111111111111111111111011111111111111111111111101111101101111111011110011110110111111111101110100111111111111111111111111111011011101110101111110111111011111111111111111111110111111111101111011111111111111111101111101101111111111111111111011111110101111101111111111101110111111111111111111111111111111011111111111011111111111111111111111111111111111101101111111111111101111111111111111111111111111111111111001111011111111101110011111111111110111010011111111111111111011111101011111111111111111111011111110111111011111101111111111111111111111111011110111111111110111111011111111111011111111111111111111111101111101010111111111111111111011111101001101101111111111011111111101101111111010111110111111111111111111111110011011111111111111111111111111111111111111111111111101111111111111111101111111111111110111111111111111111111111110111111111111111110111111111111111111110111111111111111111111111111101111111111111101101101111111111111111111111111111111111111111111110111011111101111111011111110111111111111111011110111111011111111111011111111111111101111111011011101111111111011111111101111111111011010111111111111111111111111111011111101111111111111111111101111111111111011111101111111111111111111111111111111111111110111101111110111111111111111111111111111111111111101111111111111111111101111111011101101111111111011111111111111111111111111111011111111101111111111111111111111111111111111010111110111111011001111111111111001111101111010111101110101101111111111111111111111111111110111010111111011111110111101111110110111111111111111111011111111111110110111111111101011111111111111111111011111111101011011111111111111111111111111111111111110111111111111110101111111111111111111111110110111111111111111111111111011111111101111111111111101111110010101111111111111111011111111111111110111110111111111111111111111111111111011101111111111111111011110111111001111111110111111111111111011111101111101101011111111110111111111111111111101101101111111111111110111111111011101111111111111111110111111111111101111111111111111111111111111111111111111111111111111111111101110111111111111111111011111111011111111111101111111111111111111111111111111110111110011111011110111110011111111111011111110101101100111110111010101011011111111110111111101111111111111101011111110111111111111111111111111111111010111111011111111100111111111011111111111111111111111111111111101111111111101111111111111111111111111011111111111001111101111111110011111111111111111100110111111111111111111101111111111111111111111111111111101111111111110111111101011101111111111101111111011111111011111111011111111111101101111111111101111111111111111011110111111111111111111011111111110111111011111110111011111101110111111101111111111110111111111110111111111010111111111101111111110111111101111111111111111101110011111111101111101111101110111111111111111111111111110111111111111111111101111111111111111101111111111111111111111111111111111101111111111111111101101111011111111111111111111111111111111111101011011011110110110011111111111101110111111111111101001101111111111011111111111111011111111110010111111111111111101111001110111111111011111110101111111111011111011111111110101111111111111111111101001111110110111111111101111111101111111111111011111111111111111111111111111111111111101111111111111111111011101111111111111011111111111111010111111111110101111111000111111011111011110110111111111111111110111101110111111101110111111111111101111111111111110110111111111111111111111111111111111111111110110100010111111110011111011111110111111111111101111111111111111111110110111111101101110111110111110111011111011111111111111111111011110101111110111101111111111111011111111111101111111111111111111111011101011111111110111111011111111111111111111111111101111111111011111101110111111111111011111111111111111111111111101001111111110111111111111111110111111111011101101011111111111111011111111111111111111111111111110111111111111111111111111111111111011111010111110111101101110101111011111111111011111101111111101111110111011011111111111111111111110101101111111111111110111111111110111111111101111011111101111111111111111111111111111111111111011111111111101111101111111011111111111111111111111111111111101111111111111111111111010011111111111101001111111111111111011111001011111111111111111111111111111101111011011011110110111111110111111110111111101110111111111111111011101111111111111010111111111101111111111111111111101011111111111101111101111111100111111111110011111111111111110111111101111011111111111111101111111111111111111111111111101100111111111111111101110110111111111110111111111111110111111111011111111110110111110011111111111111101111110111111111101111011111111111111111111111111111111111110100111111111111111111111111111111111101111011110111100110111111111110111111110011111111101111111110101111111101111111111111111110111111111111111111110111111110111111110111111111111111111011111111111111111111111111111011111110111111011101111111111111111101110111111111111111111111111111101111101111111111111111111101101111111111111111011111111111111101110101101111111011111111111101111110101111110111111111111111110111111111011111111111111111111111100111111111111111111011110111111011111111111001111111101111111011101111111111101111110111111111111111111101111111111111111111111111111111111111110111111111111111111111011111111111111001001111110111111111111111111111110101111111111110111111111111101111010111111111111111111111111111111111011111101111111111111111110111111111111111111011111100011111111111111111111111110111111111011111111111110011111111111111011111111111111111110101111111111111110011111111110111111111010101111011111111000111111111111111101101110111101111011011111110111111111111111111111111111111111110111111011111111111111111111111101111111111111111101111111111111111111111111111111111111111101111111101111111111111111111111011111111111100111111111011111011111111111111101111111111111101111111111111111110110111111111111111111111110101111111111111111111011101111111111011111111011111111101011110111111111101111111111101111111110111110001101111111111111111111111111111111111111111111111111111011111111111101111111111111111111111111111111111011111111111111111011111111101111111111111111111111111111111111111110111101111111101111011111101111111111010011100111111111111011111110111111101101111101111111111111011111111111101101111111111111111111111111111110111111111111111111111011111111111111101111111111111111101111110111111111111111111111110111111111111111110111111111111101111110111111111111111111111111111111111111111111111111111110111101111010111101011111110111101111111001111111111101111111111111111111111101111110111111111111011111111111101111111111111111011101100011111101111110111111011101111111011111111111111101111111110101111101111011111111101111101111110011110111111111111011110111111111111011111111111111111111111111011111111111101111111111110111111101111111111011111011101110011011111110111011111111111111111110111101111100111110111111111111110111101111110110111101111101111110111101111111111111111111111010100101101111101111011111111111111111011111111111110011111111111111111111111111111111111111011010010111111111111111111111111111111111111101011110111111011111111111111111111111110111110111110011111011111111111111111011111001111110101111111011111111110111111111111011111111111111111101111011111101011111111111011100111111000111111101111111011111111011011110111110110111111111110100111111111111111111101011111110111111101100111111111111111111111111111111111011111111111111100101111111111111111111110111111101101111110111111111111111111111111110111111111111111101101001111101111111111111011111111101110111111111111111111111111011011101111111111111110111101111111111110111101111110111111101110100111110111111101101111111111111101101111111111111110111111110111111011101111111111111110111111111011111110111111111111111111111111111110110010101111111001111111111111110111101111111011111101111111111111111111111111110110100111101111111111111111011111111101111111111111111111100111111111010111111111011111111110111111110111110110111001111111111111111111111111111110111111110111110111111011111111111111111111111101111111111110111110111111111011111111111111111111111111110111111111111111111111111111111111011101111011011011111011111111111111011101111111111111110111011111110111011111111111111111011111111111111111111101111111111111110111111110111111111111111111111011111011101101111111101111111111110111111111011111101011111111111111111111110111111110110111101101111111111111110111111111111111111111011011110111111110101111111111110011111111111111111111111111111111111110111111111111111111111101111111111111111111111110111111111111111001101111111111111111011111101111110111111011111111101111111011111101111111010111111111111111111111111111111111001111111111111111111001111111101111111011111111110011101011010110111111011111111111111101101000110111111111101110111111111111111111110100101111111011011111111011101111110111111111111111111101110111111111011101111011110110110111111110100110111111111100111111111111111111101111111111111111011011111111101110011110011111110111101111111111110111110011111111110111111110110111101010011111111101111101111111110110101111111111111011111111111111111111101111111111111111111111111111111111111111111011111111111111111111111111111111011010111111111111111111110111111111111100111111111111011111011110111111111111111101111011111110111101011111111010011111111111111101111111111011111111101110111111111111101111111111101110110111111111111111111111110111111111111110111110101111111111111110111111110111111110111111111111111110111111101111101111111111111101111110011111111110111111111101111111011010111101111110111111111111111111111111111111111101111111110111111111111111111111111111111111111101111111101111101111011111101111101111111001111101111110111111111111111110111111111101111111101110111111111111110111111001111111111101111110011110101111111111111111111111110110110111111111111111111111111110110110111111111101110111111111111110111111111111111111111111111111111111101111111110001111111110111111111111111111111111101111111111111111111111110111110111111111111111111111011111111111111111111111111111111111110111111111110111111111101111010101111111111111111111111111111111110110111111111101111111111101111111111111111011111111111111111111011111101111101111101111011111111111111111100110111011111111111101011110111111111111111111111111111111111111111110111110110101111111111111111001111110111111110111111011111111111111111011101111011101011011111111111111011111110111110110101111100111111111101111111111111111101111110111111111111111111011111111111111110111111111110011110111101101111111101011011111100111111111111111001100010111110111111111111111111111101111011111011111011111101111111111111111111111111111101111111111111011110111001110111111111101111111111111111111111011111011111111111111111111111111111111111101111111111111111111111111111111111101111111111111111111011111111111111111001011111011111111101111111111110111111111111111110111111111111111111111111111111111111111111111101110111111111111101111111111101111111111111001111111111111111111111111111111110111111111111011111111111111101111111111111111111111111111111111111111011111111011011111111011111101111111111011111111111111100110111111101111111110111111111011111111111111111110111111111101111111111111111111110101111111101111111100111111111111111111111011111101111011111111111101111111111011111110011111101110111111111011111111111111111111111111111111111011100111011111111110111101111110111101111111111111110111011111110111111111111111111101111111111011011111111011011111101111111111111111111011111111101111111111111110111111011111101111110111111111111110111111110110101111111011111111101111011110111111110111111111011011111111111111111101111111111110111111111110011111111111111111111111111111111110111111101111111111111101111101110111111111111110111111011111111111111111111111011111111111011111111011111110111111110111111110101111111111111111111111111111111111010111111111111111101111111111101111101111011111111111111111101110111111111101111110111111111101011110011111111111111111101110111111111111101111001111110111111101111011111111111111111111111111111111111111111111011111110110011111111111111110111111111111110111111110111111111011111111111111111111111111111111001111111111111110111010111011111111011111111110111111111111111101111011110111111110111111101111011111111111111111111111111111111110111111111111111110111111111111011011111111111111111111111111101111111111111111111011111111110111111111011111011011111011111101100111111001111111111111111111011111111111110111111111111101111111111111111111111111111101111110111011111111111111111111111111110111111011111111011111111111111111111011011111011111111111111110111111111111111111111111001111110111111111111111111111011111111110111110011111111110111111111111111111111111111011111111101111011111111111111111111111111111111111111111011111101111111111111111111110111111101101111101111101111111111011111011111111111110011111100111111111101101111101111101111111110111111111101111110111101111110111111111111110111010010111111111011111111111111111011111111111101111111111111111111111111111111111111111111111111111111111111011101111111011111110111111111111111111111111111011110111111111110111111111101111111111011111111111111111111111111111110111111111101111111111111011111111111111111111111111111111111111110111111111111111111011011111111111111111111111111101110101111111111111111111111110111111110111111111111111111111011111111101111111111101111111011011101111111111111111111111110111111111110111111111111100111111111111111111111101111111101111111111101101111011111111111111111111111111111111111111111101111011100101111111110111111111110111111111111111101111110111111111110101110111001111011111111111111111111111001111111111111111111111111101111111110111011111111111011111111111101111111111111011111111111111111101111111110111111111111110111111110011111011110111111111101111111111111111111111111111011011111111110011011111111111111101111111101111111011111111110111110111111101111111111101111111111111111011110010111111111111100111111011101111111111111111111011111111111111111111111111110101111111011011111111111111111111111111111111111111111011010111101010111111111111110111111111111011101111011111111011111011111100111101111110110111111111111111111111111111011111111111111011110111011110111111111111101111111111101111111111111011110111111111111111011111111111110111111111111111111111110111111111111111111101111011111111111111111111111111011111011111111111111111101111111111111011111101001111111111111111011111111111101111111111111101111111111111111001111111111111111101111101111111111101111011111111111111111111111101111111111111101111111111011101111111111111111111111111111111111101110111110011111101001111111111111111111111101111011111111001111111101111011101111101111111111111111101111111111111011011111101011111111111111101111111111111111111111111101110011111111010110011111111111111111111111111111101111111101111111011111111111111111111111111110111101111111101111111111111111111111111101111111111101101111101111001011111111111111111110111011111111011110111111011111101111011111010111111111111111001011111101111111111111111111110111111101111111101111111111111011111110111101111110111111011111111111111111111111111011011101111111111111111001111111111111110111111111111111111111101111010111111111111111110111111111101110111111111111100111110011111111111011111111101111101111111111111111111111111111111111111111101011111111111111011111111111111011011011111011111111111111111111111110111111111111111010111111111110111111111111111011111110111111111111111111111111111011011111111111111011111111101111111111111101101111111111111111101111110111110111111101111101101111110011111111111011111110101111111101111111111111110111111111111011111111111111111111110111111011111111111111101110111101111111011111111111111011111111101111111111110111101111111111111110111111101111101011111111111111111111111111101110110111111111111111011111111111111111111111111111111110011111111111101111111111111111111101111111111111111111111111111111111111101011111111110111111111111101111111101111111111111111101001110101111111101111111111100111101111111011111100010110111111111111011111011111111111111111110010011111100100111111111111111111111011111111111111111101111111111111111111111111111111111110111010010010111111111011111111111111111110111111110111111101111111011111101011101101110111111111111111101111111110110111101111111111111111111100111101111111111111101111010100111111111011111111101111111111110111111010111111111111111111111111111111011011101111111011111111111111111111111111111111111111111111111110011111111111110111111111111111111111110111111111101111111111111111111111001110110111101110101111110111101111111111111001111111101111111111111111100111111111111011110111111111110111111111111111111111111111111111111111111111101110101111101111111111111111111111110111111111101111111101111111101111101101101111111111110100111101111111100111111101101111111111111111111010111111111111111111111111111110101111110001101011011111111110110111111111111101111111111111111111111111101111111111101111111111111111111111111111011110101011011111111111111111011111101111111111111011111111111111111111111111111011011111111111111111011111111111011111111111111111111111111111111111011111111101011111111111111111111111100111101011111111111110111111101101001111110011111111110111110111001111111111111111111110111111101111111111111111111111011111111010111111111111111011111111111111111111111110111101111101111110101101101001111111111101111111101011101111011011111110111111111111111111111111101111100111111111111110111111111111111111101111111011111111111111111111111111111111111111111111111111110111111010111111111111111111011111111110111111111111111111111111110111111101111111101111111111111111111111111111111111111101111111111111110111111111110111110111111111111111110111011111111011111111111111111111011011111111111111111111111111111111111101111101100101111111011111111111101111111111111111111111111111111111111111111110111111111111111010111111111011110111111111111111111111111111111111111111111111110111111111111111111111110111111011111111110111110110101111111100111111111111111101111101111111111110011111111111111111111111111111111101111111111111111110111111111111111011111111111111111111101111111111111111111111111011111111110111111111111111111111111111111111111011111111011110101111111110100111110111111111111111111111001111111111111111101101111111111001110111111111110011111011111111111111111111111111111111111001110111111111111111111111111111111111111111111111101111011111011111111111111101111111111111111101111111011011101110111111101111111111111111111101111111111110101111111101111111111111011111111111110111101111111111110111111111110001111111111011111101111101111111011111111111111111111111111111111111111111111111111111111111111011111111100111111011111111010111111101111111111101011011111110111111111111111111111111110110111110111101101111111111110110111111110111111111111110111111101111111111111011111011111101111111011111111101011011111111110011111111111011111111111001111111111111111110101111011111111111111111111111110111110111110111111111111111111111111111110111110011110101111101111101111111111111111111111101111111111101111111101010111111111111111010111111011111111011111110111101111110111111111011111110111111111111111111111110111101111111111111011111111110111101111111101111111011111011111101111011111110101111111101110111111111110001111111101111011110111001111011111101011111111111101110111111111111111111111111110111111111100111111101111111111111111111110111111111010111111111111111111111110011101111101111111101111111111111111111111101101111111111011111101111111111011101111111011111111101111111111111011111111111111111111101111111111111110111111111111111101111111111110111110110011001111111111111111111011111011111111111111111111111101111001111011111111111111111110111111111111111111111111111011111111111111111111111111111111111111111111101101111101101111111111010111101111111111111011111111011111101011111011101110001101111111111111111111111110111111111111111011110111111111111110111011110111101111111111110111111111111111111111111100111111111111111111111111111101101111111111111111111111111001111111111111111100111111111111111111111111111101111111111111111111111111111011111101111111111011111011111111111111001111111110110111101111111110111111111101111110111111111101111100110111111111011111111111010111110010111111111111111111111111101111111111101111111111111111111111110111111111111111111111111111111111111111111111111111111111110101111111111111111111111111111111101111111110111111101111111111111111110111101111111111110111111001111111111111111011101101111111111111111111010011111101111101111111111111111111011111111111011111111111111111111110111101111111111111011111111111111100111111111111111111110111111111011111111111110111110101111111111111011111011101111111101111111111111101111111111111101111110111111111111101011111111101111111101111101111111111111111111111101111111111111101111111111101111111111111011111111111111111111111111111111101111110111111111111011110111111111011111011111111111010111111111111111101111111111111111110111111111111111101011111101111111111111111111111111111111111111011111101111101111111110111011111011111111111110101011111111111101111011111111011111011101011011111110101111111011111111111111110110111110111111111111101111111111111111111111111111111011110111111111111101111111101011011111111111111111111111111111111011111111001111111111111111101101001111111111111111111111110011110111111111110111110110110101111111111111111111111111110111110111101111111111111111111111111011111111101111111111110111110111111110111111111110111111111111111111111110111111101111111011111110101111101111110111111111111111111111011111111111110111111111111101111111111111111111111111011111111111111111111111111111111111111101111101111111101111011111111101001111111111111111101111111111001111111111110111111111111111101111111101111110111111111111111111011111101111111111101111111111111111111111101011111111110111110111111110111110101111111111101111111111111111111111111111111111111111111111011111111111111111110111110111111111111111001111111110111111111111111111101111111111111110111111011111111110111111111111111111101101110111111101111111111111111111111110111100111111111111011011111011101111011011111111111111111101110101111111111110111101111111100111111011111111111111111111011011111111111111111111110111011111011110111111111111011111111111111111111111111111111111111111111111111111111111111111110111111110111111111111111011111110111101111101111101011011111111111111111011110111101111111101101011111111111111111101011111111111111111101111111111110011111111111111101011111111111111101111111111111111111111111111111111111111111111111111111111111111111111110011101111111110101111111111111111111111111111110111111111011111111111111101111111111111111110011111001111111111111111110111111110111011101110111111110111101111111111111111111101111111111111011111011011111111101111110111111110111110111111111111111110111111111111111111111111111111111111111011011111111110111011111011111101111111111111111011111111111111111111101110111111111011111110111111110111111110011011111110111111111111111111111101111110111010110111111111111111111111111111111111111111111111111011100101111111111110100111111111111110111111111111101111111010111111111111111111111101101111101111111111110111111111110111111111111101111111111111011101111111110011111111111111111111110101111111100001111111111111111111111111111111111111111111111111111110111111010111110111111111111111110110111111111111111111111111111111111111111111111111110111011111111111111111111110111111111111111111111011111110111110111111101111111111111111111101111111111100110111111110011111101111011011101111011111110101111111111111001010011111110101111111111001110110111111111111111111111111110111110101011111111111111111101111011111110111101111110111111011111101111111111010111111111111110111111011111111111111111111101111111111011101111111111111111111111111001110111111111111111111111111110111111111111111111111111111111111111111111110111111111011011111011110111111011111111111011111111111111111110111111111011111111111111101111111111111111001111111111101111111111111111111111111111111111011111110011111111111110111011111111110011111111111111111011101111111111111100011111111111101101111111111111111111110110111111111101111111111111111110111111101111111111101110111111011111111111111111111111111111101111111111111111111111110111111001111111111111111111111111111111110111111011111111111011111111011110111110111011111111011111111111111111111111111011111111111111101111111011111111111111100111110111111111001101111001111101111110111111111111111111111111111111111110111111111111111111111101111111111111111111111111111110111111011101111111111111111011010110111110111111101111111101101111101111111101101111110111111011111111111111111111111111110111101111111101111111110111111011111111111111111111001111111001111111111111111111111111111101111111111001111111011111111111011111111111111111111111111111111111111111111111111111111111111101010110111111111011111111111111111011011111101111111111111111111111010111111111111111111111111111111101111001011101101111111111111111111111111110101110111110111111101101011011111011111110111111111111111111111111011111111111111111101111111111110111011111111111111111111111111011111111111111111111111111111111111111111111111111111111111111111111111111111110111111110111111111110111111111111111110111111101111111110011111111111111111111111111011111111111111111011011111111011111110011111101101111111111111111111111111111111111111111111111111111111111011111011111111010011111111110111111111111111111111000111111011010111111111111111111111111110101110111111101111111111111111111111111111011110111101011111111111111011111111111011101101111111101100111011010111111111111111110111111111111111111111111111101100111101011111110111111111111111101111110111111111111011101011111111111111011111111111111111111001111111111111111111111111111111111111110111111111111111111111011011111111111111111101011111111111101111110111111111111111111110101111111111111111111111111111111111111111111111111111111111110111111111110011111111111111111101011111111111111111111111111111010111111111111111110001101111111101111111111111111111111111011101101111111011111111111111011111111111101011010111111101111111110111110111111111111111011111111111111101111111110001111101111011101111111111110111111011111111111110111111111111111111111111110111111101101111100111111110111110011101111111101011111111111100111111111101111111111101011111111111111111111101101111110111111111111111111001001111111101111111111111111111111111101111111110111111111111110110111111111011111111111111111111111011111111101111111111111011111111011111110111111111111111111111111111111101011110111111110110110111101111111111111111011111111111101110111111111111111010111111111111111111111111101111111111111111110101111111111110110111111111111111111011111111111111111111111011111111110111111101101111110110110111111011011111111101111110111111111111111111111111111111111110111111101111111111010111111111111110011111111111111111111111110110111111111110010111110111111111111111111011111111111101110111111111111111111101111111111111111111111111111011110001111111111111100110101111110111111111111111111111111111111111111110111011111111111111111111111110011111101111111111111111111110111111111111111111011111111101111011111101111111111111111111111111111011111101111111111111011111111111011111011011111111111101111111101111011111111111110111111111111111111111111111111111111111111111111111101110111111110101111111011111110111111111111111011110101010111101101111011011111101101111111111111111011011111111101111111101111111111111101111101110111111111111110111101111111100111001111111111111111111111011011111111110111101111111110111111111110111111111111111111111111111101111111110111101010111111111001111111111011111111111111111111111111111111111011111111111101101111111111011011111111111111111111110111111111111101110111111111111111111111101011111111100011111101111101111111111111101111111111111111111111111111111111111111101111110111111111111101111111110111110111111111010111111111111111111111111111011110111111010111111011111111101111111111111111111111111111111011111110111111111111111111111101111101111111101111111111111110111010110111111001111110111011111111011011111011111111111110111110111111111111111111111111111111011101111111101110111111111111110011111111100110110101111111111110110111101111111111111111101010111111011111111111111111101111111111111111111111111111111111011011111111111111111111111111111111111111111111101111001101011111111111110111111110100111111101111111101111111101101111110111111111111111111011111111111101011111111111110111011111100111110111111111010101111111111111101111111111111111111111111111111111111111101111111111011111010101111111111111111101111111011011111111111111111111111111111111111111111111111111011111111111111111101111111111011111011111011111101110111111011111111111111111111011111111111101111110111111111111110111101101110101111111111111111111111111110111111111111111111111100011111111111011110111111010111111101111111111111010111101111111111101111101111101101111111111101111111111111111111111111110111111111001111111011111111111111111011011111110111111111111101111111101011111111111111111111111101110111111011111111111111101101111111111111111111101011111111110101111111110111111101111111111111111111111011111100101101001111111110111111111111110111111111111111111111101101111011111111111111011111111111111111111111110111101111111111111011111111111111111101101111111111111111111111101101101111111111111111111011111111101111101111111111111111111101111111111111111111110111111101111111111111111111111110101111111011111111111011111111111111111111111101111111111111111111111111011111110111111101111111111111111111111101101111111111111111110111111111110111011111111111110011111111111111111111111111011111011101011111111111101111111111111111101111110111110101111111111011111111111111111111111111111010111111111111011111011101111111111111111011100111110111110111111111111111111111011111111011111110110111111111110111110111110111101101111111111111110111111111111111111010111111111111111111111111111101110111011111111101101011111110111111111111111010111111111111111110111111011111001111111011100111111111111110111011111111111111010011101111011111011111111011011111111111111111111111111010101111111111111111111111111111101111111011111111111111101111111111101110111111111111011111111111011111011111110111111111111111111101111110001011111111101111110111101111111111101110100111111111111111111111111111111111111111110111111101011111111111111111011111111111111111111000111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111011111111111111111111111011110111111111011111111110101111111111101101111111111110110011110111111111111111111110111111111011111111111111011111111111011111111011111101111111111111001111111110111111111010011110101111111111111011110111111111110111101111111101111110111111110110111111111110111101111111111111111111111111111110111111111111111111111010111111111111110111111111111111111011111110111111111111110111111111111111111110101111111111111111110011101011111111111011111111111101101110111111111111111111111111111111111111111111110111110111101111111111111011111111111111011111111111111111101110011111101111110111111111111111111111101111011111111111001011101111111111111111111101111111111111011101110111111111111111111111111110111111111101111111111111111111111111111111111111101111111111111111111111111111011111111101111101111101111111111111111111111111111011101111011111111111111111111111111111110111101111111111111111111101110111111111011110111110011111101111011011111111011111111111101111011111111111111111110111110111111111111111111111111011111110111101011111111111111100111111111101111111110101011111011001111101111111111111111111011111111111111111111111111111111111111111111111111101101111111101110111110111111111111111110110111111011111111111111111111111111011111111011111101111111111111111101101001111110111111111111110111111111111111111110111111111111111110111111111111111111111101111111111111111111111111111111110111101011111101111011111111111110111011111111111111111111101111111101111111111111111011111111111111111111111111101111101001100011110111111011111011110101111101101111111110111111111011111111110111111111111101111111111111111111111111011111111111111111111000111101111111111010111111111111111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111111111100111111111111011111101111111111011111111111110111010111101111111111111111111111111110111101111111111111101111111101111111111111111111111111101110111111111111111111011111111111111111011111111111101011111111111111101111111111101010011111111111101101101111100111111111111111111011111110111111111111011111111111111111010111110101111111110110111111110111111111011111111110101111101101111101111111111111001111110111111011111110111111111111011111101111111111111111110110111111111111111111111110111111111111011011111101111011111111111111110111111110111111111111101111111111111101111111101111111111111111111111101111111111111011111111110110110111101111111111111111111111111110111111111111111110111111111111111111011101111111101111111111111111001101111111110111110111111111111111111111111111111111111111110111111011111111111111110110001111111111111111111111111011111111111111111111101111111101111101111111111111111111110111111111111111111111111110111111111011111110110111111011111101111110011111111111111111111111011010011111111011111111111011011111111011111111111111111011111011111111101111110111101111101101111111011111111111111110111110111111111111111111111111111111111111101011111110111111110110011111111111111011010111111111111111111111111110111111111111111111111111111111111111111111111011111111111101111111111110111111111101111111111110111111111011111101111111101111111110101110111111100101111111111111111111111011111111100110111111111111111111110101110111111111111111111111101111101110111111111111111111111110111111011101111111111111111111111011111111111101111111101110111111111111110111111011111111110111100111111111111111111111111101111111111101111111111111011111111110011011111111110111111111111111111111111111111111111111011011111111111110111011111111111111111111111111111111111101101111111110111111111111111110111111011111111111001111011111111111111111111111111111111111111110111011111111111111111101101101111111111111111111111111111111101111111111101111101111100101111110101111111111101111111011111111111111111111111111111111111111111110111111011111110111111111111110111111110011111111111111111111011111111011011111101111111111111111111111111111111111111111111111110111111011111111011111101111111110011111111111101110111111111111101111001111111111111111111110111001111111101101111011111111111101111110111111111110011111111111101111111101111111111011111011011111111111111111110101111111110111111111011111011011011111111111111110111111111111111100111111010111111011111111111111111111110111111111011010110101110111011111111101111111111111111101110111111111111111111111101111111111111111111111111111111110111101111111111111111111111111111111111010111111011111111010111101111111111111111111111111011011110111111111111011111111110111111111111110111111111111111111110100111111111111111011111011111111010111110111111111111101111101111111111101111111001111111111111111101111111111111110111111001111110011010111111111111111111111111111111011111111010111111111101101101011111011111101111111111111110111111111111001011111111111111111111101101111111111111111111111111111101111111111110111111111111011111111010111111111111111111111111111111111111110111111110111111111111011111001111111111101111111011111111011111010101111111111111111111101111011101011110011101111111111111101111110111110111111111111111110111111111011111110011111101011111111111111011111111111011111111111101111111111111011111111101111110110111111011111111011111111111111111011011110110111111111111111111110111111111111110111111111111111101111111111011111111111111101111010111111111111011101111111111111111111111111111001011111111101011110111111111111111111101111111111110111111111111111111111111110111111011111111111111101100111111101101110011110110110111111111111111111011111111111111101111101111111111111111111011111111111111011111111111111101110111101111011111111111111111111111111111111111111111111111111111111110111111111111111111111100111011110111111111111111011110111111111111111111111111111111111111101010111111111111111111111101111111111111111011110111111111011111111111011111111111111111111111111011011111111111111111111111111111011111111111111110111111111111110111111011111011111111110110101111111111101111111111111011111111111111111111111111110111111111111111111111111111010101111111111111111010111011110111011011111010111111111111111111111111111110111011111110111111111001111111111101111111101111111111110111111101101011111111111111110111111101101111110110111111111111111111111111111111111101111101111001111111101111111111111010111101111111111111111010111111111111111111111110111111111110110110111111111110111111111111111111111111111110101011110101111101111110111111011111011111111111111010111111010101111110111110111100111111111011111111111111111111111110111111111111110110111111100111111111111111111111101111001111011111011111111111111110111111111101111111111111111111111011111110011111111110111111111111011010111110111111111011111111111111111110111111111111011111001111111111111111111111011111101110101111111111110111011111011111111011111111111111111111111111111111011111111011111111110110110110101111101111111111110111111111111101111110111111111111111111111111111000111110111111111111101011111111111111111110111111111111111110111111111110111111111111111111111110011111111100111111111111101110111111111101111111111111101111101111111111101111101111111111011111111111111111111110111111111111111111111011001101111111111101001111111111111111101111111001111101111011111101111011011111111111110111111111111011111111111111110110111111111111111111111111101111101111111111111111111111110111111111011111111111110111111011111111110111111110111111111111111111111111111111101111111111111110111111111011111110111011111111111111111111111110111111111111111011110111111111110111111011111101011111101011101111111101111111111111101111011111011110111110111110111111011101111111111111111111011111111111111111110101111111111111111111111111111111111011111101111111110111101110111110111111111111101110110111111011011011111111011011110111111011111011111111111111111111111111111111111111110111111011111111111111111111110111111111111111111011110011111111011111111111111111111111011011101110111111111111111110110111111111111111111111110011111011111110110111111001010111111111111111110110111111111111111111111101110111111111110111101111111011111101101111111101111110111011111111111111111110111011111111111011110111111111111111111111111111111111111111111100111111011111111101111111111111111111111111011111111111111111111111111111111101101111111111111111111111111111111011110110111111111110111111111111011110111111111101101111111111111101101111101111111011011101111111111111111111111111110111111111111111111111111111111111111111111111111111111111111111110111010011111111110011111110111101111111111011111111011111111101101110101110111111111111111111110111111111111111011111111111111111110111101111110110111111111111111111111001101111111111101110111111111101111111111111111111111110101011111111111111111111111111110101111111111111110111111111110101111111111111001111111100111111111111111111110110011111111111111111110110100111111101110111111111111111111110111111111111111111111111111111011111011111111111111111111011110111111111011111111111111111111111111111111110111111111011111111001111110111111110110111111111111111111111111111111111011111111011111111111001111111101111111110111111010111011011110011111101111111111111111111011001111101111110101111111111111111111011100111111111111111111111111110110011101101111111111111011111111111011111011111111111111111111011111111011011111111111111111011111111101111111111011111111111111111111111111111110111011111110111111111110011111111111111111101111111111111101111110111111111111101111011101111101011111110111011011111110111011011101111111011111110111111111111111111111101111111111111111111011111111011111111111111111111111111101111111011111111011111111101011111011100111011111111111101111111011011111111111111111010011111101111111101110111011111101111111111110101011111111111111111111111111111111111111010111111111111111110110111111111111111111111111111111111111101001111111011111111111111111111011111111111111111011111111111111111110111111111101110111111110111101111111011111111011110111111111111110111111111111111111011111111111111111110111011111111011011101111011111111111011111110111111111010111111111111111110111111111111110101111111111111111011111111111111111011111111111111110011111111110111111111111110111111111110111111011111110011101111111111100111111111110111111111100110111101011110111111111111101010110111111111111111101011001111011111110111111111111111110111111111111111111101111111111111111111111101111111111111111111111111111101111111101111111111111101111111111111111111111111111011111111111111111111111011111110110111101111111111111111101111111110111111010101111111111111111011111111111111111011110110101011101111111111111111011111111111111010001111111111111111111111111100110111111101110111111111111111111011110111010111111111111111111111111111111011111111101011111110111111011111111011101111111111111011111111111111011111111111111111111111101111101101111010101111111111111111110111111111111111110111111111101011111111111101011011101111111110011111110111101010111111111111111111111110111111111111111011101111101111111111111111111011111110111111111111011111111111111111111111111111111111111111111111100101111111111111111111011111010101111101111111111111111111110111101111111110111111111101011111111111111111111111011100111111111010111111111111111101111111111111111101101111111111111111111111111111011111110011111001011100110111111111101110110111111111111111111111111110111111111111111111111110111111111111110111111111111111110111110111111111111111111101111111111110111110001111111111111111110111111111111111110111111111111111101101111111111111111111110111111111101111111111011111111111111101111011111111110111111111111111110111111111111110111001111111111111111111111111111111111110111111111111111111011111111101110111111110111111011111011111111111111111011111111101111101111111111111111001111111101110011111111111111111111110111101111111111011111011111111101101111011110111111111111111110111111111110111110111111101101111111111111011011111111010111111111111111111111111110101111111111111111111110110111111111011111111111011111111111111111111111111111111111011111111011111111110111111111101110111111111111111111111101111111111001111111101111111111111111111111101111101111111111110111111111010111101011111111111111111011111111011111111111110111110111111111111011111111111101111110111111111111111101111110011111111011110111101111011111111111111010111111111111111110101111111110011111111111111111110111111111111110111111111111111011110111101111110111111111111111111111111001101111111111111111111111101011111011111101111111111111101111111011111111111111111110111011111110111111111111011111111111101111111111101111111111111111111111111111111111111111111101111111000111111011111111111101111101111111110111111111110011111111111111111111111110111110110111111111111111111101111111111111111010111110011011111111110111111111111011111111111111111111011111101110100111110111111110111000111110111101111110111111111110101101111011111111111111111101110111111111111111101111110111111111101111010111110011111111111011111011111111111111101111111111110111110111111111111111111101111111101100111111111110111111111111111010111111111101111111111011111111111111111110111011111111111111111110111001011111111111111111111111111111111011111111111111111111111111101111111010001011111111111011111110111011111111111111111110111011111000010111101111111111111111100111011111011100111111111010111111010111111111111111111110101111111111111111110111110111111111101111111101111110101101111011110101111101111111111101111101111111001111010111111111111111011111111111111111111111111111011111111111011111111101111111101111111111111111011111101110111111111110101111111111101101110011111101111110111111111101111111110111111111111111111011011011011110111111111111011101010111101101101111111111111111111110111111010110010101011111111111101111011110111111111111111111011111111111011101101111111101111111111111011111111101111011111111011101111100111111110111111110111111110100111111111111111111111111101111110111111111111111111111111011111111110111111111111110111111111111111111111111111111111111110011111110111111011111111111111110111011011111111111101110111111011111011111111011111111111111011111111101111111111111011111011111111110101111110111111111111111111111110111101111111101001110011111110111110101111111111110111101111111111111111111111111111110111111101011111111111111111111111010011111111111111111100111111111111111111111111101111111110111011111111110001011111011110111111110111101111111111101101111110010111110111111111011111111110111011111111101110110011111111111101111111111111110111111100111110111111111111011100011010111111101111111111111110111111011111111101111111111111111111110110111110101111110111111110111101111111111011111111111110111111111110110111110111111110100111111111111111111101111111111110011111111111110010111111111111111111111111111110101111111101101110111111111110111011111111111111011111111010110111111011111101111111111111101111111011101111111111110111111111110111111111111111111011101111011111101111111111111111111101111101111111111111111111111111101101111011111111111111111011111110101111001111111111100111011001101111111111111110111111101111111111111111111011111111110101111111110110011111111111111111111111111111101001111111111101011111111111011111111111111111111111111111111111111111111111111111111111111111111011111110011111111111111111111111111111101011111111111101011111111111111110111111111111111110111111111110111011101011100111011111111111011111111111111011111111111110111111111111011111111111111111101110011111111111111111111011111111111111011111111111111111111111111101111101101111111111011111111111111111111111011111111111011011111111111111111111111111111111111111111111111111101110101111111111111101111111111111111111111010111111110011111101111111111111110111110111111111101011111111111101111101111011111111111111111111111011111111110111111111111111011111111111111010111111111111111011111111111111111111111110111001011111111111111011111111111011110111111011111110111111111111110111110011110111111111111110111111111111111011111111110110111111111111101011110111101011111111111111111111111111111110101111111111110011010111111110111011110111111111011111111111111111101111111110111111111111011111111110111111111111111111111011011111111111111111111111110011011111111111111111111011111111111110111111111101111011111111111111111111111111110111011111111111111101111111111111111111101111111111111111111111110111101111111110111111101011110011111111111111111111111111011111111111100111111111111111111111111010101111111111111101011111111101111111111111111101111111111111111111111111111111111101111111111111111111111111111111111110110111111111111010111111111111011111111111111111111111111100111111111111101111111111111111111111111111111111101111111111101011111111110111111111111111101111111111101111111011111111111111111101110111111111111101111111111111110111111111111111011111111111111111111111110111111011111111011111111111111111111111111111111111111111111111111111101111111111001111110111111110111111011111111101111011111111101000110111111110111111111111111111101111111111111111101111111011111111111111111111110101011111111110111100111111111111011111011111110101111111111111111111111100111101101111110111101111111111111111011111111111100111111101111111111111011111111111111111101111111111111111110101111111111111111111110111111011101111100111011111111111110111101111111111110111101111011111111101011111111111111101111111110111111110111101111111111111110111111111111111111110111111011111111101111111111101111111111111101111101111111111100111111111001111111110100111111110111111111111111110111111111011111111101111111110111111111011111110111111111111111111111111111011111111111111111111111111111111111110111011111111111111111011111111111111101011011110111011111111111111110111111011111111111111011111111111111111101010111101111111011111111111111111111111101111111111011111110111110111101111111111100110011111111111111111110111101111101111111110011101111111111101111111111111111011111111101111111111011111111111111111111111111111111111111010111101011101111111011101111111011111111111011111111111111111111111011011011111101101111111111101111111111011111111011111111011111111011111101111110111111111111111111111111111110011111111111111101110101111110010011111111101111111111111101111110111001111111111111111011111111111111111111110111111111111111111111111110111111111001111111110111111111111011111111111110011111111111111111110111111111110111111011111011111010110111111111111111111111111111111111110111111110111011111011111101111111011111111111011110110011111111111111111011111111110111111110111111111111111111110111101101111111111111111111011111111111101111011111111111111110111111111101011111111111111111110011111111111111111111111111101110111111111111111111111111111110111111111011111111111111111111111111111111111111111111111111111111111111111111101111111111101111111110111111111011111111111111111111111111111111111110111111111111111111111110111111110111111110111111111111010111111011111110111111111111101111110111101101111110101011111111111111111111111111111111111110111011111111111011111111111111111111111111110111111111110111011111111111101101111111111101111111111111111111111111110101111111011111111111011011111110111110111111011110110111111111111111111111011111110111110111111111111111111111111111111110111111111111011111111111111101111001011111111101010111111111111011111111110101101111111111110110101111101111111111011011111111111111111111111111110111111111111111111111110111111111111111011111111011111111111111111111111110111111111101111111111101111011111111111010111111111011111111111111111011011110111111110011111011111011111111111111011111111111111011111111111111111011111111111111011111111111111111101111011111111101111111111111111111111111111111111111111111111111111111001111111111111111111111110111110111111111111111011111111111111111111101110111111110110111101101111111111111111111011111111111111011111101011111111111011011111110011111111111111111111111110011011111111111111110111111111111111111011111001111111101111111111110111111111111111111111111110111101111111011011111111111111111111111111110110111111111111111111111111111111111110111111101111111111111111110111110111111111111011111111111111111111111101101111101111111110111111111011111110101111111111111111111111111011111111111111101111010011111111111111111111111111111111111111111111111101111011101111110111111111110110111111111110111111111111111101111101111111111011111111100111011110111111111101111111111110111111111111111111111111111111111111111111111111011111111011111111111111111101101111111111111111011111111111111111111111111101111111111111111111101111111111111111111111111011111101111111111111110010111111111111101111011111111001111111111101111111111110111111111111110111111111111111111101111111111111111111111111111111111111111111111011111111110111111111110111111101011111111111111111111111111111110111111111111110111111111111111111111111111111111111111110111110111111111011111111111101111111011111101111111111101110111111111111111111111111111101011111111111111100111111111111111111111111111111111110111111111111111011111111111011111111111111011110111111111110111111111111101111110101111110111111110111011111011111011111111111011111111111111111111101111111111011111111111111110111101111111101111111111101111111111111111111111111111101111111110111111111111111010011111101101111111011101001111101111111111111111111111111111111111111111111111110111111111111111111101111101111111111111111111111111111111011101111111111101111111010111111111110100111011111011111111111111111111111111101111111111110110111111011111111111101111110111111111101111111111111111001111111001111110111111111111111111111111110111111111111111101101111111110111010110111101111111111111111110101110110111101110100111111101101111101011111111111111111111111111111111111111111111111110111111111111111111011111111111111101111111101011111111111110111111110111111011101111111111011110111111111101111111111111111111111110111111011111111111011111111111111111111111110111111111111111110111111111111111111111111111111111111111111111111111010111111111110111001101111111111110111110011111111111101111111111101111101111011111011110111111011111011111101011101111111110101111111111111111111111111111111111111111111110101111111111111111111111111111111011111100111100110111110111111111111111110111111111111111111110110111111111110111111111110110100111111111111110011011111110110011111111111111101011101111011111111111111110111101111111111111111011111011111111111111111111011111110111111111111111111110101111111111111111111111111111101111011110111101111111111111111111111111011111111111111101111111111011011110011111011111101111101011111011111111111111100111111111011111111111111111011111011111111011111101111111111111110111111111111111010111111111111111101111111111111111111111111111111111111111011111111111011111111101111111111111100111111111111110111111111111111111111111111111111101111111111101111111110110110111111101110111111111101111111011111101011111111111111111111111111111110111011111101111110001111111111111011101110111111110010111111111011011111111111111111111111110111111111111111111111111111110011111111101111111111110111111111111101101110111111111111011111111111101110111111111111111101111111111111111101011110111011110111111111111111111111111111111111111111101111110111010111111110111111111111111111111111111111111101111111111111111111111111111111111101111111111111111101111111111110111111110111110111111111111111111111111111111111111111101111101111011011111111111111111111111101111111111101101111111111111111011111111110111111111111111111111111111110111111111111110101111111111111110111111110111011111100111111111110111111111110111011111111011111101111111011111111011011111111110111011111111111111111111111111111111111101101111111010111111111101011111111111111111001011111111111111101110010011111111111111111101111110101111111111111111111111111101111100111111111111111111110011110111111111111111101111111111111110111111111111111111111111111111111011111111111111111111111111111111111111111111011110111111111111111111010111111101111111111011111111011101111111111111111111111111111111111111011111111111110111111011111111101111111111101111110111110100111110111111111111111111111111111111111111111111111111111111111011111110010011101111111110111111111111111111111101111111111111011111111111111111110111101101111111111111111111111101111110111111111111011111111111111110111110111011111111111111111111111111111111111111111111111110111011111101111111111011111111111111111111110111101111111001111101111101111111001011101111111111111111111111111111111111111111111110111111111111101111111110111111111111111111111111111111111111111011101110011101111101111111111111111111111111111011111111111111011001101001111111111111101101111111111111111111101111101011111111111111110111111111111111111110111110101111111111111111111110011111111111111111111111111111111111011101111110111111110101111101111111111111110111111010111111111101010111110111111111111111111110111111101111011111100111011011100011111111110111111111111100110000111111111011111111111111111010111111010101111111111110110011111110111111111010101111111011110111111101011111111111111111111111111111111111110011111110110111111011111011111101111111111101110101111111111111111111101101111111110111111111101111111111111111011111111111111111111111110101110111011011111011111111011111101110111111111111111111101111111011111100011111111111101111111101110111011111111111111111111111111111111011111111010101111111111111111100011111111111111111111111110111011011111111111111101111111011111011011111111111111111111111111010111111110111111111111111111111111011111101111110111111011111111111110111111111110111111111111111111111110111111101111111111111111111110110111110111111111111111111111111111111011110111111110111111111111111111100111111111111111111111111010111110111111111111111111111101111111111111111111111111010110111111011111111011111101101111111111011111111111111011111111011111110101110110111111000111111011101111111110110111101111111011011011111011110111111111011000111111101101111101111110111111111111111111011111111111110110011111111111111111101111101111111101111011110011111101111111111111111111111101111111111111111111111111011101100110111111111111111111111111111111111111111111111111111110111111111111111111011111111111101101011111101111111111100110110111111111111111111111111111111110111111110111111011111111111111111111111111111111111111111011110111111101100101111111111111111011111111011111111111111111111101111111111111111011110111111111011111111111111111111111111110110110110111111111101110111111111110111101101111111011111111111111111011111111111011111101111111111111101101111111111111111011111111111111010101111111111111111011111111111111111011111111101101111111011111111111101111111100111011111111011111111111111111111111111111110111111110111111111111111111111111111111111111111111111111111111111110011111110111101011100111111111111110111111111111101111111101111111111011111111101111111111111111111101111111111111111111111011111111111111111011111110101111101111111010111101111111111111110111111101111111111011111111111111101111111111111100111111011011111111110111111111111111111101111101111111111111111111111111111001111111111111111100110101111101111111111111111111111111111110101111101111111101111110111110111111111011110111110111011111111111110111101011011111111111111110110110111011111111111111111011111111010111110111111111011111111111111111111011011111111111111111011111111111111111011111101111111111111111111011111111111100111101011101111111101110111111111110111111111111011101111111111110111111111111111111111111111111111111111111111011111111011111111111111110111111101111111011010111111111111111111011110111111111111111111011111101111111110111101111110111101110111111101111111011111111111111111111111011011110011101110111111111111111101111101111111011111111111101110111111111111111111111110111111111001111111111111110111111111111111111111011010111111111111111011101111111111110110111111111101011111111111011111111110011111110111110111101110111111110111111111101111111011111111111111111111111110111111111111111111101111011110111110111111011111111111111111101011110111110011110111111101111111111111111111111111111110111111111111101101111111011110111101101011111111111111111111111111111001111111111111111111111111111111111111111100101111111101111111111111111111111101110101111111111111110111111111111111111111111111011011111111111111111111111111011101111011011111111111111111101011111111111110101011111111011111110010111111111110010111101111111111011011111111111111111111111111011010111111111111011101111111111111111111111011111111101111111111011111111110111111111111111111111101110111111111111100111111111101011111111111111111111111110001111111111011101110100110011111110101111110111101111100111111110111011111111111111110111111111111111011101111111111111111111111111111111111101111111101111111111111111111111101111011111111101111111111010101111111111111110111111111110111111111111111101111111110111111111111111111111110111111111111101111111011100111111111111111110111111111111111111011111111111110111111111111111111101111111111111111101111111111111100111110111111011111011110101111101111111111111101011010101011111111111111111111111110111111111111111110111111010111110111111111111111101111111111111111111111100011011001111111111110111111111111011111101101011111110101111111111111111111101111101111111111111111111101110011110101101001111111011011111111111111110111111111111111111101111010111111111111111111011111111111011111011111111111111111111111111111111111111110111111111101011111111111111111111111111111110111111111111111111111111111111110111111111111111101111111101110101111001111111111111111101111110111111111111111011111111111001111111111110111111110111111111111111011111111110111000111111010100111111011011111111110111110110111111111101111111101011111011111111111111111111011111110101111111111111111110111111111111101111111111111111111111111111111111101111100111111110100011111111111111111101110111111101111111111111111011111101111111111111101101111111110111101111111111111111011010111111011111111111111111110011111101111111111111111111111111111111111111111111111111111111111110001111111111111111111111111111110011111111111111101011110111111111111111111101101111101111011101111010111111101111111111111101011111111111111111111101111111011011111111011111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111011010111110111111111111011100111111111110011101011111101111110100111111111111110111111110111111010101111111101011111111111011110111111111111111111101111001111110111111111111011111101110111011111110111111111101101111101111011111111111111111110111101111011111111111101110111111111111110111001111111111111111111111100111111101011111111111110011111111111111111111111111111111110111111111111011101111011111111110011001011111111111111110111111011111101110111111111111111101111111111110111111111111101111111111111110111111111111111111111111111111111111111111111111011110111111111111011110110110111111111111111011111111111111111111110111111111111111111111111111111111111111011111111111101110111111111111111111111111111001011111101111111111101110111111111110111100111111111111011111111111101001111111111111101111001111110110111110111111110111111111011111110111101111101111111011111110110011111101111111111101111111111111111111111011111111110110111111111111111111010111111111110111110111111111011111111111110011111111111111111111110111111111011111111111111111111111111110111111111011101111111111111111110011101111111110101111110111111101111111111111101111011110111111011111111111111111011111111111101111111001101111110111011111111111111111111111011110011111111111010111111101111111111111011111101111111111111111111110101111110111111111111111110111111111000100111111001111111111011111111111001011111111111111111011111111111111111111111110111111111111110111111111111111111111111111111111110111111111111110111001111111111110111111111101111111111111111111111111111110001111111011111111111111011111110111101111111011111111111011111101011110111111110111101111111111111111111111111111101111101011111110111111111111110110111111111111110111110010011110110111111111111111111010111101111111111111111011111111101111111111101111111111110111011111111110001111111111111101110111110111111111111111111110101101110011111111100111111110111110111111111111111111111111111101111111111111111111111011111111111111011111001110111111111111111111111111111111111111111011111111111111101111111111111111101001111111011111111111011111111110110111111110111111111110111111111111011011011111111111111111111111111111111111111110011010111110101110111111111111111110111101111110110111101111111111001111111111111111111111111111111111110111011100111111111111111111111111111111111111101111111111111011111111111110110111110111011101111111111111101011111111111111010111111001111001111111111111111111011111111111111111001111011111111111111101111011111110011111101011001111111111111111111101111111011111111111111111111011111111110111111111111111111111111110111111111111011101111111111111111110101111111111111110111111111111111111110111111111111110111011110111111111111110011111011111111111000111101111011111111111111101111110111111001011111111111110111111111111011111110111111111111111111110100101011111111111111101111111111011111111111111111111111111101110111111011111111111110111111111111111011101111110011111111101101111111111111111101111111111111111011111011111111111111111111111111011111111111111111111101111111111111111111111111111011111111011111011111011111111111111111111111111111111111111101101111101110101111111011111110111111111100010111101111110111111101111111111111111011111111111111111111110111111011101111111111111111111111111111101111111111111111010111011111111111111111101101111101110111111111111111101111111111111111111101110101110111111111111111111110111111111011111110101111111011111111011101111111110111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111110111111111111110111111110111111011111111011111111111111111111111110111111111111010110110111111111111111111111101111111111111111111010111111101010101111111111111111101111111111110111111111110110111111110111111111100111111111111111111111111110111111111111111101111111111011011111111111111111111111111111111111111111111101111011111111110111111111111111111111111001111111111111111111111111111111111111111111111110111111111111111111111101111111111111011110111011111011111111010111111111011111110111111101111111111111111111110111110111111111111111111101111010111101111111111011111111111101111111111111011111111111111110111110111110111111111111111111111111111001110111101111110101111111111111111001111111111101101111111111100101011100111111111111111111111111111111101111111111111111111111011111111111011110111111111111111011111111111111111111011111110111010111111110111111111111101111011111110110111111111111110011111111111111101111111110111111101110110111011111010111111111111111010011111111111111001111111011111111111111101111111111111111111101111011111100111111111110101111111111111111111100111111111111011110111111101111111111111111011111111111111111111101011111111111011111111111111111111111111111011111101111111010100111111111111111111111111111110111111111111111111111101111111111111011111111101111111101010111111111111111111111111111111111101101111111111011110111110111011111111011111111111111111111110111111111111111111011111011111111110111111111111111011101011111111111111011111111101011111111111111111111111111110101111111111111111111111111111111111111111111111111111101111111101111111111111110111011111111111110111101111111111111111111111111111111101010010111110111111011111011111111011111111111101111011111111111111111111001111111111110111111011111111111110101111011111111111111011011111100111111101011111111111111111111111111111111110111111111111110111101111111111111011111111111111101111111111110111111011101011111011111011111101111111111110011111111111111111110111110111111111111110101111111100111011111111101110111110111100111111111111101111111111111111011111111110111111111011111111111111110010101100111111111111111111111111111111111111101111110111111111111111111111111111011111111111111111111011111011101101111111111111111111101111011011111111111111111111101111010111110111111101111111111111111111111111101111111111111011111111111111111101111111111111111111111111111111110111011111111111111111111111111111111111111111111111111111110111111111110111011011111011011111111111111111101111111111010111101110101111111111111010111111111110111111111111111111111111111111111111111111111111111111111111011111111011111111111111111111111111111111111111111101111111111101101111101111111111111101111011101111111111111101111111101111110001111111111001011111111111111110111111111111111111110111101111111111111101110000111100111111111111111111110111111111001111111111110111111011111111110111111111111111111111101111111111111111111111101111111111111111111111111111110110111111111101111111100111011101111111111111111111111110111011111111111110011101101111111111011111011111111101111111111111111111111111111111110101111111111111110111111111101111111111101111111011111111111110101111111110111101111110111111111111111111111111111101110111111111111111110111111111111111011111111111111111111111110111110111111101111011101111111111010111111111011101001111111111111111111111111111111101111111111111110111111111111011111111110101111110111111111100111111111110111111010101111111111111111111111101101110111100010111111111111111111011111111111111101111111111011001111111111111111111111001110111111111111011111111111111110111111111111111111111111111101111111110111111111111111111111111011111111111111111111111011111111111111111111111111101011111111110111111101111111101111001110111111111111111111111111111111111111111111111110111110111111111111111101111111111111111101111111111101111011111111111111111111111111111111111111101111111111111111111111101111111111011111111111111111111111111111110100111111111111111101111111111010101111111111101111111111110111101101011111111011101111010111110111111111111110111111111111111111111111111111110111101110110111111111111011010111111111111111111111111111111111011111111111011111111111111111110111110110111110111111111111111111111111110111111111111110111111111111111110110111101011101111111111111011011111111101111111101111111111111011111111111111011111011110111111111111111111111111111111111111110111111011110111111111111111111111111111111101011111111111111111111111111111011111111101111011111111110111111111111111111011111011111111110111111111111111111111011111111111111111110111111111111111111101111101111101111111111111111011111111111111110111111111110111111111111110011111111111111111111111011111111111111111111011111111111111011111111111111111111111100111101011111111111110001111111111111111011111011111111111111111111111010111111111110111111111111111011111111111011110111110111111111111111111111111110111100111111111111111111101111111111111111001111111110111111110111111111101111111111111010111111111111111111110111111111111010111111101111110111111111111111111111111101110111011001011111111111111111011111110111111111111011101101111011111101111111111101111110111111100111011111111011111111111111011110111111111011111111111111111111111111111110110110111111110110111110111111111111101111111111111111110111111111111111111001001111011011111111111111111111011110111111111111110111111111111111111111101110111110011111111111111111110110111111110011111111111111111111111111111011111111111010111110111111110001111111111111111101110111011111110111111111111111011111111111111111111111110101111111111111101101110101111111110111111111111111111111111111011111111111111101111111111110111100111111111111111111011111011011111111110111111101111111111111110111111111111110111011110111011111111111111111111111111011111111111110111111111111011101111111111111111111111111011111111111111111111111110111011101110111011101101111111111101011110111111111110110111111111111010101111111111111111110111111101101111111110110111111111111111110111111111111110110111011111111101101111101111100111111111111111111101111111011111111111111101111111111111111111111111111111111110110111111111111101111111111101111111110011111111111111111100011011111111111111011111111111111111101111111111101111111111110111111111111110111111011111110111011111011101111011011111011111111111111110111111001010111111111101011111111111111111111011111111111111101110111111111111111111111111111011101111111111111101111111111111111111011111111011011111111110110111111111111111111111111111111111111111111111111111111101111111110111111111101110001111111111111111111111111011111111111111111111010111111111111111111111111111111111111111111111011111111111111111111011111111111111111110111111111111111111011111111101111111111111110111111111110111111111111111111111111111111110111111011011111101111111111111111000110111111111111110111010111110111111111111111111111111111111011110111111110111111111111110111111110101110111111111111111110111111111111111111111111111011011111111111011111111111111111111011111111110111111111110111111111111111111111111111101111011011111111111111011111110111111111001111111110110111101011111111011111111111111111111111000110111111101111111111111111111011111111111111111011111111111111101111110111110110111011101111111111111111111111111111111111111110011101111111010111111111111111111110111111111111111111111111010111110111111111111110111111111111011111111111011111110110111111111111111111111101111111010111111111111110111101111111111010111111111111111111111111011111111011111111111011100111111110111110111111111111111111111011110111110111111011111101111111111111111011111011101011111111011101111101111111011111111111111111111110110011111111111111101111111011110111111110011111001111111111010111111111111111100111111011111111111111111111111111111111111011111111011111110110111111111111111011110111111011111111101111111111111111111111111111111111111101111111111111111111111111111111111011111111111101111111101111110111111111110111111111111101011111111111101111101111111111111111111110111111111111111111111111111111111101111101101111010111111111011111110111111111111111111111111111111111011111111111111111111111111101101111111010111011111111101111111111101110111111111111111011111111111011111111111111111111111111111111111111111111111111111111111010111111111111111110101101111100111111111111111111111111111110101111111111111011111111111111111011101111111101110110110111111111111110111111111111111111111111101111111011111110111111111101111111100111101111011111101111011101111111111111110111111111111111111011011111111111111111111010111110111111101111111111111111011111111111111110111011111111101111111101111111111111111111111111111111111111111110111111111111111111111011011111101111100111111111111111111110111111111111111110111111111111111111111110111111111111110011111111111110111111111111111111111111110110111011111111111111111111101111110111111110111101111100111111111111111111111111111111011111111101111111110111111111111111111111111111111111111111111111111111111111111111111110111111011111111101111110011111111111001111110011011011111111111111111111111110111111111111111111111111010111111110111111111011111111100111111111110010111111111111111111111111111111111110111011111111111111111111111101111111111111011111011111111111111011111011011111110111111110111111111101101111111111111111110111111111111111111111111110110111111011111111111101111111111111111111111111111111111111111111111110111111111101111111111111111111111111111111111111110111111011111111111111111111111111111101011111100101110101111111111110111101111111111111111111111111111110011111111111111111110111111111111111111111111111011111111111111111100111111111101111101111101111111111111111111111111111111111111111111111111111111001111101001111111111101111111111111011111111110101111101111111111011111111111111111111111101111011100111111101111011011111111111011111110110111111110111111110111111111111111011111111111111111111110101111111111111111101111111111111010110111110110111011111111111111111011111011111111111101111111111111111111111111110101111111111101101111111110111111111101111111111111111111111101111111111110111111111101111111111011011111110111011111101111111111111011111101111111111111111111111010111111111111111110111011111111111110111110111111111111010111111111111011111110111111110111111111111111110111111111111111111111111111111111111110111111101101011101111111111110111111111111111010111011111111111111111111111111011101101111111111111111111011110011111111001111111111111111111111111111111011101011111101111111011100111111111111111111111111111111011110111001111111111111101111111011111111101111101110110111111111111111111111101111111111101111111111111111111111111111111111111110011111011111111111111111011111111111111110011011011111111111111111111001101110011111111111111101111111110110111111011110111111111111111111111111110111111110111111101111111111111110111111111111111101011111111010111101111111111111111111111111111111110111111111111111111111111111101111110111111111111111111111111111011111111111001110111111011111111111111111111111111111011011111101101111111111111111111111101111110111111111111111111011010111101111111111011011101111111111011101101111011111111110111111111111111111111111001011101111110011111111110111101111111111111111111111111111011111110111111001111011111011111111111111101111111101111101111110110011101111101111101111111111101111101111010111001111111111111111111111111111111011011101111101111111101111011111111110111011111111011111111111111111111111111111111111111101011110111111111101110111111011011111111111111110111101111111111111011111011111011011010111110101111011011111111111101111111111111111111011111111010111111111001110111011110111111111111111101111111111111111011111111111111011011110111111111011111101111111111111111110110111110111111111101110110111111111111111011111110111101111111111101111111111111111111111111101111111101111111111110111111111110111111111110101111101111011111011111111111111111111111111111111111111111111110101111010111111111011011111111111111111111111111111111111101111111011111111101111111111111111111111111111110111110111111111111111011101110111011111111100111101111111011111111111011111111011111111011111111101111111111111111111111111111111111111111111101110111111011111111111111111111111101101111111111111111111111111111101001111111111111101111111110111111010111111111111111111111101101101111111101010011111111111101111111101111111111110011111111111111111101011011011111011111111111111101111111111101111101111111111111111111110111111111111111111111111111111111110101111111111011101111111111111110111110110111011111111111111111111111101111111111111101110111111111111011111111111111111111111111111111111111111101111111110101101111111111111111010111010111111111111111111111111111101111111111111110111111011111111111101111111111111111111111111111111111111101011111111111110111111111101111111111101011011111110111111111111111111111111111101111110111111111111111110111110111111011111111111111111111011111111111101111111111111111111111111101111111111111111111111111111111111111101111111111111111110111111111111101111011111111111111101011111111111111011111111110101111011110111101011001111111110111111111111111001111111111111111111111111111111111111111111111110111111111111111111011010101111111111111111111111111101001111101111111111111111111111111111111111111111111100011111111111111111111111111011111111111111011111111111111111111111111111111011111111111111111111111111111111111111101111111101111111111011111101010111101111111001111111111111111111111111111110101111111111010111111111011111011111111111011111011111111111111111101111010011111111101111111111111111110111111011111101111111111111111110011011111110011111111111011011111111111111110111111111111010111111111111111111101110111111111011110111100111111111111111011101110111101111110111111011011111101111110111111111111011111111110111111111111111111111111111111111111101111111111111111111111110111111111111101111111001111111111111111111110111111010111101111111111111110111011111101111011111111111111011111101111100111111111111111111110111011111111111111111111111111111011111111101111111101110111111111111111111110111111001111111110101111111111111111101111111110101101101111111111111111011111111111111111111111111111111111111111111111111111101111111111111111101111111111110111111110111110111111111111011111111111111111111111111110111111101111111111111111111111111111110111111101110110111111011111111111111111101111111111111011111110100100111111111111111011111111111011111111111111011111111101111111110111111110111111101111101111010111011001111111111011011111011110111001111111111111011111111111111111111111111111101011111111101011111011110111111111111111111111111011111111111101111111010111011011111111111111111111110101111111011111111101111110111111111100111101111111111111111011111111101110111111111111111111011111010111100111111111100101111111101011100111111111111011011111111111110111111011011111111111011111111011111111111111011110111111101111111111101011111111111111111111111111111111111111111011111111111111101111110111110111111101111101111111111111011111111111001110111111110111111110111101111111110111111111111111111111001111101111111111011111111111111111111101111110111011111111110111111101110111111111111110111111101111111011011111101111011110111101111111111111101111111111111111111111111111111011011011111111111111111111111111111111011111111111110111111011101011111111111111111110011111111111011011111111111011111111111010111110111111101111111111111111111011101111111011111111111111011111111101111111111011111111011111111110110011111111111111110100111111111101111111111111111101111010101111111111110111011111111110111111110111111111111011111111111101111111111111111111111111111111111111111111111111111111111111111111111011111111111010110111111111111111111111111110011111111111111111111111111011111110111110111011110111111111111111111111110111111110110011111111111111111101111011111111111111111111110101111111101001111111111111111111110111111111111111111111111011011111111101111100111111111111011111111101110111111111111101111111111111101111101111101111111111111111111111110111111111111111101110111101111101111110111111111111111111101111011111111111111101111111011111111101111111110111111111111111111111111110011111111111111111111111111111111110100111111110101111111111110111111110111111001111111111101011011100111111111111111110110111111111111111111011101111111111111111111111111000111011111111111011101111110111111111111111111111111111111111111111111101011100111110111111111111111111110011111111110111011110111111111111111111001111111111111101110111101011101111111111110011111111111111011111111111111101111111101111110111100111101111111011111111111111111111110101111111111111111111111101111111110111101111101111101111111111100111111111111111111111111111111111111110111111111111111111111110111110101011111111111111111111011110010111111111111111111111111111111111111111111110001011111111111111101011111111111111111111111111111111101011010111110111111111111011111111111111101101111111101111101111111111110111111111111101110111111111111111111111111111111010111111111111011101011111111110110111111010101110111111011111111111111111101011111111111111111111101111101111111011111111111101111111111111111101111111011111111110111110111111111111111111111011101111111111011101111111111101001111111111100111011111111111111111111111110111111111101111011111111111111111111111111111111111011111111111111110101111111111101101111011111111111111110001111011101111101011111111101111111111111111101111111111111111101111101101111111111111111111110111011110111111111101111111110111111111111111111111110011100111100111110111111111100111111011101111001110111111111011110111101111011101101111110111001011011111111111111111111111111111110111111111111111111111001111101111111111111011111101010110110111111111101111111111111111101101111111111111111111111011011111011110111111111111011111111111101111011111111101111111111111111011101111110011101111111110011111111111111111111111101111111101111111111111111101111111111111111111111111011111111111111011111101101111111101111101111111111111111101111111101011111111111001111111011111111111111111111111111101111111111011111101111111111111011111011111111111111111111111111111111111111111111111111110101011111111111111111111111111111111111011111111111111111111110111111111111111111111111111111111111111111110111111111111111111110111111111111111111111111111111111011010101111111111111111111111011111111111111111111101111110101111111110111111111111111011111111111111111111011111111111111111111101101111110111011111111111101111110111111111111111111110111111100111111111111101011111111111111111111110101111101011111111011101111111101111111111111111111111101111111111111111110101011111111111111111111111111111111111110111101111111101111111110011111110101111111111111111111011101111111111111111111110111111110111111111111111111111111111111111110111111111111111111111111111111111111111111011111111111111111111011111111101111111111111111111111111111111101111101111111111111111111111111111111001111111011111111101111111011111111111110011110111111111111110111111111111111101111111111110111111110111111011011111011111110111101111111011111111111111111111111111101111111111111010111111111111111111111111011101111111111111111111111111111111111111111111011110101011111111001111111110011111111111111111111111111111111111111101111111111111110111100111111111111111111101111111101111011111111101111111111011011111111111110111011111111011111111110111111111111111110111111111111111111010111111111110111111111111111111001111111111111011111111111111011111011111111101011111111111111111111011111101111011111111111111101111111111111111111111111111111111111101111011111111111111111111111111110111011101111111111100111111111111110111111111111111111111010110111110111111101111111111111111111111011111111111111111111101111111111111111111011111111111101111111111111111111111111111111111111110110111111111111111111111111110111111111111111111111111110110111011111111111111101111011101111111111111111011011111011111111111111101111110111110111111011110111111111111011111011111111111111111111111111110110101011110011111111111111111111111111110111111111111111111111011111011111110111111111111111111111110111111111101101111110101011111111111111111110101111111111111010111111111011111111111111111011101111101111111111111111110011111111111111111101110111011110111111111011111110111111111111111111111111111111011111111111111111111111111111011110111111110101111111111111110111100111111111111111101011111011111111111011110111110111111101111111110111110111011111111111111111111111001110111111111111111110011011111111111011111111111111111111111111111111011111111101111111111111111111111101111111111111100111111111011011111111111111111111010111100111001111111110111111101111111111111111111111111111111110111111111011111111111111011111111111111111110111111110111111111111111111111011111111011110111110111111101111111111111111111011111111111111011111111101111111111111110111111001111111011101110011110111111111111111111111011111111101111111111111011111111111111111111111111111111111111111000111111110111111111111011101111111011101111111011111111111111110011110111111111111111111111100111111111111101111111011110111011111011111111111110111111111111111111111111110111111101111111111111001111111111111111111110111110011111111111111111111111111111011111111110111111111111101111111111011111111111111110111010111111111111111111111111101111111111101111111111111111111111111111011111110111011111111111111111111111111111111111101111111101110111111110111111011111011011111011111111111111111101111111111111111111101111111101111111111010111111011111011110101111111111111111111011111111111111111101010101011111101111110111111110011111111100111111111110111111111111111011111111111111111110111011111111111101101101111111111111111111111111001111111111111111111111011111111111111110111111111111111111111110111110111111011111111111111111111111111111111110111110111111111111111111111111111111111111110101111111111111101111111111111111101110111001111111111010111100111111101111111101101110111111111111011111111111111111111111011111111111110111111111111111111110110111011011101011111111111111111111111110111111111111110111111111110111101111111111111011111111111111111111111111111111110111111111111111111111111111011101110011101111111101111101111111111111111111111111111111011111111011111110111111111111011111111101111011111111011111111001111111111111111111111111111101111111101101111111111111110111111111110110111111111101001111011111111111111101111111111111111111111110011111111111111101111111111111111111111111111100111111111011111101111111111111111111111111111101111111011111111111111111111111111111111111111111101111111010111111001111111111010111011111110101111111111111111111111101111111111011111111111111110111101111101111111111111111011111111111110011101111111011101111111010111011111111111111110111101111111110111111111111101111111011111111111111110011110111011011111111101101111101111110111111111111110111101111100111110111111111011111111111110111111011011101111111111111011111111111110111111110101111111111101111101111111111011011101111101111111110101011111111111111110101111111111111111111010011110111111111111101111111111111110111111111101110110111111011111101101011110111111110111111111011111111111011111101110111111111111111111101111010111011111111111110111111110111111111111111110111111111111111111111011110111011111011111010111111111110111111111111001111111111111111111111110110111111110111011111111101111111111111111011111111111111111101111111111111111111111111111111111111111011111101111101111111111111001111111001111111111110111111111011111111111111111111111110111111111111111111111111111101110101111111111101111011101010011111011110111111111111111111111111111111111111111111111111111111111111110111101111111101111111111111111111111110111111100110111111111111111111101111111111111111011111110111111101111111111111111111111111111110111111111110110111111111111111111111111111111011111111111111111111111111111101011111111111111101111011111011110111111111011111111111111011101111010111111101111111011111111011101101111111101111111111111110111111111111111111111111101111110101111111111111111111111111111111111111111111111111111110101111110111111101111111111011111111110110101111111111111111111001111111111111111111111111111111110111111111110111111111111111110111111111101111111111111111101111111111111111111011111111111111101111111111111111111111101111111111001111111111111011111111111111111111011111111001111111111011111101111111111111111111111011111111111111111111110111111101011101111111101111101111111111111111111111111111011111110111111111111011111111101111111111111011111111111111011111011111111111111111111111111101111110111111111111001111111111011110111111111010111111111111111110111111111110110011111111111011111011001111101011110111101111010111111111111111111111111111110111111010111110111011111111111111110111101111111011111110110111101111101111011111111111111111111111111111111111111101111111111111111111111111011111111111111110111011110111111111111001111111111111101111111111111111111110111111111111111111111111111111111011111110011111111111111101011110111010110111111111111101010011111111111111111111111101101011011111111111111111111111111111111111111111111111111111111111111111111111011101101111111111110110111110111111111110111110110111000111111111011111111011111111110111111111111111101111111111100111101111111111111011111111111111110101111111111111111111111111101111111111100110111011111111111111101011111111101111111111111111111111111111111111111111011011001111101010111111010111111111111111111111111111100111111111111111110111101111111111111111101110111110110111011111110011111111111111111111111011111101110110111111011101111111111111111111111111111111111111111111111011111111111111010111011111111111011111111011101011111111111111111011110111111111111111111111111111111101110101101111110111100111101110101011110111101111111111111111111111111111111101111101111111111111101111111011111111111111111111111111101011110111111111111111101111101111111111110111111111111111111111111111111111111110111111111101111111011111111100111110111111011111111111111111111111111101101111111111111101111111111111111111111101011011111011111011111001101111111111111111111111011101111111111111111110111111111111111111111111111111111111011111101111111101111111111110111111111011101111111111101111111110111110111011111111110111111101111111111011111111111011111111111101011010111111111011111101111111111111111111011111111111111111111111101011111110111111111111111101111110111111111110111111111111111111111111111111111111111111111011110110111111111111111111111111111111111101111110111111101110111110111111101110101111111110111111111111111111111111111110111111111101111111011111111011111111111111111111111111111111111111111111111111111111111111111111111111111111101111100111111111111111111111110111110111111011111111011111111111111111110111111111110101111111111111110111011111111111111111111111011111111111111111111111111111110111111111111111111111111011111110111011101111111111111011111111111110111111111011111111111110111001111111110111111111111111111011111111011111111111111011111111111101111110011111111111111011111111111111111011111111111111110111111111111111111011111111111011111110111101111111111011101111111101111111111111111110111110111010111111101111011111011111111011111110111111111111110111111111111111101111111111101111111101111111111111111111101111111110111111011111101111101101110111110111111110110101111110111111111111011101111101101111011111111111111110101111111101111111111111111111111111111111101101101111111011110111111111111111111111110111111111011111111111101111111111111111111111111111111110111111111111111111111110111110111111111111101011111110110101011111111010101111101111110111011101111111111110111110111111111011111011101111111111011111111111111111111111111111110101111111111111101111111111111101111111111011111111101111111111111111111111111111111111111111001111111111101110111111010111111111111111111111101111110111111111111111111111111101111011111011111111111111111111110111101111111111101111110111111111111011011011101111111011111111111101111111111111111111111111111111111110111110111110111111111111111111111111111111111111101111101111111111111111111111111111110111111111111101111111111101101111110111111101111111111111101111111111110111111111101101111111111011111011111111101111111110111111111111111001111011111111111111111111111111100111111111010110011111111111111101111111111001111111011111111101111111101111111011111111111111111111111011111101111111111111011110111111101111001110101111111111101010111111011111101111111011111111111101111111111111111111111111110101111101111111111111111011111111111111111111111011111011111111111010111111110111111011111111011101001001111101111111111111111111111111111111011110111111011001101111111011101111111011111111111101111111111011111111111111111111111101110111111111111111011110111111111101111111111111101011101111111111111111101011111101101110111111111001111111111111110111100111111111111001111101101111111111111111111111110011111111011111101111111101111111111101111111111111110111011111110111011011111111011111111011111110111111111111011111111111111101111111111111110111111111110111111110111111111111111111111111111111111111111111111100111111111111011111111011111100111111111111111101111111001101111111111111111111110111111101111111011111011101111111011111111111101111111111111111111111010111101110111011111111111111111111110111100011111111111111111111111111011111011011111111101111111111111111111111111111011011111111101110011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111011111101111111110101111111111111111110111111101111111111111111011111111111111110111011111111011111101111011111111111111111111111111111111101101110111111111101111111111111111111111111011101111111111111111101111111111011111111111111111011111111111111111111111111111111111111010111011111011001001111111110101111011111011011111111111111111111111111101111111111110111111111111111111111111111111111111011111011111101111111111111011011101111010111110111111111111111111100101111111101001111111111111101111111111111111111111110111101101111011111111101111111111111111111111111111101111111111111110110111010111111001111111011011111111111111111101111111111111111111110110110110111111111111111111111011111110111111111111111111111111101111110111110110111101111110111111110111011111111111111010111111111111010111111111111111111111111111011111101111111011111011001111111111010110111111111111111111111111111011111111111111111011111011111111111011111111111110111111111111111111111111000111111011111111100111111111111111111111111111111111111011111111111111111111111111111011111111111010101011110111111111101111110111111111110011111111111011101101101111111111111111111101111111111111111111111111111111010111111101101111101111111111111111111001111111111111111111101101001111111111111110011111111101111111111111111011111111011111111111111110110111111011111111110111111111111111111110111111111111111111111101111111111110011111111101101111111101111111111111101001111111111101110111111111111110111010111011111111111010111011111101111011111110011111111111111011101110111110110011110111111111111111110111011111101111111111111111111110111111111110011101111111111111111111111111111111111111111111111111111111111111111111111111111111011111101010111111111111111101111111111111111111111111111111111111111111111111111111111111111111111111111111111110111111111111111011111111111111111111111011011111110111111110111111101110111110111110111111111111101111101111111111111111011011111110111011111111111111111111111110101111111111101011110111111111111101111101101100111111111111011111111111111111111111111111111101011111111111111111111111111111111111110111110111011111111111011111101111011111110110111011111111111111111111111111011111011111111111111101111111111101011111111101101111011111011111111111001111111111101111011011110111111001111111111111111110110111101111111110111110111100111111111111111111011111111101111111010111111111111111111111101111011110111111111111111111111110111111111110101101011111111111111111111111010111101111101110111111111111111110101111101111111111111110111110111111111111001111101111111111111101111111111111111111111111111111011111101111011101110111111011111110111111011111111111011111011011111111111111111111111111111111111111101111111111111110111111111111111111111110111111110111101111110111111111111111111111111111111111111111111111111101111111111111111111111111111001011111111111111111101111111111111110110111111111111111101011111111111111110110111101110111110101111111111111111111111111111010111111111011101101111111101101101111110111111110111101111111111111101111111100111101011011011111010111111111111111111110011110110111100111111111111111101110111111101110011101111111110110111111111111111110111101111111111111111110101111111111111111111111111111111011101011111111111111111111011101101010111111110111111111110111111111111111111111110111111101111111111111111111111111101111011110101111111111111110111111111110111111111101011101111111111111111111011111111110111111101111111111111111111111111111111111111011101111011110101110111110111111111111010111111111101111011110101111111111111111111011111111100111101111111011111111111111111110011111111111111111111110111111111010111110110011111111111111101111111111111011111011110111010111111110111111111111111101011101111011111101111111111110111111111111100101111111111111111111111111101111111111111111011111111111011111101111111111111111111111111111011111011111111111110011111111111111111111111111111111111111110101101111110111111101111111111111101111111111111101111001100111110010110111111111111111111111111111111111111111101111111111111111111111111111111011110111110111111110111111111111111111111111111111011111110111110111111111111101110111111111111111111111111011110111101111011011111111111111110110111111111101111111111110111111111111111111111111111111111111111011110110111011111011111111011111111111111111111111111111111111111111111101111111111111111101011111011101111111111111110111111011101110110111111011111111100111111111111111111111111101111011101111111111111110111111111111111111111111011111111111111101111110111111111011101111011111011110110111111111111111111111111111111111101111111111111111111111111110111110111101111111111111111111111111111011111111111111111111101111111111111111111111111111001111011111111111111111111111111110111111111111011111111111111111111111111111110111111111111111010111111111111001111111111101111111101111111111111111111111111111111011111111111101111111111011111111011111011111111110111110111001111111110011111111111111111111111011111111111111111111111111110111001111011111111011111110111111100101111100111111111111111010110111111011110111111011111111111111011111111111111111111110111111101111101111111111111111111110111011111101111011111111111110111110111111110111111111111111111111110111111010101110111111110111111010111111101011111111111111111111111111111101111101111111111111111111111011110111010101111111111101111111111111111111111110101111111111111001111011111111110010111110111101110111111111011111010011111111111111111110111111001100111111101101111111111111111111101011111111111111101111111111111111111111111111111111111111111111110111111111101111111001011110101111111111111101010111011111111111111111011111111011111111111101001111111111111111111111011111111111101111111111111111111111101111111110111111111111111111111111111111011111111111110111011111111011111111110111101111011111111111011111111111111000111111111110111111111111110011111111100111110101111101010110111111101011111111111110110111011111110011111110111111111111111111111111111111111111011111111111111011111111111111111101110111111111111111111111111011111111011111111101010111011111110111111101101111111101111111111111111111111111111111111111111111011101111111110101111111110111110111111010111111011111111111111111111111111101110111111111111111111111011111101011111111111111111111111111111111111111101111111111111111101111111111111011111111111101111011111111111111111011111011111111011111101111111111111111110101110111111111011110111011101010011111111111111111111111111001111111111111111111111111111111111111111111111011111111100111111111110111111101111111111111110110111111111111011111111111111111111110111111011101111110010111111110101111111111111101110111101011111101111111111111111111110111111111111111111101110111111111110111011011100111111101110110111111111110110111111111111110111111111010101111011101110111111111111110111111111101111111101111111111111111111111111011111111110111111111111101110111111101111111111111110110011111111011111111111111111111111101101111011111111111111101011110111011111111111110111111010111101111111111111111111111111111111111101111110001111111111111111010111011111111111011111111111111111111110111101101111111111111111111111111111111111111111001111111111000111111111111111111011111111111111111111111011010110010101111110111111111111111111110111111111111111111101111111111011111111111111111111111101111111111111111101111111111111101011111111111111101101111101111111011111111111110111101111111111101011111111011101111111111111111011111110111111111111011111111110111111001111111101100011111111111111111111111111111101111011111111111111011111111011110111111111111111111111111111111111111111110111111111111111111010111011111101111111001010111011011101111111111111011111111111111110111111111111011111111011111111101111111011101110111111111111110111111111111111111111101111111111111111011011111111101111110011111111111111111111111111111111111111111111111111011111111111111111111111111111111101111111111111111101110111111001110111111100111111111111111111111110001111111111101111111111110111111111111111110111111011111111111111101111111111111111111111111111111111111111110111111110011101100111010111111011101111111111111110111111111111111011111111111111111111010111110111110111111110011111101111110111111101111111101010111101101111101111111111111111111111111011111110111011111011111111111011111111111100111011111110111111011111111111111111111111110111111111111111001111111111101111110111111111101101111010111111111111111111111111111111111111111111111111111111111011111011111111111111111111111111111111111111111101111111111111011101111111111111111111111111011111111011111111111001011110111111111111111101111111111111111111111111101111111111110111111110110111011111001111111110111111110111111111111110111111111111011111011111111111111111111111111110111111101111111111111111111111111111111111111111011111111111111111111010111111111110111110111110111111111111111110111110111111111111101111111111101011001111111101111111111111111111111111111110011101111101110111111111111111111101111111111001111111111111111111111101111111111111111101111111111111101101111111111111101111111111111111111111111101111101111111111011111111011111111111111111101111111111111111101111111110110111111111111101011011111101001111110111111111111111111111111111111101111111110111111111111111101111111111111111010111110111111111110111111110111101111111111111011111111110111110111111111111101111111111111111111111111111111101111111111111111110011111111110111111111101111111011111011111111101111111111111111111111111111111111110011111111111111111111111111111101111011111111111111111111111111111111111111111111111111111111110101111111111111111111101111111111111011001101101101111111111111011111111011111111101111111011111111111111111101011111111111111110111111111110111111111111111111111111111111111111111111111111111101111111111111110110111111111111111111111111011111111111111111111111111111111011101111111110111001111111101110111111110111111001111101110101111111111111111111111110111111111111111111111111111011111111111110111111110111111111111111111111111111111110101111101111111111111111011110111111111111111111111111111111111101111111011111111101111111011111101101100111111111001111111111111111111111111111111111110111011111111111011111111111111001011110111010010111111011110111111111111111111111110111101011101111111011111111111111111101111111011101111111110111111111111111111111011111111111111111011111111011111011111111111011111111111111100110111111111110111111111100110111111010111111110111111010101111111111111111101011111110010111010111111111111111110111111011111111111101111011111101011111111111101111111111111111111011111011110111111111110111111111101111110101011111111111011011111111111111111111111011101111111111111111111111111111111111101111111111111111111111110111110100111011111111111111010110111111111111111101111111111101110110111011111111111111111111111101111111011111111111111100111101111101111111101111110111111011110011011101111111111011111111111111111100111111111111111011111110111111110111111111110111111111111110111101111111101101111111110111111111111111111111111111111111101011111111111111111111111111111111111111111101111111111111111100101111111111111111111111101100111111111111111011111111111111111111110111111111111111111000011111111111111111101111111111111111111101111011011111101111011111101110111110111011111111110111111111111110111111110111110011111111011111111111101111111111110111111100001011110111111111111111111011111110111111111111111111111111111111110111111111111111111111111111111111111111111111110111111011111111111111111110010011111111111111111111111111111111111111111111101111111111111111111011110110111110111110111111111111111111111111110111111101111111111011111101111111011011111110111111111111111111010111111101011111111111011111111101101111111111110111110111111111111111111111111101111111111111111111111011101111111111111111110111111111111111111111111111111111100111011111111111011111111111111110101101111111111100011111111111111111111111111101111111111111011111101101111011111111111111111110111111011101111111111111000111111111101111101111101111111111111111101111101111101111111111111111111101111111011111110111111101110111111001111111111111111111111011111111111101010111111111001111011111111111010111111111111111111111110111111100111100110101111111111010111111111111011111011111011111111111110110111011111111111011111111101111111111111111111111111111101111100111011111111111111111110101101111111111111011111110111101111111111111111110010101111111111111101111111111111111111111110101110111111111111111110111111111111110111110111111111111111111111111101101101111111111111111111111011101111111111111111111110111111101111111110111111101111111011010111111011101010101111110111101111111110110111111101111111111111011111101100111111011111111111111111110111111011111111111111111000011101001111111111111111111111111111111111111111111111111110111111111111010011111111110111011011111111111111111011101111111111111110111111101011011111111110010111110111111011111111101111011011111111110111111111111111111111010111011111111011111111011011111100111111111111111111111111110011111011111111110111111111111111111111111110111110111110111111111111111111111111101111111111110111101111101110011111111101100111011111011101110111111111111101111010111111111101111111111111111111111111111011111111111111011101111111111011011111101110101111111101111111111111111111111111011111110111111101111011111111111111111111101111111111111111011110111111111111111111111111111111111111111111111111111111111001111111111011101111111111111110111111110111011111111011111111011111111011111011101110111111111111110111101111011111111111111111111111101111111111111111111111111111111111111011110101111111111111111111111111111111111101111011111111110111111011111111111111101111111101111111111011111111111111011111111111111111111111111111111101111111111111111111110111101111111111111101111011111111011111101111111111111111111111101111011111111111111111111111101011111111111111111111111111101111111111111111011100101111101111111111111111111111111101111111111111101101110111110110111111111111011111001111111110111111111111111110111111001111111110111111011101100111111111111111111110111111111110111111011111011111111111111111111111101111111110111101101111111111111110111110111111110111111111111110111111111111111101111111111111111101111010001111111111111110111101111011111111111011111111011101111100111111111111111011111111111111110101010111111111111111111111101011111111111111111111111011111101111011111111111011111111111111111111111111111111111010111111111111111111111110111111111011111111111111111111100111111111101011111111111111111111111111101111111011111111011111111111111111110110111111111111111011110101111111111101111011111111111111111111101011110111111110101111110111111111111111111111111111111111111111111111111111111111111111111101111111111011101101111111011111110111111111111101111111111111111101111111111111111111111111111111111111011011111111111101111111111011011011111111111111111111111111101101010111011111110110111111111111111111111111101111110111101111101111111111111110111111111001111111111111111111111111111111111111111111111011111111101111101111111111111111110111111111110111011111111111110111111111110111111111111110111111111111101111111111111111111111101111111111111111111101111111111011111111111111111111111111111111110111111111011111111111110111111111111111111111111011111111111110111111111110111111111111111111111111111111111111011111101011111101111111111101011111111111111111111111111101111111111111111111111111111101011111111001111111111111110111111111110111111111111111111111111111101011111111111111111111111111111111011111011111110111111110111111111111111111011111101111111111111111111101111111101110111101001110011111111101111111111111111111111111110111111111111011111111111111111111110111111111111111110111111111111111011111111111111111111111110111101111111100111110111111111111111111111111001101111111111111111111111111101111110101101011111111101111111100111011111110111111111111111111111111100011111110111110111111111110011111111111111111111111111111111010111111111111101111111011110111011110111111111011111011111111111111011101111111111110110111111110111111111111111101111111111111111111111110111111111111111111011111111111111111110111111111111111111101011111111111111110011111011101111111111111110111111110111111111101010111111111111111110111111111111110101111111111111011111111111111111111111011111101010111111111011111111011111111111111111011111111111101101101110111111101111111111111111111111111111111111111110111111111111110111111111111111100111111111110111111011010111111111111011111101111111111111111111111111111111111111111101111111110111111111110111111111111110111111111111111111110111011111110111111111111111111110111111111111111111111111111111111111101111111111110111110111111111111111111011111111111111111111111111111011111111111111110001110111111111111111111101111110111111111111111111111110111111011111110111111111101111111111101111111011111101111101111110111111111111111111111110111011111111011111111111111111111111111111111111111101111111110100111111111011111111110001011110111111111111111111011111111111011111111111101111111111111111111011111011111111011111111111101111111111111001111111111111011111111111110111111110111111111111101111011110110111111111111110101111111111110101111011110010111111111111110011111111111111111101011011111111111111111111111111011111111111111111011111110110110111110111111111111111111101111111111111111111111111011101011111010111110111011111111011111011111110111011111101111111111111110111101101101111111111111101111111111011111111110111011101111111111111111011111111011111111111111111111111111111111111111111111111111111111110001111111111111111111111111111111111111010011111110011111110111111111101111111111111111111111111111110111110110111111101111110110111111111011111110111111111111111111111111111111111111101111011111110111111111111111111111101110110101110110111111111111111111111111111111011011101011111111111111101111101101111111111111111111111111111111111101111110111111101111111111111111111110110111111111111101111111111111101110111111011011111111111111111111111110111011110111011110111101111111111111111101111111111101111110111111111110111111111111111111111111110111111111011111111100101111111111111111111111111111111111111111110011001111111111111111111111111101111110111111111111111111111111111111010111111110111110111111111111111111101111111111111110111111110111111111011011111111101111111111111111111011011111111111111111111111111111111111111111111111111101111111111111110110111111111110111111111111111111111111111111111111111111111111111111111111111011111111111111101111111111011011111111111111111110111111011111111111111111111111111111111111110111111111111111101111111111110101111111111111011111111111111101111101111111111111111111110111111110101111111111001111011111111111101111111111010111111111011011111111111111101111011111111111110111011111111011111101011111001011011111111111111111101111111111111111111111111111111101110111110111111110111111111111101111111111111111111101111111111101111110111111111010111110011111111101111111111111111010101111111110111111111111111011111111111111011011111111110111111111111110111111111111111111111110011110111111101111111111001111110111111111111110111111111111111111111111111111011011111111101111101111111111111111111111111011101111111111111111111111111001111110110111111111111111111001110111110111111110111111011111111111111010110111111111101111111111111111111111101111111111111110111111111111111111101111111111111110101111111111111111111110111111111111111111111111111111111111111111001111111110111111111111111011111111110111101011111111111110011111111111111011111110111111111111111111101101111111111110101111111111111111111111010111111111111111110111111111011011111111011011110010111111111111111111110111111101111111111011111111111111011111111011111111111111110111111011111111111111111111111100110111111101111111111111101111110111111010111111111111011111111111010101111111111111111111001111111101111111111111111101101101111111111111111110111011111011111111111111111101111011111011111111110010111111110111111111111110111111110111011110101111111111110111111111111111111111111010111101111111011010111111111101111111111111011111111111111111101011011111111111111111111111111101111111111110111101111111111011111111111111111100011110111111111111111111111111011111111101111111111101111111110111111110011111110111111111111111101111111111111111111110111010111111011101111111111111111110111101111111111011110111111111111111111101111111111111011001111111111111111111111010111111111111111111011111111111111111101111111111111111111111111111111111111111110111111111111111011111111001111111111111111111111111111111110111111111111011111011111111101111111111111111111111111111111111111101111111111111011110111111111011111111111111110111010111101101111111011101111111110110111100011011111011111111111110111011111011011111011111111111011111111111111111111111011110110111110111111111111111011111111111101111111111101111111111111110111101101111111111111111101111101111111111111111111011011111111111010111111011011111111111111111011110011111111110111110101111101111111111111101111111011111111111011111111101110111111011111111111111011010111110111111111111011101111110111111111111111111111110001111110111111111111111110101000111110111111111111110111111111111111101111111111111111011111111111110111111111011111101111010111101111111101111111111111111111011011111111111011111111111101111010111111111111110101111111101111111111111111111111111111111111111111111011111110110111111111111110101101010111111110111111111111111111111111111111111111111111101011011111101111111111111111111111111101111111110011111111111111011110001111111110111110111111111111111101111101111111111111111111111111111111111111101111111011111111111100110111111111111111111110111101111111111110111111101111111111111111111111111111101111111101110111111111111111111111111110111111111111111010111101111111111101010111111111111111111111111111011111111111111101111001011101111111101111111111011111111111111111111111111111111111111111111111110111111111111111011111111111111111111111111111110111101011111011011101111111111101111011111111111001110111111111110111111111111111101111101111111111111101111101111111111110111111111111111111111111111101111011111111111110111111011111011111111111111111111111111000111111111110111111101111111111110111111111111111111110111111101111111111101111111101111111111001101111111111111111110110111011111011111111001111110111011111111111111111111111101101110111111011011111111111110111111111111111111111111101110011111111111101111011111111111111111111111011111111111110011111111101111111110110111111111101111111111110111111111111111111111111001111001111011111111101111111111111111111111111111111111111111111111111111101111111011011101011101111111111101111111111111111111110111111111111111111111101111111111101111111110101111111110111111111111111111111111111111010011111111110111111111110110111111111111101101111111111111011111111111111011111101111111111111111110111111111110111001111101111111111111111111010101110111111000111111011011111111111111110111011011101111110111111111111111110011111111111111110111101111111111111111111111110110111111111111111111101111111110111111101111111111101101001101011111111111100111111111111111111111111111111111110111111111111111101111011110111111111111111111110111111111111111110101111101101101111111111111111111111111111111011111111111111010111111111110111111111111111101111111111111111110111111111111111111111111111111111110111111110111111111111111101011111111111001110111111111111111111110111101111111111111111101111111111011101111111011111111110110111111110110011111111101011111111111111011111111011111011101111111110111111110111111111111111111111110111111111111111111111111111111111111111111111111111111110110111011111111111111111111110111111101111111111110011101011011011111111111010101111111111111011111111111101111110111110111111110110100111111111101111111111110111111111111111110101011100111111111111110111101111111111111111111111111111111111111110111111111111111111110111011111111111111111111111111110111111111111111111101111011111111111111111111111110111111011111111111111111111110111011111011101110111110101111111110111011101111111011011101111111011110011111101111011111111111011111111111111111111111110111111111111111111111111111111111111111101011111111111111111111111111111111011111010011111111111100111111111111111111111111000011110111111111111111111111111111111100111111110101111111111111111111011111110111111111111101111101111011110111101111101111101111111111111111110111111011110101110011111111011110111111011111010111111111111111111111111111111111101011111011111111101111111010111111111111111101111111111111111111111110011111111111001111111111111011101111111111111111111111111111011111111111011111111011111111111101101111111011011111111111101111111111111111111111111111001110101111111111111111111111111111111111111111011011111111111101111111111111111111111111111111111111110011011111010111111111111111011111111111111111111101111111111111111101111111111111111111111111111111111111111011111001011111101101110111101111111110111111111111111111111111111101111111111111111111111101111110111111111111110111110111111011111111111111111111111101011011111111101111111011100111111111111011111111011111110111011111111111111011111111111111111111111111111111110111111111111111111111111011111101111111111101111011111111111111011111111111111110111011111111011001111111111001111111100111111110111110011111111111111111011111111110011111111111101111111111101111111110111111111111110111111111111111111111111111111111111111110101100011001111111111111111110110111011101111101111111111111111111011111111111111111111110111111111111111111111111111111111111111111111111111111111111111111111111111110111101111111110111111111101010111111111011110011111111111011111111111111101111111111111111111111111111011111111111110111111111111010111111111111111111111101111101111111111111111001111111111111111111111011111101111111111111110100111111111111111111111111110111111011111110111111111111101111111111111111001101111111101111111111011111111111011011111111111111111111110111111111111101111111010111101101011111111111111111111011111111111111111111111011011011111111111111111111110011111111111111111110111111111101111111111111111111111111110001111111111111111111111111111111110111111111111111110110111111110111111111111111111111101111111101111111111001111111111011111111111111111111111111111111111111111111111110011111111111111011111110111111111110111001000111111111111111101111111111111111111111111011111111111111111111111110111111111111011111111111110110101101101111111111111111111111101111011100011111101111110111111111111111111111011111110111111111111111111111111111100111111111111111111011111111111111111111010110111111010110111111111111110111111111111111111111111111111011101111110111110111111111111111111111001111111111111111111111101111111011111011001111111111111111001111111111111111111111111111111111111110111111111111101111111111111111110111011011101110111111111111111111111110111111111111111110101111111111111111111111111111111111111111111111111111111010111111111111111011111101011111111011110111111011111110111111110111110111101111111111110111111111111011110111111011111101101111110111101111111101111101111111111101111111111101001011111101011111111111111111111111111101111111111111111011101111101110110111111101111111111011101111111111111111111111011111101111111111111111111101110111110111111111111111111011111111111111110111011111110111111111111011110111111111110111111111001111111101011111111010111110111111111111111111110101100111111011111111111111111111111101111011111111110111110011111111111111111101001111100111110111110110111111111111101111111111111111111011111111111111111011111111111111111111111111010110111111111111111111111111110111111111111111110111111111111101101101111111111111111111101111010110110110111111111101111111111111111011111111110110111011110011111111111111111111111111110110111110111111111111111111111111011111111010110111111111111110111111111111111111111111111111111111111111111111110111011111111111111111111111011111110111111101111010101111111111111110111111111111110111111111111111011111111111010011011111111111111110111111111111111111111111111111111111110111001111110111111111110101101011111110011111010111101001111111111111111111110111111111111110111111111110011111111111011111110111111111111111111111110111110111100111101110111111111011111011111111011101111111111111111111111101011111111011101111111111111111111111111111111111111110111101111101111111111011111011111111111111110111111111111111111111111110111111111111111111111101111111111111111111011111111111111111111010010110111111111110111011111111111011111110110101111111111101111111111111111111011111111111111111111010111101111110101111101011111111111111111111111111111111111011111110011110101111111110111111111111111111110111110111011111111110101111111111111111111001111111111111101101111111011011110111111111111111011011111111111111111111111101011111110111111111111111111111111111111111110111110111111111111011111111111111110111111110111001100111111111111101110110111011111111111111111111111111111111111111111111111111111111101111111111110111111111111100111111111101111111111111111110111101111011111111111111111111011111111111011110110110111111111110111110111111111011111111111011111110111111111111111111110111111111111111111111111111111110111011111111110111111111111110111111101011111111111111111110111111111101110111111111111101111111111011110100111111111111111111111111110111111101111111111111111101111111111111101011111111101111111011101111111111011111111111111011111111111111111111111111111111001111111111111111111111111111111111111110111111110011101011111111111110110110111111111111111111101001111111111110101111110111111111111101101011111111111111111111110111111111111111111111111011111111111100011111011010111111111011111110111101110111111111111111111111101111111111010011111111111110111111111111111111111111111111111111111111111111101111101111111111011111111011111111110111111110101111111111111111111111111010011111011111111111111111101111110111111111001010111111011111110111111111110111110111111110111111111111111111110111111111010111111011111111111010111111111110111111111111101111111110110111111111111110101101111101111111111101111111111110001111111111111111111111111111101101111111101111110110011111111111111111111111111111111101110111110110111111111111111111111111110111011111010111111011111111111111111111110110101111111101111111111011111111111111111101111111011111111111111101111111111111100111101111101111111111111111111011111111111011111101111111111111001111111111111111111111011111010111111111111111011011110111111111111111101111111111111111010111001111111111111101011101111110111111111111111111111111111111111111111111111111111111111001111111111110110110111111101111111100111110011111011110111111111111111111111111111111111111111111111111011111111111111111011111111101111111111001111101101101111111111110110111111111110111111111101111111011111101101111111111111011111111111111111111111111111111111111111111101111101111111011111011111111110111111111111111011111111011101111111101001111110111111111111111111111111111110101011111110111101111111111011111111111111111111101111111111011111111111111111111111111111011111111111101111111111111111111111110111111101111111111111111111111111111110111111111111110111011111011111111101110111111111111011111011111111111111111111111111101111110110111101111111111111111111111111111111101111110111111111110111111111101111111111111111111111110111011111111111110011111101110111111111110110111111111111111011111011111111011111111011111111011111110111101111101110111111111111111010111111111111110111111111111111111000111111111111111111111110111111111111111111111111111111111110111111011110011101111111111111111111011011111111111111111110111111111111111111111111111111111110111110111111110111101111110111111111011111111111111111111111111111111101111111011111011111011111111111010111111111111101111111111110111111111111111111111111011111111111111111111111111111111101111110111111111111111111111111111111011111111111111111111111111111110111111111111111111011111111110110111111111111111111110101111111111111110111111111111111011111111110111011111101101111111111111111111111111111111111111011111111100111111111111101110111111111111111111110011111110111011111001111111111111101110111111111111111111110111111111111111100111111111110101111111101111111111101111111111111011111111111111111111110111111111111111111011111011111111111101111111111110111111111111111101011110111111111011111111111111110111111111101111111011111111111111011111111111011111110110011111111111111111101111111111111111111011111111111111111111111111111110001111111111111111111111111111111110101111101111111111111011110111111111111111111110101111101111011111111111111111111111011111111101111111111111111111111111110110101111111111110111111111111111111111111111111111111111101111101111111111111011111111111111111111111111101111111011111111111011010111110110111110110111111111111111111111111111111111111101111001111101011101101111101111011111111111110111111111011111111011101111111110110111111111111111111111110111111111111111111111111111111111111001011110111110111111011111111111111111110111111111111111101101111111111111111011111111111110111111101111111111111110111001111111111011111111111111111101111001111111111111111011111111011101111111111111111110111111111111111111111111111111100111111111111111111111111110111111111111111111111111111111111111111110111111111110101111111110111111111111001111111111111011111111101111111011111110111011111111111111111111111111011111111111111111111101111111111101111001111111111111011101111111111111111011111011111111110011111111111111111011111101011111110111111110111011111111111111111111111111111111111110110111011111111111111111111101111111111101111111110110111111111111111111111111111111110111111111111101111111111111101111111111111111111101011111111111011101111111111111111110111110111111111011111111111111111110010111111111111111111111111111101110111111111111110101101111111111111111111111111111111111111111111111111101111110110111111111110111111110110101110101111101111111111111101011111111111111110111111111010111110111111011111011111011111111111011111111111111111111011111111111011111110111111111111101011111010111111111111110110111111111111111111111111111111110111111111111111111110111111111011111111111111111111111110011111111111110111111111111111111111111111011101110111110101111010111111111111011111101110111101111110111111111011111101111111111110111111111111101111111111110111111101111111111111111111111111111111111011111111100111111011111111111111011111111111111111111111110111111111111111111111111111111111111111111111110111111111111111111111111111101111111111111011111111101111011111111111111111111111111111010111111101011110111111111111110111111111111111101111111111111111111111111111110111111111111111111111111111111111111111111110111110110111111111111111111111111111111111111101101011111111111111101101110111111111111111110111111011111111101011101111110111111011111111111111111111111111111111101111111111011011111111101111101011111001111111111111111101111111111011010111111111101111111111101111111111111110111011111111111111111101111111111111111111111111111111110111111011111111111111111011111011111101111111111110111111101111111111101101101111111111111111111101111101111111110111111111111011111111111111011111111011011101111110110110110111101111111111110111111111010111111111111011101111111111111111111111111111111011111111111111011111111111111111110111111101111111111111110111011111111101111111111010111111111010100111111111110111111111101111111011111111111111111111111111111111111111110111111110011111110110111111111011111110111110111111111111111011111101111111111110111111111011111101111110111111110111111111111111111110011111111110111011101111111111111111110111111111111111111111111011111111111111111111111011110111111100111111110111111111111010111111101101111111111110111111011111111110111111111111111111111111001111111111111111111111111011111111110111111111111111111011111111111111111111111111111111111011111111111111011111111111111111111111111011101111111111011011100111111111111111111111110111111111110111101111111111111011111111111111111111111111111110111111011111111111110111111011111111110011111111111111010111101111010101111111111111111111111111111101111111111111101110111111011111111111111110111111111111111111111111111010111111111111111111111010101111111011111111110111011101111111101111111111011111111111111111111011111111111111101011111111110101111011111111011111111101111111111111111111111111111101011111110111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111111111111011111111011111111111101111111111101111111111111011111111111111110111111111111111111111111111111111110111111111111111011110111111111111111111111111111111111001111111111111011111111111111111101111111111111111111111101111111111101111111111111111011111100101111111111111111111111111111111011011111111111111110111111111110110111111111111111111111011111111111111111111101110111101101111111110111111011111011111111111111111111111111111011111011111110111011111101110101111110110111111111110101011111111111111111011111111111111111111111111111111111110111110111111011111110111111111111111111111111111111111111111111111111111110111111111111111011101011011111111111110111111111111111111111101111111111110011111111111111101111110111111111110101111111111111111111111111111111111111111111111100111111111110111111111111010111110111101111111011011111111111110011101111111110101100011111111111111111111111111111101111110111111111111111100111011110111011110111111111111111111110111111111110110111111111111001111110111111110111111100110111001111111111111111111111111111111111111011011011111111111111111111111111111101111110110011111111111111111111101111111111111111111111011111110111111111111111110111111111011111111111111110111111111101111111011101111111111111111111111111111111110110111111011101111111111111111111111010111111110111111111111111111101111111011110111111111111111101111111111111111111111111111111111111111111111111101111111111111101111111111111111011111111110111111111011111011111111111111111111101111101111111111101111111111011111011111011111010111111111111111011111001110111111111111111011111111111010111111111111111011111111011111101111111111011101111111111110111101110111100111111111111110101111101111101111111111111111111111111111101011111111111110111111111110101111111110111101110110111111011011111111111111111111111111110111111111111111111111111111111110101111011011111111111110011111111111111111111110111111101111111111111111011011111111111111111111111111111111111111111111101111111011010111011111011111011111111111111111111111111111111111111111111111111111010010111111111111111111101111111111111111111110111111010111111111111111111111001011111111111111111111111110111101111111111111111011111111111010111101110111111111111101111111111101111111111111111110110111111111110101110111111111111111111101110011110111111111101111111100111111111111111111111111111111110111111111111111111111111111111101111111111101111110111111111111111111111101101011110111111111111110100111111100111111111111101111011111111111101111111111111111111110111101011111010011111111101111111111111111111111101111111111111111111111111111111111111111111111111111111111111101101101101111110111111101111111011111111011111001111111111111001111111111111111111111111111101111111111111110001111101011111011110111101111111111111011111111111111111111111111011111111100111111111110111111111111110111111111111111111111110111110111001111111111111111111111001001111011111111111111110011111111111111111101111111111111111011111110111101111111111111111111111110111111111111111111011101111101111011101101111111111110111111011111111111111111111101111111111111111110011111011111111111111111011110111101111111111001111111111111011111111101111111111111101111011111110111111111111111110111011111111111111111111111110111111100111111111110110111111111111111101111111111111011111111001101111111111111111111101111111111111111111111110011110011111111110111110111011111111111110110010111111111011111111111111111111111111111111111100111111111100111111111111111111111111111111111101111111111011101111011111111111111111101111011111111111111111110111111111111111111011111110111111101111111111111111110111101111011111111111111111011111111111111111111111110011111111111111111011011111111111111111011111111111111111111011111111111111110011101111111110111111111110111111010111111111010011111110111111111111110111111111101011011111111011111110111110111110111111111111111101111111001111111111101111111010111111111111111111011111110111111111111111111111111111111111011111011011111111111111111111011111001101111111111111111111111011111111111111111111010111111111111111011110101111111111111011111111110111111111111111011111111111001111111111111111111111011111111111101111110101111111111111011111111010111111111011111101111111111111111101111111101111111111110111111111111010111111011011111111111111110111110110111010111011111111111111111111111111111111110111111111111101111011111111111011111111101110100111101111111111111110111111111111110111010111111101111111111010111101111111111111111111111111111101111111111111111011111111101111010111111111111111101111101110111110110111001011111011011111111111111110011111111111111111011111111111111111101101111111111010110110111111111011111111111111111111111111100111111110111111111111111111111111111111111011010111101111110011011101111111111111111111111111101111111110111111111111111111111111111111111111111111111111111111101111111111111111111111111101111111111111111111111110111011111111101111101111111111111101111111111111111011110111111110111111111111111011111111111111111111011111111111111101111111111101011111110111111111111111111110111110100111111111111111111111111111111001110111111001111111011111111110111111011111101110111111111111110101111111111111011111101111011111111111011111111111111111111111111111111111111111111110111101101111111111111111111111110111111011111111101000101111111110111011111011001111111111011111111111111111111100111111111111011111010011111111001111111111111111111111111101111111111111111111101111111111110111101111111111111110111111011111110111010111101111011111111111111111111111011111111111111111110001101111111111101111111011111101011111111111101111111111111111111101111111111111111111111111110111111111101110010111011111111111111111111011111101111111111111111111110101111011111111110110111111111111111111111101101111111111101111111111111101111111101111111111111110111111111110110111111111111111111111111111111111111111101111011111101111111110111111111101010111111111111110111111111011111101111111101101001111101111111111101101011110111111011111111111111011111111111111011111111111111111111111111111101111111111101110111111111111011110111111111111111101111111111111101111111111110111111111111111111111111111111111111111111011110111111111111110111111110111111110111111111110111111111111111111111111111111111111111101011111111011111111111011111111111111111111111111101101111111111011111111011111110101111111111111111111111110111111111111111111111111110111011111111101111111111111111111110101111111011111111111111111111111111111111111111011111111111011111111001111111011111111111111111111111111101011111111111111111111111111111011111111111111111111111111111011111101111110111111101100111111111111111110011111111111111110111111111111111111111111101111111110111111101111111111111110111111111111111010111011101111001111011111111111111111011111011111111111111111111111111111111111111111111111111110111100111111011011111111111110111111111111111111111111010011110111110111111111111111111111111011111110011111111111111101011111110111111111011111101111111111111111101111111111111111111111111101111011011111111110111111111111111111111111111111110111111001101011111101111111111010111111111111111110111011111111111111011111111111011111111111101100111111111011111011110011111111011110111111111111111111111111111111111111100111111011111111110111111011111111011011111111111111111011111111111111111110011011111011111111111111111011111011011111111111110111111110111111111111111111111101011011110111111011111111110111111111111011111101110110111111111111111111110011111111101111111110111111111101111110110101111111111001101011111111111101111110111111111111111111111111111111100111111111111111011111101111011111111111111111111111111111111111011111111111111111111101110111111110111111110111111111011111110111111111111111111111100111111111011101111111110111111111111001110110111001011111101111110111111111101111011101111111100111101111110110101111111011111111111011101111111110111011111111111100111011111101111111111111111111111011111111111011101111111111111111101111111111111111111111000101111111111111111101100001111111111111011111011011111101111111111111111111011111101010111111111111110110111111110011111111111010110111111110111111110111111111110111111111011111111111101011010111101111111111111011111111101111111111111111011001111101110110111111111111111111011111111111111111111111111111111111011111101111111111111100110101010101111110111111111111011111011101111111111111110111111111111111111111110111111101111011110111111111111110111111111111111111111111011111111110101111111111111111101111101111111011111111111111111101111111111111111111011111111111110011100110011111001111101111111111111111111111111111111101111110111111110110111111101111101101111111111111111111111100111111111101111111111111111111111111110111111111111111100011110111111111111011101110101101111111101111111111111111111111111111111010111111111111110111111111111110011111111111101111111111111111111111111111111111000111111111101111010111111111111111111111111101111111101111111001111111101111111111111111011111110111110111101111111110111101111111111111110111011111111111111111111111101101111110111111011111001110111111111111110111011111111111101111111111111111111111011110111011111111111111101111111110111011110111100111100010111111001110111111111111111111111111111111111011111011100111111111111111101110111101111111111111101111111100110111111111011111111111101111111110111110011111111111110111101111111011111111111111110010111111111110111111011111110111111111011111110111110011111001111111111111111111111111111110111011111111111111111111111111111111101111111111111111111111101111111111111111010111111111111111111101101111110111100111110111111111111110111110110111111111111111110111111111101111011111111111011011111110101011111111111111011111111011111111110111101110111111110111111101111111111111101101111111101111111111111111111110111101110111111111011110111111111111111111111111111111111110111111110111111111111111011101111111111111111111111111111111011111111111111111111111111111111111010111111101111111111111011111111111111101111111111111111111110111111101111111011111101111011111111111111101111111111111111110111111101111011101111111111010111011111111111110111011111111101111111111111101111111101111111111111110111011001101111100011111101111111111111111011111110011101111111111111111111111111111111111111111110111111111110111111101111111111111110101111111111111111001011111111111111001111111010111110111111111111110110101111111111111111111111110111111111111101110111011011111111111111111011110111101111011111101111111111111011111111010111111110111111111111111011111111111101111111111111101111011101111111011111111001111111111111111111110111110110100111011011100111111101110111111111111111111111111111011111111111111111101111111111111111111110101111111110101101011110111111111111111111111111111111011110111111111011011111111111111111111111111111111111111111011111111111111111101111111111011111111111111111010011111111111111111101011111111111111111111111110111111111111111111101111111111111111111110111111111111111111011011011110111111111111011111111101111111111111111110101111111111111110101111111111111110011111111111011111111111111111111111111111111111111111111111111111101111111110111111111101111111111101111010011111111111111111111111011111111110111111111111111110111110011111101111111111111111011111110111111010111111111111111111111111011111111111111111100111110111111100011011111111111111001111111111111111110111111111111111111110111110111111111011011111111111111110111111111111111110111111111111111111111111111010111111111111111111111111111011111111111111011111000111111011111011110111111111111110111111111111111110111110011111101111111111101011101111111001111011110111101111111111111111110111101111111111111100111111111111101111111111101111111111111111010111111111110111111100110111111111111111111111110111111111111111111011111111111111110001111100111111110111111111111011101111111110111111111111011111111101111011111111111011111111110111111111110111111110111111111111111111111111111111111111110111111111111111111111111111011111111111111111111111111110111111111111111111111111111111111111111111111111111111111111101111111111111111110111110111111111111111011111111111111111010010111111110111111101111111111111111111111111111111111111011111111101111111111111111111111111110111111101101111111110110111111111111111101111011111101111111111111111111110111111101111111111111111111111111111111111011110111111011111111010111011111111111111111101011111111111011011111111101111000001111111011111111111111011110111110101111111111110111111111011111111111111111111111101111111111010111101111111111111101111101110111111111111111111111101111111101011011111111100111111111011111110111111111111111111111110111101111111111111101111111111111111101111111111111111101001101100101111111111111111111111111111111111111111110101111111111111111111111001111101111111011111111110001111111111111111111111111011111110110111011111111010111011111111111101111111111011111111111111111110101111101111111111111011111111111111111110111110011111111101111111111111011111111111111111110110111011111111111011011111111111111111111010111111111111111111111100111111010111111111111111111111110111111111111011011101101011111111111111111110111111111111111011111111111111111111111111110111111110111111111111011111111100111111110111111111111111011111101111111101110111111111111110111111111111111111111111111111111111110111111111111111111111111111111111101111111111011101111111111111111111111111111111111011111111011110111110110111011111111111111111111010111111111111011111111111110111111111111011111111111111111111111111111111101111111111111111111110101111111111111011111111111111111110111111111111110111111111111111111111111011011111111011111110111111111111110111111111111111111111101111111111101111100111111110111111111111111111111111111111011111111101111111111111111110111111111111110000111111111111111011111111111111111101111110101111011111111101111011111101101111110111111111111111111111111111111111111111111111101011111111111101111111111111101111111111111111111111010111111111111111111111111111111111110101111101110111111111111111111111011111111101111011111111111111111111100111101111111110111111111111111111111111110101111111111111101111111101110111111111111001110111110100110111111111111111111111111111111111111111111111111111111111111111111110111011111111111111111111111111111111111111101011110111010111111101111111111100101111111111101111110101111111111101111110111111101111111111111111111110111111111111111111111111111111111101111111111111011111111111111111111111110111111111111110111110111111111111011111111101111111011111111111110111111111111111111111101111111111111111111010111101111111111111111111110111111101011011111111110101101111111111111111110111111111111111111111111111111111111011111111111101111111111110111101111111111111111111111111101111111111111101110111011110111011110111111110111000111011111101111111111111111111111111111111011111111111111111111111111111111011110111111111111101111111111111110111011111111101010101111111111111111111111111101110110111111110101111111111111111111111111111111111001111111111110111010111111111111110111101111111101111101110111111111111111101111111111111111011110101111110111111111111101111111111111111111111111011111111111111110001111110111111110111011111011111111111111111111111111111111111111111110111111111111011011111110111111111111111110011111111101111011111110101011111101111110111111010111111111111101111111111111111011111111111111111111001111111010111111101101111111110111111111111111111111011111111011111111111101111111111110110111111111101111111111111110111111111111011111111111111111111110111111110111111011111111011011111111111111111111011101111111101111111101111110101110111111111011111111111111111111111111111111111111111111111110111111011101110111111111111111111111111110111101101111111111111101111111111111111111111111111111111101111111111111111111111110111110101111111110111111011011111111111111111111101111110111111101111111111111111011110111101110111111111011011011111110010011111011111111111110111111111111011111110111111101111111111111111111101011110111111111111110111111111011001011111111111111110111111111111111111101101111111011111111011100111111111111111110110101011111101111011111111111111111111001111111111111101111111111101111110101111101111110111111111111111011101111111111111010111111111111011011111111101101111111111011111111111111101111101111111111111111111101111111111111111111111011101111101111111111111111100111111111111111111111111111111111101111111111001110111111111111011011111111111110101111111111111111111011111111111011111111111111011111111111101111111111111011011101111111111011111101111111111111110110011111111101111111011111111111111111111011111111111111111111111111101111111101111111011110111110111111111111111111101111111111111111111111110111111111111111111111110111111101111111111111111111111111001110111111111110111111111101101111111011111111011111111111111111111110111111111111111111110111111111111111101101111101111111111110111111111111111111111111111011111011111111111111111111111111111110111111111011011110111111111111111111110111111111111111111001111111111111011111111111111111110111011111111111110101011101111111101111011111111110111111111110011011011110111111110111111111110100111111111111111011111101111111101111101111110111101111111111111101111111111111111111101111111111111111111111111111111111111111111111111111101111111111111011011011111111111111111111111111111111111111111010111011111111111110111111111101111111110111011111111101111111111101111110111110101111111011111111111111111111111111011111111111111011111111111101111111010111111111111111110111111111111111111111111111101111111111111111110111011111111111111110111111111111011111101111111111111011111111100111111111111110111111111011111111001111111111101111111111111111111011111111101111101111011110111110111111111011111011110110110111111111111111110111111111101111111011111111111111111111110111111111111111111111111111111111111111111011111111111111111111111111111111110111101111111111111011111111111111111111111111111111110111010111101111111111110111111111111111111111111111111111111111111111111111111011111111111101111111101111011110111111111111111111111111110111111111101111011011110111111110111111011001111111111111111111111111011111111111111011111111110111111111111001111101101111111011011101111111101110111111101111111111111000110110111111111111001011111111101111100111101111111111111111111111111111111111111111101111011111101111111111111111111110101110111111110101111111111010111111111111110111111111111111111111110111110111111111101101111111101011111111111111011110111110101111111111110111111111111111111111111011011111111100111101111111111010100111111111111111110111111111111111111111101111010101111111111111111111101101111111111111111100111111111111111101111011111111111111111011111111111111111101111011111111111010111111111111111010111111011111111110111011111111111011111011011111111111011111111101111111111111111111110111111111111111111011111111111101111111111111111111111101111111111011111011111011111111001111111111111111111111111111101011111111101111111110111101111111111111111111111111011111110111111111010111111111111111111110111111111111111111111111111111111101111111111110111111110110111110111111111111111111101111111111111111111111111111110011111101111110011111011011111111110111111111110111111101111101111111110011110111111111111111111111111111011111011011111111111111111110111111111011111010101111111111111111111101011111111101110110111111101011111111111111111111111111111111111111111111111111111111111111101111111111111111101111101101111101110011111111111111111111111111111111111111111111111011011101111110111111001111111110111111111111111111111001111111111111111111111111111111111011111111101111111111111111010111101111111111111011011111111111111101111111111111100101111011111111111111011111111011111111111111111111011111111111111111111111111111111111111111111111011111111111101111111111111111101011111111101111111111111111111101011111101111111101111111111111011110111111111111011111101111111111110111111111101111001111111110111110100110111101111110111111111101101111111111111111111110111111111110111011111011111111111111111111111111011111101111111111111111111111111011111111001111111111111110001101111111110001111111111111111111111011111111011111111111111011011111001111111011111111111111110110110011111100111111101111110011111111110111010111101111111111111111111111111111101111011111010111111111111011111111011111111101111111111011101111111001101111101011111111111111110110111111101111111101111011111110001111111111111111111111111111111111111111111011101101111011111101111111011111111101111111111110111111111111111111101011111111011111111111111111111111111111111001111111110111111101111111111111100111111110111011111111111111111001111101111111110110011111111111111111111111111111111111110110111111110111101111101001101111110111111110011110111111110111101111111101111111001111011111111111110101110111111101111110110100111111111111111111110101111101111111111111001111111111111111111111111111011011111111111111110111101111111111111111111111111101111111111011011111111111111111011111011111101111111111011111111101111111111111111111111111111111111111011111111111111111111100011111111111011010011111111111111111111111111011111011111111111011111011111111111111010110011011110111111111111111111111111111111111111111011111101111111111111111101010111111111111111111111111111111111111111111111111101110111111011111111111111111011110111111111111110111111111111111111111111111111111110111111111001111111011111111111111111111111111111110111111111110111111111111111111111111111110111111111111111111101111111111111111110111101011111111111001101111011111110111110111111111111101111111101111111111111111111101111111111111110111111111111111111001111111001111111111101111111111110111011111111111111111111111011111110111111111110110111111111111111111010111101111111111111111111111111111111111111111011110111011111011110111011111111111011111111111111111111111111111011011111011111111111111111111111111110111001011111111111111111111011011011111111111111110011111111101110111111111110111101011011111111111111111111111110110111111111111111011101111111010101111011111101111111111111111101111111111111111110011111011101111111111111111111011111111111011111111111111011111101111111111110111111111111011111011111111111111010111111011111111110111111111111101111111011111111111111110110111111111111110111110111111110111111111111110111111111111111111111111111111111110111111111111111111111101011111111111011111111011101111111111111111111111111110111111101111011111111011111111111111111111101111111111111111111111111111111111111110111111111111111111111111101110111111011111111111111111111111111111011111111110111111111111111100011111111111111111111111111111111111111111111111011011111111011111111111111111111111111111111111111111110111101101111111111011101110110111111111111101101111111111110111111111101111011110111111111111111101111111111111111111111111111110111111111101111111111101111111111111111110111111111110111111111101111111111111011111111111111111101001111111011111111010111111110011111011111101001111111111111011101111111111111111101111111111111111111111111111111111111101111111111111111111111111011111111111110101110100011111111111111101111101111011110110111111111111101110111111101111011101000111111111110111111111111111111101101111101111111111111101111111101011110111111111111010101111111101110101111111111111111111111111111111111111101111101111111111111111111111111111111111111011111111111111111111111110111111111111111110011111111111111111010011111111111111110111110111111011111111111011111111111111110111111001010111111111011111111111111111011111111110111001101111111111111111111111111011011111101111111111011111111111111111011110111111111111111111111111111111111111111110011111111011111111011111110111111111111100111111101101101101110111111111111111111111110111110011011110011111011111111111111111111111111111111111011111110111111111111110011101111111110111111101110111111111011101111001110111011111011111111011111111111111111011011111111111111111111111011111111110111101111110111101111111111111111111111101111111010110111111111111011111110111111111111011101111111111111111110111111111011110101111111111100110111111111111101111111111111111111101111110111110111110111110111111111101111111111111111111111111111101111011111110111111101111111111111111111111111011111111110111111111111111111110011011111111111111111111111111101111111111111111111110111111111110111111111011111111111111111111111101111111010111111111111111110111111011111011111110111111111111111111111111011111111111111111111111111111111111111110111111111111111111111111111111110111111111110100111111111111110111011111111111100110011111111111111111011111111111111111111101111111101101111011110111111110111111101111011111111111111111111111111111111110101111111110111101111111111111110110110111111111111111111111110111111010111111111111011111111011111101110011101011111111011111111111111010111110111101110101111110111111111111110111111111111111111111111111101001101111111111111110111111111110111111111111111110111111111111110111111111111111011111111111111111110111111101111111111111110110011111111111111111111111111101111111111011111110111111001101011111111111111110010101011111111111111111111101011111111111111111111111111110111110111111110111111111111111111011111101111111111101111111111101111111110111111101111111111111111111111111011111011111111111111111111111111100111111011111111110111111111101101111111111111111001111111101110111111111111101111111111111111111100111101011111111111111011111111011111011111111101111111111111101111111011011111111011111111111111111101101111110111111111111111111111111111111111111111111110101101011111101011111111111111101101111011110111111111111111110111111111111111011111111111110110111011111111111111101111111111101111111111111111111001011111111111111111111111101110111111111111101001111111111111111111111111111111101111111111111111110101111111011111111111111011111111111111011101111111111111111111111111101101111111111111111110110111101101111111111111111111110001111011111111111111111111111111111011111111101111111011110111111111111111100100111010111110111111111111111111111111111111111111111111111111111111111111111111111111111111110101011111111100111111110101111101111111111111111111011111010111111111111111111111111111111111111011111011111111011111111111111101111111111111011111101111111111111111111010111111111101111111111111111111111011111111111111111111110111111111111101111111111111111111111111110111111110110101011111111111111101111111111001111111111101111111111011111111011111011011101011111101011111111111111111111011111111111111110111111011111101111111111101111111111111111111101111111101111111111101111111111111111111111001111011101111011111111111111111101111101111111111011111010011101111111111111111111111111110011111111101011111111111111111111111111011111111111111110111111111111111110111111111110111111111111111111011110111111111111111011111111110111111111111110111111101111111011111111011111111111111111111011111111011110111111101111111111111111111110111111000111111111111111111111110101111101111111111111111101011111101111111011111011111111111111110011110101111110111011111111111111101111111111100111111111011111101111111111110101111111111111111111111111101111111111101111111101111111111011111111110111111111111111011111111111111111111111101111111111111111111101111111111111111111101111111011111111111110111101111111101111110011111110111111111111111111100111111011111111111111101101111101111111111111111111111111111111110111111111011111011111111110111100011111111111111111111111111101111111111111011111111011111110111011111101111101011111111111011111111111111110111111111111111111111111111111111111111011011111111111111111111110111111111111111111110111111101110111111001111111100111111111111111111111111111111111110111111111111111111101111110011111111111111110011101010111111111111101111111111111111101111111111111101111111101111111111111111111111111110110111111111111100011111011111110111111111011101111111111111111111111110111111111111111111111111111111111111111111111101111011111111111110111111011110111111111111011110110011111011111101110111111110111110011111111111111111111111111110111101111111111111011111111111111101111111111111110111011111011111111111111110111111111111111111110111110111111111111111111111111111111111111011111111111111111111011011111111110111111111110111111110111111011011111111111111111110111101011110111010111111111111101111111111110111111111111011111111110101111111110111011111101111111100111111111110111111111110111101111100011111111111011101111101011111111111111111111100111011111111111111111101111101111111011111111111111111011010111111111011110111111110101111111011101101111111110111111111011111101101111111111111111111111111111101011111010111110111101110111111111011111101011111111111111111111111111110001101111111111111111111111111111111111111011111110111111111111011111111111111111111111111111111111011111111111111110111111111100101111111111010111111001111111111111111111111110111110110111111101111111111111111111111011111111111111101010111110111101111111111110111111111111110111111111110111111110011111011111111111101111111111111110111111110111111111111111111010111011111111111110111101111111111111111111101111111111111111111110111111111100111111101111111111011111110111111111111101101111111101111111110110110111111101111111111111111111111110111111011111111111111111111110111111110111111111111111110111100111111111011110110111111111111111111111111111100011011101111110111111011111111111101111111111111111111111111111111111110101111110111111111111111110011111111110101111111111111111101111111001101110111111111001111111011011111111111111111111101111111111101111110111111111111111110111111110111111101111111111111111111111111111011111110111111111111111111111011111111111111011111111111111111111111110111111110111111111111111111011111111101111111111110110110111110111110111111111101111111111111111111111111111101101111111111101011011101111111011011110111111111111111100111110101011111011111111011110111111111101111111111111111111111111111111101111111111101111111111111110111111111111011111110111111110111111111111111111111111011110111111111111101111111111111110111111011101010101111111111011110010111111111111111101111101101111111111111111111011011111111111111110011111111111110111111111111111111010111011111111111111111100111111111101111111101111111111011011111111111111111101111110111111111110110111111110011111101111111111111011111111111111111111011111111110111101111111111110111111111111111111111111111111111111111111110111101111111101111111011101111111111011011111111011101011111111111111111111111111111111111011111111111111111111101110111111111111111111110111111111110110101110110111111111111111111111111111110111111101111111111111111111111011111111111111111111101111111111111111011111111111111111111111111111111111110111111111111111111111111111111111111111111111111111111001111101111111111111111111110111110011111011111111111111111110111111111101101111110111110111111111111111111111111111111111011111111111111111111111011111111111111111110110101111011101111111111111111111110101111101101101111111111111101110111111111111111111111100110101111101101111111111110111111101101111111111111011111111111110111110111111011111111111111111111111111111111111001111101111111111111101111111111110111111001101111111111101110010011111101100101110100111111111111110111111111111011110011111111111111111111111111101111101111111011011111111011111111111111111101111111111111111101111111111101111111111110111111011111111111101011101111111111111111011011111111101111111110101111111111110011101111100111111111111111101111101011100111111111011111111111111101110111111111101111011111111101111111111101101101111111111111111111111111111011111100100110111111111011111111000111111111111111111111111111111111111110111101111101010101111111111111111111111111111111011111111101101011111111101111111011111111111111111110101111111111111111111111101111111111111111111101111011101111111111111111111111100101111110111111111111111111111110111111111101111111111111011111110110111111111111111110111111111111111111110111111111111111111111110101111111111110101111111111110111111110111111111011111111101111111111111111110111110010111111111111011111111111111110101110111110111111111111111111111111111111111111111111111111111011100111111111111111011111111111111111111111111111111111001011111111111111001100111111111111111011111100111111111111011111111111111111111111111111101111111111111111111111111101111110111111011111110111111111111011111011111111111111111111111111111111111110111111111111111111101110111111111111011111110011111111011101111111111111111111111111111111111111111111011111111101101011111111111101111111111111011111101111101111101111111110111111111111111011111101111111111110111111101101111111111111111111111110111111111111110100111001111111111110111001111101111111111111100110111111111111011011111101101011111111110101111111111111111111101111011111111111111110111011110111101111111111111111111101111111101111111111111111001111111011011110011110111110101111111111111111111111111001111111111111011011110111111111000111110111111111110111111111111111111101110011111111111001111111111111011111111111111111111111111111111111111101111111111111111111111111101111111110111111111111111111111111111111111111110111111111111111111111111111011111111111111111011101111101111111111110000011011111111111111111110111101111111111101111111111111101111111111110111111101111110111110111111111101111111111011000110111010111111111111111111111111111111111111111111011111111011011111110001101011111111111111111111111101111111111111111011110111111111101111111111110111111111111101110111111100111111111011101010011111111111111011011110111100101101111111011011111111111111111111111111111111111111111111111111111000111111111111101111111111111111111111111111111110111111111110111111100011111111101111111111110111111111111111111110011100111101010111111111110111110110111111111111111111111111111111111111111101101111011111101011111111111111111111101111111110011101111101111101111111111111111111110111111111000011111111111111111011111111111111111011111011111111011110111111111111111111111011110111111011111111111111111010111111110111111111111111111111101011111111111111011111010111111001111111111111111111111111111111111111011111110111011111111111011011111111111111111111101111111100111111111111101111111111011111011111011111111111101111001111111111011111111111111111110111110111110111111111110111111111110111111101011110111111111111111111111111111111111111111111001111111111111110111111111111111110111111111111101111111111111111111111011111110101110111111111111011111111111011111111101111111111111111111010111111111111111111111110111111101111111111111111111111101011111111111111111111111111111111111111101111111101101111111111111100111101101111111111110111111111111111011111111111011111111111110111111111111101111111111111111111111111111111111011101111011111111111111111111101101111111111111111111111111111101101111111111011111101101111111111111111111011111111111111111111111111101111011111011111101111111111111011111011111111111111111111111111111110111111111111011111111111111111111101011111111110111111110111111111111011111111111111111111111101111111110111011111111111111111111111111110111111111111111111111111111111111110111111010011111111110111101111111111111110111111111011111110111111111110111111111111111111111111111111111111001111101111111010101101111111101111101111101111011110111111111111111111111111111111111111111101111111111101111111111111011110111111111011111111111111011111111111111101111101111111110111111111111010111101111111111101111111111111111101111111111111101011111010111101111111111111111110111101111101111111110111111111111111111111111011111111111111101111101101111111111111111111101111110111111111110001111011111111111111111110111110111111110111111111111101110101111011111111111111111101110101111111101111111111111110101110111111111011111111011111111011111011111111111111111111111111111110111111111011111111011111111111111111111110111100111111110110111111001111111111111111111111111111111111010111111111011111011111111111110111111111101101111111101110111111111111111111111011111110111111111111101111111111111111111110111111111111111111111111111111111101111110111110111111111111101110111011111110111111111111011111111111011111111111111111111111110111111111111110101111101111111101011111111001111111111111111111111111111111101111111111011111111111111111111111111111111110111111011111111111011010111001011111101111111101111111111111111111110101111111111011111111011111111111110111111111101111111111111111111101111011111111111100111111111111001111111111011111011111111111111101111111111111111010111111111101111111111101111111110111111111111111111111011111111111111111010111111011111111111110111111111011101111111111111111111111101111110111111111011111111111111110111111111111111101111111111111111111111111111111101111111111111011011111111011111001111111111111111111111111111111111111111111111111111111111111111111011110111101111011110111110111110111111111111101111111110111110111111111111111111111111111111111111111111101110110111111101110111101111111110111111101101011101111111111111111100111111110110111111111111011111111111110111111111111111111111111111111111011111111111111111111111111111111111011110111101111111111110111111111111111111111111111111111111111111111110111011111011111111111110101111100101111110111111111111101111111111111111111111111111111111111010110111111111110111111111110111011111011110111111111111111111111111111110111111111111111111111111111111101111011111110111111111110110111111101111111111111110111111111111111111111111111111111111111110111111111101111111111111111111111111111111111111111111111111111011011111101111111011111111111111110111111111111111111111111111101111111111111111110111111111111111111111111111111111111111111111111111111111111111111111110111111011111111111111111111111111111110111111111110010111111110111111110111101011111111111111111111111011111101111110111011111111111111101011111111111101101011111111011110110111111111111111110111111111111001111111111111111111111111111111000101111111111111011111111111111101111101111111111111111111111111111111111111111111111111111111110011111111111110010111111101111111101011111111111110111111111011111111011111111111111111111111111111111111111001111111111101010111111111111111111111011111111111011111111111111111111111111111111111111111011111110111111111111111111111111111111110111101011111110111011111111111111111111010111111001111111111111111111111110111110011111111111111111110111111011111101111111111101111101111111110101111111111111111111111111110111101111111111111111110011111111111111111111110111111101111111111111011011111111011111111111101111101111111011111101111111111111111110111111101110110111011111111111101010111111101101111011111100101111111111111110111101111011110111111110111111111111111111101110111001111011110011110111001111101111111111111111111111111111011111111111111111111111111011101111111011111111001111111111110111111111111101111111101110111111111101011111111111111111111111111111111101101111111111111111011111111111111101111111111111101111110111101111111111111111101101111011100101111111011111111111111011111111110101101111111111111011101111111101111111111000001111101111111110110101111111111111111101111111111111100111111111101111111110011111101111111110100111111111101111111111111111111111111111011101111111101110111111011101111010111011011110011111111111111111110111111011111111101111011111111111011101111111111111111101111110110110111000101101111011111110111011111111111111111101111111101111100111111101111111100111111111111110111111111111111011111011110101111111110111011111111111111110111110111111111111111001111111101001111111111111101011111111111001111111111111111111110111111110111101101111110110111111111111111111111111111011101111111111111111111111101111111111011111110111111111111111111111110111111101111111111111111111111111111111111111100101111111111111011111011011111111111111111111011111101111110111111011111111111111011011111110111111111111011111111111111110111111111111011111111111111110111111111110111010111111110011111111111110111111111111111111111111011111111111111111111111101111101111111110110111111111111111111110111011010111111111111111111111111111111111111111111111111011111111111110111111011111111111111111111011111111111111111111111111111111111110011111111111111111011111111111110111111111111111011110011111011011111111111110111101110111011111111111111111111111111110111111111111111111111111010101111111111111011111110111111111111111111111111111111111111111111111111111110111111111111111100111110111111111111111101111111011110111010111111011111111111101111111110111111101111111110111111110111111101111111111111110111111110111111101111111111111111111111111111111111101111011111111111111111111110111111111111111111110111111011111111111111111101111011100111111111011110111110111111110111111111111111111010111101111110111110111111111111111111111111111110111111111111111111101111111101110011111111111101111001111011111110111111011111111110111111111111111111111111011111111110111011111111111111110111111111111010111110011111110110011111101101111111111111111011110111111111111111110101111110111111111111111111011101111111111111111111001101011111111111111111110111111111011111101111011011111111011111111111111011011111111111101111111111111111110101111110111111101111111111111111111111111111111111101111111101111111111111101111100111111111111111111110111110111111111111111111101111111101111011111111011111111101111111111111111111111111111011111111111111111111111011111110101111111101111111001110111110111110111111110111111111111111111110101011111111111111111111011101111110011111111111101101111011101111111111111011111111111111110111111111101111111011111111011111111110111111111011111111110111111111111111011111111110111111111111111111011101110111111011111111110011111111111111111111111011111010111111111110111111111111111011111110111110111111111111111111111111111111111101101111111111111111011111011111111111111111111111110111111101110111111111110110110111111111111111011111111101111111011111111111111111111111010011111110111111111111111111111011111111111011111111111111110011111111111100111110111111111111111001111111110111111111111111101011111101011110111011110111101111111111111110100111110111111111111111111111111110111110111101111101010101111111111111110011111101111111011111111101111111001111111111111111101111111111111111111111111111111111111011111111110111111111101111111111111111010111111101110111110111011111111101111110111111111111111111111010111111111111111111111111111101010111111111010111111111101111111111111111110110111111011111011111101111111111101111111011111111111111011010110011111111111111111111011111111111110111111111111111111110000111111101111111111111011111101011111011111111111111111111101111111111111111111111111111101111111111111111111111111011101111111011111111111111111111110111111111011111110101011001111111111111111001001111111111111111101111111011111111111110111111101110111111111111110111111111110111111111110111111111111110111110111111111111111110111111111111111011110111111111111110111110111101111110011111110111111111101111011011011111111111111111110111111110111111111111111011111110111110111110111111011111111111111111111111111111011111111111101101111111011101111111111011111111011110111111111111111111011010110011111111111111111111111111110111101111111111011111110111111111111110101111100111011111111011111111111111111011101110011011111111111111101101101111111111111101111111101111011101111110011111111111111110111111011011110101001111111110011111111111101111011111111111111011111111111111111101011111111111111111110101111111111111111111111111111111111011111101111111110111111111111111101111111111111111111111111111111111110011111111011111111111111101111111111100111111111111011111011111111111111011111111111111111111111111111101111101111111111111111111111111101111011111110111111111111111110111111111111111111111111111111111010111101111111111111011011111111111101111011111011111111111111110001111111111011111111111101111111111111101111111111110111110111111111111110111111110110111111111011011111011110111111011101111101111111111111111011111110011110111111111101111111111110111110111111111110110111101111110111011111011111111111110011111111111101101011111111011111011111011110111011101101111111111111111111111111111011011111111111011111111111111111111111111111111111111111111011111111111011101111111001111111011111111111111111111111111111111111111111111110111111111111111111111111110111111111111111111101111101111111101111111100111111111111011111111101101111111111111011111111111111111011101111011010011111111111111111011110111111111111111111101111111111111111111111111111111101111111111110111101101111111111111111111111101111111111101111011011111011111111111111111111111011111111111111111111110111111011010111011111111011111111111111111111111011101111111111101111111101111101111111100011001110011111111111111111111101011010111111110111111111110111011111111111111111111111110101111111011110111111101111110110111001111111111111111111011111111101111111111111111111101111110111111011111111111111111101111111101111111111110111101111111011110111011111111111111111111111001101111111111011111111110101111111111111111101111111111111111011111111111111011111111111110111111111110101111111111111111111111111011111111111111111111111111111111111111110111111111111111101101111101111111111101111111111111011111111111111111111111110111111111111111101111110111111111111111111111110111011111111111011111110111111111010011110111111110111111111111111111101111111111111011111111111101111110111010111111111111111111101101111101111111111111111111011111101111110111111111111111111111111111111111111111111111111111111101110111111011110111110111111101111111111111111111111011111111111111111101111111111111111001111111111111111111111111111001111111111111111111111111111111111101010111111111111111111111111111111111111111111111101111111111111110011111111111011111111111110111111111011001111111111111101111011110111111111111111111011111111111111111001111111111111111111011111101011111011111111111111111111111111111111011111010101111111111111100111111111111111111111110110111100111111111111111111111111111111110111101110111111001111011101111110111111111101111011111111110101111011101111110111110111111101111111111101101111111100111101111111101011011111011111111111111111101111111111011111111101111111111110111111111011111101011011111111011111111111111111011111111111111011111111111111111111111111111110110111111111111111111101111111111011111111110111111111111111110111111111111111110010110111111111111111111111111111110011111111111111111110111111111111111111111111111011111111111111111111111111111111110101111111110111111111111011101111011101111111111111101101111101111111111111111111111110111111101000111111110111110111110111111101111111010111110111011111110111101111111011001111111111111111111111111110101111011111111011011011011111111111111111110111111111111101111111111111111111011101111111111111101111111111111111011110011111001101111111111111111110111111111101111111111111111111111111111111110111111000110110111111111111101111111111111111110111111111111111111111111111110101111111111011111111111101111111111110111111111111101111111101110111111111011111111110011100111111111101111111011110111101101111111111110111111111111111111111101111111111111011111111111111111111111111111111111111111111111110111111101111011111110111111111101101111111111110111111111111111111011111111111111111111111111011111111111111111111111111111111110111111110111111111111011111111111111011110001111111111010101111111111111111111111111111101111011111011101111111111011110111111111111111101111101111111111101111111110111110111111111110111110111111110111111111111111111011111111111111111111111110111111111111111111101111011111111110111111111111111111101111110111111111110110111111111011101111111101110111111111111111110111101111111111110100110111011011111111111111111111011111111111111111111111110111111110111111111111101111110111111111111111111111111111111111111111011111111111111111111001111111111111111111110110111011111111111111101011111011011111011111111101111111111111111011101101111101111111011111111111111011111111011111101111111101111111111111111111101111111111011101111111111110111111010101111111110111111111110111111111111111111111110011111101111110011111111111111011111111111101011111111111111111111111111111111111001111111011110111111111111111011111011111101110111111110111110101011111111111111111101111111011110111111111101111111111101111111111111011101011111111111111111111111011111111111111111111111111111111111110111111111110111111111111111111111111111110111111111111111111101111111111111111111111111111111111111111111111111111111111101111101011101111111101111111111101111011111100111111101111111111111111111111011111010001111111111111101111111111111111111111111111111111101111111111111111111111111111111111110111111111111111111110111110111111110101111101011111111011001100111101111011011101011111111111111110101101111111111111111110111111111111110011011111111111011011111111110111110110111111111111111101111111110011111111011011011111111111100111011111110111111111111011111111111111111111111111111101111101111110111111111111111111111101111111111011111100011111111111011101111011111110011111111110111101111111111111110111111111111110111111111011101101011111111010111111011111111110111000111111111111111111100111111101110111111011111111111111111011111111011111111101110111111101111111111111111111111111111111110111111111111111111111111111111111111111111111111111111101111111111111111111111111111101111111111111111011111111111111111111111111111101111111111111011111001111111111111111111111111111111111101111111111100111101111111110111111110111111111111111111111111111111001111111111011111111111111110101111110101111111111111001111111111101111011111111111111111111111111111111111111101111111111111111111111111111111111111111111101110110111111111111101111111111111111111111111111111111111111101111111111011010111111111111111111111111111111111111111111111111111111111111111110111111111111111110111101111111101110111111111111111101111111111111111111111011111111101111111101111110111111111110111111111111111101110001111111111111111111101111111111111111011111111101111110111111111110101111111001111111111111111111111111111111111011111011111111111111111111111111111101101111111111101111111101111111111111011111111101111111110110111111110100100101101101111111111011111111011111011010110111110111110011111101111110110111100111110111101111101111111111111111110111111111111011111111111111111111101111111011111011011011111011111110111111011101101110111111111111111110111110111111111111011111111011111111101011111111111111111011111111111110110111111111101111110111011111111111111011111111111101111111111011111111101111111111110111111101101111111111111111111111111110111111111111111110011111111111101111111111111110110111110111111111111111011111111011111111111110110111110011110111101111111111111111101111111111111111111011011111011111011111111111111111101111111111011101111111111111011111111111111111111110111010111111111111111011100111110111111101111101011110001111111111111111111111111111111011111011110111111111111111111111111101111011101110111110111111111111111111110111111110111011111111111011110111111111111111111101111111001111111111111111111111111111111111011111111101111111111111101110110111111110111111111111111111110111011101111111111111111111111110111111111111111111111111111110111111111110110010111110111110111111111111111111111111111110101111101111111111111111110111011110111110111011111111110111010111110111111111011111111111111101111111111110111101011111011111111111111110111111111111111111011101111111111111111111111010011111111111111110111111111111101111011111011111111111111111111111111111111111110111111111110111111111111111111111101110111011111111110111011101111111111110111111011111010111111111111111111011101101111111111111111011111111111111010111111101110111111111101111111111111111110110101011101001111111111111111111110111111111111111111111110111101111111111111111111111111111111111101111111111111111110111111011111111111111101111111111111111111111101011111111111111111111111111111001101111110111111111111111101111111110111101101111111111111111010111111111111110111111010111101110111101111011111111011011111101111110111111111111011111111111110101110010111111111111111111111111110111111011111101101011111111111101011101011110111111011111111010111111101111111111111111111111111111111110111111011111111111101111010111101100110111111111101111111010111111101110111111010111011110011111111111011111111111010110111111111110111111111101111111111111111111101111011111111111111111111111111101111111111111101111011111111111111111111111111111111111111111111011110111011111111111111111111111111011111111111111111110111110111111111111111110111111111111011111111111111111111111111101111110111111111111111111101111101111111111110111101111101111011011111111101111110110111101111111111111111111111111111111001111111011111111011111011111111111110110111101111111011111111110111111110111111011001111111111111000011111111111111111111111111111111111111111110111111101001111100111111101111111111111110111011101111111111111111111111111111111111111111011111101101111101111111011111111101111111010111111111111110111111110011111111111011111011111111110111110111110110111011111111111111111111111111011111111110101111111011110101111111111101010111111111111011110111111111110111111111111111111101111111111111111111111111111111111111101111111111111011100111111111111111111111101111111111111111101011111111111111111101111111110110010111111111111111010111111011111111111011111011111111111111111111111110111111111111111111011111111111111111111111111100101111111111111111110110111111111111111111011111111111110111111111111011111111111111111111111111111111111111111111111111111110101110111111111011111111111111111111111100111101111110111111111111111111111111101110111111111111011101111111111111111111111111111011111111111010110111111111110111111111111111111111110111110111111111101111111111111111010111111111111111100111111111111110111011111111011111111111111111111111111111111111111111111011111111111111111011110111110111100111111111111101111101111111111111111111101111111111111101110111111111111111001111101111101111111111111111111111110111111110101111111111111111111101111011111111111111111111111111110111111111111111110111110111111111111111111111001111111110111011111111111111110111101111111011110111111111011101111111110111011111111011111111111111111111111111111111111111111011111111111111111011101011111110111111111111111100011111111111111111111111111111111111111111011110111111111110111111111111111111110101111111111111111110101111111111111011111111111111111111010111111111111111111111111111110111111111111111111011111111011111101111011110111110001111111101111101111111111101111011111111011010111111111111111111111100110111110111011111011111111111110011111111111011111111111111110111111111111111111011111111110111011101110111111110101111111111111010111111111111110101111111111111110111111111101111111111111111111111100101111111111101111111111111111111111111111111111111110110111111111111101011111111111111111110111111111111111111101111111111111111101111101111111111111101111111111110111001111111111111111111011101111101111111111111111111111111011101111101110111111111111111111111011110001111101011111011111101111011111111111011111111111101111111111111001111011101111111101111111001011111100111111011111111111111111111111101101101111010111111111111111111111111111110101111100110011111111110111111011111111111111111111111111101111111101111111111111111011100111111111111111111111110111111111111111111111111111110111011111111111111111111111001111111111111011011111110111111100101111111111110111101110111111111111110011111111111111111101111111101111110111111111111111011111011111111101110110110011111111111111111111001111011101111111111111111011101111011101011111111001111111111111111111111111101111110111111101111111101111111011111111111111010111111011101110111110111111011110111110111010110111110111111111111111011111110111111111111111011111111111111111111011010111011111111111111111111111111111011111111111111111111111111111011100111111011110111111111110110011111111111111111111111111111111010111111111110011111110011111111111011001111111011101111111111001111111111011111111111111111001111011101111111110110111111110111111111101111111111111110111111111111011111111111111111011111111111101111111111111011111111111111011111111111010110111001101101111111111101111011111110111111110101111111011111111110011101011111111111111111111111111111111011111111101011101101111111011111111011110111111111111011110111101111111111111011111111111111011111111101111111111110111111111110111011111111101111110111110111011111110111111111111111111111101111111111111111110011110101111111111111011111110110111110111111111111111111111111111111111111111011111110111111101111101111111111111111111011101111111101111011111110111110111111111111111111111101111111101111111111111110111111011111101111110111111110111110111111111111111111111110111111011111010111111111111110111111111111111110011111111111011111111111111101111110111111111111111111111111111111111111111111111111111110111110111111111111111111111011101111110111111111111111111111111011111111111111111111111111111111111001111111111111111111111111111111011111111111111111110111111111111111111111111110101111111111111011111111111111111110101101111110111111111111111011111110101110111110111111101111111110111101111111111011111111111111011111111001111111111111111011111111111111101111111111011111011101111111101111100111111111111111111111111101111111111111111011111111111111111111111111111111101111111111111111011111111111111111111111111011111111111111111101111111111111110011110111111111111110111111111111110111110111110111111111111111111111111110111111111111111111111111111111011011111110111111111011111111111111111111111111110111111111111111111111111111111111111111111101111111111011011110111111111101110011111011101111111111111111111111110111111011111111111111111111011011111111111111111111001111111111111101111011111110010011111111101111111111111111111111111011111111111111110111111111111111111101110011111111111111111111111111111011111111111101011011111110111111111111110001111110111011111100111111011011111111110111111111110111111111111111011110101111111111011111111110111111010111111111111101111101011111011111011111111011110111010111111111111111111110111011101010111111111101111101111111111101101111111011111110111110111101011101011111111111111111111111111111111111111011011110111111111111111111111110111111101111111101111111111111001010111111101111111111110111111011111111011111111111111101111111111111111111011101111101111101111111110110101100111111110111011111111111011111011111111101110111111111111111111101101010110111111111111100111001111111111111011101111111111111110111101111111111111111111111111111111111111111111111110111111111111110101101111111110111111110111110110110011111111011111111111101111111111111111111111111011111111111111111111010101111111111111111111111111111111110111111101111101111011111111111111111111111111110111110011111110111111011101111111111110111110111111111111101111111111111111011111111111111111100111111111011111111111111111111111011111111111101111101110111111111111111111111111110101101111111111101011111111111111011111111111111111111111111111101111111111111111110111010111111111111111111111011011101110010111101111111101111111111111111101111110111110111111111011110111111111101011111111111111101101011111110111111111111111111111101111111111110111011111111111111111111110111111111111111111111000111111111111111111111011111111111111111111011111111111101111111111111111111110111101110110111101111111111111111111111111111111111111111111111011111111111111111111011110111101111111111111100111011111111110111111111111111111111011111110010011101111111111111111111111111010111111111111111111001111101101111111111111111111111111101111011111011111111111111111011111111111111111111111110111111111111111111111111111101110111111111111110111111110111011111111111111001111101111111111111111110011111111111111101111111111111111111111110111111111111111011111110101111101011111111111110111111101111111101110111111111111011111111111010011111111111111110111111110111111111111110111111111111111001111011111111111111011001110111111110111111011101111101111111111110111111011101101110111111110010110111111111011111111110001110111111101011111111011110111111111011111111111101111110101101111111111111111011111111111111111111110110111111111111111011111111101111111111011111101111111111111111111111111111011101111110111111111111111111111111111111111110111111111011111101101111111101110111111111111001111111111111111111111111100111011111111111110101001111111111111110111111110111100101111111001111111101111111111111111110111111111111011011110111111111111110110111111111110111101111111111111111111101011111110111111101010111110111111110111111111010111111111111111111111111111111111111111111111111111111011110111111111111110110111011101111111011111111111111111111011111111110011111111011111111110111110111110111111111111101111111111101111101111111111111111111111110110111111110111011111111111111111110111111111111010011111111111111110111111101111111111110111111111110101011111111011111111111111111111111111111111111111110100111101111111011111101111111111111001101111110111111111011111111111111111111111111111111111111111110111111111111111111111111111111110111101011111111111111111111111101111111110111111110101111101110111111111101111011111110111111111111111111101111111111111111111111111111111111101110111111111111111110111111111111110111111111001111111001011110100111111111111101111111111011111111001111111111111111111111111111111111011111111111111111111011111111111111111110011111111111111111011111111111111011110111111111111111111111111101111111111111110111111111111101111111101111111111110011101111111111111111110111111111011111101111111111111111110111111111011101111111011111111011111111111111111010111111011011101101111101011111111111110111111111111011111111111111111111111111110111111111101111111111101111111011111111110111111111111111111111111111111110111111111111101011111111111111011111111101111111101111111101111111111011111111111111111110111111111011110101111111111111111111111111111111111111111101111001111111111111111111111111011110101110111011111111111111111111111111111100111111111111111011111111101111111101111111111111111111111111111111111111111111011101111111111111111011111111111111111111111011101111011111111111101111111101111111110101111101111111111101101111111111111111111111111001111101111111111111111011111111111110111111101111111111111101111111111111111111111111110111111011111111111111111111111111111101111111111111111111111111111111111111111111111111111111111111111111111011110111111111110111101111111111111111101111110111111101111111111111111111111111111111101111111011111111011111110011111111111111011111111111001111011110111011111110111011111111111111101111111111111111111111110011110111111111011111111111111111110111111101111111110111111101111111111111111111111111111110110111111011111111111101111111111111101110011111111111111001111101111111111111111111111111101111111111111111101111111111111111101011111101111111111111111001111111111000111111111111111111111011111111111111110111111101111111111111111110111111111111111111111111111111111101101111111111111111111011111111111001111111111111111101111111111011101110111011111011111011111101111111111111001010111111111101011111111111111111101111101111111111011111110111111111011111111101110111110111111011111111111111111111011111110111111111111111111111111111111111110111111111110111111011101111111111111111011011011111101111011011111111111111111111111110111000111111111111111101111111111111111111110111111110010111111110110111111111111111111111111111111111011111111010101011111111111111011111111111101111111111111111110111111011101111111111111111111111111111111111110111011111111111111111111111011111111111111111011111111111111011011111111111110011111111111111111111011111111111111111111111111111111111111111101111111111111111111111111110111111110111111110101111101111111111111011111111110111111111111111111111011111101101111111111101111111010111111111111111111111110111101011000111110111111111111111111111101101110111110111111110011111111011110111111111111111110111111111111111111111111111110111111111111111110110011111111111111111111111111111111111101111011011111110101011111111111111111111011101111011111111111011011111111111111111111111111111111111011110011111111011111111110111110111111111111111110111111111011101101111111111101111111111111011111101111111111111111111110111111111111011111101011111111110111111001111110111110101110111111001111111110111111111111111110111111111111111110111111111111111111111111111101111111011111111111111111111111011110111111111111111111111111110101111111111111111100111111110011111110111111111111111111111111111011111111111111011111111111101111111111111111011111011111110110100111101111110110110111011101111111111101101111111111111101111111111101111111111101111111011111111011011111111111111111111101011111110111111111111111111111111111111111111111111111111101111100111111111111111111111111111111101111111111111101010111111111111111111111111111111111111111111111101011111111111111111111111101010111110111111111111111110111111110010111111110011111111111100111111111111111111111111111011011111111011100110101111111111111101111111111111111111111111111011110101111111011111101110111101011100111111111111111111011111011011111111111111101111110111111011111011110111111111111111111111111101111101111111111111111101101101111111111110111111111111111111101011011111111111111111111110111111111111101111111111111111111100111101011111111101111111111111111111111111111111111101111100111111111101111111101111110111011111101111111111111111111111111111101111111111111111011111111111110111111111101111101111011111101100111111111111111111111011111111101111111011111101101011111111111011111111111111111111111110011110011001111111111011111110111111111011111010111111101111101111111111101111011111111111111111111111101111011111111111111110110110101011111111111111111101011110111111101111111111111110111111111111011111011110111111111111111011111101101111110111110111111111111111111111111111111111111111011011111101011011110111111101111111111111111111101111111011110111111111111111111110101111101111111111111111111111111111111111011110111111111011100101111011101111011111101111101111111111101011110111111111111111110011111111110111101110111111111110111111111111111110101111111111111111111111011111111111011111101111111101111111111110111111111111011111111111101100111111111111111111111101010111111111111111111111101110111111111111111101101111111111111111101111101111111111111111110111110111101111111111111101111101101011010111111111111111111111101011111111101111111111111111110111111111111111011110101111010101111111111011110110111111111111110111110111111111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111110111111111111111111100111111111111001111111111111111111101111110101011111111111111111111111111111111111111111101110111111111111111111111111110111011011111111111111111111111110110101111110111111110111111111100111100011111110111011111111111111111111101111111111111011111111111111111101111111110111101111011111111111101111111111111101111111100111111101100111111111111111111111111111110111101111111110101111011111111111111111111111111011111110011111111110011111111111111111111111011111111011111111111111101111111110011101111111111101111111111111111111111111111111111101011111111111111111111111101101001111111111111111111010101101111111101100111111111111011011111011111111111111011111111101111001111111111111111111111111110111111110111011111101110101110101111111101111111111111111111101111111111111111111100101111111111111111111111111111001111111111111111111111111001001111011111111111111111111110111111011110110111111111111101111011011111111111101111111111111110111111011111011101111111011111111111111111111111011011111111111111111111111111110111111111111111111110011111011111111111101111111111111111110111110111011110111110110011101111111101111111110101111111111111111101110011111111011111110111101101101111111110111111111101111111010111111111101011111111111111111111100111011111111111111111111111111111111111111111101111111011111111110111111111001111011111111111110110101111111110110101111011111111111111111111100111111111011111111111110111111111111111111111111111111101111111011101011101111111011111111111111111111111011101111101111111111111101001011101110111011011111110111111101111111110111111111111111111111100111111111101111001111111111111111111111111011111111111111110011010011101111111111110111011110111111111111111111111111001011111111111111111110110111111111110111011111110011110111111111111111111111111111111111111111011011111111111111111111111110111011111111111111111111111111111111111111101111111111111011111111111111111111110111111111010111111111111110111111111111111111111111111111111011111111011111111111101110011111111111111111111011110111110111111111111111111111111111001101111111011111111110111111111001101111011101101111111111111101101011111111101011111110111111111111111111101111111011111111111111111110111011111111011111101111111111111111101111101001111111111111111111111111111111101111111101111111011111110111111011110101111111111111111111111111011101110111111011111111111111111111111011111111110110111111111111011111111111111011111111111111111111111111111111111111111101111111111111111111111111111101111010111111111111111110111111111111111111111111110001111111111101111101111111111111111111111111111101111111101111111111110110111111111011111111111011011011111111111101101111011110111111111101111111111111111111011111111110111011111111101111111011111111111111111101111111111110111110011111111111111111111111001101111111111111100111111010111111110111011111111111111111111101111011111111111111111111110101111011011111111011110111101111111101111111111111101111011110111111111111101111111111110111111111010111111111011111110101111111111111101111111101111101101011111111111111111111111111111011111111111111111111111111111111111111111000110111111111111111111111111111111111111111111011111111111110011111111111111110111101011111111111110111111111111101011111111111011111111110111111111111111111110111111111010111111111111111111111001110101111101111011110111111110111111111111111111111111111111111111101111111111101101111111111111101110101111111111111011111011111111111111111110111111101011101111111111110111001111101111111111111111101111110111111111111110011111111101110101111111111110111111111111111111101011111101111111111101111111101100111011111111110011111111101111110101111111111111101111111111111111111111111111111011011111111011111111011011111111111011111111111111111111111111011111111010101100111111111101111111111111111111111111100101111111111111110111011111111111111111111101111101111111010111110011111111111111011111111011111110111111111111111011111111111111101111111111111111111111111111011111111111111111101110101111111110111111110111111111111111111111111111111111111101111111011111111111011111111110111111111111111111111111111111111111111111011111110111011111111001111111101111111111111011011111111111111101011111111111111111111111111111111101111111110111111111111111110011111111111111111110111111111111111101111110111110101111111111111110111011111111011101111111111111111111110101111111111011111101111111111111111111111111101111111101111111111101111111111111100111111111111101111111111111111111110111111011111111110111101111111111011111111111101011111011111111111111111101111111111111011110111111111111101111111111101101111111110101111111111111111011111111111110111111111111110111111111000111111111111111111111111111111011101111111111101111111110101011111111111111111111011110111101111111111101011101111111111101100111111111111111111011111111111111111111111111111011011111111011111111111101111101111100111111111011111111111111111111111111101011111111110111110111111111111111110010111101101111111011111111111011111111111101111111111111111111101111111110101110111011111111110011111111111111101110111111110011111111101010111111111110111011111111111111111111111111110111111111111111111111111111111111111111001111111111111111111111111111111111111111111101111111111111111111111111111111111111111111111111111111011110111101111110111111110111111111101111011111111110111111111111111111110111111111111111100111111001110111011111100111111111101111111111111111111111011111111111111111111101111110111111111110111111111111110111111111111111111111010111111111111001111111111111111111111111111111111101011111011111011111010011111111111111111110111111111111101111111111110111101110111111011111101101010111111110111111111111111110111011111111101111111111111101111011101111111111111101111101101111111111111111011110111111111111111110111111111111111111111111011111111111111011111110011110111111111101110111111110111111011111111111111111101111111111111111111101111011111111111111110111111110111011111111111111111100111111111111111111111111111111111111111111111111111101111111111111110111111101111111111111111110111111111111011110011011011111111111111111111111011111111011111011111111101111111111011111111111111011011111111111111111111111111100111110111111111111111111101111111111111110111111111110111111101111011111111100111111111111111101011111111111101111111111011111011110111101111111111111111111011111110111101111111111101111111011111111111111111111111111111111111011110110110101111111111111110111111111110111111111111111101101111111111111111111110101111111011111111111111011110111101111111111111111101111100111101111111111111111111111111111101111111111111011111111111111111110111111111011101111011011111101111111111111111101111101111111111111111111111111111111111011111111111011111110111111111111111111111011110111111110101111111011111111111111011111111111111101111111100111010111111111111111111111111111111010111111101011111111111111111111111110111111101100111111011111011111111111011111111111011111011111101111110011111011111011011111111111111111101011110111111110111110111011111111111001111111111111111111111111110111111111111011111111011111111111010111110101011111110111011111111111111111111111111111111111101111011111011111110111111011111111011101111111111111111111111100101110100111101111111101111011111111111111111111111111011010111101111111101111011011011011111111111111111011111111110011110111101111111111011111111110110111111111011001111111100111101111111110111111111101111011011111111001111111111111111111111111110111111110110111111110011111111111111110111011110111110111011111011111111111111111111111111111111110111111111111110001111101111111111111111111111101100111111111111111110111111111111111111111011111111011111111111111111111111110111101111111100111101110111011111111111111111111011111101111111111111111101111011111110111111101111111110011111111111101111111110111111111111111110111110111111111111110101111111111111101111111101111101111110111111111111111111111111111111111111111111011111111111111111101111110100111111111111011101111111111011111111111011111111111101101111110111111111111111111111111110111111111111111111111101111111011111111111011111111111111111111111111101111110111111111111111111111111111110111111111101111100111111011101111111111111111110011110111101111111110111111111011111111111111111111111110111111111111111011111111111101111111111111111111111111111111111110111111111111101111111111110111111111111100111111111111111110101111111111101111111011111111111111111110111100111111111111111111111011110111111111111111011111001111111101011110111111011111110011010101110111111111111111111111110111111101011111111111101111101110111111111111111111111111111111111001111110111110111111111111110111011111111111111111111101101111111111111111111111111111111111111111111111111111111111011111111101111111011111111111111111111111110101110111111111111111111111111111100111111111111111111111111111011110011111101110111111111111111011011111111101111111111111011111010111111110101111111111111110111111101111111111101111111111111111010111111111111111111111111111111111111110101111101111111111111111111100111111111111111111100111011111111111111111111110111111111110111111011111111111111011111111111111111111110111111111111011111111111111110111111011111111111110111111111011111111111100111111111111011110111101111111111110111111101101111111111111101111111111111111111111110111110110101111011011111111111111111111111111111111111111111111111111110111111111111011110011010110111111111011111111111111111110110101101111111011111011111111111111111111111111101111110111111111101101111111011011111111111111111111111111111110111111111100011111111101111111111111011111111011010111111111101100111111111111111101111111111111111111111111111001111111110111111111111011111011111111111111111111110111111110111111111111111111110111111111011111111011111111101100111111111111111111111111011111111111111111111111111111111111111101111111010111111111111111111111111111111111111111111111111111111111011111111111111111111111111111111111111111110101111111111111111111111110111111101111111110111111111101011111111111111111111110111111111111111111111110111111111111111111111111111011111111111111111111110111111111111111111111001111111101111111111111101111111111111111111011111111111101110110111111111011111111111110111111111110111111111111111111111101111111111111011111011011111110111111101111111101111101111011111101111111111111111101111011111111111111111111101101011011111111100110110111011011111111011111111111111101101111111111111111111111111111111011111111111111111101011111111110011111111111111111111111101111111111101111111011111111111111111111011011111111111111111111110111111111111111011111111111110110111111111110011111111111111111111101111111101111111101111111111111111111011011111011111011111111001111111101111110111111111101101111010111101100111111111101110101111111111111111111101111111111111111110111011111111111111101111111111101110011111101111111110101111111011111111111101111111111111111111011111111011111111110111111111011111111111111111001111110111111111111111011111001111111111111111111111111101011111111111111110111110111111111011111011111111111111111111111111110110111110111111111111111110011111111011111111111101111111111111110101101111111111111111101111110111111101111111110011111011001111111111111110111101111111111111111111111111111111111111111111111111101111111000111111111111111111111111111111111111111111011101110111111101011111111111111111111111110111101111101110111111111111111011111111110111101111101111111101111111111111111111110111111111010101111111111111111111111111100111011111111111111111111110111111101111111111111111000111111101111111111101111101111111111111111111111111111111101110111111110111111101111111110101111111111111111110111101111111111111111111101110110111111111111111111111111111111111111111101111110111111101111111111111111101011111111011111111010111111110111111011111111011011011111110011111110111111101111111111111111111010111111111111011111101111111100101111111111111111111101011110111101011101101111111111110111111111111111110111010111111111111111101111111111111111111111111111111111101111110111111111111101111100111111001101111111111111111111101111111110111101111011111111101100111111011111111111001111110111111111110111101111111111110111111111111011011101111111111011111111111111111111011111111110010111111111011110111111111111111110111111111101111111110110111011111111101111111111111111011101111110111111110111111111111111111111111111111111010110110101111011111111111101111101111111111111111011111111111111111111111111111111011111111110111111111111111111011111101111110101111101111111101011111101111111111111111111111111110111111111111111111111111111111111111111001111111111111111011111111111111101111001111111111111011111011111111111111111111111101111111111101111111111111111111101101111111111111111111111111110111111111111111111111111111100101111111011110111101111110101111110111111101111111111111111111111101011111111111111111111110111111111101111111111111111111111001111111110101101111111111111111110101111111111111111011111111111111111111111111111111111111111111111001111101111111110111111111111111111111111110111011111111111111011100111111101110111111111111101011011101111111111111111101111101111100011110001111111111111111111110111111111111111011111111111111111111111011111111111110111111111111111111111111111111010111111111111111111111011101111111111111111011111111111111111111110111111110111011111111111111111110111111111011111110111111011011110111110111111111100111010110111110111111101111010111011011101111111111111111101111100111111111111111111111011111111111111011111111111111111011111111011111111111110001110011111101101111011111111111111111110111111111100110110111111111011110011010111111111111111110001111111111111111111011111111111101111110111111111111011111110111111111111111111111111111111111111111101111111111101111101111111111111111111111101110111010110111111111111111111111111110111111011011111111101111111111110111101111111111111111111111111111101111111111111111111110111110111111111111111111101111010111111111011101111111111111111111111110111111110101111101111111111011111111111111111100111111111111101011111100111111111111110111111111111111111111111111111111111011111110111111110111111010111111111111111111111111111111011110111111111111111001111111111111111111111111101111000111111111101111111110101111111110111111111111111111111111111111011110111111101111011111111111111111111110111101111111101111111111111101111111111100111111111111111111111101111111101110111111111110110111111111111101111111110111111011111111111111111111111110101011101110010110111111111111111111111111111111111101101111011111111111111111111111111011111111101011110111111111101101111111011111111111111110111110111111101110111111111111111111111111110111111111111111111111111111111111111101101111111111111111111111111111111111100101011110110111111111111111111111111011111111101111111111010011111101111111111101110011110010011110011111111110111110111111011111111111011101111111101111111111111111111011111111111111111101111111111111111011111111111111111111101111111111111111111111101111111111111111111111111111111111101110111101011111111111111111111011111110111111111110011111111101111111110111110111111111110111110110110111111111111111011101111110111110111101111111111101001111111101111111111011011011111111110111110111111111011101111110110111011111111111111111101111111111111111111111111111111111111011111111111111111111111111011111111111111111111111001111111111111101110110111111110111111011111111100111111101111111111111111100111111111111111111111111111111111101111111110111111111111111111111111111111111111111111100111111111011011111111110111111111110111111111101101111110111111111111111111111110111111111111101111110111011110110111111111110110101011111110111111110101111111111111111110111111111111011111001011111111111111110111111011101111111111111111111111111111110111111110111111111111011111111111101011111111111111111111111110111111111111011101011111101111111101111111111111111111111001111111111111111101110111111111111111111111100110101111111111101111110101111111111111111111110111111111101111111111111111111111111111101111111111111111111111110111111111101110111111111111110010111111110111110111111101011101111101111111111111111111111111111111111111111011100110011111111101011101111111101111111111111111111111111111111101111111110101111101111011111101110111100011111111111111101111111110011111110111111011110101111111111110010111111111011111111011111101111111111111111111111111110101011011110111111111111111111111111111001111110111111010111111111111111111111111111111111111111011111111111111111111111011111101111111111111110111111111111101111111110111111110111111111111111111101010111111111111111111111111111111111111101111111111110111111101111111111111011111110011111111111111101011010111111111011111111111111111111111001101101111111100111101111111111111111111111111111011111111111101111111110111111110111111111111111110111011111111111101010111111111111111111111111111111111111111011111101111111111110111111111111111000011111111111111111111111101101001011111111011111111111111111111111111101111111111111110111111111111110111111101101101111011100111111111111111101101011111111111101111111111111111111011110111111111111111111111111111111111111011111111111111111010111011111011111111111111111101111111000111111111111101111101111111111111100111100111111101011111111111111100100111111111101111111101111111111101111111111111111111011101101101101111011111111101011011111110111111111111111111111111111111011101111111111101111110101111111111101101111111110111011111111111111110111111101111111111110110011111100111111101111111111110111111110101111111111110101111111111111111110111111111111101111111111111111111111011111011111100110111101111111111101111111011111111111111111111110111111111111110111101111101101011111111111111111111110001111111111101101111111111111111111110111010111111111111111111111011111110111111111111110111111111111011011111001111011111111101111010101111111111111111111111111111111110111011111111111111111111111111110110011111111111111111111111111111101111111101011110111011011111111011111111111111111111011111111011111111111111111111111111011110111110011111111111111111111111111111101110111111111111111111111111111110111101111110011111111111011110111111111110111111111110011110101111111111101100111111111111110111111111101111111111111111111111111101111111111111110111001111111011110111111111101111111111111111111100111111111111011101111111110101111111111111111111111111111111111011101111111111111111011111111111111110011101111110111111111111111101111111010110111111110111111111110111111111101111011111111111110111100111111110110111111111111111111110111111111111111111111111111111111011111111101110101111110111101111 \ No newline at end of file diff --git a/Lab3/random_text_uniform_two_point_09_distribution_codetable.bin b/Lab3/random_text_uniform_two_point_09_distribution_codetable.bin new file mode 100644 index 0000000..b2914cf --- /dev/null +++ b/Lab3/random_text_uniform_two_point_09_distribution_codetable.bin @@ -0,0 +1 @@ +{_EOF: (2, 0), '0': (2, 1), '1': (1, 1)} \ No newline at end of file