content
stringlengths
1
1.04M
input_ids
sequencelengths
1
774k
ratio_char_token
float64
0.38
22.9
token_count
int64
1
774k
#!/usr/bin/env python # # Copyright 2013 Facebook # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """ Line based socket using gevent """ from __future__ import (absolute_import, division, print_function, unicode_literals) import errno import gevent from gevent import socket from gevent import queue, select from OpenSSL import SSL from .util.decorator import utf8Encode, utf8Decode, raise_exceptions #We use this to end lines we send to the server its in the RFC #Buffers don't support unicode just yet so 'encode' LINEENDING = b'\r\n' class LineSocket(object): """Line based socket impl takes a host and port""" #Exceptions for LineSockets # Connect to remote host #Start up the read and write threads #Read from the socket, split out lines into a queue for readline #Read Operation (Block) @utf8Decode.returnValue #Write Operation #writeline Operation [Blocking] @utf8Encode
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 198, 2, 15069, 2211, 3203, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 345, 743, 198, 2, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 921, 743, 7330, 198, 2, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 198, 2, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 198, 2, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 11247, 198, 2, 739, 262, 13789, 13, 198, 37811, 198, 13949, 1912, 17802, 1262, 4903, 1151, 198, 37811, 198, 6738, 11593, 37443, 834, 1330, 357, 48546, 62, 11748, 11, 7297, 11, 3601, 62, 8818, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28000, 1098, 62, 17201, 874, 8, 198, 11748, 11454, 3919, 198, 198, 11748, 4903, 1151, 198, 6738, 4903, 1151, 1330, 17802, 198, 6738, 4903, 1151, 1330, 16834, 11, 2922, 198, 6738, 4946, 31127, 1330, 25952, 198, 198, 6738, 764, 22602, 13, 12501, 273, 1352, 1330, 3384, 69, 23, 4834, 8189, 11, 3384, 69, 23, 10707, 1098, 11, 5298, 62, 1069, 11755, 628, 198, 2, 1135, 779, 428, 284, 886, 3951, 356, 3758, 284, 262, 4382, 663, 287, 262, 30978, 198, 2, 36474, 364, 836, 470, 1104, 28000, 1098, 655, 1865, 523, 705, 268, 8189, 6, 198, 24027, 10619, 2751, 796, 275, 6, 59, 81, 59, 77, 6, 628, 198, 4871, 6910, 39105, 7, 15252, 2599, 198, 220, 220, 220, 37227, 13949, 1912, 17802, 4114, 2753, 257, 2583, 290, 2493, 37811, 628, 220, 220, 220, 1303, 3109, 11755, 329, 6910, 50, 11603, 628, 220, 220, 220, 1303, 8113, 284, 6569, 2583, 628, 220, 220, 220, 1303, 10434, 510, 262, 1100, 290, 3551, 14390, 628, 220, 220, 220, 1303, 5569, 422, 262, 17802, 11, 6626, 503, 3951, 656, 257, 16834, 329, 1100, 1370, 628, 220, 220, 220, 1303, 5569, 14680, 357, 12235, 8, 198, 220, 220, 220, 2488, 40477, 23, 10707, 1098, 13, 7783, 11395, 628, 220, 220, 220, 1303, 16594, 14680, 628, 220, 220, 220, 1303, 8933, 4470, 14680, 685, 3629, 8629, 60, 198, 220, 220, 220, 2488, 40477, 23, 4834, 8189, 198 ]
3.315789
437
# Question: https://projecteuler.net/problem=108 """ 1/x + 1/y = 1/n Since n > 0, we have x > n and y > n. Assume x >= y. Let x = n + a, y = n + b. 1/x + 1/y = 1/n -> xn + yn = xy -> (n+a)n + (n+b)n = (n+a)(n+b) -> 2n^2 + an + bn = n^2 + an + bn + ab -> n^2 = ab The number of solutions of (x,y) for each n is the number of solutions of (a,b) for each n. The number of positive integers (a,b) where a >= b that ab = n^2 is (m-1)/2+1, where m is the number of divisors of n^2. Why? | Let the number of divisors be 'm'. | For each divisor d where d != n, let (a, b) = (d, n^2/d). | Note that, (d, n^2/d) is the same as (n^2/d, d), where n^2/d is also a divisor but only one of them have a > b. | There are (m-1) such a case, therefore there are (m-1)/2 pair of (a,b) that a > b. | For the case (a, b) = (n, n); there is only one such a case. | So, in total, there are (m-1)/2+1 pairs of (a,b). In this problem, we want to find the smallest n such that (number_of_divisors of n**2) >= 1999. """ from sage.all import number_of_divisors ans = 0 while True: ans = ans + 1 if number_of_divisors(ans**2) >= 1999: break print(ans)
[ 2, 18233, 25, 3740, 1378, 16302, 68, 18173, 13, 3262, 14, 45573, 28, 15711, 198, 198, 37811, 198, 16, 14, 87, 1343, 352, 14, 88, 796, 352, 14, 77, 198, 6385, 299, 1875, 657, 11, 356, 423, 2124, 1875, 299, 290, 331, 1875, 299, 13, 2195, 2454, 2124, 18189, 331, 13, 198, 5756, 2124, 796, 299, 1343, 257, 11, 331, 796, 299, 1343, 275, 13, 198, 220, 220, 352, 14, 87, 1343, 352, 14, 88, 796, 352, 14, 77, 198, 3784, 2124, 77, 1343, 331, 77, 796, 2124, 88, 198, 3784, 357, 77, 10, 64, 8, 77, 1343, 357, 77, 10, 65, 8, 77, 796, 357, 77, 10, 64, 5769, 77, 10, 65, 8, 198, 3784, 362, 77, 61, 17, 1343, 281, 1343, 275, 77, 796, 299, 61, 17, 1343, 281, 1343, 275, 77, 1343, 450, 198, 3784, 299, 61, 17, 796, 450, 198, 464, 1271, 286, 8136, 286, 357, 87, 11, 88, 8, 329, 1123, 299, 318, 262, 1271, 286, 8136, 286, 357, 64, 11, 65, 8, 329, 1123, 299, 13, 198, 464, 1271, 286, 3967, 37014, 357, 64, 11, 65, 8, 810, 257, 18189, 275, 326, 450, 796, 299, 61, 17, 318, 357, 76, 12, 16, 20679, 17, 10, 16, 11, 810, 285, 318, 262, 1271, 286, 2659, 271, 669, 286, 299, 61, 17, 13, 198, 5195, 30, 198, 220, 220, 220, 930, 3914, 262, 1271, 286, 2659, 271, 669, 307, 705, 76, 4458, 198, 220, 220, 220, 930, 1114, 1123, 2659, 271, 273, 288, 810, 288, 14512, 299, 11, 1309, 357, 64, 11, 275, 8, 796, 357, 67, 11, 299, 61, 17, 14, 67, 737, 198, 220, 220, 220, 930, 220, 220, 5740, 326, 11, 357, 67, 11, 299, 61, 17, 14, 67, 8, 318, 262, 976, 355, 357, 77, 61, 17, 14, 67, 11, 288, 828, 810, 299, 61, 17, 14, 67, 318, 635, 257, 2659, 271, 273, 475, 691, 530, 286, 606, 423, 257, 1875, 275, 13, 198, 220, 220, 220, 930, 220, 220, 1318, 389, 357, 76, 12, 16, 8, 884, 257, 1339, 11, 4361, 612, 389, 357, 76, 12, 16, 20679, 17, 5166, 286, 357, 64, 11, 65, 8, 326, 257, 1875, 275, 13, 198, 220, 220, 220, 930, 1114, 262, 1339, 357, 64, 11, 275, 8, 796, 357, 77, 11, 299, 1776, 612, 318, 691, 530, 884, 257, 1339, 13, 198, 220, 220, 220, 930, 1406, 11, 287, 2472, 11, 612, 389, 357, 76, 12, 16, 20679, 17, 10, 16, 14729, 286, 357, 64, 11, 65, 737, 628, 198, 818, 428, 1917, 11, 356, 765, 284, 1064, 262, 18197, 299, 884, 326, 357, 17618, 62, 1659, 62, 7146, 271, 669, 286, 299, 1174, 17, 8, 18189, 7358, 13, 198, 37811, 198, 198, 6738, 35021, 13, 439, 1330, 1271, 62, 1659, 62, 7146, 271, 669, 198, 198, 504, 796, 657, 198, 4514, 6407, 25, 198, 220, 220, 220, 9093, 796, 9093, 1343, 352, 198, 220, 220, 220, 611, 1271, 62, 1659, 62, 7146, 271, 669, 7, 504, 1174, 17, 8, 18189, 7358, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 4798, 7, 504, 8, 198 ]
2.279612
515
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long from azure.cli.core.commands import CliCommandType from .profiles import CUSTOM_VWAN from ._client_factory import ( cf_virtual_wans, cf_virtual_hubs, cf_vpn_sites, cf_vpn_site_configs, cf_vpn_gateways, cf_vpn_gateway_connection, cf_virtual_hub_route_table_v2s, cf_vpn_server_config, cf_p2s_vpn_gateways, cf_virtual_hub_connection) from ._util import ( list_network_resource_property, get_network_resource_property_entry ) # pylint: disable=too-many-locals, too-many-statements
[ 2, 16529, 1783, 10541, 198, 2, 15069, 357, 66, 8, 5413, 10501, 13, 1439, 2489, 10395, 13, 198, 2, 49962, 739, 262, 17168, 13789, 13, 4091, 13789, 13, 14116, 287, 262, 1628, 6808, 329, 5964, 1321, 13, 198, 2, 16529, 1783, 10541, 198, 198, 2, 279, 2645, 600, 25, 15560, 28, 1370, 12, 18820, 12, 6511, 198, 6738, 35560, 495, 13, 44506, 13, 7295, 13, 9503, 1746, 1330, 1012, 72, 21575, 6030, 198, 6738, 764, 5577, 2915, 1330, 327, 7759, 2662, 62, 30133, 1565, 198, 198, 6738, 47540, 16366, 62, 69, 9548, 1330, 357, 198, 220, 220, 220, 30218, 62, 32844, 62, 86, 504, 11, 30218, 62, 32844, 62, 71, 23161, 11, 30218, 62, 85, 21999, 62, 49315, 11, 30218, 62, 85, 21999, 62, 15654, 62, 11250, 82, 11, 198, 220, 220, 220, 30218, 62, 85, 21999, 62, 10494, 1322, 11, 30218, 62, 85, 21999, 62, 10494, 1014, 62, 38659, 11, 30218, 62, 32844, 62, 40140, 62, 38629, 62, 11487, 62, 85, 17, 82, 11, 30218, 62, 85, 21999, 62, 15388, 62, 11250, 11, 198, 220, 220, 220, 30218, 62, 79, 17, 82, 62, 85, 21999, 62, 10494, 1322, 11, 30218, 62, 32844, 62, 40140, 62, 38659, 8, 198, 6738, 47540, 22602, 1330, 357, 198, 220, 220, 220, 1351, 62, 27349, 62, 31092, 62, 26745, 11, 198, 220, 220, 220, 651, 62, 27349, 62, 31092, 62, 26745, 62, 13000, 198, 8, 628, 198, 2, 279, 2645, 600, 25, 15560, 28, 18820, 12, 21834, 12, 17946, 874, 11, 1165, 12, 21834, 12, 14269, 3196, 198 ]
3.456693
254
#DATA: 6,000 labled tweets before 2020 election from Biden=0, Trump=1. #VECTORIZER: tokenizer. vocab size 19,415. #MODEL: 1-d CNN with a global max-pool layer. if __name__ == "__main__": #load the data import os import pandas as pd os.chdir('/Users/jacksonwalters/tensorflow_datasets') filepath_dict = {'tweet': 'labeled_tweets/all_labeled_tweets.txt'} df_list = [] for source, filepath in filepath_dict.items(): df = pd.read_csv(filepath, names=['sentence', 'label'], sep='\t') df['source'] = source # Add another column filled with the source name df_list.append(df) df = pd.concat(df_list) print(df.iloc[0]) #vectorize the data and split into train/test from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences from sklearn.model_selection import train_test_split tokenizer = Tokenizer(num_words=5000) #slice the df to get yelp sentences df_tweet = df[df['source'] == 'tweet'] sentences = df_tweet['sentence'].values #tweet sentence sentiment labels. 0 = negative, 1 = positive y = df_tweet['label'].values #split the sentences into training data and test data sentences_train, sentences_test, y_train, y_test = train_test_split(sentences, y, test_size=0.25, random_state=1000) #vectorize the sentences tokenizer.fit_on_texts(sentences_train) X_train = tokenizer.texts_to_sequences(sentences_train) X_test = tokenizer.texts_to_sequences(sentences_test) # Adding 1 because of reserved 0 index vocab_size = len(tokenizer.word_index) + 1 #pad_sequences maxlen = 100 X_train = pad_sequences(X_train, padding='post', maxlen=maxlen) X_test = pad_sequences(X_test, padding='post', maxlen=maxlen) print(vocab_size) #plotting function import matplotlib.pyplot as plt plt.style.use('ggplot') #construct the model from keras import Sequential from keras import layers embedding_dim = 100 model = Sequential() model.add(layers.Embedding(vocab_size, embedding_dim, input_length=maxlen)) model.add(layers.Conv1D(128, 5, activation='relu')) model.add(layers.GlobalMaxPooling1D()) model.add(layers.Dense(10, activation='relu')) model.add(layers.Dense(1, activation='sigmoid')) model.compile(optimizer='adam',loss='binary_crossentropy',metrics=['accuracy']) model.summary() #train the model history = model.fit(X_train, y_train, epochs=2, verbose=True, validation_data=(X_test, y_test), batch_size=10) loss, accuracy = model.evaluate(X_train, y_train, verbose=False) print("Training Accuracy: {:.4f}".format(accuracy)) loss, accuracy = model.evaluate(X_test, y_test, verbose=False) print("Testing Accuracy: {:.4f}".format(accuracy)) plot_history(history) #test examples ex_sent = "fake news" X_ex_sent = tokenizer.texts_to_sequences([ex_sent]) X_ex_sent = pad_sequences(X_ex_sent, padding='post', maxlen=maxlen) print(model.predict(X_ex_sent)) #save the model model.save('/Users/jacksonwalters/Desktop/cnn_model')
[ 2, 26947, 25, 718, 11, 830, 2248, 992, 12665, 878, 12131, 3071, 422, 21010, 28, 15, 11, 1301, 28, 16, 13, 198, 2, 53, 9782, 1581, 14887, 1137, 25, 11241, 7509, 13, 12776, 397, 2546, 678, 11, 35038, 13, 198, 2, 33365, 3698, 25, 352, 12, 67, 8100, 351, 257, 3298, 3509, 12, 7742, 7679, 13, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 628, 220, 220, 220, 1303, 2220, 262, 1366, 198, 220, 220, 220, 1330, 28686, 198, 220, 220, 220, 1330, 19798, 292, 355, 279, 67, 628, 220, 220, 220, 28686, 13, 354, 15908, 10786, 14, 14490, 14, 19650, 1559, 16783, 1010, 14, 83, 22854, 11125, 62, 19608, 292, 1039, 11537, 198, 220, 220, 220, 2393, 6978, 62, 11600, 796, 1391, 6, 83, 7277, 10354, 220, 220, 705, 18242, 276, 62, 83, 732, 1039, 14, 439, 62, 18242, 276, 62, 83, 732, 1039, 13, 14116, 6, 92, 628, 220, 220, 220, 47764, 62, 4868, 796, 17635, 198, 220, 220, 220, 329, 2723, 11, 2393, 6978, 287, 2393, 6978, 62, 11600, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 279, 67, 13, 961, 62, 40664, 7, 7753, 6978, 11, 3891, 28, 17816, 34086, 594, 3256, 705, 18242, 6, 4357, 41767, 11639, 59, 83, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 17816, 10459, 20520, 796, 2723, 220, 1303, 3060, 1194, 5721, 5901, 351, 262, 2723, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 62, 4868, 13, 33295, 7, 7568, 8, 628, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 279, 67, 13, 1102, 9246, 7, 7568, 62, 4868, 8, 198, 220, 220, 220, 3601, 7, 7568, 13, 346, 420, 58, 15, 12962, 628, 220, 220, 220, 1303, 31364, 1096, 262, 1366, 290, 6626, 656, 4512, 14, 9288, 198, 220, 220, 220, 422, 41927, 292, 13, 3866, 36948, 13, 5239, 1330, 29130, 7509, 198, 220, 220, 220, 422, 41927, 292, 13, 3866, 36948, 13, 43167, 1330, 14841, 62, 3107, 3007, 198, 220, 220, 220, 422, 1341, 35720, 13, 19849, 62, 49283, 1330, 4512, 62, 9288, 62, 35312, 628, 220, 220, 220, 11241, 7509, 796, 29130, 7509, 7, 22510, 62, 10879, 28, 27641, 8, 198, 220, 220, 220, 1303, 48369, 262, 47764, 284, 651, 331, 417, 79, 13439, 198, 220, 220, 220, 47764, 62, 83, 7277, 796, 47764, 58, 7568, 17816, 10459, 20520, 6624, 705, 83, 7277, 20520, 198, 220, 220, 220, 13439, 796, 47764, 62, 83, 7277, 17816, 34086, 594, 6, 4083, 27160, 198, 220, 220, 220, 1303, 83, 7277, 6827, 15598, 14722, 13, 657, 796, 4633, 11, 352, 796, 3967, 198, 220, 220, 220, 331, 796, 47764, 62, 83, 7277, 17816, 18242, 6, 4083, 27160, 198, 220, 220, 220, 1303, 35312, 262, 13439, 656, 3047, 1366, 290, 1332, 1366, 198, 220, 220, 220, 13439, 62, 27432, 11, 13439, 62, 9288, 11, 331, 62, 27432, 11, 331, 62, 9288, 796, 4512, 62, 9288, 62, 35312, 7, 34086, 3007, 11, 331, 11, 1332, 62, 7857, 28, 15, 13, 1495, 11, 4738, 62, 5219, 28, 12825, 8, 198, 220, 220, 220, 1303, 31364, 1096, 262, 13439, 198, 220, 220, 220, 11241, 7509, 13, 11147, 62, 261, 62, 5239, 82, 7, 34086, 3007, 62, 27432, 8, 198, 220, 220, 220, 1395, 62, 27432, 796, 11241, 7509, 13, 5239, 82, 62, 1462, 62, 3107, 3007, 7, 34086, 3007, 62, 27432, 8, 198, 220, 220, 220, 1395, 62, 9288, 796, 11241, 7509, 13, 5239, 82, 62, 1462, 62, 3107, 3007, 7, 34086, 3007, 62, 9288, 8, 198, 220, 220, 220, 1303, 18247, 352, 780, 286, 10395, 657, 6376, 198, 220, 220, 220, 12776, 397, 62, 7857, 796, 18896, 7, 30001, 7509, 13, 4775, 62, 9630, 8, 1343, 352, 198, 220, 220, 220, 1303, 15636, 62, 3107, 3007, 198, 220, 220, 220, 3509, 11925, 796, 1802, 198, 220, 220, 220, 1395, 62, 27432, 796, 14841, 62, 3107, 3007, 7, 55, 62, 27432, 11, 24511, 11639, 7353, 3256, 3509, 11925, 28, 9806, 11925, 8, 198, 220, 220, 220, 1395, 62, 9288, 796, 14841, 62, 3107, 3007, 7, 55, 62, 9288, 11, 24511, 11639, 7353, 3256, 3509, 11925, 28, 9806, 11925, 8, 198, 220, 220, 220, 3601, 7, 18893, 397, 62, 7857, 8, 628, 220, 220, 220, 1303, 29487, 889, 2163, 198, 220, 220, 220, 1330, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 220, 220, 220, 458, 83, 13, 7635, 13, 1904, 10786, 1130, 29487, 11537, 628, 220, 220, 220, 1303, 41571, 262, 2746, 198, 220, 220, 220, 422, 41927, 292, 1330, 24604, 1843, 198, 220, 220, 220, 422, 41927, 292, 1330, 11685, 628, 220, 220, 220, 11525, 12083, 62, 27740, 796, 1802, 628, 220, 220, 220, 2746, 796, 24604, 1843, 3419, 198, 220, 220, 220, 2746, 13, 2860, 7, 75, 6962, 13, 31567, 6048, 278, 7, 18893, 397, 62, 7857, 11, 11525, 12083, 62, 27740, 11, 5128, 62, 13664, 28, 9806, 11925, 4008, 198, 220, 220, 220, 2746, 13, 2860, 7, 75, 6962, 13, 3103, 85, 16, 35, 7, 12762, 11, 642, 11, 14916, 11639, 260, 2290, 6, 4008, 198, 220, 220, 220, 2746, 13, 2860, 7, 75, 6962, 13, 22289, 11518, 27201, 278, 16, 35, 28955, 198, 220, 220, 220, 2746, 13, 2860, 7, 75, 6962, 13, 35, 1072, 7, 940, 11, 14916, 11639, 260, 2290, 6, 4008, 198, 220, 220, 220, 2746, 13, 2860, 7, 75, 6962, 13, 35, 1072, 7, 16, 11, 14916, 11639, 82, 17225, 1868, 6, 4008, 198, 220, 220, 220, 2746, 13, 5589, 576, 7, 40085, 7509, 11639, 324, 321, 3256, 22462, 11639, 39491, 62, 19692, 298, 28338, 3256, 4164, 10466, 28, 17816, 4134, 23843, 6, 12962, 198, 220, 220, 220, 2746, 13, 49736, 3419, 628, 220, 220, 220, 1303, 27432, 262, 2746, 198, 220, 220, 220, 2106, 796, 2746, 13, 11147, 7, 55, 62, 27432, 11, 331, 62, 27432, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36835, 82, 28, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15942, 577, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21201, 62, 7890, 16193, 55, 62, 9288, 11, 331, 62, 9288, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15458, 62, 7857, 28, 940, 8, 198, 220, 220, 220, 2994, 11, 9922, 796, 2746, 13, 49786, 7, 55, 62, 27432, 11, 331, 62, 27432, 11, 15942, 577, 28, 25101, 8, 198, 220, 220, 220, 3601, 7203, 44357, 33222, 25, 46110, 13, 19, 69, 92, 1911, 18982, 7, 4134, 23843, 4008, 198, 220, 220, 220, 2994, 11, 9922, 796, 2746, 13, 49786, 7, 55, 62, 9288, 11, 331, 62, 9288, 11, 15942, 577, 28, 25101, 8, 198, 220, 220, 220, 3601, 7203, 44154, 33222, 25, 220, 46110, 13, 19, 69, 92, 1911, 18982, 7, 4134, 23843, 4008, 198, 220, 220, 220, 7110, 62, 23569, 7, 23569, 8, 628, 220, 220, 220, 1303, 9288, 6096, 198, 220, 220, 220, 409, 62, 34086, 796, 366, 30706, 1705, 1, 198, 220, 220, 220, 1395, 62, 1069, 62, 34086, 796, 11241, 7509, 13, 5239, 82, 62, 1462, 62, 3107, 3007, 26933, 1069, 62, 34086, 12962, 198, 220, 220, 220, 1395, 62, 1069, 62, 34086, 796, 14841, 62, 3107, 3007, 7, 55, 62, 1069, 62, 34086, 11, 24511, 11639, 7353, 3256, 3509, 11925, 28, 9806, 11925, 8, 198, 220, 220, 220, 3601, 7, 19849, 13, 79, 17407, 7, 55, 62, 1069, 62, 34086, 4008, 628, 220, 220, 220, 1303, 21928, 262, 2746, 198, 220, 220, 220, 2746, 13, 21928, 10786, 14, 14490, 14, 19650, 1559, 16783, 1010, 14, 36881, 14, 66, 20471, 62, 19849, 11537, 198 ]
2.473077
1,300
from flask import Flask, Response, request import json import os from threading import Thread from poll import Poll from slack import WebClient from slackeventsapi import SlackEventAdapter from handlers.handlers import handle_commands, handle_interactivity # Start Flask app that will be produce all the requests app = Flask(__name__) # Get venv variables SLACK_BOT_SIGNIN_TOKEN = os.environ.get('SLACK_BOT_SIGNIN_TOKEN') SLACK_BOT_ACCESS_TOKEN = os.environ.get('SLACK_BOT_ACCESS_TOKEN') SLACK_BOT_VERIFICATION_TOKEN = os.environ.get('SLACK_BOT_VERIFICATION_TOKEN') # Get slack api client and poll object slack_client = WebClient(SLACK_BOT_ACCESS_TOKEN) music_poll = Poll() # Enable several routes to the server @app.route("/") def event_hook(request): """ Main hook that checks all the request with Slack token. """ json_dict = json.loads(request.body.decode("utf-8")) if json_dict["token"] != SLACK_BOT_VERIFICATION_TOKEN: return {"status": 403} if "type" in json_dict: if json_dict["type"] == "url_verification": response_dict = {"challenge": json_dict["challenge"]} return response_dict return {"status": 500} @app.route('/slack/commands', methods=['POST']) def command_hook(): """ Function to handle all the bots commands. """ handle_commands(client=slack_client, poll=music_poll, request_form=request.form) return Response(status=200) @app.route('/slack/interactivity', methods=['POST']) def interactivity_hook(): """ Function, that handles all the interactivity (buttons, checkboxes, slack shortcuts, etc.). But in that bot, it will handle only poll selection interactivity. """ handle_interactivity(client=slack_client, request=request, poll=music_poll) return Response(status=200) slack_events_adapter = SlackEventAdapter( SLACK_BOT_SIGNIN_TOKEN, "/slack/events", app ) if __name__ == "__main__": app.run(host='0.0.0.0', port=4000)
[ 6738, 42903, 1330, 46947, 11, 18261, 11, 2581, 198, 11748, 33918, 198, 11748, 28686, 198, 6738, 4704, 278, 1330, 14122, 198, 6738, 3278, 1330, 12868, 198, 6738, 30740, 1330, 5313, 11792, 198, 6738, 1017, 330, 365, 85, 658, 15042, 1330, 36256, 9237, 47307, 198, 198, 6738, 32847, 13, 4993, 8116, 1330, 5412, 62, 9503, 1746, 11, 5412, 62, 3849, 21797, 628, 198, 2, 7253, 46947, 598, 326, 481, 307, 4439, 477, 262, 7007, 198, 1324, 796, 46947, 7, 834, 3672, 834, 8, 198, 198, 2, 3497, 8710, 85, 9633, 198, 8634, 8120, 62, 33, 2394, 62, 46224, 1268, 62, 10468, 43959, 796, 28686, 13, 268, 2268, 13, 1136, 10786, 8634, 8120, 62, 33, 2394, 62, 46224, 1268, 62, 10468, 43959, 11537, 198, 8634, 8120, 62, 33, 2394, 62, 26861, 7597, 62, 10468, 43959, 796, 28686, 13, 268, 2268, 13, 1136, 10786, 8634, 8120, 62, 33, 2394, 62, 26861, 7597, 62, 10468, 43959, 11537, 198, 8634, 8120, 62, 33, 2394, 62, 5959, 30643, 6234, 62, 10468, 43959, 796, 28686, 13, 268, 2268, 13, 1136, 10786, 8634, 8120, 62, 33, 2394, 62, 5959, 30643, 6234, 62, 10468, 43959, 11537, 198, 198, 2, 3497, 30740, 40391, 5456, 290, 3278, 2134, 198, 6649, 441, 62, 16366, 796, 5313, 11792, 7, 8634, 8120, 62, 33, 2394, 62, 26861, 7597, 62, 10468, 43959, 8, 198, 28965, 62, 30393, 796, 12868, 3419, 198, 198, 2, 27882, 1811, 11926, 284, 262, 4382, 198, 31, 1324, 13, 38629, 7203, 14, 4943, 198, 4299, 1785, 62, 25480, 7, 25927, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8774, 8011, 326, 8794, 477, 262, 2581, 351, 36256, 11241, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 33918, 62, 11600, 796, 33918, 13, 46030, 7, 25927, 13, 2618, 13, 12501, 1098, 7203, 40477, 12, 23, 48774, 198, 220, 220, 220, 611, 33918, 62, 11600, 14692, 30001, 8973, 14512, 12419, 8120, 62, 33, 2394, 62, 5959, 30643, 6234, 62, 10468, 43959, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 19779, 13376, 1298, 38210, 92, 628, 220, 220, 220, 611, 366, 4906, 1, 287, 33918, 62, 11600, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 33918, 62, 11600, 14692, 4906, 8973, 6624, 366, 6371, 62, 332, 2649, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2882, 62, 11600, 796, 19779, 36747, 3540, 1298, 33918, 62, 11600, 14692, 36747, 3540, 8973, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2882, 62, 11600, 198, 220, 220, 220, 1441, 19779, 13376, 1298, 5323, 92, 198, 198, 31, 1324, 13, 38629, 10786, 14, 6649, 441, 14, 9503, 1746, 3256, 5050, 28, 17816, 32782, 6, 12962, 198, 4299, 3141, 62, 25480, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 15553, 284, 5412, 477, 262, 29641, 9729, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5412, 62, 9503, 1746, 7, 16366, 28, 6649, 441, 62, 16366, 11, 3278, 28, 28965, 62, 30393, 11, 2581, 62, 687, 28, 25927, 13, 687, 8, 198, 220, 220, 220, 1441, 18261, 7, 13376, 28, 2167, 8, 198, 198, 31, 1324, 13, 38629, 10786, 14, 6649, 441, 14, 3849, 21797, 3256, 5050, 28, 17816, 32782, 6, 12962, 198, 4299, 9427, 3458, 62, 25480, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 15553, 11, 326, 17105, 477, 262, 9427, 3458, 357, 4360, 27288, 11, 2198, 29305, 11, 30740, 32953, 11, 3503, 15729, 198, 220, 220, 220, 887, 287, 326, 10214, 11, 340, 481, 5412, 691, 3278, 6356, 9427, 3458, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5412, 62, 3849, 21797, 7, 16366, 28, 6649, 441, 62, 16366, 11, 2581, 28, 25927, 11, 3278, 28, 28965, 62, 30393, 8, 198, 220, 220, 220, 1441, 18261, 7, 13376, 28, 2167, 8, 198, 198, 6649, 441, 62, 31534, 62, 324, 3429, 796, 36256, 9237, 47307, 7, 198, 220, 220, 220, 12419, 8120, 62, 33, 2394, 62, 46224, 1268, 62, 10468, 43959, 11, 12813, 6649, 441, 14, 31534, 1600, 598, 198, 8, 220, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 598, 13, 5143, 7, 4774, 11639, 15, 13, 15, 13, 15, 13, 15, 3256, 2493, 28, 27559, 8, 198 ]
2.799716
704
from my_lambda.my_classes import MyUtilities import numpy as np import pandas as pd if __name__ == "__main__": d = {'col1': [1, 5, 3, 100, 8], 'col2': [3, 4, np.nan, 5, 6]} dt = MyUtilities(d) print(dt.num_nans()) X_train, X_val, X_test, y_train, y_val, y_test = dt.train_validation_test_split('col1','col2',random_state=42) print(X_val) print(dt.shape) print(dt.drop_high_nan(1))
[ 6738, 616, 62, 50033, 13, 1820, 62, 37724, 1330, 2011, 18274, 2410, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 19798, 292, 355, 279, 67, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 288, 796, 1391, 6, 4033, 16, 10354, 685, 16, 11, 642, 11, 513, 11, 1802, 11, 807, 4357, 705, 4033, 17, 10354, 685, 18, 11, 604, 11, 45941, 13, 12647, 11, 642, 11, 718, 48999, 198, 220, 220, 220, 220, 198, 220, 220, 220, 288, 83, 796, 2011, 18274, 2410, 7, 67, 8, 628, 220, 220, 220, 3601, 7, 28664, 13, 22510, 62, 77, 504, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1395, 62, 27432, 11, 1395, 62, 2100, 11, 1395, 62, 9288, 11, 331, 62, 27432, 11, 331, 62, 2100, 11, 331, 62, 9288, 796, 288, 83, 13, 27432, 62, 12102, 341, 62, 9288, 62, 35312, 10786, 4033, 16, 41707, 4033, 17, 3256, 25120, 62, 5219, 28, 3682, 8, 628, 220, 220, 220, 3601, 7, 55, 62, 2100, 8, 628, 220, 220, 220, 3601, 7, 28664, 13, 43358, 8, 628, 220, 220, 220, 3601, 7, 28664, 13, 14781, 62, 8929, 62, 12647, 7, 16, 4008 ]
2.093137
204
# Copyright (c) 2016 Mirantis, Inc. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. import abc import mock from kuryr_kubernetes.controller.drivers import base as d_base from kuryr_kubernetes.tests import base as test_base
[ 2, 15069, 357, 66, 8, 1584, 7381, 20836, 11, 3457, 13, 198, 2, 1439, 6923, 33876, 13, 198, 2, 198, 2, 220, 220, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 345, 743, 198, 2, 220, 220, 220, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 921, 743, 7330, 198, 2, 220, 220, 220, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 220, 220, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 220, 220, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 198, 2, 220, 220, 220, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 198, 2, 220, 220, 220, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 11247, 198, 2, 220, 220, 220, 739, 262, 13789, 13, 198, 198, 11748, 450, 66, 198, 198, 11748, 15290, 198, 198, 6738, 479, 1601, 81, 62, 74, 18478, 3262, 274, 13, 36500, 13, 36702, 1330, 2779, 355, 288, 62, 8692, 198, 6738, 479, 1601, 81, 62, 74, 18478, 3262, 274, 13, 41989, 1330, 2779, 355, 1332, 62, 8692, 628, 628 ]
3.2827
237
from typing import List """ Runtime: O(mn) Space: O(mn) where m = no of rows in A and n = no of cols in A Runtime: 72 ms, faster than 80.91% of Python3 online submissions for Transpose Matrix. Memory Usage: 13.4 MB, less than 100.00% of Python3 online submissions for Transpose Matrix. """
[ 6738, 19720, 1330, 7343, 628, 198, 198, 37811, 198, 41006, 25, 440, 7, 10295, 8, 198, 14106, 25, 440, 7, 10295, 8, 198, 3003, 285, 796, 645, 286, 15274, 287, 317, 290, 299, 796, 645, 286, 951, 82, 287, 317, 198, 198, 41006, 25, 7724, 13845, 11, 5443, 621, 4019, 13, 6420, 4, 286, 11361, 18, 2691, 22129, 329, 3602, 3455, 24936, 13, 198, 30871, 29566, 25, 1511, 13, 19, 10771, 11, 1342, 621, 1802, 13, 405, 4, 286, 11361, 18, 2691, 22129, 329, 3602, 3455, 24936, 13, 198, 37811, 198 ]
3.230769
91
from core import Files from library.stigma.helper import kivyBuilder from library.stigma.application import Popup kivyBuilder(Files.apppath, 'model', 'builder', 'option', 'optionpopup.kv')
[ 6738, 4755, 1330, 13283, 198, 6738, 5888, 13, 301, 13495, 13, 2978, 525, 1330, 479, 452, 88, 32875, 198, 6738, 5888, 13, 301, 13495, 13, 31438, 1330, 8099, 929, 198, 74, 452, 88, 32875, 7, 25876, 13, 1324, 6978, 11, 705, 19849, 3256, 705, 38272, 3256, 705, 18076, 3256, 705, 18076, 12924, 929, 13, 74, 85, 11537, 198 ]
3.258621
58
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from orquesta import conducting from orquesta import events from orquesta.specs import native as specs from orquesta import states from orquesta.tests.unit import base
[ 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 628, 198, 6738, 393, 6138, 64, 1330, 14523, 198, 6738, 393, 6138, 64, 1330, 2995, 198, 6738, 393, 6138, 64, 13, 4125, 6359, 1330, 6868, 355, 25274, 198, 6738, 393, 6138, 64, 1330, 2585, 198, 6738, 393, 6138, 64, 13, 41989, 13, 20850, 1330, 2779, 628 ]
3.864865
185
from pyroute2.netlink import nla
[ 6738, 279, 2417, 13192, 17, 13, 3262, 8726, 1330, 299, 5031, 628 ]
2.833333
12
import tensorflow as tf import numpy as np import math import pickle import os """ Import sbot class definition. """ from sbot import sbot """ Function to load data and prepare the metadata variables """ """ Function to build training sequences. """ """ Training Function. """ flags = tf.app.flags flags.DEFINE_string("file_path",None,"Path to file containing training texts") flags.DEFINE_string("meta_dir","meta_dir/","Directory to store training file metadata produced by application") flags.DEFINE_string("model_dir","sbot_model/","Directory name to save checkpoints") FLAGS = flags.FLAGS if __name__ == '__main__': tf.app.run()
[ 11748, 11192, 273, 11125, 355, 48700, 220, 198, 11748, 299, 32152, 355, 45941, 220, 198, 11748, 10688, 198, 11748, 2298, 293, 198, 11748, 28686, 198, 198, 37811, 198, 20939, 264, 13645, 1398, 6770, 13, 198, 37811, 198, 6738, 264, 13645, 1330, 264, 13645, 220, 220, 198, 198, 37811, 198, 22203, 284, 3440, 1366, 290, 8335, 262, 20150, 9633, 198, 37811, 198, 220, 220, 198, 198, 37811, 198, 22203, 284, 1382, 3047, 16311, 13, 198, 37811, 628, 198, 37811, 198, 44357, 15553, 13, 198, 37811, 198, 220, 220, 220, 198, 220, 220, 220, 220, 628, 198, 33152, 796, 48700, 13, 1324, 13, 33152, 198, 33152, 13, 7206, 29940, 62, 8841, 7203, 7753, 62, 6978, 1600, 14202, 553, 15235, 284, 2393, 7268, 3047, 13399, 4943, 198, 33152, 13, 7206, 29940, 62, 8841, 7203, 28961, 62, 15908, 2430, 28961, 62, 15908, 14, 2430, 43055, 284, 3650, 3047, 2393, 20150, 4635, 416, 3586, 4943, 198, 33152, 13, 7206, 29940, 62, 8841, 7203, 19849, 62, 15908, 2430, 82, 13645, 62, 19849, 14, 2430, 43055, 1438, 284, 3613, 36628, 4943, 198, 38948, 50, 796, 9701, 13, 38948, 50, 198, 220, 220, 220, 220, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 48700, 13, 1324, 13, 5143, 3419, 198 ]
3.181818
209
import webbrowser from AppKit import NSPredicate from mechanic.extension import Extension from mechanic.ui.lists.base import BaseList from mechanic.ui.formatters.description import DescriptionFormatter from mechanic.ui.cells.circle import CircleCell class InstallationList(BaseList): """Return an ExtensionList for installation window.""" columns = [{"title": "Installed", "key": "is_installed", "width": 25, "editable": False, "cell": CircleCell.alloc().init()}, {"title": "Extension", "key": "extension", "width": 400, "editable": False, "formatter": DescriptionFormatter.alloc().init()}] @property
[ 11748, 3992, 40259, 198, 6738, 2034, 20827, 1330, 399, 4303, 445, 5344, 198, 198, 6738, 21600, 13, 2302, 3004, 1330, 27995, 198, 6738, 21600, 13, 9019, 13, 20713, 13, 8692, 1330, 7308, 8053, 198, 6738, 21600, 13, 9019, 13, 18982, 1010, 13, 11213, 1330, 12489, 8479, 1436, 198, 6738, 21600, 13, 9019, 13, 46342, 13, 45597, 1330, 16291, 28780, 628, 198, 4871, 32588, 8053, 7, 14881, 8053, 2599, 198, 220, 220, 220, 37227, 13615, 281, 27995, 8053, 329, 9988, 4324, 526, 15931, 628, 220, 220, 220, 15180, 796, 685, 4895, 7839, 1298, 366, 6310, 4262, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2539, 1298, 366, 271, 62, 37050, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10394, 1298, 1679, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 276, 4674, 1298, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3846, 1298, 16291, 28780, 13, 32332, 22446, 15003, 3419, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19779, 7839, 1298, 366, 11627, 3004, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2539, 1298, 366, 2302, 3004, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 10394, 1298, 7337, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 276, 4674, 1298, 10352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 687, 1436, 1298, 12489, 8479, 1436, 13, 32332, 22446, 15003, 3419, 92, 60, 628, 198, 220, 220, 220, 2488, 26745, 198 ]
2.411392
316
# -*- coding: utf-8 -*- import unittest import brambox.boxes as bbb if __name__ == '__main__': unittest.main()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 555, 715, 395, 198, 11748, 275, 859, 3524, 13, 29305, 355, 275, 11848, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.288462
52
import sys from os.path import abspath, dirname, join from PyQt5.QtCore import QObject from PyQt5.QtGui import QGuiApplication from PyQt5.QtQml import QQmlApplicationEngine if __name__ == '__main__': app = QGuiApplication(sys.argv) engine = QQmlApplicationEngine() # Instance of the Python object bridge = Bridge() # Expose the Python object to QML context = engine.rootContext() context.setContextProperty("con", bridge) # Get the path of the current directory, and then add the name # of the QML file, to load it. qmlFile = join(dirname(__file__), 'minimal.qml') engine.load(abspath(qmlFile)) if not engine.rootObjects(): sys.exit(-1) sys.exit(app.exec_())
[ 11748, 25064, 198, 6738, 28686, 13, 6978, 1330, 2352, 6978, 11, 26672, 3672, 11, 4654, 198, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 14055, 1330, 1195, 10267, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 8205, 72, 1330, 1195, 8205, 72, 23416, 198, 6738, 9485, 48, 83, 20, 13, 48, 83, 48, 4029, 1330, 1195, 48, 4029, 23416, 13798, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 598, 796, 1195, 8205, 72, 23416, 7, 17597, 13, 853, 85, 8, 198, 220, 220, 220, 3113, 796, 1195, 48, 4029, 23416, 13798, 3419, 628, 220, 220, 220, 1303, 2262, 590, 286, 262, 11361, 2134, 198, 220, 220, 220, 7696, 796, 10290, 3419, 628, 220, 220, 220, 1303, 1475, 3455, 262, 11361, 2134, 284, 1195, 5805, 198, 220, 220, 220, 4732, 796, 3113, 13, 15763, 21947, 3419, 198, 220, 220, 220, 4732, 13, 2617, 21947, 21746, 7203, 1102, 1600, 7696, 8, 628, 220, 220, 220, 1303, 3497, 262, 3108, 286, 262, 1459, 8619, 11, 290, 788, 751, 262, 1438, 198, 220, 220, 220, 1303, 286, 262, 1195, 5805, 2393, 11, 284, 3440, 340, 13, 198, 220, 220, 220, 10662, 4029, 8979, 796, 4654, 7, 15908, 3672, 7, 834, 7753, 834, 828, 705, 1084, 4402, 13, 80, 4029, 11537, 198, 220, 220, 220, 3113, 13, 2220, 7, 397, 2777, 776, 7, 80, 4029, 8979, 4008, 628, 220, 220, 220, 611, 407, 3113, 13, 15763, 10267, 82, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 37023, 32590, 16, 8, 628, 220, 220, 220, 25064, 13, 37023, 7, 1324, 13, 18558, 62, 28955, 198 ]
2.666667
273
""" Start program """ import logging import os from commands import Commands from admin.admin_auth import AdminAuth from admin.notify_admin import NotifyAdmin from admin.register_admin import RegisterAdmin from feedback import Feedback from resident.notify_resident import NotifyResident from resident.register_resident import RegisterResident from resident.resident_auth import ResidentAuth from settings import * from telegram.ext import CallbackQueryHandler from telegram.ext import Updater, CommandHandler, MessageHandler, ConversationHandler, Filters from visitor.register_visitor import RegisterVisitor from visitor.visit import Visit # Remove logs from APIs logging.getLogger("telegram").setLevel(API_LOG_LEVEL) logging.getLogger("JobQueue").setLevel(API_LOG_LEVEL) # Logger logging.basicConfig(format=FORMAT, datefmt=DATEFMT) logger = logging.getLogger(LOG_NAME) logger.setLevel(LOG_LEVEL) # FileHandler file_handler = logging.FileHandler(FILE_NAME) file_handler.setLevel(LOG_LEVEL) f_format = logging.Formatter(FORMAT, datefmt=DATEFMT) file_handler.setFormatter(f_format) logger.addHandler(file_handler) def start(update, context): """ Start interaction """ logger.info("Introducing the bot") chat_id = update.message.chat_id context.bot.send_message( chat_id=chat_id, parse_mode='Markdown', text= """ Olá, bem vindo(a) ao bot do *Alohomora*! *Comandos* /morador - interações para moradores /visitante - interações para visitante /admin - interações para administradores Para dar um _feedback_ pro nosso serviço, digite /feedback """ ) if __name__ == '__main__': token = TOKEN port = int(os.environ.get('PORT', '8443')) updater = Updater(token, use_context=True) logger.info("Starting Bot") dp = updater.dispatcher dp.add_handler(CommandHandler("start", start)) # Resident register dp.add_handler(ConversationHandler( entry_points=[CallbackQueryHandler(RegisterResident.index, pattern='r1')], states={ NAME:[MessageHandler(Filters.text, RegisterResident.name)], PHONE:[MessageHandler(Filters.text | Filters.contact, RegisterResident.phone)], EMAIL:[MessageHandler(Filters.text, RegisterResident.email)], CPF:[MessageHandler(Filters.text, RegisterResident.cpf)], BLOCK:[MessageHandler(Filters.text, RegisterResident.block)], APARTMENT:[MessageHandler(Filters.text, RegisterResident.apartment)], VOICE_REGISTER:[MessageHandler(Filters.voice, RegisterResident.voice_register)], REPEAT_VOICE:[MessageHandler(Filters.text, RegisterResident.repeat_voice)], PASSWORD: [MessageHandler(Filters.text, RegisterResident.password)] }, fallbacks=[CommandHandler('cancelar', RegisterResident.end)] )) # Resident authentication dp.add_handler(ConversationHandler( entry_points=[CallbackQueryHandler(ResidentAuth.index, pattern='r2')], states={ CHOOSE_AUTH:[MessageHandler(Filters.text, ResidentAuth.choose_auth)], VOICE_AUTH:[MessageHandler(Filters.voice, ResidentAuth.voice)], PASSWORD_AUTH:[MessageHandler(Filters.text, ResidentAuth.password)], }, fallbacks=[CommandHandler('cancelar', ResidentAuth.end)] )) # Visitor register dp.add_handler(ConversationHandler( entry_points=[CallbackQueryHandler(RegisterVisitor.index, pattern='v1')], states={ VISITOR_REGISTER_NAME:[MessageHandler(Filters.text, RegisterVisitor.name)], VISITOR_REGISTER_CPF:[MessageHandler(Filters.text, RegisterVisitor.cpf)], }, fallbacks=[CommandHandler('cancelar', RegisterVisitor.end)] )) # Visit dp.add_handler(ConversationHandler( entry_points=[CallbackQueryHandler(Visit.index, pattern='v2')], states={ VISIT_BLOCK:[MessageHandler(Filters.text, Visit.block)], VISIT_APARTMENT:[MessageHandler(Filters.text, Visit.apartment)], }, fallbacks=[CommandHandler('cancelar', Visit.end)] )) # Admin register dp.add_handler(ConversationHandler( entry_points=[CallbackQueryHandler(RegisterAdmin.index, pattern='a1')], states={ ADMIN_REGISTER_EMAIL: [MessageHandler(Filters.text, RegisterAdmin.email)], ADMIN_REGISTER_PWD: [MessageHandler(Filters.text, RegisterAdmin.password)], }, fallbacks=[CommandHandler('cancelar', RegisterAdmin.end)] )) # Admin authentication dp.add_handler(ConversationHandler( entry_points=[CallbackQueryHandler(AdminAuth.index, pattern='a2')], states={ ADMIN_AUTH_EMAIL: [MessageHandler(Filters.text, AdminAuth.email)], ADMIN_AUTH_PWD: [MessageHandler(Filters.text, AdminAuth.password)], ADMIN_AUTH_REPEAT: [MessageHandler(Filters.text, AdminAuth.repeat)], }, fallbacks=[CommandHandler('cancelar', AdminAuth.end)] )) # Admin notification dp.add_handler(CallbackQueryHandler(NotifyAdmin.approved, pattern='app')) dp.add_handler(CallbackQueryHandler(NotifyAdmin.rejected, pattern='rej')) # Resident notification dp.add_handler(CallbackQueryHandler(NotifyResident.authorized, pattern='aut')) dp.add_handler(CallbackQueryHandler(NotifyResident.refused, pattern='ref')) # Feedback dp.add_handler(ConversationHandler( entry_points=[CommandHandler('feedback', Feedback.index)], states={ FEEDBACK: [MessageHandler(Filters.text, Feedback.store)], }, fallbacks=[CommandHandler('cancelar', Feedback.end)] )) # Listing resident commands dp.add_handler(CommandHandler('morador', Commands.resident)) # Listing visitor commands dp.add_handler(CommandHandler('visitante', Commands.visitor)) # Listing admin commands dp.add_handler(CommandHandler('admin', Commands.admin)) if os.environ['DEPLOY'] == 'True': updater.start_webhook(listen="0.0.0.0", port=port, url_path=token) updater.bot.set_webhook(os.environ['URL'] + token) elif os.environ['DEPLOY'] == 'False': updater.start_polling() updater.idle()
[ 37811, 198, 10434, 1430, 198, 37811, 198, 198, 11748, 18931, 198, 11748, 28686, 198, 198, 6738, 9729, 1330, 49505, 198, 6738, 13169, 13, 28482, 62, 18439, 1330, 32053, 30515, 198, 6738, 13169, 13, 1662, 1958, 62, 28482, 1330, 1892, 1958, 46787, 198, 6738, 13169, 13, 30238, 62, 28482, 1330, 17296, 46787, 198, 6738, 7538, 1330, 37774, 198, 6738, 6623, 13, 1662, 1958, 62, 8154, 1330, 1892, 1958, 4965, 738, 198, 6738, 6623, 13, 30238, 62, 8154, 1330, 17296, 4965, 738, 198, 6738, 6623, 13, 8154, 62, 18439, 1330, 22373, 30515, 198, 6738, 6460, 1330, 1635, 198, 6738, 573, 30536, 13, 2302, 1330, 4889, 1891, 20746, 25060, 198, 6738, 573, 30536, 13, 2302, 1330, 3205, 67, 729, 11, 9455, 25060, 11, 16000, 25060, 11, 42427, 25060, 11, 7066, 1010, 198, 6738, 21493, 13, 30238, 62, 4703, 2072, 1330, 17296, 15854, 2072, 198, 6738, 21493, 13, 4703, 270, 1330, 16440, 198, 198, 2, 17220, 17259, 422, 23113, 198, 6404, 2667, 13, 1136, 11187, 1362, 7203, 660, 30536, 11074, 2617, 4971, 7, 17614, 62, 25294, 62, 2538, 18697, 8, 198, 6404, 2667, 13, 1136, 11187, 1362, 7203, 33308, 34991, 11074, 2617, 4971, 7, 17614, 62, 25294, 62, 2538, 18697, 8, 198, 198, 2, 5972, 1362, 198, 6404, 2667, 13, 35487, 16934, 7, 18982, 28, 21389, 1404, 11, 3128, 69, 16762, 28, 35, 6158, 37, 13752, 8, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 25294, 62, 20608, 8, 198, 6404, 1362, 13, 2617, 4971, 7, 25294, 62, 2538, 18697, 8, 198, 198, 2, 9220, 25060, 198, 7753, 62, 30281, 796, 18931, 13, 8979, 25060, 7, 25664, 62, 20608, 8, 198, 7753, 62, 30281, 13, 2617, 4971, 7, 25294, 62, 2538, 18697, 8, 198, 69, 62, 18982, 796, 18931, 13, 8479, 1436, 7, 21389, 1404, 11, 3128, 69, 16762, 28, 35, 6158, 37, 13752, 8, 198, 7753, 62, 30281, 13, 2617, 8479, 1436, 7, 69, 62, 18982, 8, 198, 6404, 1362, 13, 2860, 25060, 7, 7753, 62, 30281, 8, 198, 198, 4299, 923, 7, 19119, 11, 4732, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 7253, 10375, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 49706, 13, 10951, 7203, 15005, 2259, 262, 10214, 4943, 198, 220, 220, 220, 8537, 62, 312, 796, 4296, 13, 20500, 13, 17006, 62, 312, 628, 220, 220, 220, 4732, 13, 13645, 13, 21280, 62, 20500, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8537, 62, 312, 28, 17006, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21136, 62, 14171, 11639, 9704, 2902, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 28, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 30098, 6557, 11, 307, 76, 29178, 78, 7, 64, 8, 257, 78, 10214, 466, 1635, 2348, 1219, 296, 5799, 9, 0, 198, 198, 9, 5377, 392, 418, 9, 198, 14, 4491, 7079, 532, 987, 64, 16175, 127, 113, 274, 31215, 2146, 324, 2850, 198, 14, 4703, 270, 12427, 532, 987, 64, 16175, 127, 113, 274, 31215, 3187, 12427, 198, 14, 28482, 532, 987, 64, 16175, 127, 113, 274, 31215, 2719, 6335, 2850, 198, 198, 47, 3301, 288, 283, 23781, 4808, 12363, 1891, 62, 386, 43630, 568, 1113, 72, 16175, 78, 11, 3100, 578, 1220, 12363, 1891, 198, 37811, 198, 220, 220, 220, 1267, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 628, 220, 220, 220, 11241, 796, 5390, 43959, 198, 220, 220, 220, 2493, 796, 493, 7, 418, 13, 268, 2268, 13, 1136, 10786, 15490, 3256, 705, 23, 34938, 6, 4008, 628, 220, 220, 220, 2325, 729, 796, 3205, 67, 729, 7, 30001, 11, 779, 62, 22866, 28, 17821, 8, 628, 220, 220, 220, 49706, 13, 10951, 7203, 22851, 18579, 4943, 628, 220, 220, 220, 288, 79, 796, 2325, 729, 13, 6381, 8071, 2044, 628, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 21575, 25060, 7203, 9688, 1600, 923, 4008, 628, 220, 220, 220, 1303, 22373, 7881, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 3103, 690, 341, 25060, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 13033, 41888, 47258, 20746, 25060, 7, 38804, 4965, 738, 13, 9630, 11, 3912, 11639, 81, 16, 11537, 4357, 628, 220, 220, 220, 220, 220, 220, 220, 2585, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36751, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 4965, 738, 13, 3672, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9370, 11651, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 930, 7066, 1010, 13, 32057, 11, 17296, 4965, 738, 13, 4862, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 412, 5673, 4146, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 4965, 738, 13, 12888, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16932, 37, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 4965, 738, 13, 13155, 69, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9878, 11290, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 4965, 738, 13, 9967, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3486, 7227, 10979, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 4965, 738, 13, 499, 1823, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30578, 8476, 62, 31553, 41517, 33250, 12837, 25060, 7, 11928, 1010, 13, 38888, 11, 17296, 4965, 738, 13, 38888, 62, 30238, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4526, 11401, 1404, 62, 29516, 8476, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 4965, 738, 13, 44754, 62, 38888, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41752, 54, 12532, 25, 685, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 4965, 738, 13, 28712, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 628, 220, 220, 220, 220, 220, 220, 220, 2121, 10146, 41888, 21575, 25060, 10786, 66, 21130, 283, 3256, 17296, 4965, 738, 13, 437, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 15306, 628, 220, 220, 220, 1303, 22373, 18239, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 3103, 690, 341, 25060, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 13033, 41888, 47258, 20746, 25060, 7, 4965, 738, 30515, 13, 9630, 11, 3912, 11639, 81, 17, 11537, 4357, 628, 220, 220, 220, 220, 220, 220, 220, 2585, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49143, 14058, 62, 32, 24318, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 22373, 30515, 13, 6679, 577, 62, 18439, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30578, 8476, 62, 32, 24318, 33250, 12837, 25060, 7, 11928, 1010, 13, 38888, 11, 22373, 30515, 13, 38888, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41752, 54, 12532, 62, 32, 24318, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 22373, 30515, 13, 28712, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 628, 220, 220, 220, 220, 220, 220, 220, 2121, 10146, 41888, 21575, 25060, 10786, 66, 21130, 283, 3256, 22373, 30515, 13, 437, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 15306, 628, 220, 220, 220, 1303, 6911, 2072, 7881, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 3103, 690, 341, 25060, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 13033, 41888, 47258, 20746, 25060, 7, 38804, 15854, 2072, 13, 9630, 11, 3912, 11639, 85, 16, 11537, 4357, 628, 220, 220, 220, 220, 220, 220, 220, 2585, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 50035, 2043, 1581, 62, 31553, 41517, 62, 20608, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 15854, 2072, 13, 3672, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 50035, 2043, 1581, 62, 31553, 41517, 62, 8697, 37, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 15854, 2072, 13, 13155, 69, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 628, 220, 220, 220, 220, 220, 220, 220, 2121, 10146, 41888, 21575, 25060, 10786, 66, 21130, 283, 3256, 17296, 15854, 2072, 13, 437, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 15306, 628, 220, 220, 220, 1303, 16440, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 3103, 690, 341, 25060, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 13033, 41888, 47258, 20746, 25060, 7, 31141, 13, 9630, 11, 3912, 11639, 85, 17, 11537, 4357, 628, 220, 220, 220, 220, 220, 220, 220, 2585, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 50035, 2043, 62, 9148, 11290, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 16440, 13, 9967, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 50035, 2043, 62, 2969, 7227, 10979, 33250, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 16440, 13, 499, 1823, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 628, 220, 220, 220, 220, 220, 220, 220, 2121, 10146, 41888, 21575, 25060, 10786, 66, 21130, 283, 3256, 16440, 13, 437, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 15306, 628, 220, 220, 220, 1303, 32053, 7881, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 3103, 690, 341, 25060, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 13033, 41888, 47258, 20746, 25060, 7, 38804, 46787, 13, 9630, 11, 3912, 11639, 64, 16, 11537, 4357, 628, 220, 220, 220, 220, 220, 220, 220, 2585, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5984, 23678, 62, 31553, 41517, 62, 27630, 4146, 25, 685, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 46787, 13, 12888, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5984, 23678, 62, 31553, 41517, 62, 47, 22332, 25, 685, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 17296, 46787, 13, 28712, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 628, 220, 220, 220, 220, 220, 220, 220, 2121, 10146, 41888, 21575, 25060, 10786, 66, 21130, 283, 3256, 17296, 46787, 13, 437, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 15306, 628, 220, 220, 220, 1303, 32053, 18239, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 3103, 690, 341, 25060, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 13033, 41888, 47258, 20746, 25060, 7, 46787, 30515, 13, 9630, 11, 3912, 11639, 64, 17, 11537, 4357, 628, 220, 220, 220, 220, 220, 220, 220, 2585, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5984, 23678, 62, 32, 24318, 62, 27630, 4146, 25, 685, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 32053, 30515, 13, 12888, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5984, 23678, 62, 32, 24318, 62, 47, 22332, 25, 685, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 32053, 30515, 13, 28712, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5984, 23678, 62, 32, 24318, 62, 2200, 11401, 1404, 25, 685, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 32053, 30515, 13, 44754, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 628, 220, 220, 220, 220, 220, 220, 220, 2121, 10146, 41888, 21575, 25060, 10786, 66, 21130, 283, 3256, 32053, 30515, 13, 437, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 15306, 198, 220, 220, 220, 1303, 32053, 14483, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 47258, 20746, 25060, 7, 3673, 1958, 46787, 13, 29137, 11, 3912, 11639, 1324, 6, 4008, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 47258, 20746, 25060, 7, 3673, 1958, 46787, 13, 260, 35408, 11, 3912, 11639, 260, 73, 6, 4008, 628, 220, 220, 220, 1303, 22373, 14483, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 47258, 20746, 25060, 7, 3673, 1958, 4965, 738, 13, 19721, 11, 3912, 11639, 2306, 6, 4008, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 47258, 20746, 25060, 7, 3673, 1958, 4965, 738, 13, 5420, 1484, 11, 3912, 11639, 5420, 6, 4008, 628, 220, 220, 220, 1303, 37774, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 3103, 690, 341, 25060, 7, 198, 220, 220, 220, 220, 220, 220, 220, 5726, 62, 13033, 41888, 21575, 25060, 10786, 12363, 1891, 3256, 37774, 13, 9630, 8, 4357, 628, 220, 220, 220, 220, 220, 220, 220, 2585, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18630, 1961, 31098, 25, 685, 12837, 25060, 7, 11928, 1010, 13, 5239, 11, 37774, 13, 8095, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 628, 220, 220, 220, 220, 220, 220, 220, 2121, 10146, 41888, 21575, 25060, 10786, 66, 21130, 283, 3256, 37774, 13, 437, 15437, 198, 220, 220, 220, 220, 220, 220, 220, 15306, 628, 220, 220, 220, 1303, 7343, 278, 6623, 9729, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 21575, 25060, 10786, 4491, 7079, 3256, 49505, 13, 8154, 4008, 628, 220, 220, 220, 1303, 7343, 278, 21493, 9729, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 21575, 25060, 10786, 4703, 270, 12427, 3256, 49505, 13, 4703, 2072, 4008, 628, 220, 220, 220, 1303, 7343, 278, 13169, 9729, 198, 220, 220, 220, 288, 79, 13, 2860, 62, 30281, 7, 21575, 25060, 10786, 28482, 3256, 49505, 13, 28482, 4008, 628, 220, 220, 220, 611, 28686, 13, 268, 2268, 17816, 7206, 6489, 21414, 20520, 6624, 705, 17821, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 2325, 729, 13, 9688, 62, 12384, 25480, 7, 4868, 268, 2625, 15, 13, 15, 13, 15, 13, 15, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2493, 28, 634, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19016, 62, 6978, 28, 30001, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2325, 729, 13, 13645, 13, 2617, 62, 12384, 25480, 7, 418, 13, 268, 2268, 17816, 21886, 20520, 1343, 11241, 8, 628, 220, 220, 220, 1288, 361, 28686, 13, 268, 2268, 17816, 7206, 6489, 21414, 20520, 6624, 705, 25101, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 2325, 729, 13, 9688, 62, 30393, 278, 3419, 628, 220, 220, 220, 2325, 729, 13, 312, 293, 3419, 198 ]
2.522754
2,527
# # Copyright 2017 Tubular Labs, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # from collections import defaultdict from functools import reduce import operator from six import string_types from pyspark.sql import Column from pyspark.sql import functions as F def multijoin(dfs, on=None, how=None, coalesce=None): """Join multiple dataframes. Args: dfs (list[pyspark.sql.DataFrame]). on: same as ``pyspark.sql.DataFrame.join``. how: same as ``pyspark.sql.DataFrame.join``. coalesce (list[str]): column names to disambiguate by coalescing across the input dataframes. A column must be of the same type across all dataframes that define it; if different types appear coalesce will do a best-effort attempt in merging them. The selected value is the first non-null one in order of appearance of the dataframes in the input list. Default is None - don't coalesce any ambiguous columns. Returns: pyspark.sql.DataFrame or None if provided dataframe list is empty. Example: Assume we have two DataFrames, the first is ``first = [{'id': 1, 'value': None}, {'id': 2, 'value': 2}]`` and the second is ``second = [{'id': 1, 'value': 1}, {'id': 2, 'value': 22}]`` Then collecting the ``DataFrame`` produced by ``multijoin([first, second], on='id', how='inner', coalesce=['value'])`` yields ``[{'id': 1, 'value': 1}, {'id': 2, 'value': 2}]``. """ if not dfs: return None # Go over the input dataframes and rename each to-be-resolved # column to ensure name uniqueness coalesce = set(coalesce or []) renamed_columns = defaultdict(list) for idx, df in enumerate(dfs): for col in df.columns: if col in coalesce: disambiguation = '__{}_{}'.format(idx, col) df = df.withColumnRenamed(col, disambiguation) renamed_columns[col].append(disambiguation) dfs[idx] = df # Join the dataframes joined_df = reduce(lambda x, y: x.join(y, on=on, how=how), dfs) # And coalesce the would-have-been-ambiguities for col, disambiguations in renamed_columns.items(): joined_df = joined_df.withColumn(col, F.coalesce(*disambiguations)) for disambiguation in disambiguations: joined_df = joined_df.drop(disambiguation) return joined_df def switch_case(switch, case=None, default=None, operand=operator.eq, **additional_cases): """Switch/case style column generation. Args: switch (str, pyspark.sql.Column): column to "switch" on; its values are going to be compared against defined cases. case (dict): case statements. When a key matches the value of the column in a specific row, the respective value will be assigned to the new column for that row. This is useful when your case condition constants are not strings. default: default value to be used when the value of the switch column doesn't match any keys. operand: function to compare the value of the switch column to the value of each case. Default is Column's eq. If user-provided, first argument will always be the switch Column; it's the user's responsibility to transform the case value to a column if they need to. additional_cases: additional "case" statements, kwargs style. Same semantics with cases above. If both are provided, cases takes precedence. Returns: pyspark.sql.Column Example: ``switch_case('state', CA='California', NY='New York', default='Other')`` is equivalent to >>> F.when( ... F.col('state') == 'CA', 'California' ).when( ... F.col('state') == 'NY', 'New York' ).otherwise('Other') If you need to "bucketize" a value ``switch_case('age', {(13, 17): 1, (18, 24): 2, ...}, operand=lambda c, v: c.between(*v))`` is equivalent to >>> F.when( ... F.col('age').between(13, 17), F.lit(1) ).when( ... F.col('age').between(18, 24), F.lit(2) ) """ if not isinstance(switch, Column): switch = F.col(switch) cases = case or {} for conflict in set(cases.keys()) & set(additional_cases.keys()): del additional_cases[conflict] cases = list(cases.items()) + list(additional_cases.items()) default = _column_or_lit(default) if not cases: return default result = reduce(_execute_case, cases, F).otherwise(default) return result def argmax(field, by, condition=None): """Select a value from the row that maximizes other column(s) Args: field (string, pyspark.sql.Column): the field to return that maximizes the "by" columns by (*string, *pyspark.sql.Column): field or list of fields to maximize. In reality, this will usually be only one field. But you may use multiple for tiebreakers condition (optional): Only consider the entities that pass this condition Returns: pyspark.sql.Column Example: df = ( df .groupBy('id') .agg(argmax('field1', 'by_field')) ) argmax('field1', ['by_field1', 'by_field2'], condition=F.col('col') == 1) argmax(F.col('field1'), [F.col('by_field1'), F.col('by_field2')], condition=F.lit(True)) """ if not isinstance(by, list): by = [by] if isinstance(field, string_types): field = F.col(field) by.append(field.alias('__tmp_argmax__')) result = F.struct(*by) if condition is not None: result = F.when(condition, result) result = F.max(result).getField('__tmp_argmax__') return result
[ 2, 198, 2, 15069, 2177, 42850, 934, 23500, 11, 3457, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 2, 198, 198, 6738, 17268, 1330, 4277, 11600, 198, 6738, 1257, 310, 10141, 1330, 4646, 198, 11748, 10088, 198, 6738, 2237, 1330, 4731, 62, 19199, 198, 198, 6738, 279, 893, 20928, 13, 25410, 1330, 29201, 198, 6738, 279, 893, 20928, 13, 25410, 1330, 5499, 355, 376, 628, 198, 4299, 1963, 2926, 36743, 7, 7568, 82, 11, 319, 28, 14202, 11, 703, 28, 14202, 11, 46064, 344, 28, 14202, 2599, 198, 220, 220, 220, 37227, 18234, 3294, 1366, 37805, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 288, 9501, 357, 4868, 58, 79, 893, 20928, 13, 25410, 13, 6601, 19778, 35944, 198, 220, 220, 220, 220, 220, 220, 220, 319, 25, 976, 355, 7559, 79, 893, 20928, 13, 25410, 13, 6601, 19778, 13, 22179, 15506, 13, 198, 220, 220, 220, 220, 220, 220, 220, 703, 25, 976, 355, 7559, 79, 893, 20928, 13, 25410, 13, 6601, 19778, 13, 22179, 15506, 13, 198, 220, 220, 220, 220, 220, 220, 220, 46064, 344, 357, 4868, 58, 2536, 60, 2599, 5721, 3891, 284, 595, 4131, 328, 4985, 416, 46064, 2259, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1973, 262, 5128, 1366, 37805, 13, 317, 5721, 1276, 307, 286, 262, 976, 2099, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1973, 477, 1366, 37805, 326, 8160, 340, 26, 611, 1180, 3858, 1656, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46064, 344, 481, 466, 257, 1266, 12, 14822, 419, 2230, 287, 35981, 606, 13, 383, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6163, 1988, 318, 262, 717, 1729, 12, 8423, 530, 287, 1502, 286, 5585, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 1366, 37805, 287, 262, 5128, 1351, 13, 15161, 318, 6045, 532, 836, 470, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46064, 344, 597, 27102, 15180, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 279, 893, 20928, 13, 25410, 13, 6601, 19778, 393, 6045, 611, 2810, 1366, 14535, 1351, 318, 6565, 13, 628, 220, 220, 220, 17934, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2195, 2454, 356, 423, 734, 6060, 35439, 11, 262, 717, 318, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 11085, 796, 685, 90, 6, 312, 10354, 352, 11, 705, 8367, 10354, 6045, 5512, 1391, 6, 312, 10354, 362, 11, 705, 8367, 10354, 362, 92, 60, 15506, 198, 220, 220, 220, 220, 220, 220, 220, 290, 262, 1218, 318, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 12227, 796, 685, 90, 6, 312, 10354, 352, 11, 705, 8367, 10354, 352, 5512, 1391, 6, 312, 10354, 362, 11, 705, 8367, 10354, 2534, 92, 60, 15506, 628, 220, 220, 220, 220, 220, 220, 220, 3244, 13157, 262, 7559, 6601, 19778, 15506, 4635, 416, 628, 220, 220, 220, 220, 220, 220, 220, 7559, 16680, 2926, 36743, 26933, 11085, 11, 1218, 4357, 319, 11639, 312, 3256, 703, 11639, 5083, 3256, 46064, 344, 28, 17816, 8367, 6, 12962, 15506, 628, 220, 220, 220, 220, 220, 220, 220, 19299, 7559, 58, 90, 6, 312, 10354, 352, 11, 705, 8367, 10354, 352, 5512, 1391, 6, 312, 10354, 362, 11, 705, 8367, 10354, 362, 92, 60, 15506, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 288, 9501, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 1303, 1514, 625, 262, 5128, 1366, 37805, 290, 36265, 1123, 284, 12, 1350, 12, 411, 5634, 198, 220, 220, 220, 1303, 5721, 284, 4155, 1438, 49650, 198, 220, 220, 220, 46064, 344, 796, 900, 7, 1073, 2040, 344, 393, 685, 12962, 198, 220, 220, 220, 25121, 62, 28665, 82, 796, 4277, 11600, 7, 4868, 8, 198, 220, 220, 220, 329, 4686, 87, 11, 47764, 287, 27056, 378, 7, 7568, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 951, 287, 47764, 13, 28665, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 951, 287, 46064, 344, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 595, 4131, 328, 2288, 796, 705, 834, 90, 92, 23330, 92, 4458, 18982, 7, 312, 87, 11, 951, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 47764, 13, 4480, 39470, 26764, 2434, 7, 4033, 11, 595, 4131, 328, 2288, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25121, 62, 28665, 82, 58, 4033, 4083, 33295, 7, 6381, 4131, 328, 2288, 8, 198, 220, 220, 220, 220, 220, 220, 220, 288, 9501, 58, 312, 87, 60, 796, 47764, 628, 220, 220, 220, 1303, 15251, 262, 1366, 37805, 198, 220, 220, 220, 5399, 62, 7568, 796, 4646, 7, 50033, 2124, 11, 331, 25, 2124, 13, 22179, 7, 88, 11, 319, 28, 261, 11, 703, 28, 4919, 828, 288, 9501, 8, 628, 220, 220, 220, 1303, 843, 46064, 344, 262, 561, 12, 14150, 12, 47436, 12, 4131, 328, 84, 871, 198, 220, 220, 220, 329, 951, 11, 595, 4131, 328, 6055, 287, 25121, 62, 28665, 82, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 5399, 62, 7568, 796, 5399, 62, 7568, 13, 4480, 39470, 7, 4033, 11, 376, 13, 1073, 2040, 344, 46491, 6381, 4131, 328, 6055, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 329, 595, 4131, 328, 2288, 287, 595, 4131, 328, 6055, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5399, 62, 7568, 796, 5399, 62, 7568, 13, 14781, 7, 6381, 4131, 328, 2288, 8, 628, 220, 220, 220, 1441, 5399, 62, 7568, 628, 198, 4299, 5078, 62, 7442, 7, 31943, 11, 1339, 28, 14202, 11, 4277, 28, 14202, 11, 1515, 392, 28, 46616, 13, 27363, 11, 12429, 2860, 1859, 62, 33964, 2599, 198, 220, 220, 220, 37227, 38978, 14, 7442, 3918, 5721, 5270, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5078, 357, 2536, 11, 279, 893, 20928, 13, 25410, 13, 39470, 2599, 5721, 284, 366, 31943, 1, 319, 26, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 663, 3815, 389, 1016, 284, 307, 3688, 1028, 5447, 2663, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1339, 357, 11600, 2599, 1339, 6299, 13, 1649, 257, 1994, 7466, 262, 1988, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 5721, 287, 257, 2176, 5752, 11, 262, 11756, 1988, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8686, 284, 262, 649, 5721, 329, 326, 5752, 13, 770, 318, 4465, 618, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 534, 1339, 4006, 38491, 389, 407, 13042, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 25, 4277, 1988, 284, 307, 973, 618, 262, 1988, 286, 262, 5078, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5721, 1595, 470, 2872, 597, 8251, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1515, 392, 25, 2163, 284, 8996, 262, 1988, 286, 262, 5078, 5721, 284, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 286, 1123, 1339, 13, 15161, 318, 29201, 338, 37430, 13, 1002, 2836, 12, 41279, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 717, 4578, 481, 1464, 307, 262, 5078, 29201, 26, 340, 338, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 338, 5798, 284, 6121, 262, 1339, 1988, 284, 257, 5721, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 484, 761, 284, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3224, 62, 33964, 25, 3224, 366, 7442, 1, 6299, 11, 479, 86, 22046, 3918, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16766, 33815, 351, 2663, 2029, 13, 1002, 1111, 389, 2810, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2663, 2753, 38177, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 279, 893, 20928, 13, 25410, 13, 39470, 628, 220, 220, 220, 17934, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7559, 31943, 62, 7442, 10786, 5219, 3256, 7257, 11639, 25284, 3256, 6645, 11639, 3791, 1971, 3256, 4277, 11639, 6395, 11537, 15506, 628, 220, 220, 220, 220, 220, 220, 220, 318, 7548, 284, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 376, 13, 12518, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 376, 13, 4033, 10786, 5219, 11537, 6624, 705, 8141, 3256, 705, 25284, 6, 198, 220, 220, 220, 220, 220, 220, 220, 6739, 12518, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 376, 13, 4033, 10786, 5219, 11537, 6624, 705, 12805, 3256, 705, 3791, 1971, 6, 198, 220, 220, 220, 220, 220, 220, 220, 6739, 847, 3083, 10786, 6395, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 1002, 345, 761, 284, 366, 27041, 316, 1096, 1, 257, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 7559, 31943, 62, 7442, 10786, 496, 3256, 1391, 7, 1485, 11, 1596, 2599, 352, 11, 357, 1507, 11, 1987, 2599, 362, 11, 2644, 5512, 1515, 392, 28, 50033, 269, 11, 410, 25, 269, 13, 23395, 46491, 85, 4008, 15506, 628, 220, 220, 220, 220, 220, 220, 220, 318, 7548, 284, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 376, 13, 12518, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 376, 13, 4033, 10786, 496, 27691, 23395, 7, 1485, 11, 1596, 828, 376, 13, 18250, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6739, 12518, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 376, 13, 4033, 10786, 496, 27691, 23395, 7, 1507, 11, 1987, 828, 376, 13, 18250, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 318, 39098, 7, 31943, 11, 29201, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5078, 796, 376, 13, 4033, 7, 31943, 8, 628, 198, 220, 220, 220, 2663, 796, 1339, 393, 23884, 198, 220, 220, 220, 329, 5358, 287, 900, 7, 33964, 13, 13083, 28955, 1222, 900, 7, 2860, 1859, 62, 33964, 13, 13083, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1619, 3224, 62, 33964, 58, 10414, 13758, 60, 198, 220, 220, 220, 2663, 796, 1351, 7, 33964, 13, 23814, 28955, 1343, 1351, 7, 2860, 1859, 62, 33964, 13, 23814, 28955, 628, 220, 220, 220, 4277, 796, 4808, 28665, 62, 273, 62, 18250, 7, 12286, 8, 628, 220, 220, 220, 611, 407, 2663, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4277, 628, 220, 220, 220, 1255, 796, 4646, 28264, 41049, 62, 7442, 11, 2663, 11, 376, 737, 847, 3083, 7, 12286, 8, 628, 220, 220, 220, 1441, 1255, 628, 198, 4299, 1822, 9806, 7, 3245, 11, 416, 11, 4006, 28, 14202, 2599, 198, 220, 220, 220, 37227, 17563, 257, 1988, 422, 262, 5752, 326, 12991, 4340, 584, 5721, 7, 82, 8, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2214, 357, 8841, 11, 279, 893, 20928, 13, 25410, 13, 39470, 2599, 262, 2214, 284, 1441, 326, 12991, 4340, 262, 366, 1525, 1, 15180, 198, 220, 220, 220, 220, 220, 220, 220, 416, 20789, 8841, 11, 1635, 79, 893, 20928, 13, 25410, 13, 39470, 2599, 2214, 393, 1351, 286, 7032, 284, 20487, 13, 554, 3950, 11, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 3221, 307, 691, 530, 2214, 13, 887, 345, 743, 779, 3294, 329, 9839, 49295, 198, 220, 220, 220, 220, 220, 220, 220, 4006, 357, 25968, 2599, 5514, 2074, 262, 12066, 326, 1208, 428, 4006, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 279, 893, 20928, 13, 25410, 13, 39470, 628, 220, 220, 220, 17934, 25, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 8094, 3886, 10786, 312, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 9460, 7, 853, 9806, 10786, 3245, 16, 3256, 705, 1525, 62, 3245, 6, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 1822, 9806, 10786, 3245, 16, 3256, 37250, 1525, 62, 3245, 16, 3256, 705, 1525, 62, 3245, 17, 6, 4357, 4006, 28, 37, 13, 4033, 10786, 4033, 11537, 6624, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1822, 9806, 7, 37, 13, 4033, 10786, 3245, 16, 33809, 685, 37, 13, 4033, 10786, 1525, 62, 3245, 16, 33809, 376, 13, 4033, 10786, 1525, 62, 3245, 17, 11537, 4357, 4006, 28, 37, 13, 18250, 7, 17821, 4008, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 407, 318, 39098, 7, 1525, 11, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 416, 796, 685, 1525, 60, 628, 220, 220, 220, 611, 318, 39098, 7, 3245, 11, 4731, 62, 19199, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2214, 796, 376, 13, 4033, 7, 3245, 8, 628, 220, 220, 220, 416, 13, 33295, 7, 3245, 13, 26011, 10786, 834, 22065, 62, 853, 9806, 834, 6, 4008, 198, 220, 220, 220, 1255, 796, 376, 13, 7249, 46491, 1525, 8, 198, 220, 220, 220, 611, 4006, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 376, 13, 12518, 7, 31448, 11, 1255, 8, 198, 220, 220, 220, 1255, 796, 376, 13, 9806, 7, 20274, 737, 1136, 15878, 10786, 834, 22065, 62, 853, 9806, 834, 11537, 628, 220, 220, 220, 1441, 1255, 198 ]
2.556
2,500
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries # SPDX-License-Identifier: MIT import time import board import adafruit_tc74 i2c = board.I2C() tc = adafruit_tc74.TC74(i2c) while True: print(f"Temperature: {tc.temperature} C") time.sleep(0.5)
[ 2, 30628, 55, 12, 8979, 15269, 8206, 25, 33448, 10846, 4763, 329, 1215, 1878, 4872, 20171, 201, 198, 2, 30628, 55, 12, 34156, 12, 33234, 7483, 25, 17168, 201, 198, 201, 198, 11748, 640, 201, 198, 11748, 3096, 201, 198, 11748, 512, 1878, 4872, 62, 23047, 4524, 201, 198, 201, 198, 72, 17, 66, 796, 3096, 13, 40, 17, 34, 3419, 201, 198, 23047, 796, 512, 1878, 4872, 62, 23047, 4524, 13, 4825, 4524, 7, 72, 17, 66, 8, 201, 198, 201, 198, 4514, 6407, 25, 201, 198, 220, 220, 220, 3601, 7, 69, 1, 42492, 25, 1391, 23047, 13, 11498, 21069, 92, 327, 4943, 201, 198, 220, 220, 220, 640, 13, 42832, 7, 15, 13, 20, 8, 201, 198 ]
2.341667
120
#!/usr/bin/python import MySQLdb import cgi import Cookie import os if 'HTTP_COOKIE' in os.environ : cookie = Cookie.SimpleCookie(os.environ["HTTP_COOKIE"]) else : print "error" print "Content-type:text/html\r\n\r\n" db = MySQLdb.connect('localhost','root','1315','quiz', unix_socket="/opt/lampp/var/mysql/mysql.sock") cursor = db.cursor() cursor.execute("""select username from session where sessionId= '%s'"""% cookie["session"].value) username = cursor.fetchone() if username == None: print "<script>window.alert('Please login to continue');</script>" print "<script>window.location.assign('/cgi-bin/scripts/signin.py')</script>" sql = "SELECT DISTINCT subject FROM teacher ORDER BY subject" cursor.execute(sql) var = cursor.fetchall() print """ <!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link rel = "stylesheet" href = "/css/materialize.css" /> <script src = "/js/jquery-1.12.2.js"></script> <script src = "/js/materialize.js"></script> </head> <body background="/elearning/books2.jpg" class =""> <div class="row"> <div class="white col s12" style="margin:auto"> <div class="row"> <div class="col s8">""" cursor.execute("""select studentId from studentRegister where username ='%s'"""%username) stId=cursor.fetchone() cursor.execute("""select name from student where studentId='%d'"""% stId[0]) name= cursor.fetchone() print""" <h5 class="teal-text">%s</h5>"""% name[0] print""" </div> <div class = " col s2" id = "page-controls"> <p class = "right-align" style="margin-right:-200px"> <a href = "/cgi-bin/scripts/signin.py" class = " tooltipped " data-position="bottom" data-delay="50" data-tooltip="Logout" style="cursor:pointer"> <i class = "material-icons">power_settings_new</i> </a> </p> </div> </div> </div> <div class="card-panel col s4 offset-s1" style="margin-top:10%"> <div class = "row"> <form class = "col s12" action = "/cgi-bin/scripts/questions.py" method = "post"> <h4 class="center-align">Subject</h4> <div class="input-field col s12"> <select name = "subject" required> <option value="" disabled selected>Choose your option</option>""" for i in var: print """<option value=%s>%s</option>""" %(i[0],i[0]) print""" </select> </div> <div class = "row center"> <button class="btn waves-effect waves-light" type="submit" name="docregister"> Submit </button> </div> </form> </div> </div> </div> </body> <script> $(document).ready(function() { $('select').material_select(); }); </script> </html>""" db.close()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 198, 11748, 33476, 9945, 198, 11748, 269, 12397, 198, 11748, 39606, 198, 11748, 28686, 198, 198, 361, 705, 40717, 62, 34, 15308, 10008, 6, 287, 28686, 13, 268, 2268, 1058, 198, 220, 220, 220, 19751, 796, 39606, 13, 26437, 34, 18055, 7, 418, 13, 268, 2268, 14692, 40717, 62, 34, 15308, 10008, 8973, 8, 198, 17772, 1058, 198, 220, 220, 220, 3601, 366, 18224, 1, 628, 198, 4798, 366, 19746, 12, 4906, 25, 5239, 14, 6494, 59, 81, 59, 77, 59, 81, 59, 77, 1, 198, 198, 9945, 796, 33476, 9945, 13, 8443, 10786, 36750, 41707, 15763, 41707, 1485, 1314, 41707, 421, 528, 3256, 555, 844, 62, 44971, 35922, 8738, 14, 2543, 381, 14, 7785, 14, 28744, 13976, 14, 28744, 13976, 13, 82, 735, 4943, 198, 66, 21471, 796, 20613, 13, 66, 21471, 3419, 198, 198, 66, 21471, 13, 41049, 7203, 15931, 19738, 20579, 422, 6246, 810, 6246, 7390, 28, 705, 4, 82, 6, 37811, 4, 19751, 14692, 29891, 1, 4083, 8367, 8, 198, 29460, 796, 23493, 13, 69, 7569, 505, 3419, 198, 361, 20579, 6624, 6045, 25, 198, 220, 220, 220, 3601, 33490, 12048, 29, 17497, 13, 44598, 10786, 5492, 17594, 284, 2555, 24036, 3556, 12048, 24618, 198, 220, 220, 220, 3601, 33490, 12048, 29, 17497, 13, 24886, 13, 562, 570, 10786, 14, 37157, 12, 8800, 14, 46521, 14, 12683, 259, 13, 9078, 11537, 3556, 12048, 24618, 198, 198, 25410, 796, 366, 46506, 360, 8808, 1268, 4177, 2426, 16034, 4701, 38678, 11050, 2426, 1, 198, 66, 21471, 13, 41049, 7, 25410, 8, 198, 7785, 796, 23493, 13, 69, 7569, 439, 3419, 628, 198, 4798, 37227, 198, 27, 0, 4598, 310, 2981, 27711, 29, 198, 27, 6494, 29, 198, 198, 27, 2256, 29, 198, 197, 27, 28961, 1438, 2625, 1177, 634, 1, 2695, 2625, 10394, 28, 25202, 12, 10394, 11, 4238, 12, 9888, 28, 16, 1, 11037, 198, 197, 1279, 8726, 13291, 2625, 5450, 1378, 10331, 82, 13, 13297, 499, 271, 13, 785, 14, 4749, 30, 17989, 28, 17518, 10, 40, 5936, 1, 823, 2625, 47720, 25473, 5320, 198, 197, 27, 8726, 823, 796, 366, 47720, 25473, 1, 13291, 796, 12813, 25471, 14, 33665, 1096, 13, 25471, 1, 11037, 198, 197, 27, 12048, 12351, 796, 12813, 8457, 14, 73, 22766, 12, 16, 13, 1065, 13, 17, 13, 8457, 23984, 12048, 29, 198, 197, 27, 12048, 12351, 796, 12813, 8457, 14, 33665, 1096, 13, 8457, 23984, 12048, 29, 198, 3556, 2256, 29, 198, 198, 27, 2618, 4469, 35922, 68, 40684, 14, 12106, 17, 13, 9479, 1, 220, 1398, 796, 1, 5320, 198, 220, 1279, 7146, 1398, 2625, 808, 5320, 198, 220, 220, 197, 220, 197, 27, 7146, 1398, 2625, 11186, 951, 264, 1065, 1, 3918, 2625, 36153, 25, 23736, 5320, 198, 220, 220, 197, 220, 197, 197, 27, 7146, 1398, 2625, 808, 5320, 198, 220, 220, 197, 220, 197, 197, 197, 27, 7146, 1398, 2625, 4033, 264, 23, 5320, 37811, 628, 198, 66, 21471, 13, 41049, 7203, 15931, 19738, 3710, 7390, 422, 3710, 38804, 810, 20579, 796, 6, 4, 82, 6, 37811, 4, 29460, 8, 198, 301, 7390, 28, 66, 21471, 13, 69, 7569, 505, 3419, 198, 198, 66, 21471, 13, 41049, 7203, 15931, 19738, 1438, 422, 3710, 810, 3710, 7390, 11639, 4, 67, 6, 37811, 4, 336, 7390, 58, 15, 12962, 198, 3672, 28, 23493, 13, 69, 7569, 505, 3419, 198, 198, 4798, 37811, 220, 220, 197, 1279, 71, 20, 1398, 2625, 660, 282, 12, 5239, 5320, 4, 82, 3556, 71, 20, 29, 37811, 4, 1438, 58, 15, 60, 198, 4798, 37811, 220, 220, 197, 220, 198, 220, 220, 197, 220, 197, 197, 3556, 7146, 29, 198, 220, 220, 197, 220, 197, 197, 27, 7146, 1398, 796, 366, 951, 264, 17, 1, 4686, 796, 366, 7700, 12, 13716, 82, 5320, 198, 197, 197, 197, 197, 27, 79, 1398, 796, 366, 3506, 12, 31494, 1, 3918, 2625, 36153, 12, 3506, 21912, 2167, 8416, 5320, 198, 197, 197, 197, 197, 197, 27, 64, 13291, 796, 12813, 37157, 12, 8800, 14, 46521, 14, 12683, 259, 13, 9078, 1, 1398, 796, 366, 2891, 83, 3949, 366, 1366, 12, 9150, 2625, 22487, 1, 1366, 12, 40850, 2625, 1120, 1, 1366, 12, 25981, 22504, 2625, 11187, 448, 1, 3918, 2625, 66, 21471, 25, 29536, 5320, 198, 197, 197, 197, 197, 197, 197, 27, 72, 1398, 796, 366, 33665, 12, 34280, 5320, 6477, 62, 33692, 62, 3605, 3556, 72, 29, 198, 197, 197, 220, 220, 197, 197, 197, 3556, 64, 29, 220, 198, 197, 197, 197, 197, 3556, 79, 29, 198, 197, 197, 197, 3556, 7146, 29, 198, 220, 220, 197, 220, 197, 3556, 7146, 29, 198, 220, 220, 197, 220, 197, 3556, 7146, 29, 198, 197, 220, 1279, 7146, 1398, 2625, 9517, 12, 35330, 951, 264, 19, 11677, 12, 82, 16, 1, 3918, 2625, 36153, 12, 4852, 25, 940, 4, 5320, 198, 197, 220, 220, 220, 220, 220, 1279, 7146, 1398, 796, 366, 808, 5320, 198, 197, 197, 197, 197, 197, 27, 687, 1398, 796, 366, 4033, 264, 1065, 1, 2223, 796, 12813, 37157, 12, 8800, 14, 46521, 14, 6138, 507, 13, 9078, 1, 2446, 796, 366, 7353, 5320, 198, 197, 197, 197, 197, 220, 220, 220, 220, 220, 220, 197, 27, 71, 19, 1398, 2625, 16159, 12, 31494, 5320, 19776, 3556, 71, 19, 29, 198, 197, 197, 197, 197, 220, 220, 220, 220, 220, 220, 197, 27, 7146, 1398, 2625, 15414, 12, 3245, 951, 264, 1065, 5320, 198, 197, 197, 197, 197, 197, 197, 197, 27, 19738, 1438, 796, 366, 32796, 1, 2672, 29, 198, 197, 197, 197, 197, 197, 197, 197, 197, 27, 18076, 1988, 33151, 10058, 6163, 29, 31851, 534, 3038, 3556, 18076, 29, 37811, 220, 198, 198, 1640, 1312, 287, 1401, 25, 198, 197, 4798, 37227, 27, 18076, 1988, 28, 4, 82, 29, 4, 82, 3556, 18076, 29, 37811, 4064, 7, 72, 58, 15, 4357, 72, 58, 15, 12962, 198, 4798, 37811, 198, 197, 197, 197, 197, 197, 197, 197, 3556, 19738, 29, 198, 197, 197, 197, 197, 197, 197, 3556, 7146, 29, 198, 197, 220, 220, 220, 220, 220, 220, 197, 197, 197, 197, 27, 7146, 1398, 796, 366, 808, 3641, 5320, 198, 197, 197, 197, 197, 197, 197, 197, 27, 16539, 1398, 2625, 46118, 9813, 12, 10760, 9813, 12, 2971, 1, 2099, 2625, 46002, 1, 1438, 2625, 15390, 30238, 5320, 198, 197, 197, 197, 197, 197, 197, 197, 197, 45135, 198, 220, 220, 197, 197, 197, 197, 197, 197, 197, 3556, 16539, 29, 198, 220, 220, 197, 197, 197, 197, 197, 197, 3556, 7146, 29, 198, 197, 197, 197, 197, 197, 3556, 687, 29, 198, 197, 197, 197, 3556, 7146, 29, 198, 197, 197, 3556, 7146, 29, 198, 197, 3556, 7146, 29, 198, 3556, 2618, 29, 198, 198, 27, 12048, 29, 198, 3, 7, 22897, 737, 1493, 7, 8818, 3419, 1391, 198, 220, 220, 220, 720, 10786, 19738, 27691, 33665, 62, 19738, 9783, 198, 220, 14980, 198, 3556, 12048, 29, 198, 7359, 6494, 29, 37811, 198, 9945, 13, 19836, 3419, 198 ]
2.432269
1,159
# -*- coding: utf-8 -*- # @Time : 2022/1/13 10:13 下午 # @Author : Haruki # @File : __init__.py.py
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 2488, 7575, 1058, 33160, 14, 16, 14, 1485, 838, 25, 1485, 220, 10310, 233, 39355, 230, 198, 2, 2488, 13838, 1058, 2113, 11308, 198, 2, 2488, 8979, 1058, 11593, 15003, 834, 13, 9078, 13, 9078, 198 ]
1.901961
51
import unittest from unittest.mock import patch, mock_open from hm_pyhelper.diagnostics.diagnostics_report import \ DIAGNOSTICS_PASSED_KEY, DIAGNOSTICS_ERRORS_KEY, DiagnosticsReport from hw_diag.diagnostics.serial_number_diagnostic import SerialNumberDiagnostic VALID_CPU_PROC = """00000000ddd1a4c2""" PADDED_CPU_PROC = "%s\x00" % VALID_CPU_PROC
[ 11748, 555, 715, 395, 198, 6738, 555, 715, 395, 13, 76, 735, 1330, 8529, 11, 15290, 62, 9654, 198, 198, 6738, 289, 76, 62, 9078, 2978, 525, 13, 47356, 34558, 13, 47356, 34558, 62, 13116, 1330, 3467, 198, 220, 220, 220, 360, 3539, 16630, 10892, 19505, 62, 47924, 1961, 62, 20373, 11, 360, 3539, 16630, 10892, 19505, 62, 24908, 50, 62, 20373, 11, 31549, 34558, 19100, 198, 6738, 289, 86, 62, 10989, 363, 13, 47356, 34558, 13, 46911, 62, 17618, 62, 47356, 15132, 1330, 23283, 15057, 18683, 4660, 15132, 198, 198, 23428, 2389, 62, 36037, 62, 4805, 4503, 796, 37227, 8269, 1860, 67, 16, 64, 19, 66, 17, 37811, 198, 47, 29266, 1961, 62, 36037, 62, 4805, 4503, 796, 36521, 82, 59, 87, 405, 1, 4064, 26173, 2389, 62, 36037, 62, 4805, 4503, 628 ]
2.634328
134
import datetime from foil.learning import foil from foil.learning import get_closure from foil.learning import get_constants from foil.learning import get_masks from foil.models import Clause from foil.models import Example from foil.models import Literal from foil.models import Program if __name__ == '__main__': target = Literal.parse('path(X,Y)') examples = [ Example({'X': 0, 'Y': 1}), Example({'X': 0, 'Y': 2}), Example({'X': 0, 'Y': 3}), Example({'X': 0, 'Y': 4}), Example({'X': 0, 'Y': 5}), Example({'X': 0, 'Y': 6}), Example({'X': 0, 'Y': 8}), Example({'X': 1, 'Y': 2}), Example({'X': 3, 'Y': 2}), Example({'X': 3, 'Y': 4}), Example({'X': 3, 'Y': 5}), Example({'X': 3, 'Y': 6}), Example({'X': 3, 'Y': 8}), Example({'X': 4, 'Y': 5}), Example({'X': 4, 'Y': 6}), Example({'X': 4, 'Y': 8}), Example({'X': 6, 'Y': 8}), Example({'X': 7, 'Y': 6}), Example({'X': 7, 'Y': 8}), ] background = [ Clause.parse('edge(0,1).'), Clause.parse('edge(0,3).'), Clause.parse('edge(1,2).'), Clause.parse('edge(3,2).'), Clause.parse('edge(3,4).'), Clause.parse('edge(4,5).'), Clause.parse('edge(4,6).'), Clause.parse('edge(6,8).'), Clause.parse('edge(7,6).'), Clause.parse('edge(7,8).'), ] for i in range(10): with Measure(): print() constants = get_constants([target, *{l for c in background for l in c.literals}]) print() world = Program(background).ground() print() positives, negatives = get_closure(target, constants, world, examples) print() masks = get_masks([target, *{l for c in background for l in c.literals}]) print() for clause in foil(target, background, masks, constants, positives, negatives): print(clause)
[ 11748, 4818, 8079, 198, 198, 6738, 25501, 13, 40684, 1330, 25501, 198, 6738, 25501, 13, 40684, 1330, 651, 62, 17966, 198, 6738, 25501, 13, 40684, 1330, 651, 62, 9979, 1187, 198, 6738, 25501, 13, 40684, 1330, 651, 62, 5356, 591, 198, 6738, 25501, 13, 27530, 1330, 28081, 198, 6738, 25501, 13, 27530, 1330, 17934, 198, 6738, 25501, 13, 27530, 1330, 25659, 1691, 198, 6738, 25501, 13, 27530, 1330, 6118, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 2496, 796, 25659, 1691, 13, 29572, 10786, 6978, 7, 55, 11, 56, 8, 11537, 198, 220, 220, 220, 6096, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 17934, 15090, 6, 55, 10354, 657, 11, 705, 56, 10354, 352, 92, 828, 17934, 15090, 6, 55, 10354, 657, 11, 705, 56, 10354, 362, 92, 828, 17934, 15090, 6, 55, 10354, 657, 11, 705, 56, 10354, 513, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 17934, 15090, 6, 55, 10354, 657, 11, 705, 56, 10354, 604, 92, 828, 17934, 15090, 6, 55, 10354, 657, 11, 705, 56, 10354, 642, 92, 828, 17934, 15090, 6, 55, 10354, 657, 11, 705, 56, 10354, 718, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 17934, 15090, 6, 55, 10354, 657, 11, 705, 56, 10354, 807, 92, 828, 17934, 15090, 6, 55, 10354, 352, 11, 705, 56, 10354, 362, 92, 828, 17934, 15090, 6, 55, 10354, 513, 11, 705, 56, 10354, 362, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 17934, 15090, 6, 55, 10354, 513, 11, 705, 56, 10354, 604, 92, 828, 17934, 15090, 6, 55, 10354, 513, 11, 705, 56, 10354, 642, 92, 828, 17934, 15090, 6, 55, 10354, 513, 11, 705, 56, 10354, 718, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 17934, 15090, 6, 55, 10354, 513, 11, 705, 56, 10354, 807, 92, 828, 17934, 15090, 6, 55, 10354, 604, 11, 705, 56, 10354, 642, 92, 828, 17934, 15090, 6, 55, 10354, 604, 11, 705, 56, 10354, 718, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 17934, 15090, 6, 55, 10354, 604, 11, 705, 56, 10354, 807, 92, 828, 17934, 15090, 6, 55, 10354, 718, 11, 705, 56, 10354, 807, 92, 828, 17934, 15090, 6, 55, 10354, 767, 11, 705, 56, 10354, 718, 92, 828, 198, 220, 220, 220, 220, 220, 220, 220, 17934, 15090, 6, 55, 10354, 767, 11, 705, 56, 10354, 807, 92, 828, 198, 220, 220, 220, 2361, 198, 220, 220, 220, 4469, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 28081, 13, 29572, 10786, 14907, 7, 15, 11, 16, 737, 33809, 28081, 13, 29572, 10786, 14907, 7, 15, 11, 18, 737, 33809, 28081, 13, 29572, 10786, 14907, 7, 16, 11, 17, 737, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 28081, 13, 29572, 10786, 14907, 7, 18, 11, 17, 737, 33809, 28081, 13, 29572, 10786, 14907, 7, 18, 11, 19, 737, 33809, 28081, 13, 29572, 10786, 14907, 7, 19, 11, 20, 737, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 28081, 13, 29572, 10786, 14907, 7, 19, 11, 21, 737, 33809, 28081, 13, 29572, 10786, 14907, 7, 21, 11, 23, 737, 33809, 28081, 13, 29572, 10786, 14907, 7, 22, 11, 21, 737, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 28081, 13, 29572, 10786, 14907, 7, 22, 11, 23, 737, 33809, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 329, 1312, 287, 2837, 7, 940, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 351, 24291, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38491, 796, 651, 62, 9979, 1187, 26933, 16793, 11, 1635, 90, 75, 329, 269, 287, 4469, 329, 300, 287, 269, 13, 17201, 874, 92, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 995, 796, 6118, 7, 25249, 737, 2833, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38548, 11, 42510, 796, 651, 62, 17966, 7, 16793, 11, 38491, 11, 995, 11, 6096, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20680, 796, 651, 62, 5356, 591, 26933, 16793, 11, 1635, 90, 75, 329, 269, 287, 4469, 329, 300, 287, 269, 13, 17201, 874, 92, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 13444, 287, 25501, 7, 16793, 11, 4469, 11, 20680, 11, 38491, 11, 38548, 11, 42510, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 565, 682, 8, 198 ]
2.243405
834
from pytools.alternate import is_alternate
[ 6738, 12972, 31391, 13, 33645, 378, 1330, 318, 62, 33645, 378, 198 ]
3.583333
12
import torch import torch.nn as nn import torch.nn.functional as F
[ 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 628 ]
3.4
20
#!/usr/bin/python -u import sys import libxml2 # Memory debug specific libxml2.debugMemory(1) # # Testing XML Node comparison and Node hash-value # doc = libxml2.parseDoc("""<root><foo/></root>""") root = doc.getRootElement() # Create two different objects which point to foo foonode1 = root.children foonode2 = root.children # Now check that [in]equality tests work ok if not ( foonode1 == foonode2 ): print("Error comparing nodes with ==, nodes should be equal but are unequal") sys.exit(1) if not ( foonode1 != root ): print("Error comparing nodes with ==, nodes should not be equal but are equal") sys.exit(1) if not ( foonode1 != root ): print("Error comparing nodes with !=, nodes should not be equal but are equal") if ( foonode1 != foonode2 ): print("Error comparing nodes with !=, nodes should be equal but are unequal") # Next check that the hash function for the objects also works ok if not (hash(foonode1) == hash(foonode2)): print("Error hash values for two equal nodes are different") sys.exit(1) if not (hash(foonode1) != hash(root)): print("Error hash values for two unequal nodes are not different") sys.exit(1) if hash(foonode1) == hash(root): print("Error hash values for two unequal nodes are equal") sys.exit(1) # Basic tests successful doc.freeDoc() # Memory debug specific libxml2.cleanupParser() if libxml2.debugMemory(1) == 0: print("OK") else: print("Memory leak %d bytes" % (libxml2.debugMemory(1))) libxml2.dumpMemory()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 532, 84, 198, 11748, 25064, 198, 198, 11748, 9195, 19875, 17, 198, 198, 2, 14059, 14257, 2176, 198, 8019, 19875, 17, 13, 24442, 30871, 7, 16, 8, 198, 198, 2, 198, 2, 23983, 23735, 19081, 7208, 290, 19081, 12234, 12, 8367, 198, 2, 198, 15390, 796, 9195, 19875, 17, 13, 29572, 23579, 7203, 15931, 27, 15763, 6927, 21943, 14, 12240, 15763, 29, 15931, 4943, 198, 15763, 796, 2205, 13, 1136, 30016, 20180, 3419, 198, 198, 2, 13610, 734, 1180, 5563, 543, 966, 284, 22944, 198, 69, 2049, 1098, 16, 796, 6808, 13, 17197, 198, 69, 2049, 1098, 17, 796, 6808, 13, 17197, 198, 198, 2, 2735, 2198, 326, 685, 259, 60, 48203, 5254, 670, 12876, 198, 361, 407, 357, 277, 2049, 1098, 16, 6624, 277, 2049, 1098, 17, 15179, 198, 220, 220, 220, 3601, 7203, 12331, 14176, 13760, 351, 6624, 11, 13760, 815, 307, 4961, 475, 389, 37334, 4943, 198, 220, 220, 220, 25064, 13, 37023, 7, 16, 8, 198, 361, 407, 357, 277, 2049, 1098, 16, 14512, 6808, 15179, 198, 220, 220, 220, 3601, 7203, 12331, 14176, 13760, 351, 6624, 11, 13760, 815, 407, 307, 4961, 475, 389, 4961, 4943, 198, 220, 220, 220, 25064, 13, 37023, 7, 16, 8, 198, 361, 407, 357, 277, 2049, 1098, 16, 14512, 6808, 15179, 198, 220, 220, 220, 3601, 7203, 12331, 14176, 13760, 351, 14512, 11, 13760, 815, 407, 307, 4961, 475, 389, 4961, 4943, 198, 361, 357, 277, 2049, 1098, 16, 14512, 277, 2049, 1098, 17, 15179, 198, 220, 220, 220, 3601, 7203, 12331, 14176, 13760, 351, 14512, 11, 13760, 815, 307, 4961, 475, 389, 37334, 4943, 198, 198, 2, 7406, 2198, 326, 262, 12234, 2163, 329, 262, 5563, 635, 2499, 12876, 198, 361, 407, 357, 17831, 7, 69, 2049, 1098, 16, 8, 6624, 12234, 7, 69, 2049, 1098, 17, 8, 2599, 198, 220, 220, 220, 3601, 7203, 12331, 12234, 3815, 329, 734, 4961, 13760, 389, 1180, 4943, 198, 220, 220, 220, 25064, 13, 37023, 7, 16, 8, 198, 361, 407, 357, 17831, 7, 69, 2049, 1098, 16, 8, 14512, 12234, 7, 15763, 8, 2599, 198, 220, 220, 220, 3601, 7203, 12331, 12234, 3815, 329, 734, 37334, 13760, 389, 407, 1180, 4943, 198, 220, 220, 220, 25064, 13, 37023, 7, 16, 8, 198, 361, 12234, 7, 69, 2049, 1098, 16, 8, 6624, 12234, 7, 15763, 2599, 198, 220, 220, 220, 3601, 7203, 12331, 12234, 3815, 329, 734, 37334, 13760, 389, 4961, 4943, 198, 220, 220, 220, 25064, 13, 37023, 7, 16, 8, 198, 198, 2, 14392, 5254, 4388, 198, 15390, 13, 5787, 23579, 3419, 198, 198, 2, 14059, 14257, 2176, 198, 8019, 19875, 17, 13, 27773, 929, 46677, 3419, 198, 361, 9195, 19875, 17, 13, 24442, 30871, 7, 16, 8, 6624, 657, 25, 198, 220, 220, 220, 3601, 7203, 11380, 4943, 198, 17772, 25, 198, 220, 220, 220, 3601, 7203, 30871, 13044, 4064, 67, 9881, 1, 4064, 357, 8019, 19875, 17, 13, 24442, 30871, 7, 16, 22305, 198, 220, 220, 220, 9195, 19875, 17, 13, 39455, 30871, 3419, 198 ]
3.00396
505
from pydantic import BaseModel from spectroscope.model import Action
[ 6738, 279, 5173, 5109, 1330, 7308, 17633, 198, 6738, 5444, 305, 29982, 13, 19849, 1330, 7561, 628, 198 ]
3.944444
18
#!/usr/local/bin/python3 import math # Complete the encryption function below. if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') s = input() result = encryption(s) fptr.write(result + '\n') fptr.close()
[ 2, 48443, 14629, 14, 12001, 14, 8800, 14, 29412, 18, 198, 198, 11748, 10688, 198, 198, 2, 13248, 262, 15835, 2163, 2174, 13, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 277, 20692, 796, 1280, 7, 418, 13, 268, 2268, 17816, 2606, 7250, 3843, 62, 34219, 6, 4357, 705, 86, 11537, 198, 220, 220, 220, 264, 796, 5128, 3419, 198, 220, 220, 220, 1255, 796, 15835, 7, 82, 8, 198, 220, 220, 220, 277, 20692, 13, 13564, 7, 20274, 1343, 705, 59, 77, 11537, 198, 220, 220, 220, 277, 20692, 13, 19836, 3419, 198 ]
2.421569
102
import unittest from coronachat.storage.api import GENERIC_ERROR_MSG, NO_OPTION_FOUND_MSG, MessageReader from coronachat.storage.schema import TopLevelMessage, TopLevelOption _TEST_HEADER_CONTENT = """\ Welcome to your local government bot Get information and guidance from use regarding the current outbreak of coronavirus disease (COVID-19). Reply with a number at any time to get the latest information on any topic.""" _EXPECTED_TEST_DATA_TOP_LEVEL_MESSAGE = """\ %s 1. *Latest Update on Coronavirus in Switzerland* 2. What is Coronavirus and what are its symptoms 3. How does Coronavirus spread? """ % _TEST_HEADER_CONTENT
[ 11748, 555, 715, 395, 198, 198, 6738, 26920, 620, 265, 13, 35350, 13, 15042, 1330, 24700, 1137, 2149, 62, 24908, 62, 5653, 38, 11, 8005, 62, 3185, 24131, 62, 37, 15919, 62, 5653, 38, 11, 16000, 33634, 198, 6738, 26920, 620, 265, 13, 35350, 13, 15952, 2611, 1330, 5849, 4971, 12837, 11, 5849, 4971, 19722, 198, 198, 62, 51, 6465, 62, 37682, 1137, 62, 37815, 3525, 796, 37227, 59, 198, 14618, 284, 534, 1957, 1230, 10214, 198, 198, 3855, 1321, 290, 11154, 422, 779, 5115, 262, 1459, 198, 448, 9032, 286, 26920, 615, 19397, 4369, 357, 8220, 11008, 12, 1129, 737, 198, 198, 36875, 351, 257, 1271, 379, 597, 640, 284, 651, 262, 3452, 1321, 198, 261, 597, 7243, 526, 15931, 198, 198, 62, 49864, 9782, 1961, 62, 51, 6465, 62, 26947, 62, 35222, 62, 2538, 18697, 62, 44, 1546, 4090, 8264, 796, 37227, 59, 198, 4, 82, 198, 16, 13, 1635, 39478, 10133, 319, 2744, 261, 615, 19397, 287, 14679, 9, 198, 17, 13, 1867, 318, 2744, 261, 615, 19397, 290, 644, 389, 663, 7460, 198, 18, 13, 1374, 857, 2744, 261, 615, 19397, 4104, 30, 198, 37811, 4064, 4808, 51, 6465, 62, 37682, 1137, 62, 37815, 3525, 628, 628, 628 ]
3.158416
202
# -*- coding: utf-8 -*- from passlib.context import CryptContext pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto") def verify_password(plain_password, hashed_password): """ Is the hash of the two values equal :param plain_password: plaintext :param hashed_password: hash password :return: """ return pwd_context.verify(plain_password, hashed_password) def gen_password_hash(data): """ Generate password hash :param data: plaintext data :return: """ return pwd_context.hash(data)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 6738, 1208, 8019, 13, 22866, 1330, 15126, 21947, 198, 198, 79, 16993, 62, 22866, 796, 15126, 21947, 7, 1416, 4411, 274, 28, 14692, 15630, 6012, 33116, 39224, 2625, 23736, 4943, 628, 198, 4299, 11767, 62, 28712, 7, 25638, 62, 28712, 11, 468, 704, 62, 28712, 2599, 198, 220, 220, 220, 37227, 1148, 262, 12234, 286, 262, 734, 3815, 4961, 198, 220, 220, 220, 1058, 17143, 8631, 62, 28712, 25, 8631, 5239, 198, 220, 220, 220, 1058, 17143, 468, 704, 62, 28712, 25, 12234, 9206, 198, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 279, 16993, 62, 22866, 13, 332, 1958, 7, 25638, 62, 28712, 11, 468, 704, 62, 28712, 8, 628, 198, 4299, 2429, 62, 28712, 62, 17831, 7, 7890, 2599, 198, 220, 220, 220, 37227, 2980, 378, 9206, 12234, 198, 220, 220, 220, 1058, 17143, 1366, 25, 8631, 5239, 1366, 198, 220, 220, 220, 1058, 7783, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 279, 16993, 62, 22866, 13, 17831, 7, 7890, 8, 198 ]
2.863158
190
# -*- coding: utf-8 -*- # Copyright (c) 2018-2021, earthobservations developers. # Distributed under the MIT License. See LICENSE for more info. import h5py import pytest from wetterdienst.provider.dwd.radar import ( DwdRadarDataFormat, DwdRadarDataSubset, DwdRadarDate, DwdRadarParameter, DwdRadarPeriod, DwdRadarResolution, DwdRadarValues, ) from wetterdienst.provider.dwd.radar.sites import DwdRadarSite @pytest.mark.remote def test_radar_request_site_current_sweep_pcp_v_hdf5(): """ Example for testing radar sites full current SWEEP_PCP, this time in OPERA HDF5 (ODIM_H5) format. """ request = DwdRadarValues( parameter=DwdRadarParameter.SWEEP_PCP_VELOCITY_H, start_date=DwdRadarDate.CURRENT, site=DwdRadarSite.BOO, fmt=DwdRadarDataFormat.HDF5, subset=DwdRadarDataSubset.SIMPLE, ) results = list(request.query()) if len(results) == 0: raise pytest.skip("Data currently not available") buffer = results[0].data payload = buffer.getvalue() # Verify data. assert payload.startswith(b"\x89HDF\r\n") # Verify more details. # wddump ras07-stqual-pcpng01_sweeph5onem_vradh_00-2020093000403400-boo-10132-hd5 # noqa:E501,B950 hdf = h5py.File(buffer, "r") assert hdf["/how/radar_system"] is not None assert hdf["/how"].attrs.get("task") == b"Sc_Pcp-NG-01_BOO" assert hdf["/what"].attrs.get("source") == b"WMO:10132,NOD:deboo" assert hdf["/how"].attrs.get("scan_count") == 1 assert hdf["/dataset1/how"].attrs.get("scan_index") == 1 shape = hdf["/dataset1/data1/data"].shape assert shape == (360, 600) or shape == (361, 600) @pytest.mark.remote def test_radar_request_site_current_sweep_vol_v_hdf5_full(): """ Example for testing radar sites full current SWEEP_VOL, this time in OPERA HDF5 (ODIM_H5) format. """ request = DwdRadarValues( parameter=DwdRadarParameter.SWEEP_VOL_VELOCITY_H, start_date=DwdRadarDate.CURRENT, site=DwdRadarSite.BOO, fmt=DwdRadarDataFormat.HDF5, subset=DwdRadarDataSubset.SIMPLE, ) results = list(request.query()) if len(results) == 0: raise pytest.skip("Data currently not available") buffer = results[0].data payload = buffer.getvalue() # Verify data. assert payload.startswith(b"\x89HDF\r\n") # Verify more details. # wddump ras07-stqual-vol5minng01_sweeph5onem_vradh_00-2020092917055800-boo-10132-hd5 # noqa:E501,B950 hdf = h5py.File(buffer, "r") assert hdf["/how/radar_system"] is not None assert hdf["/how"].attrs.get("task") == b"Sc_Vol-5Min-NG-01_BOO" assert hdf["/what"].attrs.get("source") == b"WMO:10132,NOD:deboo" assert hdf["/how"].attrs.get("scan_count") == 10 assert hdf["/dataset1/how"].attrs.get("scan_index") == 1 shape = hdf["/dataset1/data1/data"].shape assert shape == (360, 180) or shape == (360, 720) or shape == (361, 720) @pytest.mark.remote def test_radar_request_site_current_sweep_vol_v_hdf5_single(): """ Example for testing radar sites single current SWEEP_VOL, this time in OPERA HDF5 (ODIM_H5) format. """ request = DwdRadarValues( parameter=DwdRadarParameter.SWEEP_VOL_VELOCITY_H, start_date=DwdRadarDate.CURRENT, site=DwdRadarSite.BOO, fmt=DwdRadarDataFormat.HDF5, subset=DwdRadarDataSubset.SIMPLE, elevation=1, ) results = list(request.query()) if len(results) == 0: raise pytest.skip("Data currently not available") assert len(results) <= 1 assert "vradh_01" in results[0].url buffer = results[0].data hdf = h5py.File(buffer, "r") assert hdf["/how"].attrs.get("scan_count") == 10 assert hdf["/dataset1/how"].attrs.get("scan_index") == 2 @pytest.mark.remote @pytest.mark.parametrize( "resolution", [ DwdRadarResolution.DAILY, DwdRadarResolution.HOURLY, ], ) def test_radar_request_radolan_cdc_current(resolution): """ Verify data acquisition for current RADOLAN_CDC/daily+hourly. Remark: More often than not, this data is not available when looking at CURRENT. """ request = DwdRadarValues( parameter=DwdRadarParameter.RADOLAN_CDC, start_date=DwdRadarDate.CURRENT, resolution=resolution, period=DwdRadarPeriod.RECENT, ) results = list(request.query()) if len(results) == 0: raise pytest.skip("Data currently not available") assert len(results) == 1 @pytest.mark.remote def test_radar_request_radolan_cdc_current_5min(): """ Verify failure for RADOLAN_CDC/5 minutes. """ with pytest.raises(ValueError): DwdRadarValues( parameter=DwdRadarParameter.RADOLAN_CDC, resolution=DwdRadarResolution.MINUTE_5, start_date=DwdRadarDate.CURRENT, )
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 15069, 357, 66, 8, 2864, 12, 1238, 2481, 11, 4534, 672, 3168, 602, 6505, 13, 198, 2, 4307, 6169, 739, 262, 17168, 13789, 13, 4091, 38559, 24290, 329, 517, 7508, 13, 198, 11748, 289, 20, 9078, 198, 11748, 12972, 9288, 198, 198, 6738, 9583, 353, 67, 2013, 301, 13, 15234, 1304, 13, 67, 16993, 13, 6335, 283, 1330, 357, 198, 220, 220, 220, 360, 16993, 15546, 283, 6601, 26227, 11, 198, 220, 220, 220, 360, 16993, 15546, 283, 6601, 7004, 2617, 11, 198, 220, 220, 220, 360, 16993, 15546, 283, 10430, 11, 198, 220, 220, 220, 360, 16993, 15546, 283, 36301, 11, 198, 220, 220, 220, 360, 16993, 15546, 283, 5990, 2101, 11, 198, 220, 220, 220, 360, 16993, 15546, 283, 4965, 2122, 11, 198, 220, 220, 220, 360, 16993, 15546, 283, 40161, 11, 198, 8, 198, 6738, 9583, 353, 67, 2013, 301, 13, 15234, 1304, 13, 67, 16993, 13, 6335, 283, 13, 49315, 1330, 360, 16993, 15546, 283, 29123, 628, 198, 31, 9078, 9288, 13, 4102, 13, 47960, 198, 4299, 1332, 62, 6335, 283, 62, 25927, 62, 15654, 62, 14421, 62, 46280, 538, 62, 79, 13155, 62, 85, 62, 71, 7568, 20, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 17934, 329, 4856, 13428, 5043, 1336, 1459, 12672, 35238, 62, 5662, 47, 11, 198, 220, 220, 220, 428, 640, 287, 43521, 32, 5572, 37, 20, 357, 3727, 3955, 62, 39, 20, 8, 5794, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2581, 796, 360, 16993, 15546, 283, 40161, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11507, 28, 35, 16993, 15546, 283, 36301, 13, 17887, 35238, 62, 5662, 47, 62, 18697, 4503, 9050, 62, 39, 11, 198, 220, 220, 220, 220, 220, 220, 220, 923, 62, 4475, 28, 35, 16993, 15546, 283, 10430, 13, 34, 39237, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2524, 28, 35, 16993, 15546, 283, 29123, 13, 33, 6684, 11, 198, 220, 220, 220, 220, 220, 220, 220, 46996, 28, 35, 16993, 15546, 283, 6601, 26227, 13, 39, 8068, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 24637, 28, 35, 16993, 15546, 283, 6601, 7004, 2617, 13, 48913, 16437, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2482, 796, 1351, 7, 25927, 13, 22766, 28955, 628, 220, 220, 220, 611, 18896, 7, 43420, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 12972, 9288, 13, 48267, 7203, 6601, 3058, 407, 1695, 4943, 628, 220, 220, 220, 11876, 796, 2482, 58, 15, 4083, 7890, 198, 220, 220, 220, 21437, 796, 11876, 13, 1136, 8367, 3419, 628, 220, 220, 220, 1303, 49899, 1366, 13, 198, 220, 220, 220, 6818, 21437, 13, 9688, 2032, 342, 7, 65, 1, 59, 87, 4531, 39, 8068, 59, 81, 59, 77, 4943, 628, 220, 220, 220, 1303, 49899, 517, 3307, 13, 198, 220, 220, 220, 1303, 266, 1860, 931, 374, 292, 2998, 12, 301, 13255, 12, 14751, 11134, 486, 62, 46280, 27446, 20, 261, 368, 62, 85, 6335, 71, 62, 405, 12, 1238, 2167, 6052, 830, 1821, 2682, 405, 12, 2127, 78, 12, 8784, 2624, 12, 31298, 20, 220, 1303, 645, 20402, 25, 36, 33548, 11, 33, 31027, 628, 220, 220, 220, 289, 7568, 796, 289, 20, 9078, 13, 8979, 7, 22252, 11, 366, 81, 4943, 628, 220, 220, 220, 6818, 289, 7568, 14692, 14, 4919, 14, 6335, 283, 62, 10057, 8973, 318, 407, 6045, 198, 220, 220, 220, 6818, 289, 7568, 14692, 14, 4919, 1, 4083, 1078, 3808, 13, 1136, 7203, 35943, 4943, 6624, 275, 1, 3351, 62, 47, 13155, 12, 10503, 12, 486, 62, 33, 6684, 1, 198, 220, 220, 220, 6818, 289, 7568, 14692, 14, 10919, 1, 4083, 1078, 3808, 13, 1136, 7203, 10459, 4943, 6624, 275, 1, 54, 11770, 25, 8784, 2624, 11, 45, 3727, 25, 11275, 2238, 1, 628, 220, 220, 220, 6818, 289, 7568, 14692, 14, 4919, 1, 4083, 1078, 3808, 13, 1136, 7203, 35836, 62, 9127, 4943, 6624, 352, 198, 220, 220, 220, 6818, 289, 7568, 14692, 14, 19608, 292, 316, 16, 14, 4919, 1, 4083, 1078, 3808, 13, 1136, 7203, 35836, 62, 9630, 4943, 6624, 352, 628, 220, 220, 220, 5485, 796, 289, 7568, 14692, 14, 19608, 292, 316, 16, 14, 7890, 16, 14, 7890, 1, 4083, 43358, 628, 220, 220, 220, 6818, 5485, 6624, 357, 15277, 11, 10053, 8, 393, 5485, 6624, 357, 35195, 11, 10053, 8, 628, 198, 31, 9078, 9288, 13, 4102, 13, 47960, 198, 4299, 1332, 62, 6335, 283, 62, 25927, 62, 15654, 62, 14421, 62, 46280, 538, 62, 10396, 62, 85, 62, 71, 7568, 20, 62, 12853, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 17934, 329, 4856, 13428, 5043, 1336, 1459, 12672, 35238, 62, 44558, 11, 198, 220, 220, 220, 428, 640, 287, 43521, 32, 5572, 37, 20, 357, 3727, 3955, 62, 39, 20, 8, 5794, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2581, 796, 360, 16993, 15546, 283, 40161, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11507, 28, 35, 16993, 15546, 283, 36301, 13, 17887, 35238, 62, 44558, 62, 18697, 4503, 9050, 62, 39, 11, 198, 220, 220, 220, 220, 220, 220, 220, 923, 62, 4475, 28, 35, 16993, 15546, 283, 10430, 13, 34, 39237, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2524, 28, 35, 16993, 15546, 283, 29123, 13, 33, 6684, 11, 198, 220, 220, 220, 220, 220, 220, 220, 46996, 28, 35, 16993, 15546, 283, 6601, 26227, 13, 39, 8068, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 24637, 28, 35, 16993, 15546, 283, 6601, 7004, 2617, 13, 48913, 16437, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2482, 796, 1351, 7, 25927, 13, 22766, 28955, 628, 220, 220, 220, 611, 18896, 7, 43420, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 12972, 9288, 13, 48267, 7203, 6601, 3058, 407, 1695, 4943, 628, 220, 220, 220, 11876, 796, 2482, 58, 15, 4083, 7890, 198, 220, 220, 220, 21437, 796, 11876, 13, 1136, 8367, 3419, 628, 220, 220, 220, 1303, 49899, 1366, 13, 198, 220, 220, 220, 6818, 21437, 13, 9688, 2032, 342, 7, 65, 1, 59, 87, 4531, 39, 8068, 59, 81, 59, 77, 4943, 628, 220, 220, 220, 1303, 49899, 517, 3307, 13, 198, 220, 220, 220, 1303, 266, 1860, 931, 374, 292, 2998, 12, 301, 13255, 12, 10396, 20, 1084, 782, 486, 62, 46280, 27446, 20, 261, 368, 62, 85, 6335, 71, 62, 405, 12, 1238, 10531, 1959, 1558, 2713, 3365, 405, 12, 2127, 78, 12, 8784, 2624, 12, 31298, 20, 220, 1303, 645, 20402, 25, 36, 33548, 11, 33, 31027, 628, 220, 220, 220, 289, 7568, 796, 289, 20, 9078, 13, 8979, 7, 22252, 11, 366, 81, 4943, 628, 220, 220, 220, 6818, 289, 7568, 14692, 14, 4919, 14, 6335, 283, 62, 10057, 8973, 318, 407, 6045, 198, 220, 220, 220, 6818, 289, 7568, 14692, 14, 4919, 1, 4083, 1078, 3808, 13, 1136, 7203, 35943, 4943, 6624, 275, 1, 3351, 62, 16598, 12, 20, 9452, 12, 10503, 12, 486, 62, 33, 6684, 1, 198, 220, 220, 220, 6818, 289, 7568, 14692, 14, 10919, 1, 4083, 1078, 3808, 13, 1136, 7203, 10459, 4943, 6624, 275, 1, 54, 11770, 25, 8784, 2624, 11, 45, 3727, 25, 11275, 2238, 1, 628, 220, 220, 220, 6818, 289, 7568, 14692, 14, 4919, 1, 4083, 1078, 3808, 13, 1136, 7203, 35836, 62, 9127, 4943, 6624, 838, 198, 220, 220, 220, 6818, 289, 7568, 14692, 14, 19608, 292, 316, 16, 14, 4919, 1, 4083, 1078, 3808, 13, 1136, 7203, 35836, 62, 9630, 4943, 6624, 352, 628, 220, 220, 220, 5485, 796, 289, 7568, 14692, 14, 19608, 292, 316, 16, 14, 7890, 16, 14, 7890, 1, 4083, 43358, 628, 220, 220, 220, 6818, 5485, 6624, 357, 15277, 11, 11546, 8, 393, 5485, 6624, 357, 15277, 11, 26250, 8, 393, 5485, 6624, 357, 35195, 11, 26250, 8, 628, 198, 31, 9078, 9288, 13, 4102, 13, 47960, 198, 4299, 1332, 62, 6335, 283, 62, 25927, 62, 15654, 62, 14421, 62, 46280, 538, 62, 10396, 62, 85, 62, 71, 7568, 20, 62, 29762, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 17934, 329, 4856, 13428, 5043, 2060, 1459, 12672, 35238, 62, 44558, 11, 198, 220, 220, 220, 428, 640, 287, 43521, 32, 5572, 37, 20, 357, 3727, 3955, 62, 39, 20, 8, 5794, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2581, 796, 360, 16993, 15546, 283, 40161, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11507, 28, 35, 16993, 15546, 283, 36301, 13, 17887, 35238, 62, 44558, 62, 18697, 4503, 9050, 62, 39, 11, 198, 220, 220, 220, 220, 220, 220, 220, 923, 62, 4475, 28, 35, 16993, 15546, 283, 10430, 13, 34, 39237, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2524, 28, 35, 16993, 15546, 283, 29123, 13, 33, 6684, 11, 198, 220, 220, 220, 220, 220, 220, 220, 46996, 28, 35, 16993, 15546, 283, 6601, 26227, 13, 39, 8068, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 24637, 28, 35, 16993, 15546, 283, 6601, 7004, 2617, 13, 48913, 16437, 11, 198, 220, 220, 220, 220, 220, 220, 220, 22910, 28, 16, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2482, 796, 1351, 7, 25927, 13, 22766, 28955, 628, 220, 220, 220, 611, 18896, 7, 43420, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 12972, 9288, 13, 48267, 7203, 6601, 3058, 407, 1695, 4943, 628, 220, 220, 220, 6818, 18896, 7, 43420, 8, 19841, 352, 628, 220, 220, 220, 6818, 366, 85, 6335, 71, 62, 486, 1, 287, 2482, 58, 15, 4083, 6371, 628, 220, 220, 220, 11876, 796, 2482, 58, 15, 4083, 7890, 198, 220, 220, 220, 289, 7568, 796, 289, 20, 9078, 13, 8979, 7, 22252, 11, 366, 81, 4943, 628, 220, 220, 220, 6818, 289, 7568, 14692, 14, 4919, 1, 4083, 1078, 3808, 13, 1136, 7203, 35836, 62, 9127, 4943, 6624, 838, 198, 220, 220, 220, 6818, 289, 7568, 14692, 14, 19608, 292, 316, 16, 14, 4919, 1, 4083, 1078, 3808, 13, 1136, 7203, 35836, 62, 9630, 4943, 6624, 362, 628, 198, 31, 9078, 9288, 13, 4102, 13, 47960, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 198, 220, 220, 220, 366, 29268, 1600, 198, 220, 220, 220, 685, 198, 220, 220, 220, 220, 220, 220, 220, 360, 16993, 15546, 283, 4965, 2122, 13, 5631, 33340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 360, 16993, 15546, 283, 4965, 2122, 13, 46685, 7836, 56, 11, 198, 220, 220, 220, 16589, 198, 8, 198, 4299, 1332, 62, 6335, 283, 62, 25927, 62, 6335, 16617, 62, 10210, 66, 62, 14421, 7, 29268, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 49899, 1366, 12673, 329, 1459, 33540, 3535, 1565, 62, 47667, 14, 29468, 10, 9769, 306, 13, 628, 220, 220, 220, 3982, 668, 25, 3125, 1690, 621, 407, 11, 428, 1366, 318, 407, 198, 220, 220, 220, 1695, 618, 2045, 379, 327, 39237, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2581, 796, 360, 16993, 15546, 283, 40161, 7, 198, 220, 220, 220, 220, 220, 220, 220, 11507, 28, 35, 16993, 15546, 283, 36301, 13, 49, 2885, 3535, 1565, 62, 47667, 11, 198, 220, 220, 220, 220, 220, 220, 220, 923, 62, 4475, 28, 35, 16993, 15546, 283, 10430, 13, 34, 39237, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6323, 28, 29268, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2278, 28, 35, 16993, 15546, 283, 5990, 2101, 13, 38827, 3525, 11, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 2482, 796, 1351, 7, 25927, 13, 22766, 28955, 628, 220, 220, 220, 611, 18896, 7, 43420, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 12972, 9288, 13, 48267, 7203, 6601, 3058, 407, 1695, 4943, 628, 220, 220, 220, 6818, 18896, 7, 43420, 8, 6624, 352, 628, 198, 31, 9078, 9288, 13, 4102, 13, 47960, 198, 4299, 1332, 62, 6335, 283, 62, 25927, 62, 6335, 16617, 62, 10210, 66, 62, 14421, 62, 20, 1084, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 49899, 5287, 329, 33540, 3535, 1565, 62, 47667, 14, 20, 2431, 13, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 351, 12972, 9288, 13, 430, 2696, 7, 11395, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 360, 16993, 15546, 283, 40161, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11507, 28, 35, 16993, 15546, 283, 36301, 13, 49, 2885, 3535, 1565, 62, 47667, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6323, 28, 35, 16993, 15546, 283, 4965, 2122, 13, 23678, 37780, 62, 20, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 923, 62, 4475, 28, 35, 16993, 15546, 283, 10430, 13, 34, 39237, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198 ]
2.272727
2,167
#!/usr/bin/env python3 import jsonschema from jsonschema import validate from os.path import join, dirname, abspath import jsonref def _load_json_schema(filename): """ Loads the given schema file """ # relative_path = join('', filename) relative_path = filename absolute_path = join(dirname(__file__), relative_path) absolute_path = abspath(relative_path) base_path = dirname(absolute_path) base_uri = 'file://{}/'.format(base_path) with open(absolute_path) as schema_file: return jsonref.loads(schema_file.read(), base_uri=base_uri, jsonschema=True) def validate_json(json_data, schema): """REF: https://json-schema.org/ """ # Describe what kind of json you expect. execute_api_schema = _load_json_schema(schema) try: validate(instance=json_data, schema=execute_api_schema) except jsonschema.exceptions.ValidationError as err: print(err) err = "Given JSON data is InValid" return False, err message = "Given JSON data is Valid" return True, message
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 11748, 44804, 684, 2395, 2611, 198, 6738, 44804, 684, 2395, 2611, 1330, 26571, 198, 6738, 28686, 13, 6978, 1330, 4654, 11, 26672, 3672, 11, 2352, 6978, 198, 11748, 33918, 5420, 628, 198, 4299, 4808, 2220, 62, 17752, 62, 15952, 2611, 7, 34345, 2599, 198, 220, 220, 220, 37227, 8778, 82, 262, 1813, 32815, 2393, 37227, 628, 220, 220, 220, 1303, 3585, 62, 6978, 796, 4654, 10786, 3256, 29472, 8, 198, 220, 220, 220, 3585, 62, 6978, 796, 29472, 198, 220, 220, 220, 4112, 62, 6978, 796, 4654, 7, 15908, 3672, 7, 834, 7753, 834, 828, 3585, 62, 6978, 8, 198, 220, 220, 220, 4112, 62, 6978, 796, 2352, 6978, 7, 43762, 62, 6978, 8, 198, 220, 220, 220, 2779, 62, 6978, 796, 26672, 3672, 7, 48546, 62, 6978, 8, 198, 220, 220, 220, 2779, 62, 9900, 796, 705, 7753, 1378, 90, 92, 14, 4458, 18982, 7, 8692, 62, 6978, 8, 628, 220, 220, 220, 351, 1280, 7, 48546, 62, 6978, 8, 355, 32815, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 33918, 5420, 13, 46030, 7, 15952, 2611, 62, 7753, 13, 961, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 9900, 28, 8692, 62, 9900, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44804, 684, 2395, 2611, 28, 17821, 8, 628, 198, 4299, 26571, 62, 17752, 7, 17752, 62, 7890, 11, 32815, 2599, 198, 220, 220, 220, 37227, 31688, 25, 3740, 1378, 17752, 12, 15952, 2611, 13, 2398, 14, 37227, 198, 220, 220, 220, 1303, 39373, 4892, 644, 1611, 286, 33918, 345, 1607, 13, 198, 220, 220, 220, 12260, 62, 15042, 62, 15952, 2611, 796, 4808, 2220, 62, 17752, 62, 15952, 2611, 7, 15952, 2611, 8, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 26571, 7, 39098, 28, 17752, 62, 7890, 11, 32815, 28, 41049, 62, 15042, 62, 15952, 2611, 8, 198, 220, 220, 220, 2845, 44804, 684, 2395, 2611, 13, 1069, 11755, 13, 7762, 24765, 12331, 355, 11454, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 8056, 8, 198, 220, 220, 220, 220, 220, 220, 220, 11454, 796, 366, 15056, 19449, 1366, 318, 554, 47139, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 11, 11454, 628, 220, 220, 220, 3275, 796, 366, 15056, 19449, 1366, 318, 48951, 1, 198, 220, 220, 220, 1441, 6407, 11, 3275, 198 ]
2.48
450
from amaranth_boards.ice40_up5k_b_evn import * from amaranth_boards.ice40_up5k_b_evn import __all__ import warnings warnings.warn("instead of nmigen_boards.ice40_up5k_b_evn, use amaranth_boards.ice40_up5k_b_evn", DeprecationWarning, stacklevel=2)
[ 6738, 716, 19173, 400, 62, 12821, 13, 501, 1821, 62, 929, 20, 74, 62, 65, 62, 1990, 77, 1330, 1635, 198, 6738, 716, 19173, 400, 62, 12821, 13, 501, 1821, 62, 929, 20, 74, 62, 65, 62, 1990, 77, 1330, 11593, 439, 834, 628, 198, 11748, 14601, 198, 40539, 654, 13, 40539, 7203, 38070, 286, 28642, 9324, 62, 12821, 13, 501, 1821, 62, 929, 20, 74, 62, 65, 62, 1990, 77, 11, 779, 716, 19173, 400, 62, 12821, 13, 501, 1821, 62, 929, 20, 74, 62, 65, 62, 1990, 77, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2129, 8344, 341, 20361, 11, 8931, 5715, 28, 17, 8, 198 ]
2.267241
116
import pymel.all as pymel import maya.cmds as cmds from python.libs import naming_utils from python.libs import joint_utils from python.libs import shapes import logging log = logging.getLogger(__name__) log.setLevel(logging.DEBUG) def attach_class(node, net): """ Adds a string attribute to a PyNode set to the virtual class identifier. Example node._class = '_TransformNode' :param node: PyNode to add attribute to. :param net: Network to associate the PyNode with IE: 'L_Leg_Net' :return: PyNode as a virtual class """ if node.hasAttr('_class'): node.deleteAttr('_class') if node.hasAttr('Network'): node.deleteAttr('Network') #Ensuring that node is a vanilla pynode node = pymel.PyNode(node) node.addAttr('Network', dataType='string') node.Network.set(net.name()) if isinstance(node, pymel.nodetypes.Joint): node.addAttr('_class', dataType='string') node._class.set('_JointNode') return pymel.PyNode(node) if isinstance(node, pymel.nodetypes.Transform): node.addAttr('_class', dataType='string') node._class.set('_TransformNode') new_node = pymel.PyNode(node) assert isinstance(new_node, TransformNode) return new_node if isinstance(node, pymel.nodetypes.Network): node.addAttr('_class', dataType='string') node._class.set('_LimbNode') return pymel.PyNode(node) log.warning('Could not find class for: '.format(node)) class BaseNode(): """ Subclass must also inherit leaf class with pymel.nodetype.dagnode as it's hierarchy. IE: 'pymel.nodetypes.Joint' This class contains some basic properties that are used for accessing other nodes """ @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property @property def getCtrlRig(self): """Return all control rig nodes, ignore skinning joints""" nodes = [] for obj in cmds.ls(type='transform'): if cmds.attributeQuery('Network', node=obj, exists=True) and\ cmds.getAttr('{}.Network'.format(obj)) == self.network.name() and obj not in self.jnts: nodes.append(pymel.PyNode(obj)) return nodes def getMirroredCtrl(self): """ Find the Limb network connection to Main Net and traverse the mirrored network which is connected to another index, either 0 or 1. For example: L_Elbow_FK_CTRL >>> L_ARM_Net.FK_CTLS[2] >>> MAIN_NET.ARMS[ idx ] Traverse: MAIN_NET.ARMS[ !idx ] >>> R_ARM_Net.FK_CTLS[2] >>> R_Elbow_FK_CTRL :return: Mirrored CTRL or None if failed to find ctrl. """ net_attr = self.networkAttr # Storing the network attr' limb = self.mainAttr # Storing the main limb attr if not limb: # If the network is not a limb, like 'Main', There is mo mirrored ctrl. return None for idx, element in enumerate(limb.array().elements()): if idx != limb.index(): # Traverse through the other idx connection limb network mirror_net = limb.array().elementByLogicalIndex(idx).connections()[0] mirror_array = mirror_net.getAttr(net_attr.array().attrName()) return mirror_array[net_attr.index()] # DAG CLASSES class JointNode(pymel.nodetypes.Joint, BaseNode): """ this is an example of how to create your own subdivisions of existing nodes. """ NODE_TYPE = 'JointNode' @classmethod def list(cls, *args, **kwargs): """ Returns all instances the node in the scene """ kwargs['type'] = cls.__melnode__ return [node for node in pymel.ls(*args, **kwargs) if isinstance(node, cls)] @classmethod def _isVirtual(cls, obj, name): """PyMEL code should not be used inside the callback, only API and maya.cmds. """ fn = pymel.api.MFnDependencyNode(obj) try: if fn.hasAttribute('_class'): plug = fn.findPlug('_class') if plug.asString() == '_JointNode': return True return False except: pass return False @classmethod def _preCreateVirtual(cls, **kwargs): """This is called before creation. python allowed.""" return kwargs @classmethod def _postCreateVirtual(cls, newNode): """ This is called before creation, pymel/cmds allowed.""" pymel.addAttr(newNode, longName='_class', dataType='string') newNode._class.set('_JointNode') class TransformNode(BaseNode, pymel.nodetypes.Transform): """ this is an example of how to create your own subdivisions of existing nodes. """ @classmethod def list(cls, *args, **kwargs): """ Returns all instances the node in the scene """ kwargs['type'] = cls.__melnode__ return [node for node in pymel.ls(*args, **kwargs) if isinstance(node, cls)] @classmethod def _isVirtual(cls, obj, name): """PyMEL code should not be used inside the callback, only API and maya.cmds. """ fn = pymel.api.MFnDependencyNode(obj) try: if fn.hasAttribute('_class'): plug = fn.findPlug('_class') if plug.asString() == '_TransformNode': return True return False except: pass return False @classmethod def _preCreateVirtual(cls, **kwargs): """This is called before creation. python allowed.""" return kwargs @classmethod def _postCreateVirtual(cls, newNode): """ This is called before creation, pymel/cmds allowed.""" newNode.addAttr('_class', dataType='string') newNode._class.set('_TransformNode') # NETWORK CLASSES class LimbNode(pymel.nt.Network, BaseNode): """ this is an example of how to create your own subdivisions of existing nodes. """ @classmethod def list(cls, *args, **kwargs): """ Returns all instances the node in the scene """ kwargs['type'] = cls.__melnode__ return [node for node in pymel.ls(*args, **kwargs) if isinstance(node, cls)] @classmethod def _isVirtual(cls, obj, name): """PyMEL code should not be used inside the callback, only API and maya.cmds. """ fn = pymel.api.MFnDependencyNode(obj) try: if fn.hasAttribute('_class'): plug = fn.findPlug('_class') if plug.asString() == '_LimbNode': return True return False except: pass return False @classmethod def _preCreateVirtual(cls, **kwargs): """This is called before creation. python allowed.""" return kwargs @classmethod def _postCreateVirtual(cls, newNode): """ This is called before creation, pymel/cmds allowed.""" newNode.addAttr('_class', dt='string') newNode._class.set('_LimbNode') newNode.addAttr('JOINTS', attributeType='message', multi=True) newNode.addAttr('IK_JOINTS', attributeType='message', multi=True) newNode.addAttr('FK_JOINTS', attributeType='message', multi=True) newNode.addAttr('IK_CTRLS', attributeType='message', multi=True) newNode.addAttr('FK_CTRLS', attributeType='message', multi=True) newNode.addAttr('CTRLS', attributeType='message', multi=True) newNode.addAttr('POLE', attributeType='message', multi=True) newNode.addAttr('SWITCH', attributeType='message', multi=True) newNode.addAttr('ORIENTCONSTRAINT', attributeType='message', multi=True) newNode.addAttr('POINTCONSTRAINT', attributeType='message', multi=True) newNode.addAttr('IK_HANDLE', attributeType='message', multi=True) newNode.addAttr('IK_SNAP_LOC', attributeType='message', multi=True) @property class SplineIKNet(LimbNode): """ this is an example of how to create your own subdivisions of existing nodes. """ @classmethod def list(cls, *args, **kwargs): """ Returns all instances the node in the scene """ kwargs['type'] = cls.__melnode__ return [node for node in pymel.ls(*args, **kwargs) if isinstance(node, cls)] @classmethod def _isVirtual(cls, obj, name): """PyMEL code should not be used inside the callback, only API and maya.cmds. """ fn = pymel.api.MFnDependencyNode(obj) try: if fn.hasAttribute('_class'): plug = fn.findPlug('_class') if plug.asString() == '_SplineIKNet': return True return False except: pass return False @classmethod def _preCreateVirtual(cls, **kwargs): """This is called before creation. python allowed.""" return kwargs @classmethod def _postCreateVirtual(cls, newNode): """ This is called before creation, pymel/cmds allowed.""" newNode.addAttr('_class', dataType='string') newNode._class.set('_SplineIKNet') newNode.addAttr('JOINTS', attributeType='message', multi=True) newNode.addAttr('IK_HANDLE', attributeType='message', multi=True) newNode.addAttr('IK_CTRLS', attributeType='message', multi=True) newNode.addAttr('CLUSTER_HANDLE', attributeType='message', multi=True) newNode.addAttr('COG', attributeType='message', multi=True) @property @property @property @property class MainNode(LimbNode): """ this is an example of how to create your own subdivisions of existing nodes. """ @classmethod def list(cls, *args, **kwargs): """ Returns all instances the node in the scene """ kwargs['type'] = cls.__melnode__ return [node for node in pymel.ls(*args, **kwargs) if isinstance(node, cls)] @classmethod def _isVirtual(cls, obj, name): """PyMEL code should not be used inside the callback, only API and maya.cmds. """ fn = pymel.api.MFnDependencyNode(obj) try: if fn.hasAttribute('_class'): plug = fn.findPlug('_class') if plug.asString() == '_MainNode': return True return False except: pass return False @classmethod def _preCreateVirtual(cls, **kwargs): """This is called before creation. python allowed.""" return kwargs @classmethod def _postCreateVirtual(cls, newNode): """ This is called before creation, pymel/cmds allowed.""" newNode.addAttr('_class', dataType='string') newNode._class.set('_MainNode') newNode.addAttr('MAIN_CTRL', attributeType='message', multi=True) newNode.addAttr('ARMS', attributeType='message', multi=True) newNode.addAttr('CLAVICLES', attributeType='message', multi=True) newNode.addAttr('LEGS', attributeType='message', multi=True) newNode.addAttr('SPINE', attributeType='message', multi=True) newNode.addAttr('HEAD', attributeType='message', multi=True) newNode.addAttr('HANDS', attributeType='message', multi=True) newNode.addAttr('ROOT', attributeType='message', multi=True) @property @property @property @property @property @property @property @property @property @property # Classes need to be registered to exist in the scene. pymel.factories.registerVirtualClass(JointNode, nameRequired=False) pymel.factories.registerVirtualClass(CtrlNode, nameRequired=False) pymel.factories.registerVirtualClass(TransformNode, nameRequired=False) pymel.factories.registerVirtualClass(SplineIKNet, nameRequired=False) pymel.factories.registerVirtualClass(MainNode, nameRequired=False) pymel.factories.registerVirtualClass(LimbNode, nameRequired=False) pymel.factories.registerVirtualClass(ClavicleNode, nameRequired=False)
[ 11748, 279, 4948, 417, 13, 439, 355, 279, 4948, 417, 198, 11748, 743, 64, 13, 28758, 82, 355, 23991, 82, 198, 6738, 21015, 13, 8019, 82, 1330, 19264, 62, 26791, 198, 6738, 21015, 13, 8019, 82, 1330, 6466, 62, 26791, 198, 6738, 21015, 13, 8019, 82, 1330, 15268, 198, 11748, 18931, 198, 198, 6404, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198, 6404, 13, 2617, 4971, 7, 6404, 2667, 13, 30531, 8, 628, 198, 4299, 10199, 62, 4871, 7, 17440, 11, 2010, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 34333, 257, 4731, 11688, 284, 257, 9485, 19667, 900, 284, 262, 7166, 1398, 27421, 13, 17934, 10139, 13557, 4871, 796, 705, 62, 41762, 19667, 6, 198, 220, 220, 220, 1058, 17143, 10139, 25, 9485, 19667, 284, 751, 11688, 284, 13, 198, 220, 220, 220, 1058, 17143, 2010, 25, 7311, 284, 11602, 262, 9485, 19667, 351, 28157, 25, 705, 43, 62, 11484, 62, 7934, 6, 198, 220, 220, 220, 1058, 7783, 25, 9485, 19667, 355, 257, 7166, 1398, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 10139, 13, 10134, 8086, 81, 10786, 62, 4871, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 13, 33678, 8086, 81, 10786, 62, 4871, 11537, 628, 220, 220, 220, 611, 10139, 13, 10134, 8086, 81, 10786, 26245, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 13, 33678, 8086, 81, 10786, 26245, 11537, 628, 220, 220, 220, 1303, 4834, 82, 870, 326, 10139, 318, 257, 16858, 279, 2047, 1098, 198, 220, 220, 220, 10139, 796, 279, 4948, 417, 13, 20519, 19667, 7, 17440, 8, 628, 220, 220, 220, 10139, 13, 2860, 8086, 81, 10786, 26245, 3256, 1366, 6030, 11639, 8841, 11537, 198, 220, 220, 220, 10139, 13, 26245, 13, 2617, 7, 3262, 13, 3672, 28955, 628, 220, 220, 220, 611, 318, 39098, 7, 17440, 11, 279, 4948, 417, 13, 77, 375, 2963, 12272, 13, 41, 1563, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 13, 2860, 8086, 81, 10786, 62, 4871, 3256, 1366, 6030, 11639, 8841, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 13557, 4871, 13, 2617, 10786, 62, 41, 1563, 19667, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 279, 4948, 417, 13, 20519, 19667, 7, 17440, 8, 628, 220, 220, 220, 611, 318, 39098, 7, 17440, 11, 279, 4948, 417, 13, 77, 375, 2963, 12272, 13, 41762, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 13, 2860, 8086, 81, 10786, 62, 4871, 3256, 1366, 6030, 11639, 8841, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 13557, 4871, 13, 2617, 10786, 62, 41762, 19667, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 17440, 796, 279, 4948, 417, 13, 20519, 19667, 7, 17440, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 318, 39098, 7, 3605, 62, 17440, 11, 26981, 19667, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 649, 62, 17440, 628, 220, 220, 220, 611, 318, 39098, 7, 17440, 11, 279, 4948, 417, 13, 77, 375, 2963, 12272, 13, 26245, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 13, 2860, 8086, 81, 10786, 62, 4871, 3256, 1366, 6030, 11639, 8841, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 10139, 13557, 4871, 13, 2617, 10786, 62, 43, 14107, 19667, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 279, 4948, 417, 13, 20519, 19667, 7, 17440, 8, 628, 220, 220, 220, 2604, 13, 43917, 10786, 23722, 407, 1064, 1398, 329, 25, 45302, 18982, 7, 17440, 4008, 628, 198, 4871, 7308, 19667, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3834, 4871, 1276, 635, 16955, 12835, 1398, 351, 279, 4948, 417, 13, 77, 375, 2963, 431, 13, 67, 4660, 1098, 355, 340, 338, 18911, 13, 28157, 25, 705, 79, 4948, 417, 13, 77, 375, 2963, 12272, 13, 41, 1563, 6, 198, 220, 220, 220, 770, 1398, 4909, 617, 4096, 6608, 326, 389, 973, 329, 22534, 584, 13760, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 825, 651, 40069, 49, 328, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 477, 1630, 7805, 13760, 11, 8856, 4168, 768, 24039, 37811, 628, 220, 220, 220, 220, 220, 220, 220, 13760, 796, 17635, 628, 220, 220, 220, 220, 220, 220, 220, 329, 26181, 287, 23991, 82, 13, 7278, 7, 4906, 11639, 35636, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 23991, 82, 13, 42348, 20746, 10786, 26245, 3256, 10139, 28, 26801, 11, 7160, 28, 17821, 8, 290, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23991, 82, 13, 1136, 8086, 81, 10786, 90, 27422, 26245, 4458, 18982, 7, 26801, 4008, 6624, 2116, 13, 27349, 13, 3672, 3419, 290, 26181, 407, 287, 2116, 13, 73, 429, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13760, 13, 33295, 7, 79, 4948, 417, 13, 20519, 19667, 7, 26801, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 13760, 628, 220, 220, 220, 825, 651, 27453, 34640, 40069, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 9938, 262, 7576, 65, 3127, 4637, 284, 8774, 3433, 290, 38138, 262, 40070, 3127, 198, 220, 220, 220, 220, 220, 220, 220, 543, 318, 5884, 284, 1194, 6376, 11, 2035, 657, 393, 352, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1114, 1672, 25, 406, 62, 9527, 8176, 62, 26236, 62, 4177, 7836, 220, 13163, 406, 62, 33456, 62, 7934, 13, 26236, 62, 4177, 6561, 58, 17, 60, 13163, 8779, 1268, 62, 12884, 13, 1503, 5653, 58, 4686, 87, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 4759, 4399, 25, 8779, 1268, 62, 12884, 13, 1503, 5653, 58, 5145, 312, 87, 2361, 13163, 371, 62, 33456, 62, 7934, 13, 26236, 62, 4177, 6561, 58, 17, 60, 13163, 371, 62, 9527, 8176, 62, 26236, 62, 4177, 7836, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 7381, 34640, 45249, 393, 6045, 611, 4054, 284, 1064, 269, 14859, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 2010, 62, 35226, 796, 2116, 13, 27349, 8086, 81, 220, 1303, 520, 3255, 262, 3127, 708, 81, 6, 198, 220, 220, 220, 220, 220, 220, 220, 25035, 796, 2116, 13, 12417, 8086, 81, 220, 1303, 520, 3255, 262, 1388, 25035, 708, 81, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 25035, 25, 220, 1303, 1002, 262, 3127, 318, 407, 257, 25035, 11, 588, 705, 13383, 3256, 1318, 318, 6941, 40070, 269, 14859, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 329, 4686, 87, 11, 5002, 287, 27056, 378, 7, 2475, 65, 13, 18747, 22446, 68, 3639, 3419, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4686, 87, 14512, 25035, 13, 9630, 33529, 220, 1303, 4759, 4399, 832, 262, 584, 4686, 87, 4637, 25035, 3127, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10162, 62, 3262, 796, 25035, 13, 18747, 22446, 30854, 3886, 11187, 605, 15732, 7, 312, 87, 737, 8443, 507, 3419, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10162, 62, 18747, 796, 10162, 62, 3262, 13, 1136, 8086, 81, 7, 3262, 62, 35226, 13, 18747, 22446, 35226, 5376, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10162, 62, 18747, 58, 3262, 62, 35226, 13, 9630, 3419, 60, 628, 198, 2, 360, 4760, 42715, 1546, 198, 4871, 16798, 19667, 7, 79, 4948, 417, 13, 77, 375, 2963, 12272, 13, 41, 1563, 11, 7308, 19667, 2599, 198, 220, 220, 220, 37227, 428, 318, 281, 1672, 286, 703, 284, 2251, 534, 898, 45944, 3279, 286, 4683, 13760, 13, 37227, 628, 220, 220, 220, 399, 16820, 62, 25216, 796, 705, 41, 1563, 19667, 6, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 1351, 7, 565, 82, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16409, 477, 10245, 262, 10139, 287, 262, 3715, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 17816, 4906, 20520, 796, 537, 82, 13, 834, 17694, 17440, 834, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 17440, 329, 10139, 287, 279, 4948, 417, 13, 7278, 46491, 22046, 11, 12429, 46265, 22046, 8, 611, 318, 39098, 7, 17440, 11, 537, 82, 15437, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 271, 37725, 7, 565, 82, 11, 26181, 11, 1438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 20519, 44, 3698, 2438, 815, 407, 307, 973, 2641, 262, 23838, 11, 691, 7824, 290, 743, 64, 13, 28758, 82, 13, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 796, 279, 4948, 417, 13, 15042, 13, 49800, 77, 35, 2690, 1387, 19667, 7, 26801, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 24714, 13, 10134, 33682, 10786, 62, 4871, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6107, 796, 24714, 13, 19796, 23257, 10786, 62, 4871, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6107, 13, 292, 10100, 3419, 6624, 705, 62, 41, 1563, 19667, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 3866, 16447, 37725, 7, 565, 82, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1212, 318, 1444, 878, 6282, 13, 21015, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 479, 86, 22046, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 7353, 16447, 37725, 7, 565, 82, 11, 649, 19667, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 770, 318, 1444, 878, 6282, 11, 279, 4948, 417, 14, 28758, 82, 3142, 526, 15931, 628, 220, 220, 220, 220, 220, 220, 220, 279, 4948, 417, 13, 2860, 8086, 81, 7, 3605, 19667, 11, 890, 5376, 11639, 62, 4871, 3256, 1366, 6030, 11639, 8841, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13557, 4871, 13, 2617, 10786, 62, 41, 1563, 19667, 11537, 628, 198, 4871, 26981, 19667, 7, 14881, 19667, 11, 279, 4948, 417, 13, 77, 375, 2963, 12272, 13, 41762, 2599, 198, 220, 220, 220, 37227, 428, 318, 281, 1672, 286, 703, 284, 2251, 534, 898, 45944, 3279, 286, 4683, 13760, 13, 37227, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 1351, 7, 565, 82, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16409, 477, 10245, 262, 10139, 287, 262, 3715, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 17816, 4906, 20520, 796, 537, 82, 13, 834, 17694, 17440, 834, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 17440, 329, 10139, 287, 279, 4948, 417, 13, 7278, 46491, 22046, 11, 12429, 46265, 22046, 8, 611, 318, 39098, 7, 17440, 11, 537, 82, 15437, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 271, 37725, 7, 565, 82, 11, 26181, 11, 1438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 20519, 44, 3698, 2438, 815, 407, 307, 973, 2641, 262, 23838, 11, 691, 7824, 290, 743, 64, 13, 28758, 82, 13, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 796, 279, 4948, 417, 13, 15042, 13, 49800, 77, 35, 2690, 1387, 19667, 7, 26801, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 24714, 13, 10134, 33682, 10786, 62, 4871, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6107, 796, 24714, 13, 19796, 23257, 10786, 62, 4871, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6107, 13, 292, 10100, 3419, 6624, 705, 62, 41762, 19667, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 3866, 16447, 37725, 7, 565, 82, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1212, 318, 1444, 878, 6282, 13, 21015, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 479, 86, 22046, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 7353, 16447, 37725, 7, 565, 82, 11, 649, 19667, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 770, 318, 1444, 878, 6282, 11, 279, 4948, 417, 14, 28758, 82, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 62, 4871, 3256, 1366, 6030, 11639, 8841, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13557, 4871, 13, 2617, 10786, 62, 41762, 19667, 11537, 628, 198, 198, 2, 49791, 42715, 1546, 198, 4871, 7576, 65, 19667, 7, 79, 4948, 417, 13, 429, 13, 26245, 11, 7308, 19667, 2599, 198, 220, 220, 220, 37227, 428, 318, 281, 1672, 286, 703, 284, 2251, 534, 898, 45944, 3279, 286, 4683, 13760, 13, 37227, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 1351, 7, 565, 82, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16409, 477, 10245, 262, 10139, 287, 262, 3715, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 17816, 4906, 20520, 796, 537, 82, 13, 834, 17694, 17440, 834, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 17440, 329, 10139, 287, 279, 4948, 417, 13, 7278, 46491, 22046, 11, 12429, 46265, 22046, 8, 611, 318, 39098, 7, 17440, 11, 537, 82, 15437, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 271, 37725, 7, 565, 82, 11, 26181, 11, 1438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 20519, 44, 3698, 2438, 815, 407, 307, 973, 2641, 262, 23838, 11, 691, 7824, 290, 743, 64, 13, 28758, 82, 13, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 796, 279, 4948, 417, 13, 15042, 13, 49800, 77, 35, 2690, 1387, 19667, 7, 26801, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 24714, 13, 10134, 33682, 10786, 62, 4871, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6107, 796, 24714, 13, 19796, 23257, 10786, 62, 4871, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6107, 13, 292, 10100, 3419, 6624, 705, 62, 43, 14107, 19667, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 3866, 16447, 37725, 7, 565, 82, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1212, 318, 1444, 878, 6282, 13, 21015, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 479, 86, 22046, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 7353, 16447, 37725, 7, 565, 82, 11, 649, 19667, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 770, 318, 1444, 878, 6282, 11, 279, 4948, 417, 14, 28758, 82, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 62, 4871, 3256, 288, 83, 11639, 8841, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13557, 4871, 13, 2617, 10786, 62, 43, 14107, 19667, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 45006, 1268, 4694, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 18694, 62, 45006, 1268, 4694, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 26236, 62, 45006, 1268, 4694, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 18694, 62, 4177, 49, 6561, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 26236, 62, 4177, 49, 6561, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 4177, 49, 6561, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 16402, 2538, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 17887, 31949, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 1581, 28495, 10943, 2257, 3861, 12394, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 16402, 1268, 4825, 1340, 2257, 3861, 12394, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 18694, 62, 39, 6981, 2538, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 18694, 62, 15571, 2969, 62, 29701, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 628, 220, 220, 220, 2488, 26745, 628, 198, 4871, 13341, 500, 18694, 7934, 7, 43, 14107, 19667, 2599, 198, 220, 220, 220, 37227, 428, 318, 281, 1672, 286, 703, 284, 2251, 534, 898, 45944, 3279, 286, 4683, 13760, 13, 37227, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 1351, 7, 565, 82, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16409, 477, 10245, 262, 10139, 287, 262, 3715, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 17816, 4906, 20520, 796, 537, 82, 13, 834, 17694, 17440, 834, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 17440, 329, 10139, 287, 279, 4948, 417, 13, 7278, 46491, 22046, 11, 12429, 46265, 22046, 8, 611, 318, 39098, 7, 17440, 11, 537, 82, 15437, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 271, 37725, 7, 565, 82, 11, 26181, 11, 1438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 20519, 44, 3698, 2438, 815, 407, 307, 973, 2641, 262, 23838, 11, 691, 7824, 290, 743, 64, 13, 28758, 82, 13, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 796, 279, 4948, 417, 13, 15042, 13, 49800, 77, 35, 2690, 1387, 19667, 7, 26801, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 24714, 13, 10134, 33682, 10786, 62, 4871, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6107, 796, 24714, 13, 19796, 23257, 10786, 62, 4871, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6107, 13, 292, 10100, 3419, 6624, 705, 62, 26568, 500, 18694, 7934, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 3866, 16447, 37725, 7, 565, 82, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1212, 318, 1444, 878, 6282, 13, 21015, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 479, 86, 22046, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 7353, 16447, 37725, 7, 565, 82, 11, 649, 19667, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 770, 318, 1444, 878, 6282, 11, 279, 4948, 417, 14, 28758, 82, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 62, 4871, 3256, 1366, 6030, 11639, 8841, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13557, 4871, 13, 2617, 10786, 62, 26568, 500, 18694, 7934, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 45006, 1268, 4694, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 18694, 62, 39, 6981, 2538, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 18694, 62, 4177, 49, 6561, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 5097, 7759, 1137, 62, 39, 6981, 2538, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 34, 7730, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 198, 4871, 8774, 19667, 7, 43, 14107, 19667, 2599, 198, 220, 220, 220, 37227, 428, 318, 281, 1672, 286, 703, 284, 2251, 534, 898, 45944, 3279, 286, 4683, 13760, 13, 37227, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 1351, 7, 565, 82, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16409, 477, 10245, 262, 10139, 287, 262, 3715, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 17816, 4906, 20520, 796, 537, 82, 13, 834, 17694, 17440, 834, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 17440, 329, 10139, 287, 279, 4948, 417, 13, 7278, 46491, 22046, 11, 12429, 46265, 22046, 8, 611, 318, 39098, 7, 17440, 11, 537, 82, 15437, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 271, 37725, 7, 565, 82, 11, 26181, 11, 1438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 20519, 44, 3698, 2438, 815, 407, 307, 973, 2641, 262, 23838, 11, 691, 7824, 290, 743, 64, 13, 28758, 82, 13, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 24714, 796, 279, 4948, 417, 13, 15042, 13, 49800, 77, 35, 2690, 1387, 19667, 7, 26801, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 24714, 13, 10134, 33682, 10786, 62, 4871, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6107, 796, 24714, 13, 19796, 23257, 10786, 62, 4871, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 6107, 13, 292, 10100, 3419, 6624, 705, 62, 13383, 19667, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 3866, 16447, 37725, 7, 565, 82, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1212, 318, 1444, 878, 6282, 13, 21015, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 479, 86, 22046, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 4808, 7353, 16447, 37725, 7, 565, 82, 11, 649, 19667, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 770, 318, 1444, 878, 6282, 11, 279, 4948, 417, 14, 28758, 82, 3142, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 62, 4871, 3256, 1366, 6030, 11639, 8841, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13557, 4871, 13, 2617, 10786, 62, 13383, 19667, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 5673, 1268, 62, 4177, 7836, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 1503, 5653, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 5097, 10116, 2149, 28378, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 2538, 14313, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 4303, 8881, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 37682, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 39, 1565, 5258, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 649, 19667, 13, 2860, 8086, 81, 10786, 13252, 2394, 3256, 11688, 6030, 11639, 20500, 3256, 5021, 28, 17821, 8, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 220, 220, 220, 2488, 26745, 628, 198, 198, 2, 38884, 761, 284, 307, 6823, 284, 2152, 287, 262, 3715, 13, 198, 79, 4948, 417, 13, 22584, 1749, 13, 30238, 37725, 9487, 7, 41, 1563, 19667, 11, 1438, 37374, 28, 25101, 8, 198, 79, 4948, 417, 13, 22584, 1749, 13, 30238, 37725, 9487, 7, 40069, 19667, 11, 1438, 37374, 28, 25101, 8, 198, 79, 4948, 417, 13, 22584, 1749, 13, 30238, 37725, 9487, 7, 41762, 19667, 11, 1438, 37374, 28, 25101, 8, 198, 79, 4948, 417, 13, 22584, 1749, 13, 30238, 37725, 9487, 7, 26568, 500, 18694, 7934, 11, 1438, 37374, 28, 25101, 8, 198, 79, 4948, 417, 13, 22584, 1749, 13, 30238, 37725, 9487, 7, 13383, 19667, 11, 1438, 37374, 28, 25101, 8, 198, 79, 4948, 417, 13, 22584, 1749, 13, 30238, 37725, 9487, 7, 43, 14107, 19667, 11, 1438, 37374, 28, 25101, 8, 198, 79, 4948, 417, 13, 22584, 1749, 13, 30238, 37725, 9487, 7, 2601, 615, 1548, 19667, 11, 1438, 37374, 28, 25101, 8, 198 ]
2.414466
5,074
# import plotly.plotly as py # import plotly.graph_objs as go # import plotly.figure_factory as FF import csv import math import numpy as np import pandas as pd import matplotlib as mplt import itertools import matplotlib.pyplot as plt neededfiles = ['aim.fsm','battlefield2.fsm','counterstrike-source.fsm','halflife2-deathmatch.fsm','dns.fsm','h323.fsm','hotline.fsm','ntp.fsm','rtp.fsm','ssl.fsm','tsp.fsm','yahoo.fsm'] file = csv.writer(open("fsmstats.csv",'w')) file.writerow(['FSM', 'Median', 'Standard Deviation' ,'Variance','Average all','Total all','Average 2**20' , 'Total 2**20' ]) for filename in neededfiles: filename=filename.split('.')[0] df = pd.read_csv('./individual-stats/'+filename+'.csv') df2 = pd.read_csv('./individual-stats-2pow20/'+filename+'.csv') freq =df['Number'].values.tolist() val = df['Length'].values.tolist() freq2 =df2['Number'].values.tolist() val2 = df2['Length'].values.tolist() bmk = filename data = np.repeat(val, freq) data2 = np.repeat(val2, freq2) tsumtot=0 tsumtot2=0 for ele in data: tsumtot+=ele for ele2 in data2: tsumtot2+=ele2 file.writerow([bmk,np.median(data),np.std(data),np.var(data),np.average(data),tsumtot,np.average(data2),tsumtot2])
[ 2, 1330, 7110, 306, 13, 29487, 306, 355, 12972, 198, 2, 1330, 7110, 306, 13, 34960, 62, 672, 8457, 355, 467, 198, 2, 1330, 7110, 306, 13, 26875, 62, 69, 9548, 355, 18402, 198, 11748, 269, 21370, 198, 11748, 10688, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 2603, 29487, 8019, 355, 285, 489, 83, 198, 11748, 340, 861, 10141, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 220, 198, 27938, 16624, 796, 37250, 1385, 13, 69, 5796, 41707, 38471, 3245, 17, 13, 69, 5796, 41707, 24588, 33069, 12, 10459, 13, 69, 5796, 41707, 13959, 6042, 17, 12, 22595, 15699, 13, 69, 5796, 41707, 67, 5907, 13, 69, 5796, 41707, 71, 32637, 13, 69, 5796, 41707, 8940, 1370, 13, 69, 5796, 41707, 429, 79, 13, 69, 5796, 41707, 17034, 79, 13, 69, 5796, 41707, 45163, 13, 69, 5796, 41707, 912, 79, 13, 69, 5796, 41707, 40774, 13, 69, 5796, 20520, 198, 7753, 796, 269, 21370, 13, 16002, 7, 9654, 7203, 69, 5796, 34242, 13, 40664, 1600, 6, 86, 6, 4008, 198, 7753, 13, 16002, 322, 7, 17816, 10652, 44, 3256, 705, 9921, 666, 3256, 705, 23615, 6245, 3920, 6, 837, 6, 23907, 590, 41707, 26287, 477, 41707, 14957, 477, 41707, 26287, 362, 1174, 1238, 6, 837, 705, 14957, 362, 1174, 1238, 6, 33761, 220, 220, 220, 220, 220, 220, 220, 220, 198, 198, 1640, 29472, 287, 2622, 16624, 25, 198, 220, 220, 220, 29472, 28, 34345, 13, 35312, 10786, 2637, 38381, 15, 60, 198, 220, 220, 220, 47764, 796, 279, 67, 13, 961, 62, 40664, 7, 4458, 14, 43129, 12, 34242, 14, 6, 10, 34345, 10, 4458, 40664, 11537, 198, 220, 220, 220, 47764, 17, 796, 279, 67, 13, 961, 62, 40664, 7, 4458, 14, 43129, 12, 34242, 12, 17, 79, 322, 1238, 14, 6, 10, 34345, 10, 4458, 40664, 11537, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2030, 80, 796, 7568, 17816, 15057, 6, 4083, 27160, 13, 83, 349, 396, 3419, 198, 220, 220, 220, 1188, 796, 47764, 17816, 24539, 6, 4083, 27160, 13, 83, 349, 396, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2030, 80, 17, 796, 7568, 17, 17816, 15057, 6, 4083, 27160, 13, 83, 349, 396, 3419, 198, 220, 220, 220, 1188, 17, 796, 47764, 17, 17816, 24539, 6, 4083, 27160, 13, 83, 349, 396, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 275, 28015, 796, 29472, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1366, 796, 45941, 13, 44754, 7, 2100, 11, 2030, 80, 8, 198, 220, 220, 220, 1366, 17, 796, 45941, 13, 44754, 7, 2100, 17, 11, 2030, 80, 17, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 256, 16345, 83, 313, 28, 15, 198, 220, 220, 220, 256, 16345, 83, 313, 17, 28, 15, 198, 220, 220, 220, 220, 198, 220, 220, 220, 329, 9766, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 256, 16345, 83, 313, 47932, 11129, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 329, 9766, 17, 287, 1366, 17, 25, 198, 220, 220, 220, 220, 220, 220, 220, 256, 16345, 83, 313, 17, 47932, 11129, 17, 628, 220, 220, 220, 2393, 13, 16002, 322, 26933, 20475, 74, 11, 37659, 13, 1150, 666, 7, 7890, 828, 37659, 13, 19282, 7, 7890, 828, 37659, 13, 7785, 7, 7890, 828, 37659, 13, 23913, 7, 7890, 828, 912, 388, 83, 313, 11, 37659, 13, 23913, 7, 7890, 17, 828, 912, 388, 83, 313, 17, 12962, 198, 220, 220, 198 ]
2.218487
595
#!/usr/bin/env python # -*- coding: utf-8 -*- from geometry_msgs.msg import Pose from ros_3d_pointing_detection.calc_3d_dist import point_3d_line_distance, point_plane_distance from tfpose_ros.msg import Persons from sensor_msgs.msg import PointCloud2, CameraInfo from sensor_msgs import point_cloud2 import numpy as np from darknet_ros_msgs.msg import BoundingBoxes from jsk_recognition_msgs.msg import BoundingBoxArray, ClusterPointIndices import message_filters import rospy from ros_3d_pointing_detection.msg import DetectedObject if __name__ == '__main__': main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 6738, 22939, 62, 907, 14542, 13, 19662, 1330, 37557, 198, 6738, 686, 82, 62, 18, 67, 62, 4122, 278, 62, 15255, 3213, 13, 9948, 66, 62, 18, 67, 62, 17080, 1330, 966, 62, 18, 67, 62, 1370, 62, 30246, 11, 966, 62, 14382, 62, 30246, 198, 6738, 48700, 3455, 62, 4951, 13, 19662, 1330, 32884, 198, 6738, 12694, 62, 907, 14542, 13, 19662, 1330, 6252, 18839, 17, 11, 20432, 12360, 198, 6738, 12694, 62, 907, 14542, 1330, 966, 62, 17721, 17, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 3223, 3262, 62, 4951, 62, 907, 14542, 13, 19662, 1330, 347, 9969, 14253, 274, 198, 6738, 474, 8135, 62, 26243, 653, 62, 907, 14542, 13, 19662, 1330, 347, 9969, 14253, 19182, 11, 38279, 12727, 5497, 1063, 198, 11748, 3275, 62, 10379, 1010, 198, 11748, 686, 2777, 88, 198, 6738, 686, 82, 62, 18, 67, 62, 4122, 278, 62, 15255, 3213, 13, 19662, 1330, 46497, 10267, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
2.909548
199
# Zenora, a modern Python API wrapper for the Discord REST API # # Copyright (c) 2020 K.M Ahnaf Zamil # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. import typing import datetime import zenora from zenora.base.factory import Factory as BaseFactory from zenora.impl.mapper import ChannelMapper from zenora.users import PartialUser
[ 2, 14760, 5799, 11, 257, 3660, 11361, 7824, 29908, 329, 262, 39462, 30617, 7824, 198, 2, 198, 2, 15069, 357, 66, 8, 12131, 509, 13, 44, 7900, 77, 1878, 38343, 346, 198, 2, 198, 2, 2448, 3411, 318, 29376, 7520, 11, 1479, 286, 3877, 11, 284, 597, 1048, 16727, 257, 4866, 198, 2, 286, 428, 3788, 290, 3917, 10314, 3696, 357, 1169, 366, 25423, 12340, 284, 1730, 198, 2, 287, 262, 10442, 1231, 17504, 11, 1390, 1231, 17385, 262, 2489, 198, 2, 284, 779, 11, 4866, 11, 13096, 11, 20121, 11, 7715, 11, 14983, 11, 850, 43085, 11, 290, 14, 273, 3677, 198, 2, 9088, 286, 262, 10442, 11, 290, 284, 8749, 6506, 284, 4150, 262, 10442, 318, 198, 2, 30760, 284, 466, 523, 11, 2426, 284, 262, 1708, 3403, 25, 198, 2, 198, 2, 383, 2029, 6634, 4003, 290, 428, 7170, 4003, 2236, 307, 3017, 287, 477, 198, 2, 9088, 393, 8904, 16690, 286, 262, 10442, 13, 198, 2, 198, 2, 3336, 47466, 3180, 36592, 2389, 1961, 366, 1921, 3180, 1600, 42881, 34764, 56, 3963, 15529, 509, 12115, 11, 7788, 32761, 6375, 198, 2, 8959, 49094, 11, 47783, 2751, 21728, 5626, 40880, 5390, 3336, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 11, 198, 2, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 5357, 44521, 1268, 10913, 2751, 12529, 13, 3268, 8005, 49261, 50163, 3336, 198, 2, 37195, 20673, 6375, 27975, 38162, 9947, 367, 15173, 4877, 9348, 43031, 19146, 7473, 15529, 47666, 3955, 11, 29506, 25552, 6375, 25401, 198, 2, 43031, 25382, 11, 7655, 2767, 16879, 3268, 3537, 40282, 3963, 27342, 10659, 11, 309, 9863, 6375, 25401, 54, 24352, 11, 5923, 1797, 2751, 16034, 11, 198, 2, 16289, 3963, 6375, 3268, 7102, 45, 24565, 13315, 3336, 47466, 6375, 3336, 23210, 6375, 25401, 5550, 1847, 20754, 3268, 3336, 198, 2, 47466, 13, 628, 198, 11748, 19720, 198, 11748, 4818, 8079, 198, 198, 11748, 1976, 268, 5799, 198, 6738, 1976, 268, 5799, 13, 8692, 13, 69, 9548, 1330, 19239, 355, 7308, 22810, 198, 6738, 1976, 268, 5799, 13, 23928, 13, 76, 11463, 1330, 11102, 44, 11463, 198, 6738, 1976, 268, 5799, 13, 18417, 1330, 43689, 12982, 198 ]
3.761905
357
from scrapy import signals from scrapy.exceptions import NotConfigured from scrapy.utils.misc import load_object from twisted.internet.task import LoopingCall from spidermon import MonitorSuite from spidermon.contrib.scrapy.runners import SpiderMonitorRunner from spidermon.python import factory from spidermon.python.monitors import ExpressionsMonitor from spidermon.utils.field_coverage import calculate_field_coverage
[ 6738, 15881, 88, 1330, 10425, 198, 6738, 15881, 88, 13, 1069, 11755, 1330, 1892, 16934, 1522, 198, 6738, 15881, 88, 13, 26791, 13, 44374, 1330, 3440, 62, 15252, 198, 6738, 19074, 13, 37675, 13, 35943, 1330, 6706, 15816, 14134, 198, 198, 6738, 19230, 2144, 1330, 18289, 5606, 578, 198, 6738, 19230, 2144, 13, 3642, 822, 13, 1416, 2416, 88, 13, 36740, 1330, 12648, 35479, 49493, 198, 6738, 19230, 2144, 13, 29412, 1330, 8860, 198, 6738, 19230, 2144, 13, 29412, 13, 2144, 6742, 1330, 10604, 507, 35479, 198, 6738, 19230, 2144, 13, 26791, 13, 3245, 62, 1073, 1857, 1330, 15284, 62, 3245, 62, 1073, 1857, 628 ]
4.028571
105
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). You # may not use this file except in compliance with the License. A copy of # the License is located at # # http://aws.amazon.com/apache2.0/ # # or in the "license" file accompanying this file. This file is # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. from __future__ import absolute_import import pasta from sagemaker.cli.compatibility.v2.modifiers import renamed_params from tests.unit.sagemaker.cli.compatibility.v2.modifiers.ast_converter import ast_call CREATE_MODEL_TEMPLATES = ( "sagemaker_session.create_model_from_job({})", "sess.create_model_from_job({})", ) CREATE_ENDPOINT_TEMPLATES = ( "sagemaker_session.endpoint_from_job({})", "sagemaker_session.endpoint_from_model_data({})", "sess.endpoint_from_job({})", "sess.endpoint_from_model_data({})", )
[ 2, 15069, 6186, 13, 785, 11, 3457, 13, 393, 663, 29116, 13, 1439, 6923, 33876, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 11074, 921, 198, 2, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 317, 4866, 286, 198, 2, 262, 13789, 318, 5140, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 8356, 13, 33103, 13, 785, 14, 43073, 17, 13, 15, 14, 198, 2, 198, 2, 393, 287, 262, 366, 43085, 1, 2393, 19249, 428, 2393, 13, 770, 2393, 318, 198, 2, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 198, 2, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 13789, 329, 262, 2176, 198, 2, 3303, 15030, 21627, 290, 11247, 739, 262, 13789, 13, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 198, 11748, 26296, 198, 198, 6738, 45229, 32174, 13, 44506, 13, 5589, 25901, 13, 85, 17, 13, 4666, 13350, 1330, 25121, 62, 37266, 198, 6738, 5254, 13, 20850, 13, 82, 363, 32174, 13, 44506, 13, 5589, 25901, 13, 85, 17, 13, 4666, 13350, 13, 459, 62, 1102, 332, 353, 1330, 6468, 62, 13345, 198, 198, 43387, 6158, 62, 33365, 3698, 62, 51, 3620, 6489, 29462, 796, 357, 198, 220, 220, 220, 366, 82, 363, 32174, 62, 29891, 13, 17953, 62, 19849, 62, 6738, 62, 21858, 15090, 30072, 1600, 198, 220, 220, 220, 366, 82, 408, 13, 17953, 62, 19849, 62, 6738, 62, 21858, 15090, 30072, 1600, 198, 8, 198, 198, 43387, 6158, 62, 1677, 6322, 46, 12394, 62, 51, 3620, 6489, 29462, 796, 357, 198, 220, 220, 220, 366, 82, 363, 32174, 62, 29891, 13, 437, 4122, 62, 6738, 62, 21858, 15090, 30072, 1600, 198, 220, 220, 220, 366, 82, 363, 32174, 62, 29891, 13, 437, 4122, 62, 6738, 62, 19849, 62, 7890, 15090, 30072, 1600, 198, 220, 220, 220, 366, 82, 408, 13, 437, 4122, 62, 6738, 62, 21858, 15090, 30072, 1600, 198, 220, 220, 220, 366, 82, 408, 13, 437, 4122, 62, 6738, 62, 19849, 62, 7890, 15090, 30072, 1600, 198, 8, 628, 628, 628, 628, 198 ]
3.019126
366
# -*- coding: utf-8 -*- from __future__ import absolute_import, unicode_literals from student.student_model import StudentForm, Course, Student from distutils import log from gaecookie.decorator import no_csrf from gaepermission.decorator import login_not_required from tekton.gae.middleware.json_middleware import JsonUnsecureResponse from google.appengine.ext import ndb @login_not_required @no_csrf @login_not_required @no_csrf @login_not_required @no_csrf
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 11, 28000, 1098, 62, 17201, 874, 198, 6738, 3710, 13, 50139, 62, 19849, 1330, 13613, 8479, 11, 20537, 11, 13613, 198, 6738, 1233, 26791, 1330, 2604, 198, 6738, 31986, 721, 18055, 13, 12501, 273, 1352, 1330, 645, 62, 6359, 41871, 198, 6738, 308, 28235, 3411, 13, 12501, 273, 1352, 1330, 17594, 62, 1662, 62, 35827, 198, 6738, 573, 74, 1122, 13, 25002, 13, 27171, 1574, 13, 17752, 62, 27171, 1574, 1330, 449, 1559, 3118, 22390, 31077, 198, 6738, 23645, 13, 1324, 18392, 13, 2302, 1330, 299, 9945, 628, 198, 31, 38235, 62, 1662, 62, 35827, 198, 31, 3919, 62, 6359, 41871, 198, 198, 31, 38235, 62, 1662, 62, 35827, 198, 31, 3919, 62, 6359, 41871, 198, 198, 31, 38235, 62, 1662, 62, 35827, 198, 31, 3919, 62, 6359, 41871, 198 ]
3.052632
152
import keras.layers as lyr def residual_unit(input, size, filters, downsample, kernel_initializer, bias_initializer, kernel_regularizer, bias_regularizer): """ Residual unit using pre-activation as described in: https://arxiv.org/pdf/1603.05027v2.pdf Note that we use 1x1 convolutions to transform the dimension of residuals so we can increase filters and downsample spatial dimensions. Ideally we would do zero-padding along filter axis and downsample through stride 2 or some type of pooling. However, this would require more code complexity (while reducing parameter complexity). We may implement a lambda layer doing exactly this later on. :param input: The input tensor. :param siez: The size of the convolutional filters. :param filters: The number of filters in each convolutional layer of the residual unit. :param downsample: Whether to downsample at the beginning of the layer. If so we downsample by 2 and we use 1x1 convolutions to resize the residual. :param kernel_initializer: Kernel initializer for all layers in module. :param bias_initializer: Bias initializer for all layers in module. :param kernel_regularizer: Kernel regularizer for all layers in module. :param bias_regularizer: Bias regularizer for all layers in module. :return: The output of the residual unit, which consists of the sum of the output of the previous layer and the output of the layers in the residual unit. """ strides = 2 if downsample else 1 int1 = lyr.BatchNormalization()(input) int2 = lyr.ReLU()(int1) int3 = get_convolution(filters, strides)(int2) int4 = lyr.BatchNormalization()(int3) int5 = lyr.ReLU()(int4) int6 = get_convolution(filters, 1)(int5) # If downsampling we use convolutional filters to increase filters # and reduce the size of the image. This gets dimensions to match. if downsample: res = get_convolution(filters, 2)(input) else: res = input out = lyr.Add()([res, int6]) return out
[ 11748, 41927, 292, 13, 75, 6962, 355, 47188, 628, 198, 4299, 29598, 62, 20850, 7, 15414, 11, 2546, 11, 16628, 11, 21838, 1403, 11, 9720, 62, 36733, 7509, 11, 10690, 62, 36733, 7509, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9720, 62, 16338, 7509, 11, 10690, 62, 16338, 7509, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1874, 312, 723, 4326, 1262, 662, 12, 48545, 355, 3417, 287, 25, 198, 220, 220, 220, 3740, 1378, 283, 87, 452, 13, 2398, 14, 12315, 14, 1433, 3070, 13, 28669, 1983, 85, 17, 13, 12315, 628, 220, 220, 220, 5740, 326, 356, 779, 352, 87, 16, 3063, 14191, 284, 6121, 262, 198, 220, 220, 220, 15793, 286, 29598, 82, 523, 356, 460, 2620, 16628, 198, 220, 220, 220, 290, 21838, 1403, 21739, 15225, 13, 628, 220, 220, 220, 40067, 356, 561, 466, 6632, 12, 39231, 1863, 8106, 16488, 198, 220, 220, 220, 290, 21838, 1403, 832, 33769, 362, 393, 617, 2099, 286, 5933, 278, 13, 198, 220, 220, 220, 2102, 11, 428, 561, 2421, 517, 2438, 13357, 357, 4514, 198, 220, 220, 220, 8868, 11507, 13357, 737, 775, 743, 3494, 257, 37456, 198, 220, 220, 220, 7679, 1804, 3446, 428, 1568, 319, 13, 628, 220, 220, 220, 1058, 17143, 5128, 25, 383, 5128, 11192, 273, 13, 198, 220, 220, 220, 1058, 17143, 264, 494, 89, 25, 383, 2546, 286, 262, 3063, 2122, 282, 16628, 13, 198, 220, 220, 220, 1058, 17143, 16628, 25, 383, 1271, 286, 16628, 287, 1123, 3063, 2122, 282, 7679, 286, 262, 29598, 4326, 13, 198, 220, 220, 220, 1058, 17143, 21838, 1403, 25, 10127, 284, 21838, 1403, 379, 262, 3726, 286, 262, 7679, 13, 1002, 523, 356, 21838, 1403, 416, 362, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 356, 779, 352, 87, 16, 3063, 14191, 284, 47558, 262, 29598, 13, 198, 220, 220, 220, 1058, 17143, 9720, 62, 36733, 7509, 25, 32169, 4238, 7509, 329, 477, 11685, 287, 8265, 13, 198, 220, 220, 220, 1058, 17143, 10690, 62, 36733, 7509, 25, 347, 4448, 4238, 7509, 329, 477, 11685, 287, 8265, 13, 198, 220, 220, 220, 1058, 17143, 9720, 62, 16338, 7509, 25, 32169, 3218, 7509, 329, 477, 11685, 287, 8265, 13, 198, 220, 220, 220, 1058, 17143, 10690, 62, 16338, 7509, 25, 347, 4448, 3218, 7509, 329, 477, 11685, 287, 8265, 13, 198, 220, 220, 220, 1058, 7783, 25, 383, 5072, 286, 262, 29598, 4326, 11, 543, 10874, 286, 262, 2160, 286, 262, 5072, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2180, 7679, 290, 262, 5072, 286, 262, 11685, 287, 262, 29598, 4326, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 35002, 796, 362, 611, 21838, 1403, 2073, 352, 628, 220, 220, 220, 493, 16, 796, 47188, 13, 33, 963, 26447, 1634, 3419, 7, 15414, 8, 198, 220, 220, 220, 493, 17, 796, 47188, 13, 3041, 41596, 3419, 7, 600, 16, 8, 198, 220, 220, 220, 493, 18, 796, 651, 62, 42946, 2122, 7, 10379, 1010, 11, 35002, 5769, 600, 17, 8, 198, 220, 220, 220, 493, 19, 796, 47188, 13, 33, 963, 26447, 1634, 3419, 7, 600, 18, 8, 198, 220, 220, 220, 493, 20, 796, 47188, 13, 3041, 41596, 3419, 7, 600, 19, 8, 198, 220, 220, 220, 493, 21, 796, 651, 62, 42946, 2122, 7, 10379, 1010, 11, 352, 5769, 600, 20, 8, 628, 220, 220, 220, 1303, 1002, 21838, 321, 11347, 356, 779, 3063, 2122, 282, 16628, 284, 2620, 16628, 198, 220, 220, 220, 1303, 290, 4646, 262, 2546, 286, 262, 2939, 13, 770, 3011, 15225, 284, 2872, 13, 198, 220, 220, 220, 611, 21838, 1403, 25, 198, 220, 220, 220, 220, 220, 220, 220, 581, 796, 651, 62, 42946, 2122, 7, 10379, 1010, 11, 362, 5769, 15414, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 581, 796, 5128, 628, 220, 220, 220, 503, 796, 47188, 13, 4550, 3419, 26933, 411, 11, 493, 21, 12962, 628, 220, 220, 220, 1441, 503, 198 ]
3.041727
695
""" Tests for the PyTorch NN backend. """ import torch from torch import nn import numpy as np from quantnn import set_default_backend from quantnn.qrnn import QRNN from quantnn.drnn import DRNN, _to_categorical from quantnn.mrnn import Quantiles, Density, Mean, MRNN from quantnn.models.pytorch import QuantileLoss, CrossEntropyLoss, MSELoss from quantnn.transformations import Log10 def test_quantile_loss(): """ Ensure that quantile loss corresponds to half of absolute error loss and that masking works as expected. """ set_default_backend("pytorch") loss = QuantileLoss([0.5], mask=-1e3) y_pred = torch.rand(10, 1, 10) y = torch.rand(10, 1, 10) l = loss(y_pred, y).detach().numpy() dy = (y_pred - y).detach().numpy() l_ref = 0.5 * np.mean(np.abs(dy)) assert np.isclose(l, l_ref) y_pred = torch.rand(20, 1, 10) y_pred[10:] = -2e3 y = torch.rand(20, 1, 10) y[10:] = -2e3 loss = QuantileLoss([0.5], mask=-1e3) l = loss(y_pred, y).detach().numpy() l_ref = loss(y_pred[:10], y[:10]).detach().numpy() assert np.isclose(l, l_ref) def test_cross_entropy_loss(): """ Test masking for cross entropy loss. """ set_default_backend("pytorch") y_pred = torch.rand(10, 10, 10) y = torch.ones(10, 1, 10) bins = np.linspace(0, 1, 11) y[:, 0, :] = 0.55 loss = CrossEntropyLoss(bins, mask=-1.0) ref = -y_pred[:, 5, :] + torch.log(torch.exp(y_pred).sum(1)) assert np.all(np.isclose(loss(y_pred, y).detach().numpy(), ref.mean().detach().numpy())) y[5:, :, :] = -1.0 y[:, :, 5:] = -1.0 ref = -y_pred[:5, 5, :5] + torch.log(torch.exp(y_pred[:5, :, :5]).sum(1)) assert np.all(np.isclose(loss(y_pred, y).detach().numpy(), ref.mean().detach().numpy())) def test_mse_loss(): """ Test masking for cross entropy loss. """ set_default_backend("pytorch") y_pred = torch.rand(10, 10, 10) y = torch.ones(10, 10, 10) y[:, 0, :] = 0.55 loss = MSELoss(mask=-1.0) ref = ((y_pred - y) ** 2).mean() assert np.all(np.isclose(loss(y_pred, y).detach().numpy(), ref.mean().detach().numpy())) y[5:, :, :] = -1.0 y[:, :, 5:] = -1.0 ref = ((y_pred[:5, :, :5] - y[:5, :, :5]) ** 2).mean() assert np.all(np.isclose(loss(y_pred, y).detach().numpy(), ref.mean().detach().numpy())) def test_qrnn_training_with_dataloader(): """ Ensure that training with a pytorch dataloader works. """ set_default_backend("pytorch") x = np.random.rand(1024, 16) y = np.random.rand(1024) training_data = torch.utils.data.TensorDataset(torch.tensor(x), torch.tensor(y)) training_loader = torch.utils.data.DataLoader(training_data, batch_size=128) qrnn = QRNN(np.linspace(0.05, 0.95, 10), n_inputs=x.shape[1]) qrnn.train(training_loader, n_epochs=1) def test_qrnn_training_with_dict(): """ Ensure that training with batch objects as dicts works. """ set_default_backend("pytorch") x = np.random.rand(1024, 16) y = np.random.rand(1024) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128]), "y": torch.tensor(y[i * 128: (i + 1) * 128]), } for i in range(1024 // 128) ] qrnn = QRNN(np.linspace(0.05, 0.95, 10), n_inputs=x.shape[1]) qrnn.train(batched_data, n_epochs=1) def test_qrnn_training_with_dict_and_keys(): """ Ensure that training with batch objects as dicts and provided keys argument works. """ set_default_backend("pytorch") x = np.random.rand(1024, 16) y = np.random.rand(1024) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128]), "x_2": torch.tensor(x[i * 128: (i + 1) * 128]), "y": torch.tensor(y[i * 128: (i + 1) * 128]), } for i in range(1024 // 128) ] qrnn = QRNN(np.linspace(0.05, 0.95, 10), n_inputs=x.shape[1]) qrnn.train(batched_data, n_epochs=1, keys=("x", "y")) def test_qrnn_training_metrics(): """ Ensure that training with a single target and metrics works. """ set_default_backend("pytorch") x = np.random.rand(1024, 16) y = np.random.rand(1024) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128]), "x_2": torch.tensor(x[i * 128: (i + 1) * 128]), "y": torch.tensor(y[i * 128: (i + 1) * 128]), } for i in range(1024 // 128) ] qrnn = QRNN(np.linspace(0.05, 0.95, 10), n_inputs=x.shape[1]) metrics = ["Bias", "MeanSquaredError", "CRPS"] qrnn.train(batched_data, n_epochs=1, keys=("x", "y"), metrics=metrics) def test_drnn_training_metrics(): """ Ensure that training with a single target and metrics works. """ set_default_backend("pytorch") x = np.random.rand(1024, 16) bins = np.arange(128 * 8) y = _to_categorical(np.random.rand(1024), bins) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128]), "x_2": torch.tensor(x[i * 128: (i + 1) * 128]), "y": torch.tensor(y[i * 128: (i + 1) * 128]), } for i in range(1024 // 128) ] drnn = DRNN(np.linspace(0.05, 0.95, 10), n_inputs=x.shape[1]) metrics = ["Bias", "MeanSquaredError", "CRPS"] drnn.train(batched_data, n_epochs=1, keys=("x", "y"), metrics=metrics) def test_training_multiple_outputs(): """ Ensure that training with batch objects as dicts and provided keys argument works. """ set_default_backend("pytorch") x = np.random.rand(1024, 16) y = np.random.rand(1024) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128]), "y": { "y_1": torch.tensor(y[i * 128: (i + 1) * 128]), "y_2": torch.tensor(y[i * 128: (i + 1) * 128]) } } for i in range(1024 // 128) ] model = MultipleOutputModel() qrnn = QRNN(np.linspace(0.05, 0.95, 11), model=model) qrnn.train(batched_data, n_epochs=5, keys=("x", "y")) def test_training_metrics_multi(): """ Ensure that training with batch objects as dicts and provided keys argument works. """ set_default_backend("pytorch") x = np.random.rand(2024, 16) + 1.0 y = np.sum(x, axis=-1) y += np.random.normal(size=y.size) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128]), "y": { "y_1": torch.tensor(y[i * 128: (i + 1) * 128]), "y_2": torch.tensor(y[i * 128: (i + 1) * 128] ** 2) } } for i in range(1024 // 128) ] model = MultipleOutputModel() bins = np.linspace(0, 1, 12) bins = {"y_1": bins, "y_2": bins} qrnn = DRNN(bins=bins, model=model) metrics = ["Bias", "MeanSquaredError", "CRPS", "ScatterPlot", "QuantileFunction"] qrnn.train(batched_data, validation_data=batched_data, n_epochs=5, keys=("x", "y"), metrics=metrics) def test_training_multi_mrnn(): """ Ensure that training with batch objects as dicts and provided keys argument works. """ set_default_backend("pytorch") x = np.random.rand(2024, 16) + 1.0 y = np.sum(x, axis=-1) y += np.random.normal(size=y.size) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128]).to(torch.float32), "y": { "y_1": torch.tensor(y[i * 128: (i + 1) * 128], dtype=torch.float32), "y_2": torch.tensor(y[i * 128: (i + 1) * 128] ** 2, dtype=torch.float32), "y_3": torch.tensor(y[i * 128: (i + 1) * 128] ** 2, dtype=torch.float32) } } for i in range(1024 // 128) ] model = MultipleOutputModel() bins = np.linspace(0, 1, 12) bins = {"y_1": bins, "y_2": bins} losses = { "y_1": Quantiles(np.linspace(0.05, 0.95, 10)), "y_2": Mean(), "y_3": Density(np.linspace(-2, 2, 21)) } mrnn = MRNN(losses=losses, model=model) mrnn.train(batched_data, n_epochs=1) def test_training_transformation(): """ Ensure that training in transformed space works. """ set_default_backend("pytorch") x = np.random.rand(2024, 16) + 1.0 y = np.sum(x, axis=-1) y += np.random.normal(size=y.size) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128]), "y": { "y_1": torch.tensor(y[i * 128: (i + 1) * 128]), "y_2": torch.tensor(y[i * 128: (i + 1) * 128] ** 2) } } for i in range(1024 // 128) ] model = MultipleOutputModel() transformations = { "y_1": Log10(), "y_2": None } qrnn = QRNN(np.linspace(0.05, 0.95, 11), model=model, transformation=transformations) metrics = ["Bias", "CRPS", "MeanSquaredError", "ScatterPlot", "CalibrationPlot"] qrnn.train(batched_data, validation_data=batched_data, n_epochs=5, keys=("x", "y"), metrics=metrics) def test_training_transformation_mrnn_quantiles(): """ Ensure that training in transformed space works. """ set_default_backend("pytorch") x = np.random.rand(2024, 16) + 1.0 y = np.sum(x, axis=-1) y += np.random.normal(size=y.size) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128], dtype=torch.float32), "y": { "y_1": torch.tensor(y[i * 128: (i + 1) * 128], dtype=torch.float32), "y_2": torch.tensor(y[i * 128: (i + 1) * 128] ** 2, dtype=torch.float32), "y_3": torch.tensor(y[i * 128: (i + 1) * 128] ** 2, dtype=torch.float32) } } for i in range(1024 // 128) ] model = MultipleOutputModel() transformations = { "y_1": Log10(), "y_2": Log10() } losses = { "y_1": Quantiles(np.linspace(0.05, 0.95, 10)), "y_2": Mean(), "y_3": Density(np.linspace(-2, 2, 11)) } mrnn = MRNN(losses=losses, model=model) metrics = ["Bias", "CRPS", "MeanSquaredError", "ScatterPlot", "CalibrationPlot"] mrnn.train(batched_data, validation_data=batched_data, n_epochs=5, keys=("x", "y"), metrics=metrics) def test_training_transformation_mrnn_density(): """ Ensure that training in transformed space works. """ set_default_backend("pytorch") x = np.random.rand(2024, 16) + 1.0 y = np.sum(x, axis=-1) y += np.random.normal(size=y.size) batched_data = [ { "x": torch.tensor(x[i * 128: (i + 1) * 128], dtype=torch.float32), "y": { "y_1": torch.tensor(y[i * 128: (i + 1) * 128], dtype=torch.float32), "y_2": torch.tensor(y[i * 128: (i + 1) * 128] ** 2, dtype=torch.float32) } } for i in range(1024 // 128) ] model = MultipleOutputModel() transformations = { "y_1": Log10(), "y_2": Log10() } losses = { "y_1": Density(np.linspace(0.05, 0.95, 11)), "y_2": Mean() } mrnn = MRNN(losses=losses, model=model) metrics = ["Bias", "CRPS", "MeanSquaredError", "ScatterPlot", "CalibrationPlot"] mrnn.train(batched_data, validation_data=batched_data, n_epochs=5, keys=("x", "y"), metrics=metrics) def test_qrnn_training_metrics_conv(): """ E """ set_default_backend("pytorch") x_train = np.random.rand(1024, 16, 32, 32,) y_train = np.random.rand(1024, 1, 32, 32) x_val = np.random.rand(32, 16, 32, 32,) y_val = np.random.rand(32, 1, 32, 32) training_data = torch.utils.data.TensorDataset(torch.tensor(x_train), torch.tensor(y_train)) training_loader = torch.utils.data.DataLoader(training_data, batch_size=128) validation_data = torch.utils.data.TensorDataset(torch.tensor(x_val), torch.tensor(y_val)) validation_loader = torch.utils.data.DataLoader(validation_data, batch_size=1) model = nn.Sequential( nn.Conv2d(16, 10, 1) ) qrnn = QRNN(np.linspace(0.05, 0.95, 10), model=model) metrics = ["Bias", "MeanSquaredError", "CRPS", "CalibrationPlot", "ScatterPlot"] qrnn.train(training_loader, validation_data=validation_loader, n_epochs=2, metrics=metrics, batch_size=1, mask=-1)
[ 37811, 198, 51, 3558, 329, 262, 9485, 15884, 354, 399, 45, 30203, 13, 198, 37811, 198, 11748, 28034, 198, 6738, 28034, 1330, 299, 77, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 5554, 20471, 1330, 900, 62, 12286, 62, 1891, 437, 198, 6738, 5554, 20471, 13, 80, 81, 20471, 1330, 42137, 6144, 198, 6738, 5554, 20471, 13, 7109, 20471, 1330, 10560, 6144, 11, 4808, 1462, 62, 66, 2397, 12409, 198, 6738, 5554, 20471, 13, 43395, 20471, 1330, 16972, 2915, 11, 360, 6377, 11, 22728, 11, 17242, 6144, 198, 198, 6738, 5554, 20471, 13, 27530, 13, 9078, 13165, 354, 1330, 16972, 576, 43, 793, 11, 6372, 14539, 28338, 43, 793, 11, 6579, 3698, 793, 198, 6738, 5554, 20471, 13, 35636, 602, 1330, 5972, 940, 628, 198, 4299, 1332, 62, 40972, 576, 62, 22462, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 5554, 576, 2994, 24866, 284, 2063, 286, 4112, 4049, 198, 220, 220, 220, 2994, 290, 326, 9335, 278, 2499, 355, 2938, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2994, 796, 16972, 576, 43, 793, 26933, 15, 13, 20, 4357, 9335, 10779, 16, 68, 18, 8, 628, 220, 220, 220, 331, 62, 28764, 796, 28034, 13, 25192, 7, 940, 11, 352, 11, 838, 8, 198, 220, 220, 220, 331, 796, 28034, 13, 25192, 7, 940, 11, 352, 11, 838, 8, 628, 220, 220, 220, 300, 796, 2994, 7, 88, 62, 28764, 11, 331, 737, 15255, 620, 22446, 77, 32152, 3419, 628, 220, 220, 220, 20268, 796, 357, 88, 62, 28764, 532, 331, 737, 15255, 620, 22446, 77, 32152, 3419, 198, 220, 220, 220, 300, 62, 5420, 796, 657, 13, 20, 1635, 45941, 13, 32604, 7, 37659, 13, 8937, 7, 9892, 4008, 628, 220, 220, 220, 6818, 45941, 13, 271, 19836, 7, 75, 11, 300, 62, 5420, 8, 628, 220, 220, 220, 331, 62, 28764, 796, 28034, 13, 25192, 7, 1238, 11, 352, 11, 838, 8, 198, 220, 220, 220, 331, 62, 28764, 58, 940, 47715, 796, 532, 17, 68, 18, 198, 220, 220, 220, 331, 796, 28034, 13, 25192, 7, 1238, 11, 352, 11, 838, 8, 198, 220, 220, 220, 331, 58, 940, 47715, 796, 532, 17, 68, 18, 628, 220, 220, 220, 2994, 796, 16972, 576, 43, 793, 26933, 15, 13, 20, 4357, 9335, 10779, 16, 68, 18, 8, 198, 220, 220, 220, 300, 796, 2994, 7, 88, 62, 28764, 11, 331, 737, 15255, 620, 22446, 77, 32152, 3419, 198, 220, 220, 220, 300, 62, 5420, 796, 2994, 7, 88, 62, 28764, 58, 25, 940, 4357, 331, 58, 25, 940, 35944, 15255, 620, 22446, 77, 32152, 3419, 198, 220, 220, 220, 6818, 45941, 13, 271, 19836, 7, 75, 11, 300, 62, 5420, 8, 628, 198, 4299, 1332, 62, 19692, 62, 298, 28338, 62, 22462, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6208, 9335, 278, 329, 3272, 40709, 2994, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 331, 62, 28764, 796, 28034, 13, 25192, 7, 940, 11, 838, 11, 838, 8, 198, 220, 220, 220, 331, 796, 28034, 13, 1952, 7, 940, 11, 352, 11, 838, 8, 198, 220, 220, 220, 41701, 796, 45941, 13, 21602, 10223, 7, 15, 11, 352, 11, 1367, 8, 198, 220, 220, 220, 331, 58, 45299, 657, 11, 1058, 60, 796, 657, 13, 2816, 628, 220, 220, 220, 2994, 796, 6372, 14539, 28338, 43, 793, 7, 65, 1040, 11, 9335, 10779, 16, 13, 15, 8, 198, 220, 220, 220, 1006, 796, 532, 88, 62, 28764, 58, 45299, 642, 11, 1058, 60, 1343, 28034, 13, 6404, 7, 13165, 354, 13, 11201, 7, 88, 62, 28764, 737, 16345, 7, 16, 4008, 198, 220, 220, 220, 6818, 45941, 13, 439, 7, 37659, 13, 271, 19836, 7, 22462, 7, 88, 62, 28764, 11, 331, 737, 15255, 620, 22446, 77, 32152, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 13, 32604, 22446, 15255, 620, 22446, 77, 32152, 3419, 4008, 628, 198, 220, 220, 220, 331, 58, 20, 45299, 1058, 11, 1058, 60, 796, 532, 16, 13, 15, 198, 220, 220, 220, 331, 58, 45299, 1058, 11, 642, 47715, 796, 532, 16, 13, 15, 198, 220, 220, 220, 1006, 796, 532, 88, 62, 28764, 58, 25, 20, 11, 642, 11, 1058, 20, 60, 1343, 28034, 13, 6404, 7, 13165, 354, 13, 11201, 7, 88, 62, 28764, 58, 25, 20, 11, 1058, 11, 1058, 20, 35944, 16345, 7, 16, 4008, 198, 220, 220, 220, 6818, 45941, 13, 439, 7, 37659, 13, 271, 19836, 7, 22462, 7, 88, 62, 28764, 11, 331, 737, 15255, 620, 22446, 77, 32152, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 13, 32604, 22446, 15255, 620, 22446, 77, 32152, 3419, 4008, 628, 198, 4299, 1332, 62, 76, 325, 62, 22462, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6208, 9335, 278, 329, 3272, 40709, 2994, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 331, 62, 28764, 796, 28034, 13, 25192, 7, 940, 11, 838, 11, 838, 8, 198, 220, 220, 220, 331, 796, 28034, 13, 1952, 7, 940, 11, 838, 11, 838, 8, 198, 220, 220, 220, 331, 58, 45299, 657, 11, 1058, 60, 796, 657, 13, 2816, 628, 220, 220, 220, 2994, 796, 6579, 3698, 793, 7, 27932, 10779, 16, 13, 15, 8, 198, 220, 220, 220, 1006, 796, 14808, 88, 62, 28764, 532, 331, 8, 12429, 362, 737, 32604, 3419, 198, 220, 220, 220, 6818, 45941, 13, 439, 7, 37659, 13, 271, 19836, 7, 22462, 7, 88, 62, 28764, 11, 331, 737, 15255, 620, 22446, 77, 32152, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 13, 32604, 22446, 15255, 620, 22446, 77, 32152, 3419, 4008, 628, 198, 220, 220, 220, 331, 58, 20, 45299, 1058, 11, 1058, 60, 796, 532, 16, 13, 15, 198, 220, 220, 220, 331, 58, 45299, 1058, 11, 642, 47715, 796, 532, 16, 13, 15, 198, 220, 220, 220, 1006, 796, 14808, 88, 62, 28764, 58, 25, 20, 11, 1058, 11, 1058, 20, 60, 532, 331, 58, 25, 20, 11, 1058, 11, 1058, 20, 12962, 12429, 362, 737, 32604, 3419, 198, 220, 220, 220, 6818, 45941, 13, 439, 7, 37659, 13, 271, 19836, 7, 22462, 7, 88, 62, 28764, 11, 331, 737, 15255, 620, 22446, 77, 32152, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 13, 32604, 22446, 15255, 620, 22446, 77, 32152, 3419, 4008, 628, 198, 4299, 1332, 62, 80, 81, 20471, 62, 34409, 62, 4480, 62, 67, 10254, 1170, 263, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 351, 257, 12972, 13165, 354, 4818, 282, 1170, 263, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 11, 1467, 8, 198, 220, 220, 220, 331, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 8, 628, 220, 220, 220, 3047, 62, 7890, 796, 28034, 13, 26791, 13, 7890, 13, 51, 22854, 27354, 292, 316, 7, 13165, 354, 13, 83, 22854, 7, 87, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28034, 13, 83, 22854, 7, 88, 4008, 198, 220, 220, 220, 3047, 62, 29356, 796, 28034, 13, 26791, 13, 7890, 13, 6601, 17401, 7, 34409, 62, 7890, 11, 15458, 62, 7857, 28, 12762, 8, 198, 220, 220, 220, 10662, 81, 20471, 796, 42137, 6144, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 838, 828, 299, 62, 15414, 82, 28, 87, 13, 43358, 58, 16, 12962, 628, 220, 220, 220, 10662, 81, 20471, 13, 27432, 7, 34409, 62, 29356, 11, 299, 62, 538, 5374, 82, 28, 16, 8, 628, 198, 4299, 1332, 62, 80, 81, 20471, 62, 34409, 62, 4480, 62, 11600, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 351, 15458, 5563, 355, 8633, 82, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 11, 1467, 8, 198, 220, 220, 220, 331, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 10662, 81, 20471, 796, 42137, 6144, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 838, 828, 299, 62, 15414, 82, 28, 87, 13, 43358, 58, 16, 12962, 628, 220, 220, 220, 10662, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 299, 62, 538, 5374, 82, 28, 16, 8, 628, 198, 4299, 1332, 62, 80, 81, 20471, 62, 34409, 62, 4480, 62, 11600, 62, 392, 62, 13083, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 351, 15458, 5563, 355, 8633, 82, 290, 2810, 8251, 198, 220, 220, 220, 4578, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 11, 1467, 8, 198, 220, 220, 220, 331, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 62, 17, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 10662, 81, 20471, 796, 42137, 6144, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 838, 828, 299, 62, 15414, 82, 28, 87, 13, 43358, 58, 16, 12962, 198, 220, 220, 220, 10662, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 299, 62, 538, 5374, 82, 28, 16, 11, 8251, 28, 7203, 87, 1600, 366, 88, 48774, 628, 198, 4299, 1332, 62, 80, 81, 20471, 62, 34409, 62, 4164, 10466, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 351, 257, 2060, 2496, 290, 20731, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 11, 1467, 8, 198, 220, 220, 220, 331, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 62, 17, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 10662, 81, 20471, 796, 42137, 6144, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 838, 828, 299, 62, 15414, 82, 28, 87, 13, 43358, 58, 16, 12962, 198, 220, 220, 220, 20731, 796, 14631, 33, 4448, 1600, 366, 5308, 272, 22266, 1144, 12331, 1600, 366, 9419, 3705, 8973, 198, 220, 220, 220, 10662, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 299, 62, 538, 5374, 82, 28, 16, 11, 8251, 28, 7203, 87, 1600, 366, 88, 12340, 20731, 28, 4164, 10466, 8, 198, 198, 4299, 1332, 62, 7109, 20471, 62, 34409, 62, 4164, 10466, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 351, 257, 2060, 2496, 290, 20731, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 11, 1467, 8, 198, 220, 220, 220, 41701, 796, 45941, 13, 283, 858, 7, 12762, 1635, 807, 8, 198, 220, 220, 220, 331, 796, 4808, 1462, 62, 66, 2397, 12409, 7, 37659, 13, 25120, 13, 25192, 7, 35500, 828, 41701, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 62, 17, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 1553, 20471, 796, 10560, 6144, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 838, 828, 299, 62, 15414, 82, 28, 87, 13, 43358, 58, 16, 12962, 198, 220, 220, 220, 20731, 796, 14631, 33, 4448, 1600, 366, 5308, 272, 22266, 1144, 12331, 1600, 366, 9419, 3705, 8973, 198, 220, 220, 220, 1553, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 299, 62, 538, 5374, 82, 28, 16, 11, 8251, 28, 7203, 87, 1600, 366, 88, 12340, 20731, 28, 4164, 10466, 8, 628, 198, 4299, 1332, 62, 34409, 62, 48101, 62, 22915, 82, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 351, 15458, 5563, 355, 8633, 82, 290, 2810, 8251, 198, 220, 220, 220, 4578, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 11, 1467, 8, 198, 220, 220, 220, 331, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 2746, 796, 20401, 26410, 17633, 3419, 198, 220, 220, 220, 10662, 81, 20471, 796, 42137, 6144, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 1367, 828, 2746, 28, 19849, 8, 198, 220, 220, 220, 10662, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 299, 62, 538, 5374, 82, 28, 20, 11, 8251, 28, 7203, 87, 1600, 366, 88, 48774, 628, 198, 4299, 1332, 62, 34409, 62, 4164, 10466, 62, 41684, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 351, 15458, 5563, 355, 8633, 82, 290, 2810, 8251, 198, 220, 220, 220, 4578, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 1238, 1731, 11, 1467, 8, 1343, 352, 13, 15, 198, 220, 220, 220, 331, 796, 45941, 13, 16345, 7, 87, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 331, 15853, 45941, 13, 25120, 13, 11265, 7, 7857, 28, 88, 13, 7857, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 60, 12429, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 2746, 796, 20401, 26410, 17633, 3419, 198, 220, 220, 220, 41701, 796, 45941, 13, 21602, 10223, 7, 15, 11, 352, 11, 1105, 8, 198, 220, 220, 220, 41701, 796, 19779, 88, 62, 16, 1298, 41701, 11, 366, 88, 62, 17, 1298, 41701, 92, 198, 220, 220, 220, 10662, 81, 20471, 796, 10560, 6144, 7, 65, 1040, 28, 65, 1040, 11, 2746, 28, 19849, 8, 198, 220, 220, 220, 20731, 796, 14631, 33, 4448, 1600, 366, 5308, 272, 22266, 1144, 12331, 1600, 366, 9419, 3705, 1600, 366, 3351, 1436, 43328, 1600, 366, 24915, 576, 22203, 8973, 198, 220, 220, 220, 10662, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21201, 62, 7890, 28, 8664, 1740, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 538, 5374, 82, 28, 20, 11, 8251, 28, 7203, 87, 1600, 366, 88, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20731, 28, 4164, 10466, 8, 628, 198, 4299, 1332, 62, 34409, 62, 41684, 62, 43395, 20471, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 351, 15458, 5563, 355, 8633, 82, 290, 2810, 8251, 198, 220, 220, 220, 4578, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 1238, 1731, 11, 1467, 8, 1343, 352, 13, 15, 198, 220, 220, 220, 331, 796, 45941, 13, 16345, 7, 87, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 331, 15853, 45941, 13, 25120, 13, 11265, 7, 7857, 28, 88, 13, 7857, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 35944, 1462, 7, 13165, 354, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 60, 12429, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 18, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 60, 12429, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 2746, 796, 20401, 26410, 17633, 3419, 628, 220, 220, 220, 41701, 796, 45941, 13, 21602, 10223, 7, 15, 11, 352, 11, 1105, 8, 198, 220, 220, 220, 41701, 796, 19779, 88, 62, 16, 1298, 41701, 11, 366, 88, 62, 17, 1298, 41701, 92, 628, 220, 220, 220, 9089, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 16972, 2915, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 838, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 22728, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 18, 1298, 360, 6377, 7, 37659, 13, 21602, 10223, 32590, 17, 11, 362, 11, 2310, 4008, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 285, 81, 20471, 796, 17242, 6144, 7, 22462, 274, 28, 22462, 274, 11, 2746, 28, 19849, 8, 198, 220, 220, 220, 285, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 299, 62, 538, 5374, 82, 28, 16, 8, 628, 198, 4299, 1332, 62, 34409, 62, 7645, 1161, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 287, 14434, 2272, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 1238, 1731, 11, 1467, 8, 1343, 352, 13, 15, 198, 220, 220, 220, 331, 796, 45941, 13, 16345, 7, 87, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 331, 15853, 45941, 13, 25120, 13, 11265, 7, 7857, 28, 88, 13, 7857, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 60, 12429, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 2746, 796, 20401, 26410, 17633, 3419, 198, 220, 220, 220, 38226, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 5972, 940, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 6045, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 10662, 81, 20471, 796, 42137, 6144, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 1367, 828, 2746, 28, 19849, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13389, 28, 35636, 602, 8, 198, 220, 220, 220, 20731, 796, 14631, 33, 4448, 1600, 366, 9419, 3705, 1600, 366, 5308, 272, 22266, 1144, 12331, 1600, 366, 3351, 1436, 43328, 1600, 366, 9771, 571, 1358, 43328, 8973, 198, 220, 220, 220, 10662, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21201, 62, 7890, 28, 8664, 1740, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 538, 5374, 82, 28, 20, 11, 8251, 28, 7203, 87, 1600, 366, 88, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20731, 28, 4164, 10466, 8, 628, 198, 4299, 1332, 62, 34409, 62, 7645, 1161, 62, 43395, 20471, 62, 40972, 2915, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 287, 14434, 2272, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 1238, 1731, 11, 1467, 8, 1343, 352, 13, 15, 198, 220, 220, 220, 331, 796, 45941, 13, 16345, 7, 87, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 331, 15853, 45941, 13, 25120, 13, 11265, 7, 7857, 28, 88, 13, 7857, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 60, 12429, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 18, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 60, 12429, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 2746, 796, 20401, 26410, 17633, 3419, 198, 220, 220, 220, 38226, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 5972, 940, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 5972, 940, 3419, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 9089, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 16972, 2915, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 838, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 22728, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 18, 1298, 360, 6377, 7, 37659, 13, 21602, 10223, 32590, 17, 11, 362, 11, 1367, 4008, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 285, 81, 20471, 796, 17242, 6144, 7, 22462, 274, 28, 22462, 274, 11, 2746, 28, 19849, 8, 198, 220, 220, 220, 20731, 796, 14631, 33, 4448, 1600, 366, 9419, 3705, 1600, 366, 5308, 272, 22266, 1144, 12331, 1600, 366, 3351, 1436, 43328, 1600, 366, 9771, 571, 1358, 43328, 8973, 198, 220, 220, 220, 285, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21201, 62, 7890, 28, 8664, 1740, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 538, 5374, 82, 28, 20, 11, 8251, 28, 7203, 87, 1600, 366, 88, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20731, 28, 4164, 10466, 8, 628, 198, 4299, 1332, 62, 34409, 62, 7645, 1161, 62, 43395, 20471, 62, 43337, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48987, 326, 3047, 287, 14434, 2272, 2499, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 796, 45941, 13, 25120, 13, 25192, 7, 1238, 1731, 11, 1467, 8, 1343, 352, 13, 15, 198, 220, 220, 220, 331, 796, 45941, 13, 16345, 7, 87, 11, 16488, 10779, 16, 8, 198, 220, 220, 220, 331, 15853, 45941, 13, 25120, 13, 11265, 7, 7857, 28, 88, 13, 7857, 8, 628, 220, 220, 220, 7365, 1740, 62, 7890, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 87, 1298, 28034, 13, 83, 22854, 7, 87, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 28034, 13, 83, 22854, 7, 88, 58, 72, 1635, 13108, 25, 357, 72, 1343, 352, 8, 1635, 13108, 60, 12429, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 35500, 3373, 13108, 8, 198, 220, 220, 220, 2361, 628, 220, 220, 220, 2746, 796, 20401, 26410, 17633, 3419, 198, 220, 220, 220, 38226, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 5972, 940, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 5972, 940, 3419, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 9089, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 16, 1298, 360, 6377, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 1367, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 366, 88, 62, 17, 1298, 22728, 3419, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 285, 81, 20471, 796, 17242, 6144, 7, 22462, 274, 28, 22462, 274, 11, 2746, 28, 19849, 8, 198, 220, 220, 220, 20731, 796, 14631, 33, 4448, 1600, 366, 9419, 3705, 1600, 366, 5308, 272, 22266, 1144, 12331, 1600, 366, 3351, 1436, 43328, 1600, 366, 9771, 571, 1358, 43328, 8973, 198, 220, 220, 220, 285, 81, 20471, 13, 27432, 7, 8664, 1740, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21201, 62, 7890, 28, 8664, 1740, 62, 7890, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 538, 5374, 82, 28, 20, 11, 8251, 28, 7203, 87, 1600, 366, 88, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20731, 28, 4164, 10466, 8, 628, 198, 4299, 1332, 62, 80, 81, 20471, 62, 34409, 62, 4164, 10466, 62, 42946, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 900, 62, 12286, 62, 1891, 437, 7203, 9078, 13165, 354, 4943, 628, 220, 220, 220, 2124, 62, 27432, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 11, 1467, 11, 3933, 11, 3933, 35751, 198, 220, 220, 220, 331, 62, 27432, 796, 45941, 13, 25120, 13, 25192, 7, 35500, 11, 352, 11, 3933, 11, 3933, 8, 198, 220, 220, 220, 2124, 62, 2100, 796, 45941, 13, 25120, 13, 25192, 7, 2624, 11, 1467, 11, 3933, 11, 3933, 35751, 198, 220, 220, 220, 331, 62, 2100, 796, 45941, 13, 25120, 13, 25192, 7, 2624, 11, 352, 11, 3933, 11, 3933, 8, 628, 220, 220, 220, 3047, 62, 7890, 796, 28034, 13, 26791, 13, 7890, 13, 51, 22854, 27354, 292, 316, 7, 13165, 354, 13, 83, 22854, 7, 87, 62, 27432, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28034, 13, 83, 22854, 7, 88, 62, 27432, 4008, 198, 220, 220, 220, 3047, 62, 29356, 796, 28034, 13, 26791, 13, 7890, 13, 6601, 17401, 7, 34409, 62, 7890, 11, 15458, 62, 7857, 28, 12762, 8, 198, 220, 220, 220, 21201, 62, 7890, 796, 28034, 13, 26791, 13, 7890, 13, 51, 22854, 27354, 292, 316, 7, 13165, 354, 13, 83, 22854, 7, 87, 62, 2100, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28034, 13, 83, 22854, 7, 88, 62, 2100, 4008, 198, 220, 220, 220, 21201, 62, 29356, 796, 28034, 13, 26791, 13, 7890, 13, 6601, 17401, 7, 12102, 341, 62, 7890, 11, 15458, 62, 7857, 28, 16, 8, 628, 220, 220, 220, 2746, 796, 299, 77, 13, 44015, 1843, 7, 198, 220, 220, 220, 220, 220, 220, 220, 299, 77, 13, 3103, 85, 17, 67, 7, 1433, 11, 838, 11, 352, 8, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 10662, 81, 20471, 796, 42137, 6144, 7, 37659, 13, 21602, 10223, 7, 15, 13, 2713, 11, 657, 13, 3865, 11, 838, 828, 2746, 28, 19849, 8, 628, 220, 220, 220, 20731, 796, 14631, 33, 4448, 1600, 366, 5308, 272, 22266, 1144, 12331, 1600, 366, 9419, 3705, 1600, 366, 9771, 571, 1358, 43328, 1600, 366, 3351, 1436, 43328, 8973, 198, 220, 220, 220, 10662, 81, 20471, 13, 27432, 7, 34409, 62, 29356, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21201, 62, 7890, 28, 12102, 341, 62, 29356, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 62, 538, 5374, 82, 28, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20731, 28, 4164, 10466, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15458, 62, 7857, 28, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9335, 10779, 16, 8, 198 ]
1.925401
6,850
/home/runner/.cache/pip/pool/c0/a1/92/92cb988e38603986bf8c3eae95a2a93d7694ccf8b2cdf44d353e033a2a
[ 14, 11195, 14, 16737, 11757, 23870, 14, 79, 541, 14, 7742, 14, 66, 15, 14, 64, 16, 14, 5892, 14, 5892, 21101, 24, 3459, 68, 2548, 1899, 2670, 4521, 19881, 23, 66, 18, 68, 3609, 3865, 64, 17, 64, 6052, 67, 22, 45214, 535, 69, 23, 65, 17, 66, 7568, 2598, 67, 33319, 68, 44427, 64, 17, 64 ]
1.655172
58
from django.utils import timezone import pytz from core.models import RecordRelationship, Project, ProjectDesign, Work, WorkSprint, Notification from django.conf import settings
[ 6738, 42625, 14208, 13, 26791, 1330, 640, 11340, 198, 11748, 12972, 22877, 198, 198, 6738, 4755, 13, 27530, 1330, 13266, 47117, 1056, 11, 4935, 11, 4935, 23067, 11, 5521, 11, 5521, 50, 4798, 11, 42808, 198, 6738, 42625, 14208, 13, 10414, 1330, 6460, 198 ]
4.068182
44
import m5 from m5.objects import * # Create a system system = System() print(system) # Setup a clock domain system.clk_domain=SrcClockDomain() system.clk_domain.clock = '1GHz' system.clk_domain.voltage_domain=VoltageDomain() # Setup memory mode system.mem_mode='timing' system.mem_ranges= [AddrRange('512MB')] # Create a CPU system.cpu= TimingSimpleCPU() # Create a memory bus system.membus = SystemXBar() # Connect CPU to membus system.cpu.icache_port=system.membus.slave system.cpu.dcache_port=system.membus.slave # Create Interrupt Controller system.cpu.createInterruptController() system.system_port=system.membus.slave # create a memory controller system.mem_ctrl = DDR3_1600_8x8() system.mem_ctrl.range=system.mem_ranges[0] system.mem_ctrl.port=system.membus.master # create a process process =Process() process.cmd=['tests/test-progs/hello/bin/riscv/linux/hello'] system.cpu.workload= process system.cpu.createThreads() root=Root(full_system=False, system=system) m5.instantiate() print("Beginning Simulation...") exit_event=m5.simulate() print("Exiting @ tick {} because {}".format(m5.curTick(),exit_event.getCause()))
[ 11748, 285, 20, 198, 6738, 285, 20, 13, 48205, 1330, 1635, 198, 198, 2, 13610, 257, 1080, 198, 10057, 796, 4482, 3419, 198, 4798, 7, 10057, 8, 198, 198, 2, 31122, 257, 8801, 7386, 198, 10057, 13, 565, 74, 62, 27830, 28, 50, 6015, 44758, 43961, 3419, 198, 10057, 13, 565, 74, 62, 27830, 13, 15750, 796, 705, 16, 23741, 6, 198, 10057, 13, 565, 74, 62, 27830, 13, 37764, 496, 62, 27830, 28, 53, 5978, 496, 43961, 3419, 198, 198, 2, 31122, 4088, 4235, 198, 10057, 13, 11883, 62, 14171, 11639, 16514, 278, 6, 198, 10057, 13, 11883, 62, 81, 6231, 28, 685, 4550, 81, 17257, 10786, 25836, 10744, 11537, 60, 198, 198, 2, 13610, 257, 9135, 198, 10057, 13, 36166, 28, 5045, 278, 26437, 36037, 3419, 198, 198, 2, 13610, 257, 4088, 1323, 198, 10057, 13, 11883, 10885, 796, 4482, 55, 10374, 3419, 198, 198, 2, 8113, 9135, 284, 1066, 10885, 198, 10057, 13, 36166, 13, 291, 4891, 62, 634, 28, 10057, 13, 11883, 10885, 13, 36341, 198, 10057, 13, 36166, 13, 17896, 4891, 62, 634, 28, 10057, 13, 11883, 10885, 13, 36341, 220, 198, 198, 2, 13610, 4225, 3622, 22741, 198, 10057, 13, 36166, 13, 17953, 9492, 3622, 22130, 3419, 198, 198, 10057, 13, 10057, 62, 634, 28, 10057, 13, 11883, 10885, 13, 36341, 198, 198, 2, 2251, 257, 4088, 10444, 198, 10057, 13, 11883, 62, 44755, 796, 30085, 18, 62, 36150, 62, 23, 87, 23, 3419, 198, 10057, 13, 11883, 62, 44755, 13, 9521, 28, 10057, 13, 11883, 62, 81, 6231, 58, 15, 60, 198, 10057, 13, 11883, 62, 44755, 13, 634, 28, 10057, 13, 11883, 10885, 13, 9866, 198, 198, 2, 2251, 257, 1429, 198, 14681, 796, 18709, 3419, 220, 198, 14681, 13, 28758, 28, 17816, 41989, 14, 9288, 12, 1676, 14542, 14, 31373, 14, 8800, 14, 81, 2304, 85, 14, 23289, 14, 31373, 20520, 198, 10057, 13, 36166, 13, 1818, 2220, 28, 1429, 220, 198, 10057, 13, 36166, 13, 17953, 16818, 82, 3419, 198, 198, 15763, 28, 30016, 7, 12853, 62, 10057, 28, 25101, 11, 1080, 28, 10057, 8, 198, 76, 20, 13, 8625, 415, 9386, 3419, 198, 198, 4798, 7203, 45198, 41798, 9313, 8, 198, 37023, 62, 15596, 28, 76, 20, 13, 14323, 5039, 3419, 198, 198, 4798, 7203, 3109, 1780, 2488, 4378, 23884, 780, 23884, 1911, 18982, 7, 76, 20, 13, 22019, 51, 624, 22784, 37023, 62, 15596, 13, 1136, 42323, 3419, 4008 ]
2.84788
401
# -*- coding: UTF-8 -*- from flask_sqlalchemy import SQLAlchemy import sqlalchemy from sqlalchemy.ext.declarative import declared_attr from app import bms_app from app.utils import password_encrypt, password_check __author__ = 'lpe234' db = SQLAlchemy(bms_app)
[ 2, 532, 9, 12, 19617, 25, 41002, 12, 23, 532, 9, 12, 198, 198, 6738, 42903, 62, 25410, 282, 26599, 1330, 16363, 2348, 26599, 198, 11748, 44161, 282, 26599, 198, 6738, 44161, 282, 26599, 13, 2302, 13, 32446, 283, 876, 1330, 6875, 62, 35226, 198, 198, 6738, 598, 1330, 275, 907, 62, 1324, 198, 6738, 598, 13, 26791, 1330, 9206, 62, 12685, 6012, 11, 9206, 62, 9122, 628, 198, 834, 9800, 834, 796, 705, 75, 431, 24409, 6, 628, 198, 9945, 796, 16363, 2348, 26599, 7, 65, 907, 62, 1324, 8, 628, 628, 628, 628, 628, 628, 198 ]
2.846939
98
from ...plugins.sqliteregistry import SqliteRegistry
[ 6738, 2644, 37390, 13, 25410, 270, 567, 70, 4592, 1330, 311, 13976, 578, 8081, 4592, 628 ]
3.375
16
import numpy as np w1 = input("W1 :") w2 = input("W2 :") b = input("b :") y=w1*0.4+w2*0.6+b yy=1/(1+np.exp(-y)) print(y) print(yy)
[ 11748, 299, 32152, 355, 45941, 198, 86, 16, 796, 5128, 7203, 54, 16, 1058, 4943, 198, 86, 17, 796, 5128, 7203, 54, 17, 1058, 4943, 198, 65, 796, 5128, 7203, 65, 1058, 4943, 198, 88, 28, 86, 16, 9, 15, 13, 19, 10, 86, 17, 9, 15, 13, 21, 10, 65, 198, 22556, 28, 16, 29006, 16, 10, 37659, 13, 11201, 32590, 88, 4008, 198, 4798, 7, 88, 8, 198, 4798, 7, 22556, 8 ]
1.756757
74
#!/usr/bin/env python # original code by Thatte, Anand, Sahlmann, Greenbaum # utility routines and constants for AMI image simulations reorganized by Sahlmann, Anand 3/2016 # [email protected] 18 Mar 2016 """ """ import numpy as np import sys, time from astropy.io import fits import os # global variables global readnoise,background,darkcurrent cdsreadnoise = 21.0 # CDS read noise (e-) readnoise = cdsreadnoise/np.sqrt(2) # read noise for one frame # 0.012 e-/sec value used until 09 2016 darkcurrent = 0.04 # ~0.12 e-/sec 09/2016, 10x earlier, still 6e- in max 800 frames # Kevin Volk via Deepashri Thatte background = 0.462*0.15*1.75 # 0.125 e-/sec ips_size = 256 # holdover from before AMISUB became 80x80 flat_sigma = 0.001 # flat field error pixscl = 0.0656 # arcsec/pixel WebbPSF 0.064 - DL 0.065 tframe = 0.0745 # frame time for NISRAPID on AMI SUB80 amisubfov = 80 SAT_E = 72.0e3 # Fullerton December 20, 2016 e-mail. Also consistent with STScI JWST ETC #ither_stddev_as = 0.0015 # 15 mas placement error one-axis #itter_stddev_as = 0.007 # 7 mas level 2 reqt on JWST, arcsec, #ither_stddev_as = 0.0015 # Anand Alex detectionlimits #itter_stddev_as = 0.0001 # Anand Alex centering Also for Stefenie test reductiondetectionlimits dither_stddev_as = 0.005 # Goudfrooij Sep 2 2016 email to anand@ - good to SAMs of 30 arcsec jitter_stddev_as = 0.004 # NEA ~1mas jitter FGS, plus other slower error, Kevin 2016.09.16 # Post-flight determination required for more realism in simulations... # In practise expert reduction should do rapid centroiding # (as in Holfeltz et al. TRs) through all integrations to # determine the level of jitter, and calculate CPs in reasonable # subsets of these integrations. # Anand's email 2016-02-10 orginally from Volk F277W, F380M, F430M, F480M = ("F277W", "F380M", "F430M", "F480M") ZP = {F277W: 26.14, F380M: 23.75, F430M: 23.32, F480M: 23.19} # replace w/Neil R.'s values consistent w/ STScI debug_utils = False # debug_utils = True def get_flatfield(detshape,pyamiDataDir,uniform=False,random_seed=None, overwrite=0): """ Read in a flat field that possesses the requested flat field error standard deviation, or if the file does not exist, create, write, and return it """ # # J. Sahlmann 2017-02-02: bug here, pyamiDataDir does not always exist because it is derived from the location where the driver script is stored/run # pathname = os.path.dirname(sys.argv[0]) # fullPath = os.path.abspath(pathname) # pyamiDataDir = fullPath + '/pyami/etc/NIRISSami_apt_calcPSF/' ffe_file = os.path.join(pyamiDataDir ,'flat_%dx%d_sigma_%.4f.fits'%(detshape[0],detshape[1],flat_sigma)) if (os.access(ffe_file, os.F_OK) == True) & (overwrite==0): #print "\tflat field file %s" % ffe_file pflat = fits.getdata(ffe_file) else: if uniform: pflat = np.ones(detshape) else: if random_seed is not None: np.random.seed(random_seed) pflat = np.random.normal(1.0, flat_sigma, size=detshape) print("creating flat field and saving it to file %s" % ffe_file) (year, month, day, hour, minute, second, weekday, DOY, DST) = time.gmtime() fitsobj = fits.HDUList() hdu = fits.PrimaryHDU() hdu.header['DATE'] = '%4d-%02d-%02dT%02d:%02d:%02d' % \ (year, month, day, hour, minute, second), 'Date of calculation' hdu.header['AUTHOR'] = '%s@%s' % (os.getenv('USER'), os.getenv('HOST')), \ 'username@host for calculation' hdu.data = pflat fitsobj.append( hdu ) fitsobj.writeto(ffe_file, clobber=True) fitsobj.close() return pflat # fast rebin Klaus Pontooppidan found on the web # legacy slow rebin rewritten to use fast rebin def jitter(no_of_jitters, osample, random_seed=None): """ returns in oversampled pixel units. no_of_jitters is known as nint in STScI terminology """ mean_j, sigma_j = 0, jitter_stddev_as * osample / pixscl if random_seed is not None: np.random.seed(random_seed) xjit = np.random.normal(mean_j,sigma_j,no_of_jitters) xjit_r = [int(round(n, 0)) for n in xjit] if random_seed is not None: np.random.seed(random_seed+1); # independent noise in X and Y, thus modify random_seed in a controlled way yjit = np.random.normal(mean_j,sigma_j,no_of_jitters) yjit_r = [int(round(n, 0)) for n in yjit] return xjit_r, yjit_r def create_ramp(countspersec, _fov, ngroups, utr_,verbose=0, include_noise=1,random_seed=None): """ input counts per second output: ramp has ngroups+1 slices, units are detected e- + noise create_ramp() called nint number of times to provide nint ramps Noise contributions can be switched off by setting include_noise = 0 """ global readnoise,background,darkcurrent # JSA 2017-02-22: investigate effects of various noise contributions if include_noise == -1: # zero all noises except photon noise background = 0. readnoise = 1.e-16 darkcurrent = 0. include_noise = 1 if utr_ : nreadouts = ngroups + 1 timestep = tframe else: if ngroups > 1: nreadouts = 3 timestep = (ngroups-1) * tframe else: nreadouts = 2 readnoise_cube = np.zeros((nreadouts,int(_fov),int(_fov)), np.float64) background_cube = np.zeros((nreadouts,int(_fov),int(_fov)), np.float64) dark_cube = np.zeros((nreadouts,int(_fov),int(_fov)), np.float64) poisson_noise_cube = np.zeros((nreadouts,int(_fov),int(_fov)), np.float64) cumulative_poisson_noise_cube = np.zeros((nreadouts,int(_fov),int(_fov)), np.float64) ramp = np.zeros((nreadouts,int(_fov),int(_fov)), np.float64) if (debug_utils) | (verbose): print("\tcreate_ramp(): ngroups", ngroups, end=' ') print(" countspersec.sum() = %.2e"%countspersec.sum(), end=' ') print(" countsperframe = %.2e"%(countspersec.sum()*tframe)) #calculate poisson noise for single reads, then calculate poisson noise for reads up-the-ramp for iread in range(nreadouts): if iread == 0: if include_noise == 0: ramp[iread,:,:] = np.zeros( (int(_fov),int(_fov)) ) else: if random_seed is not None: np.random.seed(random_seed+111) readnoise_cube[iread,:,:] = np.random.normal(0, readnoise, (int(_fov),int(_fov))) ramp[iread,:,:] = readnoise_cube[iread,:,:].mean() if (debug_utils) | (verbose): print("\t\tpoissoncube slice %2d: %.2e"%(iread, poisson_noise_cube[iread,:,:].sum()), end=' ') print("poissoncube total %.2e"%poisson_noise_cube.sum()) elif iread == 1: photonexpectation = countspersec * tframe photonexpectation[photonexpectation <0.0] = 0.0 # catch roundoff to e-13 if include_noise == 0: ramp[iread,:,:] = photonexpectation else: if random_seed is not None: # the noise in different frames should be independent, therefore modify random_seed between frames and between poisson and gaussian noise np.random.seed(random_seed+iread+111) poisson_noise_cube[iread,:,:] = np.random.poisson(photonexpectation) # expose for tframe background_cube[iread,:,:] = background * tframe dark_cube[iread,:,:] = darkcurrent * tframe if random_seed is not None: np.random.seed(random_seed+iread+111+10) readnoise_cube[iread,:,:] = np.random.normal(0, readnoise, (int(_fov),int(_fov))) ramp[iread,:,:] = ramp[iread-1,:,:] + \ poisson_noise_cube[iread,:,:] + \ dark_cube[iread,:,:] + \ readnoise_cube[iread,:,:] if (debug_utils) | (verbose): print("\t\tpoissoncube slice %2d: %.2e"%(iread, poisson_noise_cube[iread,:,:].sum()), end=' ') print("poissoncube total %.2e"%poisson_noise_cube.sum()) else: photonexpectation = countspersec * timestep photonexpectation[photonexpectation <0.0] = 0.0 if include_noise == 0: ramp[iread,:,:] = photonexpectation else: if random_seed is not None: np.random.seed(random_seed + iread+111) poisson_noise_cube[iread,:,:] = np.random.poisson(photonexpectation) # expose for tframe or (ng-1)*tframe background_cube[iread,:,:] = background * timestep dark_cube[iread,:,:] = darkcurrent * timestep if random_seed is not None: np.random.seed(random_seed + iread+111+10) readnoise_cube[iread,:,:] = np.random.normal(0, readnoise, (int(_fov),int(_fov))) ramp[iread,:,:] = ramp[iread-1,:,:] + \ poisson_noise_cube[iread,:,:] + \ dark_cube[iread,:,:] + \ readnoise_cube[iread,:,:] if (debug_utils) | (verbose): print("\t\tpoissoncube slice %2d: %.2e"%(iread, poisson_noise_cube[iread,:,:].sum()), end=' ') print("poissoncube total %.2e"%poisson_noise_cube.sum()) if (debug_utils) | (verbose): s = "%.1e" print("\tpoissoncube total = %.1e" % poisson_noise_cube.sum()) # requested nphot / nint print("\tramp last slice total = %.1e" % ramp[-1,:,:].sum()) # approx same as above #print "\tramp last slice peak = %.1e" % ramp[-1,:,:].max() #should be ~sat_e typically for i in range(ramp.shape[0]): print("\t", s%ramp[i,:,:].sum(), ":", s%ramp[i,:,:].max(), end=' ') print("\n\tcreate_ramp: end") return ramp def create_integration(ramp): #???????? """ input: ramp in e-, including 'zero read', ngroups+1 2D slices output: data in detected e- """ if debug_utils: s = "%.1e" for i in range(ramp.shape[0]): print(" ", s%ramp[i,:,:].sum(), end=' ') print("\n\tcreate_integration: end") if ramp.shape[0] == 2: data = ramp[1,:,:] # no subtraction on readnoise+DC - ramp[0,:,:] if ramp.shape[0] > 2: data = ramp[-1,:,:] - ramp[1,:,:] return data # old, now ...unused.. 09/2016 """ def find_slope(utr, ngroups, fov): xval = np.zeros((ngroups+1,int(fov),int(fov)), np.float64) slope = np.zeros((int(fov),int(fov)), np.float64) for i in range(ngroups+1): xval[i]=i xm=float(ngroups)/2.0 slope = (np.sum(xval*utr,axis=0)-xm*np.sum(utr,axis=0))/(np.sum(xval**2,axis=0)-ngroups*xm**2) return slope """ #origin is at bottom left of the image. (ds9?) #padding of 1 for IPS to avoid division by 0 when divided by IPS flat.
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 2656, 2438, 416, 1320, 660, 11, 1052, 392, 11, 311, 15668, 9038, 11, 3469, 24738, 198, 2, 10361, 31878, 290, 38491, 329, 3001, 40, 2939, 27785, 302, 30280, 416, 311, 15668, 9038, 11, 1052, 392, 513, 14, 5304, 198, 2, 281, 392, 31, 6448, 979, 13, 15532, 1248, 1526, 1584, 198, 198, 37811, 198, 37811, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 25064, 11, 640, 198, 6738, 6468, 28338, 13, 952, 1330, 11414, 198, 11748, 28686, 198, 198, 2, 3298, 9633, 198, 20541, 1100, 3919, 786, 11, 25249, 11, 21953, 14421, 628, 198, 66, 9310, 961, 3919, 786, 796, 2310, 13, 15, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 327, 5258, 1100, 7838, 357, 68, 25106, 198, 961, 3919, 786, 796, 269, 9310, 961, 3919, 786, 14, 37659, 13, 31166, 17034, 7, 17, 8, 220, 220, 220, 220, 220, 1303, 1100, 7838, 329, 530, 5739, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 657, 13, 30206, 304, 12, 14, 2363, 220, 1988, 973, 1566, 7769, 1584, 198, 21953, 14421, 796, 657, 13, 3023, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5299, 15, 13, 1065, 304, 12, 14, 2363, 7769, 14, 5304, 11, 838, 87, 2961, 11, 991, 718, 68, 12, 287, 3509, 10460, 13431, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7939, 4709, 74, 2884, 10766, 1077, 380, 1320, 660, 198, 25249, 796, 657, 13, 39997, 9, 15, 13, 1314, 9, 16, 13, 2425, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 657, 13, 11623, 304, 12, 14, 2363, 220, 198, 2419, 62, 7857, 796, 17759, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1745, 2502, 422, 878, 3001, 1797, 10526, 2627, 4019, 87, 1795, 198, 38568, 62, 82, 13495, 796, 657, 13, 8298, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6228, 2214, 4049, 198, 79, 844, 38528, 796, 657, 13, 15, 37466, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10389, 2363, 14, 32515, 25130, 3705, 37, 657, 13, 15, 2414, 532, 23641, 657, 13, 15, 2996, 198, 83, 14535, 796, 657, 13, 2998, 2231, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5739, 640, 329, 399, 1797, 49, 2969, 2389, 319, 3001, 40, 28932, 1795, 198, 321, 271, 549, 69, 709, 796, 4019, 198, 50, 1404, 62, 36, 796, 7724, 13, 15, 68, 18, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6462, 29111, 3426, 1160, 11, 1584, 304, 12, 4529, 13, 4418, 6414, 351, 3563, 3351, 40, 449, 54, 2257, 412, 4825, 628, 198, 2, 1555, 62, 301, 1860, 1990, 62, 292, 796, 657, 13, 405, 1314, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1315, 12422, 13127, 4049, 530, 12, 22704, 198, 2, 1967, 62, 301, 1860, 1990, 62, 292, 796, 657, 13, 25816, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 767, 12422, 1241, 362, 302, 39568, 319, 449, 54, 2257, 11, 10389, 2363, 11, 198, 198, 2, 1555, 62, 301, 1860, 1990, 62, 292, 796, 657, 13, 405, 1314, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1052, 392, 4422, 13326, 49196, 198, 2, 1967, 62, 301, 1860, 1990, 62, 292, 796, 657, 13, 18005, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1052, 392, 4422, 1247, 1586, 220, 4418, 329, 22350, 268, 494, 1332, 7741, 15255, 3213, 49196, 198, 198, 67, 1555, 62, 301, 1860, 1990, 62, 292, 796, 657, 13, 22544, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 402, 2778, 69, 42407, 2926, 8621, 362, 1584, 3053, 284, 281, 392, 31, 532, 922, 284, 28844, 82, 286, 1542, 10389, 2363, 198, 73, 1967, 62, 301, 1860, 1990, 62, 292, 796, 657, 13, 22914, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10635, 32, 5299, 16, 5356, 474, 1967, 376, 14313, 11, 5556, 584, 13611, 4049, 11, 7939, 1584, 13, 2931, 13, 1433, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2947, 12, 22560, 12123, 2672, 329, 517, 30787, 287, 27785, 986, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 554, 44811, 5887, 7741, 815, 466, 5801, 1247, 305, 2530, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 357, 292, 287, 367, 4024, 2120, 89, 2123, 435, 13, 7579, 82, 8, 832, 477, 4132, 9143, 284, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5004, 262, 1241, 286, 474, 1967, 11, 290, 15284, 327, 12016, 287, 6397, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6352, 1039, 286, 777, 4132, 9143, 13, 220, 220, 198, 198, 2, 1052, 392, 338, 3053, 1584, 12, 2999, 12, 940, 393, 1655, 453, 422, 4709, 74, 198, 37, 27019, 54, 11, 376, 23734, 44, 11, 376, 31794, 44, 11, 376, 22148, 44, 796, 5855, 37, 27019, 54, 1600, 366, 37, 23734, 44, 1600, 366, 37, 31794, 44, 1600, 366, 37, 22148, 44, 4943, 198, 57, 47, 796, 1391, 37, 27019, 54, 25, 2608, 13, 1415, 11, 220, 220, 198, 220, 220, 220, 220, 220, 376, 23734, 44, 25, 2242, 13, 2425, 11, 198, 220, 220, 220, 220, 220, 376, 31794, 44, 25, 2242, 13, 2624, 11, 198, 220, 220, 220, 220, 220, 376, 22148, 44, 25, 2242, 13, 1129, 92, 1303, 6330, 266, 14, 29354, 371, 2637, 82, 3815, 6414, 266, 14, 3563, 3351, 40, 220, 628, 198, 24442, 62, 26791, 796, 10352, 198, 2, 14257, 62, 26791, 796, 6407, 198, 198, 4299, 651, 62, 38568, 3245, 7, 67, 1039, 71, 1758, 11, 9078, 6277, 6601, 35277, 11, 403, 6933, 28, 25101, 11, 25120, 62, 28826, 28, 14202, 11, 49312, 28, 15, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4149, 287, 257, 6228, 2214, 326, 22194, 262, 9167, 6228, 2214, 4049, 3210, 28833, 11, 220, 198, 220, 220, 220, 393, 611, 262, 2393, 857, 407, 2152, 11, 2251, 11, 3551, 11, 290, 1441, 340, 220, 198, 220, 220, 220, 37227, 198, 198, 2, 220, 220, 220, 220, 1303, 449, 13, 311, 15668, 9038, 2177, 12, 2999, 12, 2999, 25, 5434, 994, 11, 12972, 6277, 6601, 35277, 857, 407, 1464, 2152, 780, 340, 318, 10944, 422, 262, 4067, 810, 262, 4639, 4226, 318, 8574, 14, 5143, 198, 2, 220, 220, 220, 220, 3108, 3672, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 17597, 13, 853, 85, 58, 15, 12962, 198, 2, 220, 220, 220, 220, 1336, 15235, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 6978, 3672, 8, 198, 2, 220, 220, 220, 220, 12972, 6277, 6601, 35277, 796, 1336, 15235, 1343, 31051, 9078, 6277, 14, 14784, 14, 45, 4663, 16744, 6277, 62, 2373, 62, 9948, 66, 3705, 37, 14, 6, 628, 220, 220, 220, 277, 5036, 62, 7753, 796, 28686, 13, 6978, 13, 22179, 7, 9078, 6277, 6601, 35277, 837, 6, 38568, 62, 4, 34350, 4, 67, 62, 82, 13495, 62, 7225, 19, 69, 13, 21013, 6, 4, 7, 67, 1039, 71, 1758, 58, 15, 4357, 67, 1039, 71, 1758, 58, 16, 4357, 38568, 62, 82, 13495, 4008, 628, 220, 220, 220, 611, 357, 418, 13, 15526, 7, 16658, 62, 7753, 11, 28686, 13, 37, 62, 11380, 8, 6624, 6407, 8, 1222, 357, 2502, 13564, 855, 15, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 37082, 83, 38568, 2214, 2393, 4064, 82, 1, 4064, 277, 5036, 62, 7753, 198, 220, 220, 220, 220, 220, 220, 220, 279, 38568, 796, 11414, 13, 1136, 7890, 7, 16658, 62, 7753, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 8187, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 38568, 796, 45941, 13, 1952, 7, 67, 1039, 71, 1758, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4738, 62, 28826, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 25120, 62, 28826, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 38568, 796, 45941, 13, 25120, 13, 11265, 7, 16, 13, 15, 11, 6228, 62, 82, 13495, 11, 2546, 28, 67, 1039, 71, 1758, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 20123, 278, 6228, 2214, 290, 8914, 340, 284, 220, 2393, 4064, 82, 1, 4064, 277, 5036, 62, 7753, 8, 628, 220, 220, 220, 220, 220, 220, 220, 357, 1941, 11, 1227, 11, 1110, 11, 1711, 11, 5664, 11, 1218, 11, 28269, 11, 8410, 56, 11, 360, 2257, 8, 796, 220, 640, 13, 39870, 2435, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 4197, 568, 50007, 796, 11414, 13, 10227, 6239, 396, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 289, 646, 796, 11414, 13, 35170, 10227, 52, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 289, 646, 13, 25677, 17816, 35, 6158, 20520, 796, 705, 4, 19, 67, 12, 4, 2999, 67, 12, 4, 2999, 67, 51, 4, 2999, 67, 25, 4, 2999, 67, 25, 4, 2999, 67, 6, 4064, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 1941, 11, 1227, 11, 1110, 11, 1711, 11, 5664, 11, 1218, 828, 705, 10430, 286, 17952, 6, 198, 220, 220, 220, 220, 220, 220, 220, 289, 646, 13, 25677, 17816, 32, 24318, 1581, 20520, 796, 705, 4, 82, 31, 4, 82, 6, 4064, 357, 418, 13, 1136, 24330, 10786, 29904, 33809, 28686, 13, 1136, 24330, 10786, 39, 10892, 11537, 828, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 29460, 31, 4774, 329, 17952, 6, 628, 220, 220, 220, 220, 220, 220, 220, 289, 646, 13, 7890, 796, 279, 38568, 628, 220, 220, 220, 220, 220, 220, 220, 4197, 568, 50007, 13, 33295, 7, 289, 646, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 4197, 568, 50007, 13, 8933, 27206, 7, 16658, 62, 7753, 11, 537, 672, 527, 28, 17821, 8, 220, 198, 220, 220, 220, 220, 220, 220, 220, 4197, 568, 50007, 13, 19836, 3419, 628, 220, 220, 220, 1441, 279, 38568, 198, 198, 2, 3049, 3405, 259, 49739, 26345, 2238, 381, 27610, 1043, 319, 262, 3992, 198, 2, 10655, 3105, 3405, 259, 30101, 284, 779, 3049, 3405, 259, 628, 198, 4299, 474, 1967, 7, 3919, 62, 1659, 62, 45051, 1010, 11, 28686, 1403, 11, 4738, 62, 28826, 28, 14202, 2599, 198, 220, 220, 220, 37227, 5860, 287, 10753, 321, 10137, 17465, 4991, 13, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 645, 62, 1659, 62, 45051, 1010, 318, 1900, 355, 299, 600, 287, 3563, 3351, 40, 29191, 198, 220, 220, 220, 37227, 220, 198, 220, 220, 220, 1612, 62, 73, 11, 264, 13495, 62, 73, 796, 657, 11, 474, 1967, 62, 301, 1860, 1990, 62, 292, 1635, 28686, 1403, 1220, 279, 844, 38528, 628, 220, 220, 220, 611, 4738, 62, 28826, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 25120, 62, 28826, 8, 198, 220, 220, 220, 2124, 45051, 796, 45941, 13, 25120, 13, 11265, 7, 32604, 62, 73, 11, 82, 13495, 62, 73, 11, 3919, 62, 1659, 62, 45051, 1010, 8, 198, 220, 220, 220, 2124, 45051, 62, 81, 796, 685, 600, 7, 744, 7, 77, 11, 657, 4008, 329, 299, 287, 2124, 45051, 60, 628, 220, 220, 220, 611, 4738, 62, 28826, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 25120, 62, 28826, 10, 16, 1776, 1303, 4795, 7838, 287, 1395, 290, 575, 11, 4145, 13096, 4738, 62, 28826, 287, 257, 6856, 835, 198, 220, 220, 220, 331, 45051, 796, 45941, 13, 25120, 13, 11265, 7, 32604, 62, 73, 11, 82, 13495, 62, 73, 11, 3919, 62, 1659, 62, 45051, 1010, 8, 198, 220, 220, 220, 331, 45051, 62, 81, 796, 685, 600, 7, 744, 7, 77, 11, 657, 4008, 329, 299, 287, 331, 45051, 60, 198, 220, 220, 220, 1441, 2124, 45051, 62, 81, 11, 331, 45051, 62, 81, 628, 198, 4299, 2251, 62, 81, 696, 7, 9127, 82, 525, 2363, 11, 4808, 69, 709, 11, 23370, 14459, 11, 3384, 81, 62, 11, 19011, 577, 28, 15, 11, 2291, 62, 3919, 786, 28, 16, 11, 25120, 62, 28826, 28, 14202, 2599, 198, 220, 220, 220, 37227, 220, 198, 220, 220, 220, 220, 220, 220, 5128, 9853, 583, 1218, 198, 220, 220, 220, 220, 220, 220, 5072, 25, 10454, 468, 23370, 14459, 10, 16, 24314, 11, 4991, 389, 12326, 304, 12, 1343, 7838, 198, 220, 220, 220, 220, 220, 220, 2251, 62, 81, 696, 3419, 1444, 299, 600, 1271, 286, 1661, 284, 2148, 299, 600, 42097, 198, 220, 220, 220, 220, 220, 220, 30964, 9284, 460, 307, 15293, 572, 416, 4634, 2291, 62, 3919, 786, 796, 657, 198, 220, 220, 37227, 198, 220, 220, 220, 198, 220, 220, 220, 3298, 1100, 3919, 786, 11, 25249, 11, 21953, 14421, 198, 220, 220, 220, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 449, 4090, 2177, 12, 2999, 12, 1828, 25, 9161, 3048, 286, 2972, 7838, 9284, 198, 220, 220, 220, 611, 2291, 62, 3919, 786, 6624, 532, 16, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6632, 477, 26782, 2845, 48190, 7838, 198, 220, 220, 220, 220, 220, 220, 220, 4469, 796, 657, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1100, 3919, 786, 796, 352, 13, 68, 12, 1433, 198, 220, 220, 220, 220, 220, 220, 220, 3223, 14421, 796, 657, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2291, 62, 3919, 786, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 198, 220, 220, 220, 611, 3384, 81, 62, 1058, 198, 220, 220, 220, 220, 220, 220, 220, 299, 961, 5269, 796, 23370, 14459, 1343, 352, 198, 220, 220, 220, 220, 220, 220, 220, 4628, 395, 538, 796, 256, 14535, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 23370, 14459, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 961, 5269, 796, 513, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4628, 395, 538, 796, 357, 782, 14459, 12, 16, 8, 1635, 256, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 961, 5269, 796, 362, 628, 220, 220, 220, 1100, 3919, 786, 62, 40296, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 45941, 13, 9107, 418, 19510, 77, 961, 5269, 11, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 36911, 45941, 13, 22468, 2414, 8, 198, 220, 220, 220, 4469, 62, 40296, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 45941, 13, 9107, 418, 19510, 77, 961, 5269, 11, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 36911, 45941, 13, 22468, 2414, 8, 198, 220, 220, 220, 3223, 62, 40296, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 45941, 13, 9107, 418, 19510, 77, 961, 5269, 11, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 36911, 45941, 13, 22468, 2414, 8, 198, 220, 220, 220, 745, 30927, 62, 3919, 786, 62, 40296, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 45941, 13, 9107, 418, 19510, 77, 961, 5269, 11, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 36911, 45941, 13, 22468, 2414, 8, 198, 220, 220, 220, 23818, 62, 7501, 30927, 62, 3919, 786, 62, 40296, 796, 45941, 13, 9107, 418, 19510, 77, 961, 5269, 11, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 36911, 45941, 13, 22468, 2414, 8, 198, 220, 220, 220, 10454, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 796, 45941, 13, 9107, 418, 19510, 77, 961, 5269, 11, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 36911, 45941, 13, 22468, 2414, 8, 628, 220, 220, 220, 611, 357, 24442, 62, 26791, 8, 930, 357, 19011, 577, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 83, 17953, 62, 81, 696, 33529, 23370, 14459, 1600, 23370, 14459, 11, 886, 11639, 705, 8, 220, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 220, 9853, 525, 2363, 13, 16345, 3419, 796, 4064, 13, 17, 68, 1, 4, 9127, 82, 525, 2363, 13, 16345, 22784, 886, 11639, 705, 8, 220, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 220, 9853, 525, 14535, 796, 4064, 13, 17, 68, 1, 4, 7, 9127, 82, 525, 2363, 13, 16345, 3419, 9, 83, 14535, 4008, 628, 220, 220, 220, 1303, 9948, 3129, 378, 745, 30927, 7838, 329, 2060, 9743, 11, 788, 15284, 745, 30927, 7838, 329, 9743, 510, 12, 1169, 12, 81, 696, 198, 220, 220, 220, 329, 35918, 324, 287, 2837, 7, 77, 961, 5269, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 611, 35918, 324, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2291, 62, 3919, 786, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10454, 58, 557, 324, 11, 45299, 47715, 796, 45941, 13, 9107, 418, 7, 357, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 4008, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4738, 62, 28826, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 25120, 62, 28826, 10, 16243, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 45941, 13, 25120, 13, 11265, 7, 15, 11, 1100, 3919, 786, 11, 357, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 22305, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10454, 58, 557, 324, 11, 45299, 47715, 796, 1100, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 25, 4083, 32604, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 62, 26791, 8, 930, 357, 19011, 577, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 83, 59, 83, 7501, 30927, 40296, 16416, 4064, 17, 67, 25, 220, 4064, 13, 17, 68, 1, 4, 7, 557, 324, 11, 745, 30927, 62, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 25, 4083, 16345, 3419, 828, 886, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 7501, 30927, 40296, 2472, 4064, 13, 17, 68, 1, 4, 7501, 30927, 62, 3919, 786, 62, 40296, 13, 16345, 28955, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 35918, 324, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2825, 505, 87, 806, 341, 796, 9853, 525, 2363, 1635, 256, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2825, 505, 87, 806, 341, 58, 38611, 505, 87, 806, 341, 1279, 15, 13, 15, 60, 796, 657, 13, 15, 220, 1303, 4929, 2835, 2364, 284, 304, 12, 1485, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2291, 62, 3919, 786, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10454, 58, 557, 324, 11, 45299, 47715, 796, 2825, 505, 87, 806, 341, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4738, 62, 28826, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 262, 7838, 287, 1180, 13431, 815, 307, 4795, 11, 4361, 13096, 4738, 62, 28826, 1022, 13431, 290, 1022, 745, 30927, 290, 31986, 31562, 7838, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 25120, 62, 28826, 10, 557, 324, 10, 16243, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 745, 30927, 62, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 45941, 13, 25120, 13, 7501, 30927, 7, 38611, 505, 87, 806, 341, 8, 1303, 15651, 329, 256, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 220, 4469, 1635, 256, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3223, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 220, 3223, 14421, 1635, 256, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4738, 62, 28826, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 25120, 62, 28826, 10, 557, 324, 10, 16243, 10, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 45941, 13, 25120, 13, 11265, 7, 15, 11, 1100, 3919, 786, 11, 357, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 22305, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10454, 58, 557, 324, 11, 45299, 47715, 796, 10454, 58, 557, 324, 12, 16, 11, 45299, 47715, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 745, 30927, 62, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3223, 62, 40296, 58, 557, 324, 11, 45299, 47715, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 62, 26791, 8, 930, 357, 19011, 577, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 83, 59, 83, 7501, 30927, 40296, 16416, 4064, 17, 67, 25, 220, 4064, 13, 17, 68, 1, 4, 7, 557, 324, 11, 745, 30927, 62, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 25, 4083, 16345, 3419, 828, 886, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 7501, 30927, 40296, 2472, 4064, 13, 17, 68, 1, 4, 7501, 30927, 62, 3919, 786, 62, 40296, 13, 16345, 28955, 628, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2825, 505, 87, 806, 341, 796, 9853, 525, 2363, 1635, 4628, 395, 538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2825, 505, 87, 806, 341, 58, 38611, 505, 87, 806, 341, 1279, 15, 13, 15, 60, 796, 657, 13, 15, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2291, 62, 3919, 786, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10454, 58, 557, 324, 11, 45299, 47715, 796, 2825, 505, 87, 806, 341, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4738, 62, 28826, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 25120, 62, 28826, 1343, 35918, 324, 10, 16243, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 745, 30927, 62, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 45941, 13, 25120, 13, 7501, 30927, 7, 38611, 505, 87, 806, 341, 8, 1303, 15651, 329, 256, 14535, 393, 357, 782, 12, 16, 27493, 83, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4469, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 220, 4469, 1635, 4628, 395, 538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3223, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 220, 3223, 14421, 1635, 4628, 395, 538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4738, 62, 28826, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 25120, 13, 28826, 7, 25120, 62, 28826, 1343, 35918, 324, 10, 16243, 10, 940, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 796, 45941, 13, 25120, 13, 11265, 7, 15, 11, 1100, 3919, 786, 11, 357, 600, 28264, 69, 709, 828, 600, 28264, 69, 709, 22305, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10454, 58, 557, 324, 11, 45299, 47715, 796, 10454, 58, 557, 324, 12, 16, 11, 45299, 47715, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 745, 30927, 62, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3223, 62, 40296, 58, 557, 324, 11, 45299, 47715, 1343, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1100, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 24442, 62, 26791, 8, 930, 357, 19011, 577, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 83, 59, 83, 7501, 30927, 40296, 16416, 4064, 17, 67, 25, 220, 4064, 13, 17, 68, 1, 4, 7, 557, 324, 11, 745, 30927, 62, 3919, 786, 62, 40296, 58, 557, 324, 11, 45299, 25, 4083, 16345, 3419, 828, 886, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 7501, 30927, 40296, 2472, 4064, 13, 17, 68, 1, 4, 7501, 30927, 62, 3919, 786, 62, 40296, 13, 16345, 28955, 628, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 611, 357, 24442, 62, 26791, 8, 930, 357, 19011, 577, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 7225, 16, 68, 1, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 83, 7501, 30927, 40296, 2472, 796, 4064, 13, 16, 68, 1, 4064, 745, 30927, 62, 3919, 786, 62, 40296, 13, 16345, 28955, 1303, 9167, 299, 38611, 1220, 299, 600, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 2213, 696, 938, 16416, 2472, 796, 4064, 13, 16, 68, 1, 4064, 10454, 58, 12, 16, 11, 45299, 25, 4083, 16345, 28955, 220, 220, 1303, 5561, 976, 355, 2029, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4798, 37082, 2213, 696, 938, 16416, 9103, 796, 4064, 13, 16, 68, 1, 4064, 10454, 58, 12, 16, 11, 45299, 25, 4083, 9806, 3419, 1303, 21754, 307, 5299, 49720, 62, 68, 6032, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 81, 696, 13, 43358, 58, 15, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 83, 1600, 264, 4, 81, 696, 58, 72, 11, 45299, 25, 4083, 16345, 22784, 366, 25, 1600, 264, 4, 81, 696, 58, 72, 11, 45299, 25, 4083, 9806, 22784, 886, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 77, 59, 83, 17953, 62, 81, 696, 25, 886, 4943, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 1441, 10454, 628, 198, 4299, 2251, 62, 18908, 1358, 7, 81, 696, 2599, 1303, 35709, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5128, 25, 10454, 287, 220, 304, 20995, 1390, 705, 22570, 1100, 3256, 23370, 14459, 10, 16, 362, 35, 24314, 198, 220, 220, 220, 5072, 25, 1366, 287, 12326, 304, 12, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 611, 14257, 62, 26791, 25, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 366, 7225, 16, 68, 1, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 81, 696, 13, 43358, 58, 15, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 33172, 264, 4, 81, 696, 58, 72, 11, 45299, 25, 4083, 16345, 22784, 886, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 77, 59, 83, 17953, 62, 18908, 1358, 25, 886, 4943, 628, 220, 220, 220, 611, 10454, 13, 43358, 58, 15, 60, 6624, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 10454, 58, 16, 11, 45299, 47715, 1303, 645, 13284, 7861, 319, 1100, 3919, 786, 10, 9697, 532, 10454, 58, 15, 11, 45299, 47715, 198, 220, 220, 220, 611, 10454, 13, 43358, 58, 15, 60, 1875, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 10454, 58, 12, 16, 11, 45299, 47715, 532, 10454, 58, 16, 11, 45299, 47715, 198, 220, 220, 220, 1441, 1366, 628, 198, 2, 1468, 11, 783, 2644, 403, 1484, 492, 7769, 14, 5304, 198, 37811, 198, 4299, 1064, 62, 6649, 3008, 7, 315, 81, 11, 23370, 14459, 11, 277, 709, 2599, 198, 220, 220, 220, 2124, 2100, 796, 45941, 13, 9107, 418, 19510, 782, 14459, 10, 16, 11, 600, 7, 69, 709, 828, 600, 7, 69, 709, 36911, 45941, 13, 22468, 2414, 8, 198, 220, 220, 220, 22638, 796, 45941, 13, 9107, 418, 19510, 600, 7, 69, 709, 828, 600, 7, 69, 709, 36911, 45941, 13, 22468, 2414, 8, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 782, 14459, 10, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 2100, 58, 72, 22241, 72, 198, 220, 220, 220, 2124, 76, 28, 22468, 7, 782, 14459, 20679, 17, 13, 15, 198, 220, 220, 220, 22638, 796, 357, 37659, 13, 16345, 7, 87, 2100, 9, 315, 81, 11, 22704, 28, 15, 13219, 87, 76, 9, 37659, 13, 16345, 7, 315, 81, 11, 22704, 28, 15, 4008, 29006, 37659, 13, 16345, 7, 87, 2100, 1174, 17, 11, 22704, 28, 15, 13219, 782, 14459, 9, 87, 76, 1174, 17, 8, 198, 220, 220, 220, 1441, 22638, 198, 37811, 628, 198, 2, 47103, 318, 379, 4220, 1364, 286, 262, 2939, 13, 357, 9310, 24, 10091, 628, 198, 2, 39231, 286, 352, 329, 37632, 284, 3368, 7297, 416, 657, 618, 9086, 416, 37632, 6228, 13, 198 ]
2.020594
5,827
lista = [] lista_par = [] lista_impar = [] while True: n = int(input('Digite um valor: ')) lista.append(n) if n%2 == 0: lista_par.append(n) else: lista_impar.append(n) again = str(input('Quer continuar? [S/N] ')).strip().upper()[0] if again in 'N': break print(f'Lista completa: {lista}') print(f'Lista de itens pares: {lista_par}') print(f'Lista de itens impares: {lista_impar}')
[ 4868, 64, 796, 17635, 198, 4868, 64, 62, 1845, 796, 17635, 198, 4868, 64, 62, 320, 1845, 796, 17635, 198, 198, 4514, 6407, 25, 198, 220, 220, 220, 299, 796, 493, 7, 15414, 10786, 19511, 578, 23781, 1188, 273, 25, 705, 4008, 198, 220, 220, 220, 1351, 64, 13, 33295, 7, 77, 8, 198, 220, 220, 220, 611, 299, 4, 17, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 1845, 13, 33295, 7, 77, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1351, 64, 62, 320, 1845, 13, 33295, 7, 77, 8, 198, 220, 220, 220, 757, 796, 965, 7, 15414, 10786, 4507, 263, 11143, 283, 30, 685, 50, 14, 45, 60, 705, 29720, 36311, 22446, 45828, 3419, 58, 15, 60, 198, 220, 220, 220, 611, 757, 287, 705, 45, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 4798, 7, 69, 6, 8053, 64, 1224, 8326, 25, 1391, 4868, 64, 92, 11537, 198, 4798, 7, 69, 6, 8053, 64, 390, 340, 641, 279, 3565, 25, 1391, 4868, 64, 62, 1845, 92, 11537, 198, 4798, 7, 69, 6, 8053, 64, 390, 340, 641, 848, 3565, 25, 1391, 4868, 64, 62, 320, 1845, 92, 11537 ]
2.052632
209
from django.db import models from django.contrib.auth.models import User class AbstractTimeStamp(models.Model): """Abstract TimeStamp Model Inherit: Model Fields: created_at : DateTimeField (UnEditable) updated_at : DateTimeField (Editable) """ created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) class Todo(AbstractTimeStamp): """Todo Model Inherit: AbstractTimeStamp Fields: user : ForeignKey (User) text : CharField is_completed : BooleanField """ user = models.ForeignKey(User, on_delete=models.CASCADE) text = models.CharField(max_length=100) is_completed = models.BooleanField(default=False)
[ 6738, 42625, 14208, 13, 9945, 1330, 4981, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 27530, 1330, 11787, 628, 198, 4871, 27741, 7575, 1273, 696, 7, 27530, 13, 17633, 2599, 198, 220, 220, 220, 37227, 23839, 3862, 1273, 696, 9104, 198, 220, 220, 220, 47025, 270, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9104, 198, 220, 220, 220, 23948, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2727, 62, 265, 1058, 7536, 7575, 15878, 357, 3118, 7407, 4674, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6153, 62, 265, 1058, 7536, 7575, 15878, 357, 7407, 4674, 8, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2727, 62, 265, 796, 4981, 13, 10430, 7575, 15878, 7, 23736, 62, 2197, 62, 2860, 28, 17821, 8, 198, 220, 220, 220, 6153, 62, 265, 796, 4981, 13, 10430, 7575, 15878, 7, 23736, 62, 2197, 28, 17821, 8, 628, 198, 4871, 309, 24313, 7, 23839, 7575, 1273, 696, 2599, 198, 220, 220, 220, 37227, 51, 24313, 9104, 198, 220, 220, 220, 47025, 270, 25, 198, 220, 220, 220, 220, 220, 220, 220, 27741, 7575, 1273, 696, 198, 220, 220, 220, 23948, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2836, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 8708, 9218, 357, 12982, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2420, 220, 220, 220, 220, 220, 220, 220, 220, 1058, 3178, 15878, 198, 220, 220, 220, 220, 220, 220, 220, 318, 62, 785, 16838, 1058, 41146, 15878, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2836, 796, 4981, 13, 33616, 9218, 7, 12982, 11, 319, 62, 33678, 28, 27530, 13, 34, 42643, 19266, 8, 198, 220, 220, 220, 2420, 796, 4981, 13, 12441, 15878, 7, 9806, 62, 13664, 28, 3064, 8, 198, 220, 220, 220, 318, 62, 785, 16838, 796, 4981, 13, 46120, 13087, 15878, 7, 12286, 28, 25101, 8, 198 ]
2.454259
317
import os import torch from imageio import imwrite from scipy.io import wavfile from tqdm import tqdm import numpy as np from dataset.music import MUSICMixDataset from helpers.utils import get_ctx, recover_rgb, makedirs, istft_reconstruction, magnitude2heatmap from steps.common import build_model, unwarp_log_scale, detach_mask from steps.regions_report_template import sbr_html
[ 11748, 28686, 198, 198, 11748, 28034, 198, 6738, 2939, 952, 1330, 545, 13564, 198, 6738, 629, 541, 88, 13, 952, 1330, 266, 615, 7753, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 198, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 27039, 13, 28965, 1330, 39484, 2149, 35608, 27354, 292, 316, 198, 6738, 49385, 13, 26791, 1330, 651, 62, 49464, 11, 8551, 62, 81, 22296, 11, 285, 4335, 17062, 11, 318, 83, 701, 62, 260, 9979, 2762, 11, 14735, 17, 25080, 8899, 198, 6738, 4831, 13, 11321, 1330, 1382, 62, 19849, 11, 7379, 5117, 62, 6404, 62, 9888, 11, 48224, 62, 27932, 198, 6738, 4831, 13, 2301, 507, 62, 13116, 62, 28243, 1330, 264, 1671, 62, 6494, 628, 198 ]
3.181818
121
n=int(input('enter a number: ')) f(n) ''' output: enter a number: 6 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1 '''
[ 77, 28, 600, 7, 15414, 10786, 9255, 257, 1271, 25, 705, 4008, 198, 69, 7, 77, 8, 198, 7061, 6, 198, 22915, 25, 198, 9255, 257, 1271, 25, 718, 198, 16, 362, 513, 604, 642, 718, 220, 198, 16, 362, 513, 604, 642, 220, 198, 16, 362, 513, 604, 220, 198, 16, 362, 513, 220, 198, 16, 362, 220, 198, 16, 220, 198, 7061, 6, 198 ]
1.818182
66
""" MIT License Copyright (c) 2019 Blue Cloud Red Dot Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ import argparse import boto3 import botocore PARSER = argparse.ArgumentParser() PARSER.add_argument("bucket", help="Please enter the name of the S3 bucket", type=str) PARSER.add_argument("-k" "--key", help="Please enter the key of the object", default='', dest='key', type=str) PARSER.add_argument("-p" "--prefix", help="Please enter the prefix of the objects", default='', dest='prefix', type=str) PARSER.add_argument("-s" "--suffix", help="Please enter the suffix of the objects", default='', dest='suffix', type=str) PARSER.add_argument("-r" "--recursive", help="Please use if all objects with the prefix/suffix should be included", dest='recursive', action="store_true") PARSER.add_argument("-t" "--token", help="Continuation token to list the next set of objects", dest='', type=str) ARGS = PARSER.parse_args() RECURSIVE = ARGS.recursive CLIENT = boto3.client('s3') S3 = boto3.resource('s3') if RECURSIVE: while True: RESPONSE = CLIENT.list_objects_v2(Bucket=ARGS.bucket, Prefix=ARGS.prefix) try: CONTENTS = RESPONSE['Contents'] except KeyError: print("Key error.") for CONTENT in CONTENTS: KEY = CONTENT['Key'] if KEY.startswith(ARGS.prefix) and KEY.endswith(ARGS.suffix): COPY_SOURCE = { 'Bucket': ARGS.bucket, 'Key': KEY } try: if CLIENT.get_object(Bucket=COPY_SOURCE['Bucket'], Key=COPY_SOURCE['Key'])['StorageClass'] == 'INTELLIGENT_TIERING': print("Storage Class for '{}/{}' is already Intelligent Tiering".format(COPY_SOURCE['Bucket'], COPY_SOURCE['Key'])) except KeyError: S3.meta.client.copy(COPY_SOURCE, COPY_SOURCE['Bucket'], COPY_SOURCE['Key'], ExtraArgs={'StorageClass':'INTELLIGENT_TIERING'}) print("Changed Storage Class for '{}/{}' to Intelligent Tiering".format(COPY_SOURCE['Bucket'], COPY_SOURCE['Key'])) except AttributeError: print("Attribute error") try: ARGS.continuation_token = RESPONSE['NextContinuationToken'] except KeyError: break else: try: COPY_SOURCE = { 'Bucket': ARGS.bucket, 'Key': ARGS.key } try: if CLIENT.get_object(Bucket=COPY_SOURCE['Bucket'], Key=COPY_SOURCE['Key'])['StorageClass'] == 'INTELLIGENT_TIERING': print("Storage Class for '{}/{}' is already Intelligent Tiering".format(COPY_SOURCE['Bucket'], COPY_SOURCE['Key'])) except KeyError: S3.meta.client.copy(COPY_SOURCE, COPY_SOURCE['Bucket'], COPY_SOURCE['Key'], ExtraArgs={'StorageClass':'INTELLIGENT_TIERING'}) print("Changed Storage Class for '{}/{}' to Intelligent Tiering".format(COPY_SOURCE['Bucket'], COPY_SOURCE['Key'])) except botocore.exceptions.ClientError: print("404 - Sorry, the object you tried cannot be found.")
[ 37811, 198, 36393, 13789, 198, 15269, 357, 66, 8, 13130, 4518, 10130, 2297, 22875, 198, 5990, 3411, 318, 29376, 7520, 11, 1479, 286, 3877, 11, 284, 597, 1048, 16727, 257, 4866, 198, 1659, 428, 3788, 290, 3917, 10314, 3696, 357, 1169, 366, 25423, 12340, 284, 1730, 198, 259, 262, 10442, 1231, 17504, 11, 1390, 1231, 17385, 262, 2489, 198, 1462, 779, 11, 4866, 11, 13096, 11, 20121, 11, 7715, 11, 14983, 11, 850, 43085, 11, 290, 14, 273, 3677, 198, 22163, 444, 286, 262, 10442, 11, 290, 284, 8749, 6506, 284, 4150, 262, 10442, 318, 198, 69, 700, 1348, 284, 466, 523, 11, 2426, 284, 262, 1708, 3403, 25, 198, 464, 2029, 6634, 4003, 290, 428, 7170, 4003, 2236, 307, 3017, 287, 477, 198, 22163, 444, 393, 8904, 16690, 286, 262, 10442, 13, 198, 10970, 47466, 3180, 36592, 2389, 1961, 366, 1921, 3180, 1600, 42881, 34764, 56, 3963, 15529, 509, 12115, 11, 7788, 32761, 6375, 198, 3955, 49094, 11, 47783, 2751, 21728, 5626, 40880, 5390, 3336, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 11, 198, 37, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 5357, 44521, 1268, 10913, 2751, 12529, 13, 3268, 8005, 49261, 50163, 3336, 198, 32, 24318, 20673, 6375, 27975, 38162, 9947, 367, 15173, 4877, 9348, 43031, 19146, 7473, 15529, 47666, 3955, 11, 29506, 25552, 6375, 25401, 198, 43, 3539, 25382, 11, 7655, 2767, 16879, 3268, 3537, 40282, 3963, 27342, 10659, 11, 309, 9863, 6375, 25401, 54, 24352, 11, 5923, 1797, 2751, 16034, 11, 198, 12425, 3963, 6375, 3268, 7102, 45, 24565, 13315, 3336, 47466, 6375, 3336, 23210, 6375, 25401, 5550, 1847, 20754, 3268, 3336, 198, 15821, 37485, 13, 198, 37811, 198, 198, 11748, 1822, 29572, 198, 11748, 275, 2069, 18, 198, 11748, 10214, 420, 382, 198, 198, 27082, 35009, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 27082, 35009, 13, 2860, 62, 49140, 7203, 27041, 316, 1600, 1037, 2625, 5492, 3802, 262, 1438, 286, 262, 311, 18, 19236, 1600, 2099, 28, 2536, 8, 198, 27082, 35009, 13, 2860, 62, 49140, 7203, 12, 74, 1, 366, 438, 2539, 1600, 1037, 2625, 5492, 3802, 262, 1994, 286, 262, 2134, 1600, 4277, 11639, 3256, 2244, 11639, 2539, 3256, 2099, 28, 2536, 8, 198, 27082, 35009, 13, 2860, 62, 49140, 7203, 12, 79, 1, 366, 438, 40290, 1600, 1037, 2625, 5492, 3802, 262, 21231, 286, 262, 5563, 1600, 4277, 11639, 3256, 2244, 11639, 40290, 3256, 2099, 28, 2536, 8, 198, 27082, 35009, 13, 2860, 62, 49140, 7203, 12, 82, 1, 366, 438, 37333, 844, 1600, 1037, 2625, 5492, 3802, 262, 35488, 286, 262, 5563, 1600, 4277, 11639, 3256, 2244, 11639, 37333, 844, 3256, 2099, 28, 2536, 8, 198, 27082, 35009, 13, 2860, 62, 49140, 7203, 12, 81, 1, 366, 438, 8344, 30753, 1600, 1037, 2625, 5492, 779, 611, 477, 5563, 351, 262, 21231, 14, 37333, 844, 815, 307, 3017, 1600, 2244, 11639, 8344, 30753, 3256, 2223, 2625, 8095, 62, 7942, 4943, 198, 27082, 35009, 13, 2860, 62, 49140, 7203, 12, 83, 1, 366, 438, 30001, 1600, 1037, 2625, 17875, 2288, 11241, 284, 1351, 262, 1306, 900, 286, 5563, 1600, 2244, 11639, 3256, 2099, 28, 2536, 8, 198, 1503, 14313, 796, 350, 27415, 1137, 13, 29572, 62, 22046, 3419, 198, 198, 38827, 4261, 50, 9306, 796, 5923, 14313, 13, 8344, 30753, 198, 198, 5097, 28495, 796, 275, 2069, 18, 13, 16366, 10786, 82, 18, 11537, 198, 50, 18, 796, 275, 2069, 18, 13, 31092, 10786, 82, 18, 11537, 198, 198, 361, 19644, 4261, 50, 9306, 25, 198, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 47203, 1340, 5188, 796, 45148, 13, 4868, 62, 48205, 62, 85, 17, 7, 33, 38811, 28, 1503, 14313, 13, 27041, 316, 11, 3771, 13049, 28, 1503, 14313, 13, 40290, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22904, 15365, 796, 47203, 1340, 5188, 17816, 15842, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 9218, 4049, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 329, 22904, 3525, 287, 22904, 15365, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 35374, 796, 22904, 3525, 17816, 9218, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 35374, 13, 9688, 2032, 342, 7, 1503, 14313, 13, 40290, 8, 290, 35374, 13, 437, 2032, 342, 7, 1503, 14313, 13, 37333, 844, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27975, 56, 62, 47690, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33, 38811, 10354, 5923, 14313, 13, 27041, 316, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9218, 10354, 35374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 45148, 13, 1136, 62, 15252, 7, 33, 38811, 28, 34, 3185, 56, 62, 47690, 17816, 33, 38811, 6, 4357, 7383, 28, 34, 3185, 56, 62, 47690, 17816, 9218, 6, 12962, 17816, 31425, 9487, 20520, 6624, 705, 1268, 9328, 3069, 3528, 3525, 62, 25621, 1137, 2751, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 31425, 5016, 329, 705, 90, 92, 14, 90, 92, 6, 318, 1541, 49452, 15917, 278, 1911, 18982, 7, 34, 3185, 56, 62, 47690, 17816, 33, 38811, 6, 4357, 27975, 56, 62, 47690, 17816, 9218, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 311, 18, 13, 28961, 13, 16366, 13, 30073, 7, 34, 3185, 56, 62, 47690, 11, 27975, 56, 62, 47690, 17816, 33, 38811, 6, 4357, 27975, 56, 62, 47690, 17816, 9218, 6, 4357, 17221, 42035, 34758, 6, 31425, 9487, 10354, 6, 1268, 9328, 3069, 3528, 3525, 62, 25621, 1137, 2751, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 31813, 20514, 5016, 329, 705, 90, 92, 14, 90, 92, 6, 284, 49452, 15917, 278, 1911, 18982, 7, 34, 3185, 56, 62, 47690, 17816, 33, 38811, 6, 4357, 27975, 56, 62, 47690, 17816, 9218, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 3460, 4163, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 33682, 4049, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5923, 14313, 13, 18487, 2288, 62, 30001, 796, 47203, 1340, 5188, 17816, 10019, 17875, 2288, 30642, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 17772, 25, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 27975, 56, 62, 47690, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33, 38811, 10354, 5923, 14313, 13, 27041, 316, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9218, 10354, 5923, 14313, 13, 2539, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 45148, 13, 1136, 62, 15252, 7, 33, 38811, 28, 34, 3185, 56, 62, 47690, 17816, 33, 38811, 6, 4357, 7383, 28, 34, 3185, 56, 62, 47690, 17816, 9218, 6, 12962, 17816, 31425, 9487, 20520, 6624, 705, 1268, 9328, 3069, 3528, 3525, 62, 25621, 1137, 2751, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 31425, 5016, 329, 705, 90, 92, 14, 90, 92, 6, 318, 1541, 49452, 15917, 278, 1911, 18982, 7, 34, 3185, 56, 62, 47690, 17816, 33, 38811, 6, 4357, 27975, 56, 62, 47690, 17816, 9218, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 311, 18, 13, 28961, 13, 16366, 13, 30073, 7, 34, 3185, 56, 62, 47690, 11, 27975, 56, 62, 47690, 17816, 33, 38811, 6, 4357, 27975, 56, 62, 47690, 17816, 9218, 6, 4357, 17221, 42035, 34758, 6, 31425, 9487, 10354, 6, 1268, 9328, 3069, 3528, 3525, 62, 25621, 1137, 2751, 6, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 31813, 20514, 5016, 329, 705, 90, 92, 14, 90, 92, 6, 284, 49452, 15917, 278, 1911, 18982, 7, 34, 3185, 56, 62, 47690, 17816, 33, 38811, 6, 4357, 27975, 56, 62, 47690, 17816, 9218, 20520, 4008, 198, 220, 220, 220, 2845, 10214, 420, 382, 13, 1069, 11755, 13, 11792, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 26429, 532, 19061, 11, 262, 2134, 345, 3088, 2314, 307, 1043, 19570, 198 ]
2.537267
1,610
dict = {} user_count = 6040 gender = {} gender['M'] = 1 gender['F'] = 2 dict[1] = "Gender-male" dict[2] = "Gender-female" age = {} age['1'] = 3 age['18'] = 4 age['25'] = 5 age['35'] = 6 age['45'] = 7 age['50'] = 8 age['56'] = 9 dict[3] = "Age-under 18" dict[4] = "Age-18-24" dict[5] = "Age-25-34" dict[6] = "Age-35-44" dict[7] = "Age-45-49" dict[8] = "Age-50-55" dict[9] = "Age-56+" feature_size = 9 occ = {} for i in range(21): feature_size += 1 occ[str(i)] = feature_size dict[10] = "Occupation-other" dict[11] = "Occupation-academic/educator" dict[12] = "Occupation-artist" dict[13] = "Occupation-clerical/admin" dict[14] = "Occupation-college/grad student" dict[15] = "Occupation-customer service" dict[16] = "Occupation-doctor/health care" dict[17] = "Occupation-executive/managerial" dict[18] = "Occupation-farmer" dict[19] = "Occupation-homemaker" dict[20] = "Occupation-K-12 student" dict[21] = "Occupation-lawyer" dict[22] = "Occupation-programmer" dict[23] = "Occupation-retired" dict[24] = "Occupation-sales/marketing" dict[25] = "Occupation-scientist" dict[26] = "Occupation-self-employed" dict[27] = "Occupation-technician/engineer" dict[28] = "Occupation-tradesman/craftsman" dict[29] = "Occupation-unemployed" dict[30] = "Occupation-writer" f = open('users.dat', 'r') zipcode = {} for i in range(1, user_count + 1): line = f.readline() line = line[:-1] l = line.split('::') if zipcode.get(l[-1]) == None: feature_size += 1 zipcode[l[-1]] = feature_size dict[feature_size] = "Zipcode-" + str(l[-1]) f.close() f = open('users.dat', 'r') user_i = [[]] user_v = [[]] for i in range(1, user_count + 1): line = f.readline() line = line[:-1] l = line.split('::') user_i.append([gender[l[1]], age[l[2]], occ[l[3]], zipcode[l[4]]]) user_v.append([1, 1, 1, 1]) f.close() print("The number of user's feature is:", len(user_i)) movie_count = 3883 max_gen = 0 min_gen = 10 year_dict = {} for i in range(1919, 1930): year_dict[i] = 1 for i in range(1930, 1940): year_dict[i] = 2 for i in range(1940, 1950): year_dict[i] = 3 for i in range(1950, 1960): year_dict[i] = 4 for i in range(1960, 1970): year_dict[i] = 5 for i in range(1970, 2001): year_dict[i] = 6 + i - 1970 f = open('movies.dat', 'r', encoding="ISO-8859-1") genres = {} for i in range(1, movie_count + 1): line = f.readline() line = line[:-1] l = line.split('::') s = l[-1] l = s.split('|') if len(l) > max_gen: max_gen = len(l) if len(l) < min_gen: min_gen = len(l) if len(l) == 0: print('error') for _ in l: if genres.get(_) == None: feature_size += 1 genres[_] = feature_size dict[feature_size] = "Genre-" + _ f.close() print("2222", feature_size) print(len(dict)) print('The max number is :', max_gen) #feature_size += 1 # for year of release f = open('movies.dat', 'r', encoding="ISO-8859-1") movie_i = {} movie_v = {} for i in range(1, movie_count + 1): line = f.readline() line = line[:-1] l = line.split('::') MovieID = int(l[0]) Year = int(l[1][-5:-1]) l = l[-1].split('|') new_i = [] new_v = [] for _ in l: new_i.append(genres[_]) new_v.append(1) t = 6 - len(l) # 0 ~ 5 remain for _ in range(feature_size + 1, feature_size + t + 1): new_i.append(_) new_v.append(0) #new_i.append(feature_size + 6) #new_v.append(Year) new_i.append(feature_size + 5 + year_dict[Year]) new_v.append(1) movie_i[MovieID] = new_i movie_v[MovieID] = new_v f.close() print(feature_size + 1, feature_size + 5) #feature_size += 6 dict[feature_size + 1] = "Genre-NULL" dict[feature_size + 2] = "Genre-NULL" dict[feature_size + 3] = "Genre-NULL" dict[feature_size + 4] = "Genre-NULL" dict[feature_size + 5] = "Genre-NULL" feature_size += 5 feature_size += 1 dict[feature_size] = "Release-1919-1929" feature_size += 1 dict[feature_size] = "Release-1930-1939" feature_size += 1 dict[feature_size] = "Release-1940-1949" feature_size += 1 dict[feature_size] = "Release-1950-1959" feature_size += 1 dict[feature_size] = "Release-1960-1969" for y in range(1970, 2001): feature_size += 1 dict[feature_size] = "Release-" + str(y) print("####: ", feature_size) print(len(dict)) print("The number of movie's feature is:", len(movie_i)) feature_size += 1 # for timestamp dict[feature_size] = "Timestamp" f = open('ratings.dat', 'r') data_i = [] data_v = [] Y = [] #U = [] #I = [] all_count = 1000209 ratings_count = 0 for i in range(1, all_count + 1): line = f.readline() line = line[:-1] l = line.split('::') y = int(l[2]) new_i = user_i[int(l[0])].copy() new_v = user_v[int(l[0])].copy() new_i.extend(movie_i[int(l[1])]) new_v.extend(movie_v[int(l[1])]) new_i.append(feature_size) new_v.append(int(l[3])) if y > 3: y = 1 elif y < 3: y = 0 else: y = -1 if y != -1: data_i.append(new_i) data_v.append(new_v) # U.append(int(l[0])) # I.append(int(l[1])) Y.append(y) ratings_count += 1 f.close() print('valid number of ratings:', len(data_v)) print('Positive number =', sum(Y)) print(feature_size) print("Dict: ", len(dict)) print('All =', len(data_i)) import numpy as np import random from sklearn.preprocessing import MinMaxScaler scaler = MinMaxScaler() R = [] for i in range(ratings_count): R.append([data_v[i][-1]]) #print(R) #print(np.max(R)) #print(np.min(R)) R = scaler.fit_transform(R) #print(R) for i in range(ratings_count): data_v[i].pop() data_v[i].append(R[i][0]) # data_v[i].append(U[i]) # data_v[i].append(I[i]) print(data_v[0]) perm = [] for i in range(ratings_count): perm.append(i) random.seed(2019) random.shuffle(perm) train_count = int(ratings_count * 0.8) valid_count = int(ratings_count * 0.9) X_i_tr = [] X_v_tr = [] Y_tr = [] for i in range(train_count): X_i_tr.append(data_i[perm[i]]) X_v_tr.append(data_v[perm[i]]) Y_tr.append(Y[perm[i]]) X_i_tr = np.array(X_i_tr) X_v_tr = np.array(X_v_tr) Y_tr = np.array(Y_tr) i1 = X_i_tr[:, 0:4] i2 = X_i_tr[:, 4:10] i3 = X_i_tr[:, 10:] x1 = X_v_tr[:, 0:4] x2 = X_v_tr[:, 4:10] x3 = X_v_tr[:, 10:] i4 = np.concatenate((i1,i3), axis=1) x4 = np.concatenate((x1,x3), axis=1) np.save("train_i_genre.npy", i2) np.save("train_i_other.npy", i4) np.save("train_x_genre.npy", x2) np.save("train_x_other.npy", x4) np.save("train_y.npy", np.array(Y_tr)) #np.save("train_ui.npy", np.array(ui_tr)) X_i_va = [] X_v_va = [] Y_va = [] for i in range(train_count, valid_count): X_i_va.append(data_i[perm[i]]) X_v_va.append(data_v[perm[i]]) Y_va.append(Y[perm[i]]) # ui_va.append([U[perm[i]], I[perm[i]]) X_i_va = np.array(X_i_va) X_v_va = np.array(X_v_va) Y_va = np.array(Y_va) i1 = X_i_va[:, 0:4] i2 = X_i_va[:, 4:10] i3 = X_i_va[:, 10:] x1 = X_v_va[:, 0:4] x2 = X_v_va[:, 4:10] x3 = X_v_va[:, 10:] i4 = np.concatenate((i1,i3), axis=1) x4 = np.concatenate((x1,x3), axis=1) np.save("valid_i_genre.npy", i2) np.save("valid_i_other.npy", i4) np.save("valid_x_genre.npy", x2) np.save("valid_x_other.npy", x4) np.save("valid_y.npy", np.array(Y_va)) X_i_te = [] X_v_te = [] Y_te = [] for i in range(valid_count, ratings_count): X_i_te.append(data_i[perm[i]]) X_v_te.append(data_v[perm[i]]) Y_te.append(Y[perm[i]]) # ui_te.append(U[perm[i]]], I[perm[i]]) X_i_te = np.array(X_i_te) X_v_te = np.array(X_v_te) Y_te = np.array(Y_te) i1 = X_i_te[:, 0:4] i2 = X_i_te[:, 4:10] i3 = X_i_te[:, 10:] x1 = X_v_te[:, 0:4] x2 = X_v_te[:, 4:10] x3 = X_v_te[:, 10:] i4 = np.concatenate((i1,i3), axis=1) x4 = np.concatenate((x1,x3), axis=1) np.save("test_i_genre.npy", i2) np.save("test_i_other.npy", i4) np.save("test_x_genre.npy", x2) np.save("test_x_other.npy", x4) np.save("test_y.npy", np.array(Y_te)) print(len(X_i_tr)) print(len(X_i_va)) print(len(X_i_te)) print(len(Y)) f = open("feature.txt", 'w') f.write(str(dict))
[ 11600, 796, 23884, 198, 198, 7220, 62, 9127, 796, 3126, 1821, 198, 198, 8388, 796, 23884, 198, 8388, 17816, 44, 20520, 796, 352, 198, 8388, 17816, 37, 20520, 796, 362, 198, 198, 11600, 58, 16, 60, 796, 366, 41394, 12, 22606, 1, 198, 11600, 58, 17, 60, 796, 366, 41394, 12, 24724, 1, 198, 198, 496, 796, 23884, 198, 496, 17816, 16, 20520, 796, 513, 198, 496, 17816, 1507, 20520, 796, 604, 198, 496, 17816, 1495, 20520, 796, 642, 198, 496, 17816, 2327, 20520, 796, 718, 198, 496, 17816, 2231, 20520, 796, 767, 198, 496, 17816, 1120, 20520, 796, 807, 198, 496, 17816, 3980, 20520, 796, 860, 198, 198, 11600, 58, 18, 60, 796, 366, 23396, 12, 4625, 1248, 1, 198, 11600, 58, 19, 60, 796, 366, 23396, 12, 1507, 12, 1731, 1, 198, 11600, 58, 20, 60, 796, 366, 23396, 12, 1495, 12, 2682, 1, 198, 11600, 58, 21, 60, 796, 366, 23396, 12, 2327, 12, 2598, 1, 198, 11600, 58, 22, 60, 796, 366, 23396, 12, 2231, 12, 2920, 1, 198, 11600, 58, 23, 60, 796, 366, 23396, 12, 1120, 12, 2816, 1, 198, 11600, 58, 24, 60, 796, 366, 23396, 12, 3980, 10, 1, 198, 198, 30053, 62, 7857, 796, 860, 198, 13966, 796, 23884, 198, 1640, 1312, 287, 2837, 7, 2481, 2599, 198, 197, 30053, 62, 7857, 15853, 352, 198, 197, 13966, 58, 2536, 7, 72, 15437, 796, 3895, 62, 7857, 198, 198, 11600, 58, 940, 60, 796, 366, 47658, 341, 12, 847, 1, 198, 11600, 58, 1157, 60, 796, 366, 47658, 341, 12, 330, 49113, 14, 18123, 1352, 1, 198, 11600, 58, 1065, 60, 796, 366, 47658, 341, 12, 49016, 1, 198, 11600, 58, 1485, 60, 796, 366, 47658, 341, 12, 22902, 605, 14, 28482, 1, 198, 11600, 58, 1415, 60, 796, 366, 47658, 341, 12, 44107, 14, 9744, 3710, 1, 198, 11600, 58, 1314, 60, 796, 366, 47658, 341, 12, 23144, 263, 2139, 1, 198, 11600, 58, 1433, 60, 796, 366, 47658, 341, 12, 35580, 14, 13948, 1337, 1, 198, 11600, 58, 1558, 60, 796, 366, 47658, 341, 12, 18558, 8827, 14, 37153, 498, 1, 198, 11600, 58, 1507, 60, 796, 366, 47658, 341, 12, 16370, 647, 1, 198, 11600, 58, 1129, 60, 796, 366, 47658, 341, 12, 26452, 32174, 1, 198, 11600, 58, 1238, 60, 796, 366, 47658, 341, 12, 42, 12, 1065, 3710, 1, 198, 11600, 58, 2481, 60, 796, 366, 47658, 341, 12, 6270, 9860, 1, 198, 11600, 58, 1828, 60, 796, 366, 47658, 341, 12, 23065, 647, 1, 198, 11600, 58, 1954, 60, 796, 366, 47658, 341, 12, 1186, 1202, 1, 198, 11600, 58, 1731, 60, 796, 366, 47658, 341, 12, 82, 2040, 14, 10728, 278, 1, 198, 11600, 58, 1495, 60, 796, 366, 47658, 341, 12, 25346, 396, 1, 198, 11600, 58, 2075, 60, 796, 366, 47658, 341, 12, 944, 12, 36266, 1, 198, 11600, 58, 1983, 60, 796, 366, 47658, 341, 12, 23873, 6749, 14, 18392, 263, 1, 198, 11600, 58, 2078, 60, 796, 366, 47658, 341, 12, 2213, 2367, 805, 14, 3323, 82, 805, 1, 198, 11600, 58, 1959, 60, 796, 366, 47658, 341, 12, 403, 36266, 1, 198, 11600, 58, 1270, 60, 796, 366, 47658, 341, 12, 16002, 1, 198, 198, 69, 796, 1280, 10786, 18417, 13, 19608, 3256, 705, 81, 11537, 198, 13344, 8189, 796, 23884, 198, 1640, 1312, 287, 2837, 7, 16, 11, 2836, 62, 9127, 1343, 352, 2599, 198, 197, 1370, 796, 277, 13, 961, 1370, 3419, 198, 197, 1370, 796, 1627, 58, 21912, 16, 60, 198, 197, 75, 796, 1627, 13, 35312, 10786, 3712, 11537, 198, 197, 361, 19974, 8189, 13, 1136, 7, 75, 58, 12, 16, 12962, 6624, 6045, 25, 198, 197, 197, 30053, 62, 7857, 15853, 352, 198, 197, 197, 13344, 8189, 58, 75, 58, 12, 16, 11907, 796, 3895, 62, 7857, 198, 197, 197, 11600, 58, 30053, 62, 7857, 60, 796, 366, 41729, 8189, 21215, 1343, 965, 7, 75, 58, 12, 16, 12962, 198, 69, 13, 19836, 3419, 198, 198, 69, 796, 1280, 10786, 18417, 13, 19608, 3256, 705, 81, 11537, 198, 7220, 62, 72, 796, 16410, 11907, 198, 7220, 62, 85, 796, 16410, 11907, 198, 1640, 1312, 287, 2837, 7, 16, 11, 2836, 62, 9127, 1343, 352, 2599, 198, 197, 1370, 796, 277, 13, 961, 1370, 3419, 198, 197, 1370, 796, 1627, 58, 21912, 16, 60, 198, 197, 75, 796, 1627, 13, 35312, 10786, 3712, 11537, 198, 197, 7220, 62, 72, 13, 33295, 26933, 8388, 58, 75, 58, 16, 60, 4357, 2479, 58, 75, 58, 17, 60, 4357, 1609, 58, 75, 58, 18, 60, 4357, 19974, 8189, 58, 75, 58, 19, 11907, 12962, 198, 197, 7220, 62, 85, 13, 33295, 26933, 16, 11, 352, 11, 352, 11, 352, 12962, 198, 69, 13, 19836, 3419, 198, 4798, 7203, 464, 1271, 286, 2836, 338, 3895, 318, 25, 1600, 18896, 7, 7220, 62, 72, 4008, 198, 198, 41364, 62, 9127, 796, 43550, 18, 198, 198, 9806, 62, 5235, 796, 657, 198, 1084, 62, 5235, 796, 838, 198, 198, 1941, 62, 11600, 796, 23884, 198, 1640, 1312, 287, 2837, 7, 1129, 1129, 11, 15533, 2599, 198, 197, 1941, 62, 11600, 58, 72, 60, 796, 352, 198, 1640, 1312, 287, 2837, 7, 1129, 1270, 11, 16236, 2599, 198, 197, 1941, 62, 11600, 58, 72, 60, 796, 362, 198, 1640, 1312, 287, 2837, 7, 1129, 1821, 11, 11445, 2599, 198, 197, 1941, 62, 11600, 58, 72, 60, 796, 513, 198, 1640, 1312, 287, 2837, 7, 42751, 11, 9507, 2599, 198, 197, 1941, 62, 11600, 58, 72, 60, 796, 604, 198, 1640, 1312, 287, 2837, 7, 38503, 11, 8069, 2599, 198, 197, 1941, 62, 11600, 58, 72, 60, 796, 642, 198, 1640, 1312, 287, 2837, 7, 30986, 11, 5878, 2599, 198, 197, 1941, 62, 11600, 58, 72, 60, 796, 718, 1343, 1312, 532, 8069, 198, 198, 69, 796, 1280, 10786, 76, 20526, 13, 19608, 3256, 705, 81, 3256, 21004, 2625, 40734, 12, 3459, 3270, 12, 16, 4943, 198, 5235, 411, 796, 23884, 198, 1640, 1312, 287, 2837, 7, 16, 11, 3807, 62, 9127, 1343, 352, 2599, 198, 197, 1370, 796, 277, 13, 961, 1370, 3419, 198, 197, 1370, 796, 1627, 58, 21912, 16, 60, 198, 197, 75, 796, 1627, 13, 35312, 10786, 3712, 11537, 198, 197, 82, 796, 300, 58, 12, 16, 60, 198, 197, 75, 796, 264, 13, 35312, 10786, 91, 11537, 198, 197, 361, 18896, 7, 75, 8, 1875, 3509, 62, 5235, 25, 198, 197, 197, 9806, 62, 5235, 796, 18896, 7, 75, 8, 198, 197, 361, 18896, 7, 75, 8, 1279, 949, 62, 5235, 25, 198, 197, 197, 1084, 62, 5235, 796, 18896, 7, 75, 8, 198, 197, 361, 18896, 7, 75, 8, 6624, 657, 25, 198, 197, 197, 4798, 10786, 18224, 11537, 198, 197, 1640, 4808, 287, 300, 25, 198, 197, 197, 361, 27962, 13, 1136, 28264, 8, 6624, 6045, 25, 198, 197, 197, 197, 30053, 62, 7857, 15853, 352, 198, 197, 197, 197, 5235, 411, 29795, 60, 796, 3895, 62, 7857, 198, 197, 197, 197, 11600, 58, 30053, 62, 7857, 60, 796, 366, 13746, 260, 21215, 1343, 4808, 198, 69, 13, 19836, 3419, 198, 4798, 7203, 1828, 1828, 1600, 3895, 62, 7857, 8, 198, 4798, 7, 11925, 7, 11600, 4008, 198, 198, 4798, 10786, 464, 3509, 1271, 318, 1058, 3256, 3509, 62, 5235, 8, 198, 198, 2, 30053, 62, 7857, 15853, 352, 1303, 329, 614, 286, 2650, 198, 198, 69, 796, 1280, 10786, 76, 20526, 13, 19608, 3256, 705, 81, 3256, 21004, 2625, 40734, 12, 3459, 3270, 12, 16, 4943, 198, 41364, 62, 72, 796, 23884, 198, 41364, 62, 85, 796, 23884, 198, 1640, 1312, 287, 2837, 7, 16, 11, 3807, 62, 9127, 1343, 352, 2599, 198, 197, 1370, 796, 277, 13, 961, 1370, 3419, 198, 197, 1370, 796, 1627, 58, 21912, 16, 60, 198, 197, 75, 796, 1627, 13, 35312, 10786, 3712, 11537, 198, 197, 25097, 2389, 796, 493, 7, 75, 58, 15, 12962, 198, 197, 17688, 796, 493, 7, 75, 58, 16, 7131, 12, 20, 21912, 16, 12962, 198, 197, 75, 796, 300, 58, 12, 16, 4083, 35312, 10786, 91, 11537, 198, 197, 3605, 62, 72, 796, 17635, 198, 197, 3605, 62, 85, 796, 17635, 198, 197, 1640, 4808, 287, 300, 25, 198, 197, 197, 3605, 62, 72, 13, 33295, 7, 5235, 411, 29795, 12962, 198, 197, 197, 3605, 62, 85, 13, 33295, 7, 16, 8, 198, 197, 83, 796, 718, 532, 18896, 7, 75, 8, 1303, 657, 5299, 642, 3520, 198, 197, 1640, 4808, 287, 2837, 7, 30053, 62, 7857, 1343, 352, 11, 3895, 62, 7857, 1343, 256, 1343, 352, 2599, 198, 197, 197, 3605, 62, 72, 13, 33295, 28264, 8, 198, 197, 197, 3605, 62, 85, 13, 33295, 7, 15, 8, 198, 197, 2, 3605, 62, 72, 13, 33295, 7, 30053, 62, 7857, 1343, 718, 8, 198, 197, 2, 3605, 62, 85, 13, 33295, 7, 17688, 8, 198, 197, 3605, 62, 72, 13, 33295, 7, 30053, 62, 7857, 1343, 642, 1343, 614, 62, 11600, 58, 17688, 12962, 198, 197, 3605, 62, 85, 13, 33295, 7, 16, 8, 198, 197, 41364, 62, 72, 58, 25097, 2389, 60, 796, 649, 62, 72, 198, 197, 41364, 62, 85, 58, 25097, 2389, 60, 796, 649, 62, 85, 198, 69, 13, 19836, 3419, 198, 198, 4798, 7, 30053, 62, 7857, 1343, 352, 11, 3895, 62, 7857, 1343, 642, 8, 198, 2, 30053, 62, 7857, 15853, 718, 198, 11600, 58, 30053, 62, 7857, 1343, 352, 60, 796, 366, 13746, 260, 12, 33991, 1, 198, 11600, 58, 30053, 62, 7857, 1343, 362, 60, 796, 366, 13746, 260, 12, 33991, 1, 198, 11600, 58, 30053, 62, 7857, 1343, 513, 60, 796, 366, 13746, 260, 12, 33991, 1, 198, 11600, 58, 30053, 62, 7857, 1343, 604, 60, 796, 366, 13746, 260, 12, 33991, 1, 198, 11600, 58, 30053, 62, 7857, 1343, 642, 60, 796, 366, 13746, 260, 12, 33991, 1, 198, 30053, 62, 7857, 15853, 642, 628, 198, 30053, 62, 7857, 15853, 352, 198, 11600, 58, 30053, 62, 7857, 60, 796, 366, 26362, 12, 1129, 1129, 12, 1129, 1959, 1, 198, 30053, 62, 7857, 15853, 352, 198, 11600, 58, 30053, 62, 7857, 60, 796, 366, 26362, 12, 1129, 1270, 12, 1129, 2670, 1, 198, 30053, 62, 7857, 15853, 352, 198, 11600, 58, 30053, 62, 7857, 60, 796, 366, 26362, 12, 1129, 1821, 12, 1129, 2920, 1, 198, 30053, 62, 7857, 15853, 352, 198, 11600, 58, 30053, 62, 7857, 60, 796, 366, 26362, 12, 42751, 12, 45403, 1, 198, 30053, 62, 7857, 15853, 352, 198, 11600, 58, 30053, 62, 7857, 60, 796, 366, 26362, 12, 38503, 12, 38391, 1, 198, 1640, 331, 287, 2837, 7, 30986, 11, 5878, 2599, 198, 197, 30053, 62, 7857, 15853, 352, 198, 197, 11600, 58, 30053, 62, 7857, 60, 796, 366, 26362, 21215, 1343, 965, 7, 88, 8, 198, 198, 4798, 7203, 4242, 25, 33172, 3895, 62, 7857, 8, 198, 4798, 7, 11925, 7, 11600, 4008, 198, 198, 4798, 7203, 464, 1271, 286, 3807, 338, 3895, 318, 25, 1600, 18896, 7, 41364, 62, 72, 4008, 198, 198, 30053, 62, 7857, 15853, 352, 1303, 329, 41033, 198, 11600, 58, 30053, 62, 7857, 60, 796, 366, 14967, 27823, 1, 198, 198, 69, 796, 1280, 10786, 10366, 654, 13, 19608, 3256, 705, 81, 11537, 198, 198, 7890, 62, 72, 796, 17635, 198, 7890, 62, 85, 796, 17635, 198, 56, 796, 17635, 198, 2, 52, 796, 17635, 198, 2, 40, 796, 17635, 198, 439, 62, 9127, 796, 8576, 22567, 198, 10366, 654, 62, 9127, 796, 657, 198, 1640, 1312, 287, 2837, 7, 16, 11, 477, 62, 9127, 1343, 352, 2599, 198, 197, 1370, 796, 277, 13, 961, 1370, 3419, 198, 197, 1370, 796, 1627, 58, 21912, 16, 60, 198, 197, 75, 796, 1627, 13, 35312, 10786, 3712, 11537, 198, 197, 88, 796, 493, 7, 75, 58, 17, 12962, 198, 197, 3605, 62, 72, 796, 2836, 62, 72, 58, 600, 7, 75, 58, 15, 12962, 4083, 30073, 3419, 198, 197, 3605, 62, 85, 796, 2836, 62, 85, 58, 600, 7, 75, 58, 15, 12962, 4083, 30073, 3419, 198, 197, 3605, 62, 72, 13, 2302, 437, 7, 41364, 62, 72, 58, 600, 7, 75, 58, 16, 12962, 12962, 198, 197, 3605, 62, 85, 13, 2302, 437, 7, 41364, 62, 85, 58, 600, 7, 75, 58, 16, 12962, 12962, 198, 197, 3605, 62, 72, 13, 33295, 7, 30053, 62, 7857, 8, 198, 197, 3605, 62, 85, 13, 33295, 7, 600, 7, 75, 58, 18, 60, 4008, 198, 197, 361, 331, 1875, 513, 25, 198, 197, 197, 88, 796, 352, 198, 197, 417, 361, 331, 1279, 513, 25, 198, 197, 197, 88, 796, 657, 198, 197, 17772, 25, 198, 197, 197, 88, 796, 532, 16, 628, 197, 361, 331, 14512, 532, 16, 25, 198, 197, 197, 7890, 62, 72, 13, 33295, 7, 3605, 62, 72, 8, 198, 197, 197, 7890, 62, 85, 13, 33295, 7, 3605, 62, 85, 8, 198, 197, 2, 197, 52, 13, 33295, 7, 600, 7, 75, 58, 15, 60, 4008, 198, 197, 2, 197, 40, 13, 33295, 7, 600, 7, 75, 58, 16, 60, 4008, 198, 197, 197, 56, 13, 33295, 7, 88, 8, 198, 197, 197, 10366, 654, 62, 9127, 15853, 352, 198, 69, 13, 19836, 3419, 198, 4798, 10786, 12102, 1271, 286, 10109, 25, 3256, 18896, 7, 7890, 62, 85, 4008, 198, 198, 4798, 10786, 21604, 1800, 1271, 796, 3256, 2160, 7, 56, 4008, 198, 4798, 7, 30053, 62, 7857, 8, 198, 4798, 7203, 35, 713, 25, 33172, 18896, 7, 11600, 4008, 198, 4798, 10786, 3237, 796, 3256, 18896, 7, 7890, 62, 72, 4008, 198, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 4738, 198, 6738, 1341, 35720, 13, 3866, 36948, 1330, 1855, 11518, 3351, 36213, 198, 1416, 36213, 796, 1855, 11518, 3351, 36213, 3419, 198, 49, 796, 17635, 198, 1640, 1312, 287, 2837, 7, 10366, 654, 62, 9127, 2599, 198, 197, 49, 13, 33295, 26933, 7890, 62, 85, 58, 72, 7131, 12, 16, 11907, 8, 198, 2, 4798, 7, 49, 8, 198, 2, 4798, 7, 37659, 13, 9806, 7, 49, 4008, 198, 2, 4798, 7, 37659, 13, 1084, 7, 49, 4008, 198, 49, 796, 16578, 263, 13, 11147, 62, 35636, 7, 49, 8, 198, 2, 4798, 7, 49, 8, 198, 198, 1640, 1312, 287, 2837, 7, 10366, 654, 62, 9127, 2599, 198, 197, 7890, 62, 85, 58, 72, 4083, 12924, 3419, 198, 197, 7890, 62, 85, 58, 72, 4083, 33295, 7, 49, 58, 72, 7131, 15, 12962, 198, 2, 197, 7890, 62, 85, 58, 72, 4083, 33295, 7, 52, 58, 72, 12962, 198, 2, 197, 7890, 62, 85, 58, 72, 4083, 33295, 7, 40, 58, 72, 12962, 198, 4798, 7, 7890, 62, 85, 58, 15, 12962, 198, 16321, 796, 17635, 198, 1640, 1312, 287, 2837, 7, 10366, 654, 62, 9127, 2599, 198, 197, 16321, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 25120, 13, 28826, 7, 23344, 8, 220, 220, 220, 220, 220, 220, 220, 220, 198, 25120, 13, 1477, 18137, 7, 16321, 8, 198, 198, 27432, 62, 9127, 796, 493, 7, 10366, 654, 62, 9127, 1635, 657, 13, 23, 8, 198, 12102, 62, 9127, 796, 493, 7, 10366, 654, 62, 9127, 1635, 657, 13, 24, 8, 198, 55, 62, 72, 62, 2213, 796, 17635, 198, 55, 62, 85, 62, 2213, 796, 17635, 198, 56, 62, 2213, 796, 17635, 198, 1640, 1312, 287, 2837, 7, 27432, 62, 9127, 2599, 198, 197, 55, 62, 72, 62, 2213, 13, 33295, 7, 7890, 62, 72, 58, 16321, 58, 72, 11907, 8, 198, 197, 55, 62, 85, 62, 2213, 13, 33295, 7, 7890, 62, 85, 58, 16321, 58, 72, 11907, 8, 198, 197, 56, 62, 2213, 13, 33295, 7, 56, 58, 16321, 58, 72, 11907, 8, 198, 198, 55, 62, 72, 62, 2213, 796, 45941, 13, 18747, 7, 55, 62, 72, 62, 2213, 8, 198, 55, 62, 85, 62, 2213, 796, 45941, 13, 18747, 7, 55, 62, 85, 62, 2213, 8, 198, 56, 62, 2213, 796, 45941, 13, 18747, 7, 56, 62, 2213, 8, 628, 198, 72, 16, 796, 1395, 62, 72, 62, 2213, 58, 45299, 657, 25, 19, 60, 198, 72, 17, 796, 1395, 62, 72, 62, 2213, 58, 45299, 604, 25, 940, 60, 198, 72, 18, 796, 1395, 62, 72, 62, 2213, 58, 45299, 838, 47715, 198, 87, 16, 796, 1395, 62, 85, 62, 2213, 58, 45299, 657, 25, 19, 60, 198, 87, 17, 796, 1395, 62, 85, 62, 2213, 58, 45299, 604, 25, 940, 60, 198, 87, 18, 796, 1395, 62, 85, 62, 2213, 58, 45299, 838, 47715, 198, 72, 19, 796, 45941, 13, 1102, 9246, 268, 378, 19510, 72, 16, 11, 72, 18, 828, 16488, 28, 16, 8, 198, 87, 19, 796, 45941, 13, 1102, 9246, 268, 378, 19510, 87, 16, 11, 87, 18, 828, 16488, 28, 16, 8, 198, 198, 37659, 13, 21928, 7203, 27432, 62, 72, 62, 35850, 13, 77, 9078, 1600, 1312, 17, 8, 198, 37659, 13, 21928, 7203, 27432, 62, 72, 62, 847, 13, 77, 9078, 1600, 1312, 19, 8, 198, 37659, 13, 21928, 7203, 27432, 62, 87, 62, 35850, 13, 77, 9078, 1600, 2124, 17, 8, 198, 37659, 13, 21928, 7203, 27432, 62, 87, 62, 847, 13, 77, 9078, 1600, 2124, 19, 8, 198, 37659, 13, 21928, 7203, 27432, 62, 88, 13, 77, 9078, 1600, 45941, 13, 18747, 7, 56, 62, 2213, 4008, 198, 2, 37659, 13, 21928, 7203, 27432, 62, 9019, 13, 77, 9078, 1600, 45941, 13, 18747, 7, 9019, 62, 2213, 4008, 198, 55, 62, 72, 62, 6862, 796, 17635, 198, 55, 62, 85, 62, 6862, 796, 17635, 198, 56, 62, 6862, 796, 17635, 198, 1640, 1312, 287, 2837, 7, 27432, 62, 9127, 11, 4938, 62, 9127, 2599, 198, 197, 55, 62, 72, 62, 6862, 13, 33295, 7, 7890, 62, 72, 58, 16321, 58, 72, 11907, 8, 198, 197, 55, 62, 85, 62, 6862, 13, 33295, 7, 7890, 62, 85, 58, 16321, 58, 72, 11907, 8, 198, 197, 56, 62, 6862, 13, 33295, 7, 56, 58, 16321, 58, 72, 11907, 8, 198, 2, 197, 9019, 62, 6862, 13, 33295, 26933, 52, 58, 16321, 58, 72, 60, 4357, 314, 58, 16321, 58, 72, 11907, 8, 198, 55, 62, 72, 62, 6862, 796, 45941, 13, 18747, 7, 55, 62, 72, 62, 6862, 8, 198, 55, 62, 85, 62, 6862, 796, 45941, 13, 18747, 7, 55, 62, 85, 62, 6862, 8, 198, 56, 62, 6862, 796, 45941, 13, 18747, 7, 56, 62, 6862, 8, 198, 198, 72, 16, 796, 1395, 62, 72, 62, 6862, 58, 45299, 657, 25, 19, 60, 198, 72, 17, 796, 1395, 62, 72, 62, 6862, 58, 45299, 604, 25, 940, 60, 198, 72, 18, 796, 1395, 62, 72, 62, 6862, 58, 45299, 838, 47715, 198, 87, 16, 796, 1395, 62, 85, 62, 6862, 58, 45299, 657, 25, 19, 60, 198, 87, 17, 796, 1395, 62, 85, 62, 6862, 58, 45299, 604, 25, 940, 60, 198, 87, 18, 796, 1395, 62, 85, 62, 6862, 58, 45299, 838, 47715, 198, 72, 19, 796, 45941, 13, 1102, 9246, 268, 378, 19510, 72, 16, 11, 72, 18, 828, 16488, 28, 16, 8, 198, 87, 19, 796, 45941, 13, 1102, 9246, 268, 378, 19510, 87, 16, 11, 87, 18, 828, 16488, 28, 16, 8, 198, 198, 37659, 13, 21928, 7203, 12102, 62, 72, 62, 35850, 13, 77, 9078, 1600, 1312, 17, 8, 198, 37659, 13, 21928, 7203, 12102, 62, 72, 62, 847, 13, 77, 9078, 1600, 1312, 19, 8, 198, 37659, 13, 21928, 7203, 12102, 62, 87, 62, 35850, 13, 77, 9078, 1600, 2124, 17, 8, 198, 37659, 13, 21928, 7203, 12102, 62, 87, 62, 847, 13, 77, 9078, 1600, 2124, 19, 8, 198, 37659, 13, 21928, 7203, 12102, 62, 88, 13, 77, 9078, 1600, 45941, 13, 18747, 7, 56, 62, 6862, 4008, 628, 198, 198, 55, 62, 72, 62, 660, 796, 17635, 198, 55, 62, 85, 62, 660, 796, 17635, 198, 56, 62, 660, 796, 17635, 198, 1640, 1312, 287, 2837, 7, 12102, 62, 9127, 11, 10109, 62, 9127, 2599, 198, 197, 55, 62, 72, 62, 660, 13, 33295, 7, 7890, 62, 72, 58, 16321, 58, 72, 11907, 8, 198, 197, 55, 62, 85, 62, 660, 13, 33295, 7, 7890, 62, 85, 58, 16321, 58, 72, 11907, 8, 198, 197, 56, 62, 660, 13, 33295, 7, 56, 58, 16321, 58, 72, 11907, 8, 198, 2, 197, 9019, 62, 660, 13, 33295, 7, 52, 58, 16321, 58, 72, 11907, 4357, 314, 58, 16321, 58, 72, 11907, 8, 628, 198, 55, 62, 72, 62, 660, 796, 45941, 13, 18747, 7, 55, 62, 72, 62, 660, 8, 198, 55, 62, 85, 62, 660, 796, 45941, 13, 18747, 7, 55, 62, 85, 62, 660, 8, 198, 56, 62, 660, 796, 45941, 13, 18747, 7, 56, 62, 660, 8, 628, 198, 72, 16, 796, 1395, 62, 72, 62, 660, 58, 45299, 657, 25, 19, 60, 198, 72, 17, 796, 1395, 62, 72, 62, 660, 58, 45299, 604, 25, 940, 60, 198, 72, 18, 796, 1395, 62, 72, 62, 660, 58, 45299, 838, 47715, 198, 87, 16, 796, 1395, 62, 85, 62, 660, 58, 45299, 657, 25, 19, 60, 198, 87, 17, 796, 1395, 62, 85, 62, 660, 58, 45299, 604, 25, 940, 60, 198, 87, 18, 796, 1395, 62, 85, 62, 660, 58, 45299, 838, 47715, 198, 72, 19, 796, 45941, 13, 1102, 9246, 268, 378, 19510, 72, 16, 11, 72, 18, 828, 16488, 28, 16, 8, 198, 87, 19, 796, 45941, 13, 1102, 9246, 268, 378, 19510, 87, 16, 11, 87, 18, 828, 16488, 28, 16, 8, 198, 198, 37659, 13, 21928, 7203, 9288, 62, 72, 62, 35850, 13, 77, 9078, 1600, 1312, 17, 8, 198, 37659, 13, 21928, 7203, 9288, 62, 72, 62, 847, 13, 77, 9078, 1600, 1312, 19, 8, 198, 37659, 13, 21928, 7203, 9288, 62, 87, 62, 35850, 13, 77, 9078, 1600, 2124, 17, 8, 198, 37659, 13, 21928, 7203, 9288, 62, 87, 62, 847, 13, 77, 9078, 1600, 2124, 19, 8, 198, 37659, 13, 21928, 7203, 9288, 62, 88, 13, 77, 9078, 1600, 45941, 13, 18747, 7, 56, 62, 660, 4008, 628, 198, 4798, 7, 11925, 7, 55, 62, 72, 62, 2213, 4008, 198, 4798, 7, 11925, 7, 55, 62, 72, 62, 6862, 4008, 198, 4798, 7, 11925, 7, 55, 62, 72, 62, 660, 4008, 198, 4798, 7, 11925, 7, 56, 4008, 198, 198, 69, 796, 1280, 7203, 30053, 13, 14116, 1600, 705, 86, 11537, 198, 69, 13, 13564, 7, 2536, 7, 11600, 4008, 198 ]
2.074425
3,695
"""syphon.schema.resolvepath.py Copyright (c) 2017-2018 Keithley Instruments, LLC. Licensed under MIT (https://github.com/ehall/syphon/blob/master/LICENSE) """ from pandas import DataFrame from sortedcontainers import SortedDict def _normalize(directory: str) -> str: """Make lowercase and replace spaces with underscores.""" directory = directory.lower() directory = directory.replace(' ', '_') if directory[-1] == '.': directory = directory[:-1] return directory def resolve_path( archive: str, schema: SortedDict, datapool: DataFrame) -> str: """Use the given schema and dataset to make a path. The base path is `archive`. Additional directories are appended for the value of each `SortedDict` entry in the given `DataFrame`. It is important that columns corresponding to a `SortedDict` entry contain a single value. A `ValueError` will be raised if more than one value exists in a target column. Args: archive (str): Directory where data is stored. schema (SortedDict): Archive directory storage schema. datapool (DataFrame): Data to use during path resolution. Return: str: The resolved path. Raises: IndexError: Schema value is not a column header of the given DataFrame. ValueError: When a column corresponding to a SortedDict entry contains more than one value. """ from os.path import join from numpy import nan result = archive for key in schema: header = schema[key] if header not in list(datapool.columns): raise IndexError( 'Schema value {} is not a column in the current DataFrame.' .format(header)) row_values = list(datapool.get(header).drop_duplicates().values) if nan in row_values: row_values.remove(nan) if len(row_values) > 1: raise ValueError( 'More than one value exists under the {} column.' .format(header)) value = row_values.pop() result = join(result, _normalize(value)) return result
[ 37811, 1837, 746, 261, 13, 15952, 2611, 13, 411, 6442, 6978, 13, 9078, 628, 220, 220, 15069, 357, 66, 8, 2177, 12, 7908, 14926, 1636, 43953, 11, 11419, 13, 198, 220, 220, 49962, 739, 17168, 357, 5450, 1378, 12567, 13, 785, 14, 17231, 439, 14, 1837, 746, 261, 14, 2436, 672, 14, 9866, 14, 43, 2149, 24290, 8, 198, 198, 37811, 198, 6738, 19798, 292, 1330, 6060, 19778, 198, 6738, 23243, 3642, 50221, 1330, 311, 9741, 35, 713, 628, 198, 4299, 4808, 11265, 1096, 7, 34945, 25, 965, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 12050, 2793, 7442, 290, 6330, 9029, 351, 41731, 526, 15931, 198, 220, 220, 220, 8619, 796, 8619, 13, 21037, 3419, 198, 220, 220, 220, 8619, 796, 8619, 13, 33491, 10786, 46083, 705, 62, 11537, 198, 220, 220, 220, 611, 8619, 58, 12, 16, 60, 6624, 705, 2637, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8619, 796, 8619, 58, 21912, 16, 60, 198, 220, 220, 220, 1441, 8619, 628, 198, 4299, 10568, 62, 6978, 7, 198, 220, 220, 220, 220, 220, 220, 220, 15424, 25, 965, 11, 32815, 25, 311, 9741, 35, 713, 11, 4818, 499, 970, 25, 6060, 19778, 8, 4613, 965, 25, 198, 220, 220, 220, 37227, 11041, 262, 1813, 32815, 290, 27039, 284, 787, 257, 3108, 13, 628, 220, 220, 220, 383, 2779, 3108, 318, 4600, 17474, 44646, 15891, 29196, 389, 598, 1631, 198, 220, 220, 220, 329, 262, 1988, 286, 1123, 4600, 50, 9741, 35, 713, 63, 5726, 287, 262, 1813, 4600, 6601, 19778, 44646, 628, 220, 220, 220, 632, 318, 1593, 326, 15180, 11188, 284, 257, 4600, 50, 9741, 35, 713, 63, 5726, 198, 220, 220, 220, 3994, 257, 2060, 1988, 13, 317, 4600, 11395, 12331, 63, 481, 307, 4376, 611, 517, 621, 198, 220, 220, 220, 530, 1988, 7160, 287, 257, 2496, 5721, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 15424, 357, 2536, 2599, 27387, 810, 1366, 318, 8574, 13, 198, 220, 220, 220, 220, 220, 220, 220, 32815, 357, 50, 9741, 35, 713, 2599, 20816, 8619, 6143, 32815, 13, 198, 220, 220, 220, 220, 220, 220, 220, 4818, 499, 970, 357, 6601, 19778, 2599, 6060, 284, 779, 1141, 3108, 6323, 13, 628, 220, 220, 220, 8229, 25, 198, 220, 220, 220, 220, 220, 220, 220, 965, 25, 383, 12939, 3108, 13, 628, 220, 220, 220, 7567, 2696, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12901, 12331, 25, 10011, 2611, 1988, 318, 407, 257, 5721, 13639, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1813, 6060, 19778, 13, 198, 220, 220, 220, 220, 220, 220, 220, 11052, 12331, 25, 1649, 257, 5721, 11188, 284, 257, 311, 9741, 35, 713, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5726, 4909, 517, 621, 530, 1988, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 28686, 13, 6978, 1330, 4654, 628, 220, 220, 220, 422, 299, 32152, 1330, 15709, 628, 220, 220, 220, 1255, 796, 15424, 628, 220, 220, 220, 329, 1994, 287, 32815, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 796, 32815, 58, 2539, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 13639, 407, 287, 1351, 7, 19608, 499, 970, 13, 28665, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 12901, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 27054, 2611, 1988, 23884, 318, 407, 257, 5721, 287, 262, 1459, 6060, 19778, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 18982, 7, 25677, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 5752, 62, 27160, 796, 1351, 7, 19608, 499, 970, 13, 1136, 7, 25677, 737, 14781, 62, 646, 489, 16856, 22446, 27160, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 15709, 287, 5752, 62, 27160, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5752, 62, 27160, 13, 28956, 7, 12647, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 808, 62, 27160, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 5167, 621, 530, 1988, 7160, 739, 262, 23884, 5721, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 18982, 7, 25677, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 5752, 62, 27160, 13, 12924, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 4654, 7, 20274, 11, 4808, 11265, 1096, 7, 8367, 4008, 628, 220, 220, 220, 1441, 1255, 198 ]
2.657635
812
# Generated by Django 3.2.3 on 2021-07-14 16:22 from django.db import migrations, models import django.db.models.deletion
[ 2, 2980, 515, 416, 37770, 513, 13, 17, 13, 18, 319, 33448, 12, 2998, 12, 1415, 1467, 25, 1828, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 198, 11748, 42625, 14208, 13, 9945, 13, 27530, 13, 2934, 1616, 295, 628 ]
2.818182
44
from flask import Flask from flask_pymongo import pymongo from app import app CONNECTION_STRING = "mongodb+srv://swayam:[email protected]/newsfeedbacksystem?retryWrites=true&w=majority" client = pymongo.MongoClient(CONNECTION_STRING) db = client.get_database('newsfeedbacksystem') store = pymongo.collection.Collection(db, 'store')
[ 6738, 42903, 1330, 46947, 198, 6738, 42903, 62, 79, 4948, 25162, 1330, 279, 4948, 25162, 198, 6738, 598, 1330, 598, 198, 10943, 45, 24565, 62, 18601, 2751, 796, 366, 31059, 375, 65, 10, 27891, 85, 1378, 82, 1014, 321, 25, 82, 1014, 321, 10163, 31, 565, 5819, 15, 13, 86, 25011, 13210, 13, 31059, 375, 65, 13, 3262, 14, 10827, 12363, 1891, 10057, 30, 1186, 563, 20257, 274, 28, 7942, 5, 86, 28, 35839, 1, 198, 16366, 796, 279, 4948, 25162, 13, 44, 25162, 11792, 7, 10943, 45, 24565, 62, 18601, 2751, 8, 198, 9945, 796, 5456, 13, 1136, 62, 48806, 10786, 10827, 12363, 1891, 10057, 11537, 198, 8095, 796, 279, 4948, 25162, 13, 43681, 13, 36307, 7, 9945, 11, 705, 8095, 11537 ]
2.845528
123
## # Copyright (c) 2012-2017 Apple Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ## """ Test cases for L{twext.enterprise.dal.record}. """ import datetime from twisted.internet.defer import inlineCallbacks, gatherResults, returnValue from twisted.trial.unittest import TestCase, SkipTest from twext.enterprise.dal.record import ( Record, fromTable, ReadOnly, NoSuchRecord, SerializableRecord) from twext.enterprise.dal.test.test_parseschema import SchemaTestHelper from twext.enterprise.dal.syntax import SchemaSyntax from twext.enterprise.fixtures import buildConnectionPool # from twext.enterprise.dal.syntax import sth = SchemaTestHelper() sth.id = lambda: __name__ schemaString = """ create table ALPHA (BETA integer primary key, GAMMA text); create table DELTA (PHI integer primary key default (nextval('myseq')), EPSILON text not null, ZETA timestamp not null default '2012-12-12 12:12:12' ); """ # sqlite can be made to support nextval() as a function, but 'create sequence' # is syntax and can't. parseableSchemaString = """ create sequence myseq; """ + schemaString try: testSchema = SchemaSyntax(sth.schemaFromString(parseableSchemaString)) except SkipTest as e: Alpha = Delta = object skip = e else: Alpha = fromTable(testSchema.ALPHA) Delta = fromTable(testSchema.DELTA) skip = False class TestRecord(Record, Alpha): """ A sample test record. """ class TestSerializeRecord(SerializableRecord, Alpha): """ A sample test serializable record with default values specified. """ class TestAutoRecord(Record, Delta): """ A sample test record with default values specified. """ class TestCRUD(TestCase): """ Tests for creation, mutation, and deletion operations. """ @inlineCallbacks def test_simpleLoad(self): """ Loading an existing row from the database by its primary key will populate its attributes from columns of the corresponding row in the database. """ txn = self.pool.connection() yield txn.execSQL("insert into ALPHA values (:1, :2)", [234, "one"]) yield txn.execSQL("insert into ALPHA values (:1, :2)", [456, "two"]) rec = yield TestRecord.load(txn, 456) self.assertIsInstance(rec, TestRecord) self.assertEquals(rec.beta, 456) self.assertEquals(rec.gamma, "two") rec2 = yield TestRecord.load(txn, 234) self.assertIsInstance(rec2, TestRecord) self.assertEqual(rec2.beta, 234) self.assertEqual(rec2.gamma, "one") @inlineCallbacks def test_missingLoad(self): """ Try loading an row which doesn't exist """ txn = self.pool.connection() yield txn.execSQL("insert into ALPHA values (:1, :2)", [234, "one"]) yield self.assertFailure(TestRecord.load(txn, 456), NoSuchRecord) @inlineCallbacks def test_simpleCreate(self): """ When a record object is created, a row with matching column values will be created in the database. """ txn = self.pool.connection() rec = yield TestRecord.create(txn, beta=3, gamma=u'epsilon') self.assertEquals(rec.beta, 3) self.assertEqual(rec.gamma, u'epsilon') rows = yield txn.execSQL("select BETA, GAMMA from ALPHA") self.assertEqual(rows, [tuple([3, u'epsilon'])]) @inlineCallbacks def test_simpleDelete(self): """ When a record object is deleted, a row with a matching primary key will be deleted in the database. """ txn = self.pool.connection() yield gatherResults( [mkrow(123, u"one"), mkrow(234, u"two"), mkrow(345, u"three")] ) tr = yield TestRecord.load(txn, 234) yield tr.delete() rows = yield txn.execSQL("select BETA, GAMMA from ALPHA order by BETA") self.assertEqual(rows, [(123, u"one"), (345, u"three")]) @inlineCallbacks def oneRowCommitted(self, beta=123, gamma=u'456'): """ Create, commit, and return one L{TestRecord}. """ txn = self.pool.connection(self.id()) row = yield TestRecord.create(txn, beta=beta, gamma=gamma) yield txn.commit() returnValue(row) @inlineCallbacks def test_deleteWhenDeleted(self): """ When a record object is deleted, if it's already been deleted, it will raise L{NoSuchRecord}. """ row = yield self.oneRowCommitted() txn = self.pool.connection(self.id()) newRow = yield TestRecord.load(txn, row.beta) yield newRow.delete() yield self.assertFailure(newRow.delete(), NoSuchRecord) @inlineCallbacks def test_cantCreateWithoutRequiredValues(self): """ When a L{Record} object is created without required values, it raises a L{TypeError}. """ txn = self.pool.connection() te = yield self.assertFailure(TestAutoRecord.create(txn), TypeError) self.assertIn("required attribute 'epsilon' not passed", str(te)) @inlineCallbacks def test_datetimeType(self): """ When a L{Record} references a timestamp column, it retrieves the date as UTC. """ txn = self.pool.connection() # Create ... rec = yield TestAutoRecord.create(txn, epsilon=1) self.assertEquals( rec.zeta, datetime.datetime(2012, 12, 12, 12, 12, 12) ) yield txn.commit() # ... should have the same effect as loading. txn = self.pool.connection() rec = (yield TestAutoRecord.all(txn))[0] self.assertEquals( rec.zeta, datetime.datetime(2012, 12, 12, 12, 12, 12) ) @inlineCallbacks def test_tooManyAttributes(self): """ When a L{Record} object is created with unknown attributes (those which don't map to any column), it raises a L{TypeError}. """ txn = self.pool.connection() te = yield self.assertFailure( TestRecord.create( txn, beta=3, gamma=u'three', extraBonusAttribute=u'nope', otherBonusAttribute=4321, ), TypeError ) self.assertIn("extraBonusAttribute, otherBonusAttribute", str(te)) @inlineCallbacks def test_createFillsInPKey(self): """ If L{Record.create} is called without an auto-generated primary key value for its row, that value will be generated and set on the returned object. """ txn = self.pool.connection() tr = yield TestAutoRecord.create(txn, epsilon=u'specified') tr2 = yield TestAutoRecord.create(txn, epsilon=u'also specified') self.assertEquals(tr.phi, 1) self.assertEquals(tr2.phi, 2) @inlineCallbacks def test_attributesArentMutableYet(self): """ Changing attributes on a database object is not supported yet, because it's not entirely clear when to flush the SQL to the database. Instead, for the time being, use C{.update}. When you attempt to set an attribute, an error will be raised informing you of this fact, so that the error is clear. """ txn = self.pool.connection() rec = yield TestRecord.create(txn, beta=7, gamma=u'what') ro = self.assertRaises(ReadOnly, setit) self.assertEqual(rec.beta, 7) self.assertIn("SQL-backed attribute 'TestRecord.beta' is read-only. " "Use '.update(...)' to modify attributes.", str(ro)) @inlineCallbacks def test_simpleUpdate(self): """ L{Record.update} will change the values on the record and in te database. """ txn = self.pool.connection() rec = yield TestRecord.create(txn, beta=3, gamma=u'epsilon') yield rec.update(gamma=u'otherwise') self.assertEqual(rec.gamma, u'otherwise') yield txn.commit() # Make sure that it persists. txn = self.pool.connection() rec = yield TestRecord.load(txn, 3) self.assertEqual(rec.gamma, u'otherwise') @inlineCallbacks def test_simpleQuery(self): """ L{Record.query} will allow you to query for a record by its class attributes as columns. """ txn = self.pool.connection() for beta, gamma in [(123, u"one"), (234, u"two"), (345, u"three"), (356, u"three"), (456, u"four")]: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) records = yield TestRecord.query(txn, TestRecord.gamma == u"three") self.assertEqual(len(records), 2) records.sort(key=lambda x: x.beta) self.assertEqual(records[0].beta, 345) self.assertEqual(records[1].beta, 356) @inlineCallbacks def test_querySimple(self): """ L{Record.querysimple} will allow you to query for a record by its class attributes as columns. """ txn = self.pool.connection() for beta, gamma in [(123, u"one"), (234, u"two"), (345, u"three"), (356, u"three"), (456, u"four")]: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) records = yield TestRecord.querysimple(txn, gamma=u"three") self.assertEqual(len(records), 2) records.sort(key=lambda x: x.beta) self.assertEqual(records[0].beta, 345) self.assertEqual(records[1].beta, 356) @inlineCallbacks def test_eq(self): """ L{Record.__eq__} works. """ txn = self.pool.connection() data = [(123, u"one"), (456, u"four"), (345, u"three"), (234, u"two"), (356, u"three")] for beta, gamma in data: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) one = yield TestRecord.load(txn, 123) one_copy = yield TestRecord.load(txn, 123) two = yield TestRecord.load(txn, 234) self.assertTrue(one == one_copy) self.assertFalse(one == two) @inlineCallbacks def test_all(self): """ L{Record.all} will return all instances of the record, sorted by primary key. """ txn = self.pool.connection() data = [(123, u"one"), (456, u"four"), (345, u"three"), (234, u"two"), (356, u"three")] for beta, gamma in data: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) self.assertEqual( [(x.beta, x.gamma) for x in (yield TestRecord.all(txn))], sorted(data) ) @inlineCallbacks def test_count(self): """ L{Record.count} will return count of the records """ txn = self.pool.connection() data = [(123, u"one"), (456, u"four"), (345, u"three"), (234, u"two"), (356, u"three")] for beta, gamma in data: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) self.assertEqual( (yield TestRecord.count(txn)), len(data) ) @inlineCallbacks def test_updatesome(self): """ L{Record.updatesome} will update all instances of the matching records. """ txn = self.pool.connection() data = [(123, u"one"), (456, u"four"), (345, u"three"), (234, u"two"), (356, u"three")] for beta, gamma in data: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) yield TestRecord.updatesome(txn, where=(TestRecord.beta == 123), gamma=u"changed") yield txn.commit() txn = self.pool.connection() records = yield TestRecord.all(txn) self.assertEqual( set([(record.beta, record.gamma,) for record in records]), set([ (123, u"changed"), (456, u"four"), (345, u"three"), (234, u"two"), (356, u"three") ]) ) yield TestRecord.updatesome(txn, where=(TestRecord.beta.In((234, 345,))), gamma=u"changed-2") yield txn.commit() txn = self.pool.connection() records = yield TestRecord.all(txn) self.assertEqual( set([(record.beta, record.gamma,) for record in records]), set([ (123, u"changed"), (456, u"four"), (345, u"changed-2"), (234, u"changed-2"), (356, u"three") ]) ) @inlineCallbacks def test_deleteall(self): """ L{Record.deleteall} will delete all instances of the record. """ txn = self.pool.connection() data = [(123, u"one"), (456, u"four"), (345, u"three"), (234, u"two"), (356, u"three")] for beta, gamma in data: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) yield TestRecord.deleteall(txn) all = yield TestRecord.all(txn) self.assertEqual(len(all), 0) @inlineCallbacks def test_deletesome(self): """ L{Record.deletesome} will delete all instances of the matching records. """ txn = self.pool.connection() data = [(123, u"one"), (456, u"four"), (345, u"three"), (234, u"two"), (356, u"three")] for beta, gamma in data: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) yield TestRecord.deletesome(txn, TestRecord.gamma == u"three") all = yield TestRecord.all(txn) self.assertEqual(set([record.beta for record in all]), set((123, 456, 234,))) yield TestRecord.deletesome(txn, (TestRecord.gamma == u"one").Or(TestRecord.gamma == u"two")) all = yield TestRecord.all(txn) self.assertEqual(set([record.beta for record in all]), set((456,))) @inlineCallbacks def test_deletesimple(self): """ L{Record.deletesimple} will delete all instances of the matching records. """ txn = self.pool.connection() data = [(123, u"one"), (456, u"four"), (345, u"three"), (234, u"two"), (356, u"three")] for beta, gamma in data: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) yield TestRecord.deletesimple(txn, gamma=u"three") all = yield TestRecord.all(txn) self.assertEqual(set([record.beta for record in all]), set((123, 456, 234,))) yield TestRecord.deletesimple(txn, beta=123, gamma=u"one") all = yield TestRecord.all(txn) self.assertEqual(set([record.beta for record in all]), set((456, 234))) @inlineCallbacks def test_repr(self): """ The C{repr} of a L{Record} presents all its values. """ txn = self.pool.connection() yield txn.execSQL("insert into ALPHA values (:1, :2)", [789, u'nine']) rec = list((yield TestRecord.all(txn)))[0] self.assertIn(" beta=789", repr(rec)) self.assertIn(" gamma=u'nine'", repr(rec)) @inlineCallbacks def test_orderedQuery(self): """ L{Record.query} takes an 'order' argument which will allow the objects returned to be ordered. """ txn = self.pool.connection() for beta, gamma in [(123, u"one"), (234, u"two"), (345, u"three"), (356, u"three"), (456, u"four")]: yield txn.execSQL("insert into ALPHA values (:1, :2)", [beta, gamma]) records = yield TestRecord.query( txn, TestRecord.gamma == u"three", TestRecord.beta ) self.assertEqual([record.beta for record in records], [345, 356]) records = yield TestRecord.query( txn, TestRecord.gamma == u"three", TestRecord.beta, ascending=False ) self.assertEqual([record.beta for record in records], [356, 345]) @inlineCallbacks def test_pop(self): """ A L{Record} may be loaded and deleted atomically, with L{Record.pop}. """ txn = self.pool.connection() for beta, gamma in [ (123, u"one"), (234, u"two"), (345, u"three"), (356, u"three"), (456, u"four"), ]: yield txn.execSQL( "insert into ALPHA values (:1, :2)", [beta, gamma] ) rec = yield TestRecord.pop(txn, 234) self.assertEqual(rec.gamma, u'two') self.assertEqual( (yield txn.execSQL( "select count(*) from ALPHA where BETA = :1", [234] )), [tuple([0])] ) yield self.assertFailure(TestRecord.pop(txn, 234), NoSuchRecord) def test_columnNamingConvention(self): """ The naming convention maps columns C{LIKE_THIS} to be attributes C{likeThis}. """ self.assertEqual( Record.namingConvention(u"like_this"), "likeThis" ) self.assertEqual( Record.namingConvention(u"LIKE_THIS"), "likeThis" ) self.assertEqual( Record.namingConvention(u"LIKE_THIS_ID"), "likeThisID" ) @inlineCallbacks def test_lock(self): """ A L{Record} may be locked, with L{Record.lock}. """ txn = self.pool.connection() for beta, gamma in [ (123, u"one"), (234, u"two"), (345, u"three"), (356, u"three"), (456, u"four"), ]: yield txn.execSQL( "insert into ALPHA values (:1, :2)", [beta, gamma] ) rec = yield TestRecord.load(txn, 234) yield rec.lock() self.assertEqual(rec.gamma, u'two') @inlineCallbacks def test_trylock(self): """ A L{Record} may be locked, with L{Record.trylock}. """ txn = self.pool.connection() for beta, gamma in [ (123, u"one"), (234, u"two"), (345, u"three"), (356, u"three"), (456, u"four"), ]: yield txn.execSQL( "insert into ALPHA values (:1, :2)", [beta, gamma] ) rec = yield TestRecord.load(txn, 234) result = yield rec.trylock() self.assertTrue(result) @inlineCallbacks def test_serialize(self): """ A L{SerializableRecord} may be serialized. """ txn = self.pool.connection() for beta, gamma in [ (123, u"one"), (234, u"two"), (345, u"three"), (356, u"three"), (456, u"four"), ]: yield txn.execSQL( "insert into ALPHA values (:1, :2)", [beta, gamma] ) rec = yield TestSerializeRecord.load(txn, 234) result = rec.serialize() self.assertEqual(result, {"beta": 234, "gamma": u"two"}) @inlineCallbacks def test_deserialize(self): """ A L{SerializableRecord} may be deserialized. """ txn = self.pool.connection() rec = yield TestSerializeRecord.deserialize({"beta": 234, "gamma": u"two"}) yield rec.insert(txn) yield txn.commit() txn = self.pool.connection() rec = yield TestSerializeRecord.query(txn, TestSerializeRecord.beta == 234) self.assertEqual(len(rec), 1) self.assertEqual(rec[0].gamma, u"two") yield txn.commit() # Check that attributes can be changed prior to insert, and not after txn = self.pool.connection() rec = yield TestSerializeRecord.deserialize({"beta": 456, "gamma": u"one"}) rec.gamma = u"four" yield rec.insert(txn) self.assertRaises(ReadOnly, _raise) yield txn.commit() txn = self.pool.connection() rec = yield TestSerializeRecord.query(txn, TestSerializeRecord.beta == 456) self.assertEqual(len(rec), 1) self.assertEqual(rec[0].gamma, u"four") yield txn.commit()
[ 2235, 198, 2, 15069, 357, 66, 8, 2321, 12, 5539, 4196, 3457, 13, 1439, 2489, 10395, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 2235, 198, 198, 37811, 198, 14402, 2663, 329, 406, 90, 83, 732, 742, 13, 9255, 7919, 13, 31748, 13, 22105, 27422, 198, 37811, 198, 198, 11748, 4818, 8079, 198, 198, 6738, 19074, 13, 37675, 13, 4299, 263, 1330, 26098, 14134, 10146, 11, 6431, 25468, 11, 1441, 11395, 198, 6738, 19074, 13, 45994, 13, 403, 715, 395, 1330, 6208, 20448, 11, 32214, 14402, 198, 198, 6738, 665, 2302, 13, 9255, 7919, 13, 31748, 13, 22105, 1330, 357, 198, 220, 220, 220, 13266, 11, 422, 10962, 11, 4149, 10049, 11, 1400, 16678, 23739, 11, 198, 220, 220, 220, 23283, 13821, 23739, 8, 198, 6738, 665, 2302, 13, 9255, 7919, 13, 31748, 13, 9288, 13, 9288, 62, 79, 945, 274, 2395, 2611, 1330, 10011, 2611, 14402, 47429, 198, 6738, 665, 2302, 13, 9255, 7919, 13, 31748, 13, 1837, 41641, 1330, 10011, 2611, 13940, 41641, 198, 6738, 665, 2302, 13, 9255, 7919, 13, 69, 25506, 1330, 1382, 32048, 27201, 198, 198, 2, 422, 665, 2302, 13, 9255, 7919, 13, 31748, 13, 1837, 41641, 1330, 628, 198, 48476, 796, 10011, 2611, 14402, 47429, 3419, 198, 48476, 13, 312, 796, 37456, 25, 11593, 3672, 834, 198, 15952, 2611, 10100, 796, 37227, 198, 17953, 3084, 42674, 7801, 357, 33, 20892, 18253, 4165, 1994, 11, 49965, 5673, 2420, 1776, 198, 17953, 3084, 28163, 5603, 357, 11909, 40, 18253, 4165, 1994, 4277, 357, 19545, 2100, 10786, 1820, 41068, 11537, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47013, 4146, 1340, 2420, 407, 9242, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1168, 20892, 41033, 407, 9242, 4277, 705, 6999, 12, 1065, 12, 1065, 1105, 25, 1065, 25, 1065, 6, 5619, 198, 37811, 198, 198, 2, 44161, 578, 460, 307, 925, 284, 1104, 1306, 2100, 3419, 355, 257, 2163, 11, 475, 705, 17953, 8379, 6, 198, 2, 318, 15582, 290, 460, 470, 13, 198, 29572, 540, 27054, 2611, 10100, 796, 37227, 198, 17953, 8379, 616, 41068, 26, 198, 37811, 1343, 32815, 10100, 198, 198, 28311, 25, 198, 220, 220, 220, 1332, 27054, 2611, 796, 10011, 2611, 13940, 41641, 7, 48476, 13, 15952, 2611, 4863, 10100, 7, 29572, 540, 27054, 2611, 10100, 4008, 198, 16341, 32214, 14402, 355, 304, 25, 198, 220, 220, 220, 12995, 796, 16978, 796, 2134, 198, 220, 220, 220, 14267, 796, 304, 198, 17772, 25, 198, 220, 220, 220, 12995, 796, 422, 10962, 7, 9288, 27054, 2611, 13, 1847, 47, 7801, 8, 198, 220, 220, 220, 16978, 796, 422, 10962, 7, 9288, 27054, 2611, 13, 35, 3698, 5603, 8, 198, 220, 220, 220, 14267, 796, 10352, 628, 198, 4871, 6208, 23739, 7, 23739, 11, 12995, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 6291, 1332, 1700, 13, 198, 220, 220, 220, 37227, 628, 198, 4871, 6208, 32634, 1096, 23739, 7, 32634, 13821, 23739, 11, 12995, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 6291, 1332, 11389, 13821, 1700, 351, 4277, 3815, 7368, 13, 198, 220, 220, 220, 37227, 628, 198, 4871, 6208, 27722, 23739, 7, 23739, 11, 16978, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 6291, 1332, 1700, 351, 4277, 3815, 7368, 13, 198, 220, 220, 220, 37227, 628, 198, 4871, 6208, 9419, 8322, 7, 14402, 20448, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 30307, 329, 6282, 11, 15148, 11, 290, 39948, 4560, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 36439, 8912, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 12320, 281, 4683, 5752, 422, 262, 6831, 416, 663, 4165, 1994, 481, 198, 220, 220, 220, 220, 220, 220, 220, 48040, 663, 12608, 422, 15180, 286, 262, 11188, 5752, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 6831, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 685, 24409, 11, 366, 505, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 685, 29228, 11, 366, 11545, 8973, 8, 628, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 604, 3980, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 3792, 33384, 7, 8344, 11, 6208, 23739, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 23588, 874, 7, 8344, 13, 31361, 11, 604, 3980, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 23588, 874, 7, 8344, 13, 28483, 2611, 11, 366, 11545, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 664, 17, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 34323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 3792, 33384, 7, 8344, 17, 11, 6208, 23739, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 17, 13, 31361, 11, 34323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 17, 13, 28483, 2611, 11, 366, 505, 4943, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 45688, 8912, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 9993, 11046, 281, 5752, 543, 1595, 470, 2152, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 685, 24409, 11, 366, 505, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 2116, 13, 30493, 50015, 7, 14402, 23739, 13, 2220, 7, 17602, 77, 11, 604, 3980, 828, 1400, 16678, 23739, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 36439, 16447, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 257, 1700, 2134, 318, 2727, 11, 257, 5752, 351, 12336, 5721, 3815, 481, 198, 220, 220, 220, 220, 220, 220, 220, 307, 2727, 287, 262, 6831, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 23739, 13, 17953, 7, 17602, 77, 11, 12159, 28, 18, 11, 34236, 28, 84, 6, 538, 18217, 261, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 23588, 874, 7, 8344, 13, 31361, 11, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 13, 28483, 2611, 11, 334, 6, 538, 18217, 261, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 15274, 796, 7800, 27765, 77, 13, 18558, 17861, 7203, 19738, 347, 20892, 11, 49965, 5673, 422, 42674, 7801, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8516, 11, 685, 83, 29291, 26933, 18, 11, 334, 6, 538, 18217, 261, 6, 12962, 12962, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 36439, 38727, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 257, 1700, 2134, 318, 13140, 11, 257, 5752, 351, 257, 12336, 4165, 1994, 481, 198, 220, 220, 220, 220, 220, 220, 220, 307, 13140, 287, 262, 6831, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 7800, 6431, 25468, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 28015, 808, 7, 10163, 11, 334, 1, 505, 12340, 33480, 808, 7, 24409, 11, 334, 1, 11545, 12340, 33480, 808, 7, 27712, 11, 334, 1, 15542, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 491, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 34323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 491, 13, 33678, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 15274, 796, 7800, 27765, 77, 13, 18558, 17861, 7203, 19738, 347, 20892, 11, 49965, 5673, 422, 42674, 7801, 1502, 416, 347, 20892, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8516, 11, 47527, 10163, 11, 334, 1, 505, 12340, 357, 27712, 11, 334, 1, 15542, 4943, 12962, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 530, 25166, 6935, 2175, 7, 944, 11, 12159, 28, 10163, 11, 34236, 28, 84, 6, 29228, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13610, 11, 4589, 11, 290, 1441, 530, 406, 90, 14402, 23739, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 7, 944, 13, 312, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 5752, 796, 7800, 6208, 23739, 13, 17953, 7, 17602, 77, 11, 12159, 28, 31361, 11, 34236, 28, 28483, 2611, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 11395, 7, 808, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 33678, 2215, 5005, 33342, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 257, 1700, 2134, 318, 13140, 11, 611, 340, 338, 1541, 587, 13140, 11, 340, 481, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 406, 90, 2949, 16678, 23739, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 5752, 796, 7800, 2116, 13, 505, 25166, 6935, 2175, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 7, 944, 13, 312, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 649, 25166, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 5752, 13, 31361, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 649, 25166, 13, 33678, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 2116, 13, 30493, 50015, 7, 3605, 25166, 13, 33678, 22784, 1400, 16678, 23739, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 66, 415, 16447, 16249, 37374, 40161, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 257, 406, 90, 23739, 92, 2134, 318, 2727, 1231, 2672, 3815, 11, 340, 12073, 257, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 6030, 12331, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 573, 796, 7800, 2116, 13, 30493, 50015, 7, 14402, 27722, 23739, 13, 17953, 7, 17602, 77, 828, 5994, 12331, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 818, 7203, 35827, 11688, 705, 538, 18217, 261, 6, 407, 3804, 1600, 965, 7, 660, 4008, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 19608, 8079, 6030, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 257, 406, 90, 23739, 92, 10288, 257, 41033, 5721, 11, 340, 13236, 1158, 262, 3128, 198, 220, 220, 220, 220, 220, 220, 220, 355, 18119, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 27722, 23739, 13, 17953, 7, 17602, 77, 11, 304, 862, 33576, 28, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 23588, 874, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 664, 13, 89, 17167, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4818, 8079, 13, 19608, 8079, 7, 6999, 11, 1105, 11, 1105, 11, 1105, 11, 1105, 11, 1105, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2644, 815, 423, 262, 976, 1245, 355, 11046, 13, 628, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 357, 88, 1164, 6208, 27722, 23739, 13, 439, 7, 17602, 77, 4008, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 23588, 874, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 664, 13, 89, 17167, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4818, 8079, 13, 19608, 8079, 7, 6999, 11, 1105, 11, 1105, 11, 1105, 11, 1105, 11, 1105, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 18820, 7085, 29021, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1649, 257, 406, 90, 23739, 92, 2134, 318, 2727, 351, 6439, 12608, 357, 25591, 543, 198, 220, 220, 220, 220, 220, 220, 220, 836, 470, 3975, 284, 597, 5721, 828, 340, 12073, 257, 406, 90, 6030, 12331, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 573, 796, 7800, 2116, 13, 30493, 50015, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6208, 23739, 13, 17953, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 11, 12159, 28, 18, 11, 34236, 28, 84, 470, 71, 631, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 29435, 33682, 28, 84, 6, 77, 3008, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 584, 29435, 33682, 28, 3559, 2481, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5994, 12331, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 818, 7203, 26086, 29435, 33682, 11, 584, 29435, 33682, 1600, 965, 7, 660, 4008, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 17953, 37, 2171, 818, 47, 9218, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 406, 90, 23739, 13, 17953, 92, 318, 1444, 1231, 281, 8295, 12, 27568, 4165, 1994, 198, 220, 220, 220, 220, 220, 220, 220, 1988, 329, 663, 5752, 11, 326, 1988, 481, 307, 7560, 290, 900, 319, 262, 4504, 198, 220, 220, 220, 220, 220, 220, 220, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 491, 796, 7800, 6208, 27722, 23739, 13, 17953, 7, 17602, 77, 11, 304, 862, 33576, 28, 84, 338, 43106, 1431, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 491, 17, 796, 7800, 6208, 27722, 23739, 13, 17953, 7, 17602, 77, 11, 304, 862, 33576, 28, 84, 6, 14508, 7368, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 23588, 874, 7, 2213, 13, 34846, 11, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 23588, 874, 7, 2213, 17, 13, 34846, 11, 362, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 1078, 7657, 32, 1156, 44, 18187, 11486, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 33680, 12608, 319, 257, 6831, 2134, 318, 407, 4855, 1865, 11, 780, 198, 220, 220, 220, 220, 220, 220, 220, 340, 338, 407, 5000, 1598, 618, 284, 24773, 262, 16363, 284, 262, 6831, 13, 198, 220, 220, 220, 220, 220, 220, 220, 5455, 11, 329, 262, 640, 852, 11, 779, 327, 90, 13, 19119, 27422, 220, 1649, 345, 2230, 284, 900, 198, 220, 220, 220, 220, 220, 220, 220, 281, 11688, 11, 281, 4049, 481, 307, 4376, 29140, 345, 286, 428, 1109, 11, 523, 198, 220, 220, 220, 220, 220, 220, 220, 326, 262, 4049, 318, 1598, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 23739, 13, 17953, 7, 17602, 77, 11, 12159, 28, 22, 11, 34236, 28, 84, 6, 10919, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 686, 796, 2116, 13, 30493, 21762, 2696, 7, 5569, 10049, 11, 900, 270, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 13, 31361, 11, 767, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 818, 7203, 17861, 12, 17078, 11688, 705, 14402, 23739, 13, 31361, 6, 318, 1100, 12, 8807, 13, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11041, 45302, 19119, 7, 23029, 6, 284, 13096, 12608, 33283, 965, 7, 305, 4008, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 36439, 10260, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 19119, 92, 481, 1487, 262, 3815, 319, 262, 1700, 290, 287, 573, 198, 220, 220, 220, 220, 220, 220, 220, 6831, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 23739, 13, 17953, 7, 17602, 77, 11, 12159, 28, 18, 11, 34236, 28, 84, 6, 538, 18217, 261, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 664, 13, 19119, 7, 28483, 2611, 28, 84, 6, 847, 3083, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 13, 28483, 2611, 11, 334, 6, 847, 3083, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6889, 1654, 326, 340, 35545, 13, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 513, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 13, 28483, 2611, 11, 334, 6, 847, 3083, 11537, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 36439, 20746, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 22766, 92, 481, 1249, 345, 284, 12405, 329, 257, 1700, 416, 663, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 12608, 355, 15180, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 47527, 10163, 11, 334, 1, 505, 12340, 357, 24409, 11, 334, 1, 11545, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 32066, 11, 334, 1, 15542, 12340, 357, 29228, 11, 334, 1, 14337, 4943, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4406, 796, 7800, 6208, 23739, 13, 22766, 7, 17602, 77, 11, 6208, 23739, 13, 28483, 2611, 6624, 334, 1, 15542, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 8344, 3669, 828, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4406, 13, 30619, 7, 2539, 28, 50033, 2124, 25, 2124, 13, 31361, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 3669, 58, 15, 4083, 31361, 11, 39937, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 3669, 58, 16, 4083, 31361, 11, 44552, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 22766, 26437, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 10819, 893, 320, 1154, 92, 481, 1249, 345, 284, 12405, 329, 257, 1700, 416, 663, 1398, 198, 220, 220, 220, 220, 220, 220, 220, 12608, 355, 15180, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 47527, 10163, 11, 334, 1, 505, 12340, 357, 24409, 11, 334, 1, 11545, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 32066, 11, 334, 1, 15542, 12340, 357, 29228, 11, 334, 1, 14337, 4943, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4406, 796, 7800, 6208, 23739, 13, 10819, 893, 320, 1154, 7, 17602, 77, 11, 34236, 28, 84, 1, 15542, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 8344, 3669, 828, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4406, 13, 30619, 7, 2539, 28, 50033, 2124, 25, 2124, 13, 31361, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 3669, 58, 15, 4083, 31361, 11, 39937, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 3669, 58, 16, 4083, 31361, 11, 44552, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 27363, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 834, 27363, 834, 92, 2499, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 47527, 10163, 11, 334, 1, 505, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 530, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 17031, 8, 198, 220, 220, 220, 220, 220, 220, 220, 530, 62, 30073, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 17031, 8, 198, 220, 220, 220, 220, 220, 220, 220, 734, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 34323, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 17821, 7, 505, 6624, 530, 62, 30073, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 25101, 7, 505, 6624, 734, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 439, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 439, 92, 481, 1441, 477, 10245, 286, 262, 1700, 11, 23243, 416, 198, 220, 220, 220, 220, 220, 220, 220, 4165, 1994, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 47527, 10163, 11, 334, 1, 505, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47527, 87, 13, 31361, 11, 2124, 13, 28483, 2611, 8, 329, 2124, 287, 357, 88, 1164, 6208, 23739, 13, 439, 7, 17602, 77, 4008, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23243, 7, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 9127, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 9127, 92, 481, 1441, 954, 286, 262, 4406, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 47527, 10163, 11, 334, 1, 505, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 88, 1164, 6208, 23739, 13, 9127, 7, 17602, 77, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18896, 7, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 929, 19581, 462, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 929, 19581, 462, 92, 481, 4296, 477, 10245, 286, 262, 12336, 4406, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 47527, 10163, 11, 334, 1, 505, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 7800, 6208, 23739, 13, 929, 19581, 462, 7, 17602, 77, 11, 810, 16193, 14402, 23739, 13, 31361, 6624, 17031, 828, 34236, 28, 84, 1, 40985, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 4406, 796, 7800, 6208, 23739, 13, 439, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 26933, 7, 22105, 13, 31361, 11, 1700, 13, 28483, 2611, 35751, 329, 1700, 287, 4406, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10163, 11, 334, 1, 40985, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33761, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 7800, 6208, 23739, 13, 929, 19581, 462, 7, 17602, 77, 11, 810, 16193, 14402, 23739, 13, 31361, 13, 818, 19510, 24409, 11, 39937, 11, 4008, 828, 34236, 28, 84, 1, 40985, 12, 17, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 4406, 796, 7800, 6208, 23739, 13, 439, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 26933, 7, 22105, 13, 31361, 11, 1700, 13, 28483, 2611, 35751, 329, 1700, 287, 4406, 46570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10163, 11, 334, 1, 40985, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 40985, 12, 17, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 40985, 12, 17, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33761, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 33678, 439, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 33678, 439, 92, 481, 12233, 477, 10245, 286, 262, 1700, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 47527, 10163, 11, 334, 1, 505, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 7800, 6208, 23739, 13, 33678, 439, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 477, 796, 7800, 6208, 23739, 13, 439, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 439, 828, 657, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 2934, 1616, 5927, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 2934, 1616, 5927, 92, 481, 12233, 477, 10245, 286, 262, 12336, 4406, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 47527, 10163, 11, 334, 1, 505, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 7800, 6208, 23739, 13, 2934, 1616, 5927, 7, 17602, 77, 11, 6208, 23739, 13, 28483, 2611, 6624, 334, 1, 15542, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 477, 796, 7800, 6208, 23739, 13, 439, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 2617, 26933, 22105, 13, 31361, 329, 1700, 287, 477, 46570, 900, 19510, 10163, 11, 604, 3980, 11, 34323, 11, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 7800, 6208, 23739, 13, 2934, 1616, 5927, 7, 17602, 77, 11, 357, 14402, 23739, 13, 28483, 2611, 6624, 334, 1, 505, 11074, 5574, 7, 14402, 23739, 13, 28483, 2611, 6624, 334, 1, 11545, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 477, 796, 7800, 6208, 23739, 13, 439, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 2617, 26933, 22105, 13, 31361, 329, 1700, 287, 477, 46570, 900, 19510, 29228, 11, 22305, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 2934, 40676, 320, 1154, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 2934, 40676, 320, 1154, 92, 481, 12233, 477, 10245, 286, 262, 12336, 4406, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 47527, 10163, 11, 334, 1, 505, 12340, 357, 29228, 11, 334, 1, 14337, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 357, 32066, 11, 334, 1, 15542, 4943, 60, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 7800, 6208, 23739, 13, 2934, 40676, 320, 1154, 7, 17602, 77, 11, 34236, 28, 84, 1, 15542, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 477, 796, 7800, 6208, 23739, 13, 439, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 2617, 26933, 22105, 13, 31361, 329, 1700, 287, 477, 46570, 900, 19510, 10163, 11, 604, 3980, 11, 34323, 11, 22305, 628, 220, 220, 220, 220, 220, 220, 220, 7800, 6208, 23739, 13, 2934, 40676, 320, 1154, 7, 17602, 77, 11, 12159, 28, 10163, 11, 34236, 28, 84, 1, 505, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 477, 796, 7800, 6208, 23739, 13, 439, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 2617, 26933, 22105, 13, 31361, 329, 1700, 287, 477, 46570, 900, 19510, 29228, 11, 34323, 22305, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 260, 1050, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 327, 90, 260, 1050, 92, 286, 257, 406, 90, 23739, 92, 10969, 477, 663, 3815, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 685, 40401, 11, 334, 6, 30888, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 1351, 19510, 88, 1164, 6208, 23739, 13, 439, 7, 17602, 77, 22305, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 818, 7203, 12159, 28, 40401, 1600, 41575, 7, 8344, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 818, 7203, 34236, 28, 84, 6, 30888, 6, 1600, 41575, 7, 8344, 4008, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 24071, 20746, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 406, 90, 23739, 13, 22766, 92, 2753, 281, 705, 2875, 6, 4578, 543, 481, 1249, 262, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 4504, 284, 307, 6149, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 47527, 10163, 11, 334, 1, 505, 12340, 357, 24409, 11, 334, 1, 11545, 12340, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 32066, 11, 334, 1, 15542, 12340, 357, 29228, 11, 334, 1, 14337, 4943, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7203, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 31361, 11, 34236, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 4406, 796, 7800, 6208, 23739, 13, 22766, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 11, 6208, 23739, 13, 28483, 2611, 6624, 334, 1, 15542, 1600, 6208, 23739, 13, 31361, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 26933, 22105, 13, 31361, 329, 1700, 287, 4406, 4357, 685, 27712, 11, 44552, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 4406, 796, 7800, 6208, 23739, 13, 22766, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 11, 6208, 23739, 13, 28483, 2611, 6624, 334, 1, 15542, 1600, 6208, 23739, 13, 31361, 11, 41988, 28, 25101, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 26933, 22105, 13, 31361, 329, 1700, 287, 4406, 4357, 685, 32066, 11, 39937, 12962, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 12924, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 317, 406, 90, 23739, 92, 743, 307, 9639, 290, 13140, 22037, 1146, 11, 351, 406, 90, 23739, 13, 12924, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10163, 11, 334, 1, 505, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 32066, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 29228, 11, 334, 1, 14337, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 685, 31361, 11, 34236, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 23739, 13, 12924, 7, 17602, 77, 11, 34323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 13, 28483, 2611, 11, 334, 470, 21638, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 88, 1164, 27765, 77, 13, 18558, 17861, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19738, 954, 7, 28104, 422, 42674, 7801, 810, 347, 20892, 796, 1058, 16, 1600, 685, 24409, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 83, 29291, 26933, 15, 12962, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 2116, 13, 30493, 50015, 7, 14402, 23739, 13, 12924, 7, 17602, 77, 11, 34323, 828, 1400, 16678, 23739, 8, 628, 220, 220, 220, 825, 1332, 62, 28665, 45, 3723, 3103, 4018, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 19264, 9831, 8739, 15180, 327, 90, 31271, 7336, 62, 43559, 92, 284, 307, 12608, 198, 220, 220, 220, 220, 220, 220, 220, 327, 90, 2339, 1212, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13266, 13, 77, 3723, 3103, 4018, 7, 84, 1, 2339, 62, 5661, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2339, 1212, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13266, 13, 77, 3723, 3103, 4018, 7, 84, 1, 31271, 7336, 62, 43559, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2339, 1212, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13266, 13, 77, 3723, 3103, 4018, 7, 84, 1, 31271, 7336, 62, 43559, 62, 2389, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2339, 1212, 2389, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 5354, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 317, 406, 90, 23739, 92, 743, 307, 8970, 11, 351, 406, 90, 23739, 13, 5354, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10163, 11, 334, 1, 505, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 32066, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 29228, 11, 334, 1, 14337, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 685, 31361, 11, 34236, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 34323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 664, 13, 5354, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 13, 28483, 2611, 11, 334, 470, 21638, 11537, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 28311, 5354, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 317, 406, 90, 23739, 92, 743, 307, 8970, 11, 351, 406, 90, 23739, 13, 28311, 5354, 27422, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10163, 11, 334, 1, 505, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 32066, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 29228, 11, 334, 1, 14337, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 685, 31361, 11, 34236, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 23739, 13, 2220, 7, 17602, 77, 11, 34323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 7800, 664, 13, 28311, 5354, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 17821, 7, 20274, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 46911, 1096, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 317, 406, 90, 32634, 13821, 23739, 92, 743, 307, 11389, 1143, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 12159, 11, 34236, 287, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 10163, 11, 334, 1, 505, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 24409, 11, 334, 1, 11545, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 27712, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 32066, 11, 334, 1, 15542, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 29228, 11, 334, 1, 14337, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 18558, 17861, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28463, 656, 42674, 7801, 3815, 357, 25, 16, 11, 1058, 17, 42501, 685, 31361, 11, 34236, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 32634, 1096, 23739, 13, 2220, 7, 17602, 77, 11, 34323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 664, 13, 46911, 1096, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 20274, 11, 19779, 31361, 1298, 34323, 11, 366, 28483, 2611, 1298, 334, 1, 11545, 20662, 8, 628, 220, 220, 220, 2488, 45145, 14134, 10146, 198, 220, 220, 220, 825, 1332, 62, 8906, 48499, 1096, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 317, 406, 90, 32634, 13821, 23739, 92, 743, 307, 748, 48499, 1143, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 32634, 1096, 23739, 13, 8906, 48499, 1096, 7, 4895, 31361, 1298, 34323, 11, 366, 28483, 2611, 1298, 334, 1, 11545, 20662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 664, 13, 28463, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 32634, 1096, 23739, 13, 22766, 7, 17602, 77, 11, 6208, 32634, 1096, 23739, 13, 31361, 6624, 34323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 8344, 828, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 58, 15, 4083, 28483, 2611, 11, 334, 1, 11545, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 326, 12608, 460, 307, 3421, 3161, 284, 7550, 11, 290, 407, 706, 198, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 32634, 1096, 23739, 13, 8906, 48499, 1096, 7, 4895, 31361, 1298, 604, 3980, 11, 366, 28483, 2611, 1298, 334, 1, 505, 20662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 664, 13, 28483, 2611, 796, 334, 1, 14337, 1, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 664, 13, 28463, 7, 17602, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 21762, 2696, 7, 5569, 10049, 11, 4808, 40225, 8, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 27765, 77, 796, 2116, 13, 7742, 13, 38659, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 664, 796, 7800, 6208, 32634, 1096, 23739, 13, 22766, 7, 17602, 77, 11, 6208, 32634, 1096, 23739, 13, 31361, 6624, 604, 3980, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 11925, 7, 8344, 828, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 30493, 36, 13255, 7, 8344, 58, 15, 4083, 28483, 2611, 11, 334, 1, 14337, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 7800, 27765, 77, 13, 41509, 3419, 198 ]
2.173864
9,680
# -*- coding: utf-8 -*- ######## # Copyright (c) 2016-2020 Cloudify Platform Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from mock import patch from cloudify_gcp.compute import security_group from ...tests import TestGCP @patch('cloudify_gcp.utils.assure_resource_id_correct', return_value=True) @patch('cloudify_gcp.gcp.ServiceAccountCredentials.from_json_keyfile_dict') @patch('cloudify_gcp.gcp.build')
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 7804, 198, 2, 15069, 357, 66, 8, 1584, 12, 42334, 10130, 1958, 19193, 12052, 13, 1439, 2489, 10395, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 198, 6738, 15290, 1330, 8529, 198, 198, 6738, 6279, 1958, 62, 70, 13155, 13, 5589, 1133, 1330, 2324, 62, 8094, 198, 6738, 2644, 41989, 1330, 6208, 38, 8697, 628, 198, 31, 17147, 10786, 17721, 1958, 62, 70, 13155, 13, 26791, 13, 562, 495, 62, 31092, 62, 312, 62, 30283, 3256, 1441, 62, 8367, 28, 17821, 8, 198, 31, 17147, 10786, 17721, 1958, 62, 70, 13155, 13, 70, 13155, 13, 16177, 30116, 34, 445, 14817, 13, 6738, 62, 17752, 62, 2539, 7753, 62, 11600, 11537, 198, 31, 17147, 10786, 17721, 1958, 62, 70, 13155, 13, 70, 13155, 13, 11249, 11537, 198 ]
3.377698
278
from unittest import mock from django.test import TestCase from factories.workflow_models import CountryFactory, OrganizationFactory, TolaUserFactory from tola_management.models import UserManagementAuditLog as UM from workflow.models import TolaUser from tola.pipeline import create_user_okta SPECIAL_CHARS = "ßpécîäl_chars"
[ 6738, 555, 715, 395, 1330, 15290, 198, 6738, 42625, 14208, 13, 9288, 1330, 6208, 20448, 198, 198, 6738, 17590, 13, 1818, 11125, 62, 27530, 1330, 12946, 22810, 11, 12275, 22810, 11, 309, 5708, 12982, 22810, 198, 6738, 284, 5031, 62, 27604, 13, 27530, 1330, 11787, 48032, 16353, 270, 11187, 355, 44352, 198, 6738, 30798, 13, 27530, 1330, 309, 5708, 12982, 198, 198, 6738, 284, 5031, 13, 79, 541, 4470, 1330, 2251, 62, 7220, 62, 482, 8326, 628, 198, 48451, 12576, 62, 3398, 27415, 796, 366, 39683, 79, 2634, 66, 34803, 11033, 75, 62, 354, 945, 1, 628 ]
3.412371
97
#!/usr/bin/env python3 import argparse from lark import Lark if __name__ == "__main__": main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 11748, 1822, 29572, 198, 6738, 300, 668, 1330, 406, 668, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.564103
39
import pygame from RRTbasePy import RRTGraph from RRTbasePy import RRTMap import time if __name__ == '__main__': result=False while not result: try: main() result=True except: result=False
[ 11748, 12972, 6057, 201, 198, 6738, 371, 14181, 8692, 20519, 1330, 371, 14181, 37065, 201, 198, 6738, 371, 14181, 8692, 20519, 1330, 371, 14181, 13912, 201, 198, 11748, 640, 201, 198, 201, 198, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 1255, 28, 25101, 201, 198, 220, 220, 220, 981, 407, 1255, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1388, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 28, 17821, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 28, 25101, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198, 201, 198 ]
1.698413
189
#!/usr/bin/env python # -*- coding: utf-8 -*- __author__ = '@britodfbr' import pandas as pd from faker import Faker import locale import random import toml from pathlib import Path dados = Path('dados/dados.toml') dados.parent.mkdir(exist_ok=True) locale.setlocale(locale.LC_TIME, 'pt_BR.utf8') fake = Faker('pt_BR') def gen_names(): """ Gera os 1000 nomes aleatórios utilizando a biblioteca Faker """ # Semente para garantir que sempre serão os mesmos nomes fake.seed_instance(0) # dict com os 1000 nomes completos names = {'VENDEDOR': (f"{fake.first_name()} {fake.last_name()}" for x in range(1000))} # grava o resultado em um arquivo toml para recuperação posterior with open('dados/dados.toml', 'w') as f: toml.dump(names, f) def gendata(): """ Gera massa de dados com VENDEDOR/VENDAS """ # Se não existir cria arquivo toml com nomes de entrada if not dados.is_file(): gen_names() # Carrega nomes dos vendedores names = toml.load(dados)['VENDEDOR'] # Semente aleatória para gerar valor de vendas diferentes fake.seed_instance(random.randint(1, 13)) # gerador com 1000 entradas aleatórias para vendas vendas = ( fake.pyfloat(left_digits=None, right_digits=2, positive=True, min_value=1000, max_value=55010) for _ in range(1000) ) # Retorna uma lista de tuplas com VENDEDOR/VENDA return zip(names, vendas) def run(): """""" # Lista com nomes dos meses gerado em pandas meses = set(pd.date_range(start='2020-01-01', end='2020-6-1', periods=30).strftime('%B')) for mes in meses: # DataFrame com conjunto de dados gerados df = pd.DataFrame(gendata(), columns=['VENDEDOR', 'VENDAS']) # Grava arquivos com nomes dos meses em portugues com vendedores e suas respectivas vendas mensais df.to_excel(dados.with_name(f"{mes}.xlsx"), index=False) if __name__ == '__main__': run()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 834, 9800, 834, 796, 705, 31, 65, 799, 375, 69, 1671, 6, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 277, 3110, 1330, 376, 3110, 198, 11748, 36693, 198, 11748, 4738, 198, 11748, 284, 4029, 198, 6738, 3108, 8019, 1330, 10644, 198, 198, 67, 22484, 796, 10644, 10786, 67, 22484, 14, 67, 22484, 13, 39532, 75, 11537, 198, 67, 22484, 13, 8000, 13, 28015, 15908, 7, 38476, 62, 482, 28, 17821, 8, 198, 17946, 1000, 13, 2617, 17946, 1000, 7, 17946, 1000, 13, 5639, 62, 34694, 11, 705, 457, 62, 11473, 13, 40477, 23, 11537, 198, 30706, 796, 376, 3110, 10786, 457, 62, 11473, 11537, 628, 198, 4299, 2429, 62, 14933, 33529, 198, 220, 220, 220, 37227, 402, 8607, 28686, 8576, 299, 2586, 31341, 265, 10205, 380, 418, 7736, 528, 25440, 257, 275, 29142, 313, 31047, 376, 3110, 37227, 198, 220, 220, 220, 1303, 311, 972, 68, 31215, 308, 4741, 343, 8358, 5026, 3866, 1055, 28749, 28686, 18842, 16785, 299, 2586, 198, 220, 220, 220, 8390, 13, 28826, 62, 39098, 7, 15, 8, 198, 220, 220, 220, 1303, 8633, 401, 28686, 8576, 299, 2586, 1224, 83, 418, 198, 220, 220, 220, 3891, 796, 1391, 6, 53, 49361, 1581, 10354, 357, 69, 1, 90, 30706, 13, 11085, 62, 3672, 3419, 92, 1391, 30706, 13, 12957, 62, 3672, 3419, 36786, 329, 2124, 287, 2837, 7, 12825, 4008, 92, 198, 220, 220, 220, 1303, 9067, 64, 267, 1255, 4533, 795, 23781, 610, 421, 23593, 284, 4029, 31215, 664, 48568, 64, 16175, 28749, 34319, 198, 220, 220, 220, 351, 1280, 10786, 67, 22484, 14, 67, 22484, 13, 39532, 75, 3256, 705, 86, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 284, 4029, 13, 39455, 7, 14933, 11, 277, 8, 628, 198, 4299, 308, 437, 1045, 33529, 198, 220, 220, 220, 37227, 402, 8607, 2347, 64, 390, 9955, 418, 401, 569, 49361, 1581, 14, 53, 10619, 1921, 37227, 198, 220, 220, 220, 1303, 1001, 299, 28749, 2152, 343, 269, 7496, 610, 421, 23593, 284, 4029, 401, 299, 2586, 390, 24481, 4763, 198, 220, 220, 220, 611, 407, 9955, 418, 13, 271, 62, 7753, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 2429, 62, 14933, 3419, 198, 220, 220, 220, 1303, 1879, 2301, 64, 299, 2586, 23430, 410, 1631, 2850, 198, 220, 220, 220, 3891, 796, 284, 4029, 13, 2220, 7, 67, 22484, 8, 17816, 53, 49361, 1581, 20520, 198, 220, 220, 220, 1303, 311, 972, 68, 31341, 265, 10205, 7496, 31215, 27602, 283, 1188, 273, 390, 10817, 292, 288, 361, 9100, 274, 198, 220, 220, 220, 8390, 13, 28826, 62, 39098, 7, 25120, 13, 25192, 600, 7, 16, 11, 1511, 4008, 198, 220, 220, 220, 1303, 27602, 7079, 401, 8576, 920, 6335, 292, 31341, 265, 10205, 380, 292, 31215, 10817, 292, 198, 220, 220, 220, 10817, 292, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 8390, 13, 9078, 22468, 7, 9464, 62, 12894, 896, 28, 14202, 11, 826, 62, 12894, 896, 28, 17, 11, 3967, 28, 17821, 11, 949, 62, 8367, 28, 12825, 11, 3509, 62, 8367, 28, 2816, 20943, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 4808, 287, 2837, 7, 12825, 8, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 1303, 4990, 1211, 64, 334, 2611, 1351, 64, 390, 12777, 489, 292, 401, 569, 49361, 1581, 14, 28290, 5631, 198, 220, 220, 220, 1441, 19974, 7, 14933, 11, 10817, 292, 8, 628, 198, 4299, 1057, 33529, 198, 220, 220, 220, 13538, 15931, 15931, 198, 220, 220, 220, 1303, 7343, 64, 401, 299, 2586, 23430, 18842, 274, 27602, 4533, 795, 19798, 292, 198, 220, 220, 220, 18842, 274, 796, 900, 7, 30094, 13, 4475, 62, 9521, 7, 9688, 11639, 42334, 12, 486, 12, 486, 3256, 886, 11639, 42334, 12, 21, 12, 16, 3256, 9574, 28, 1270, 737, 2536, 31387, 10786, 4, 33, 6, 4008, 198, 220, 220, 220, 329, 18842, 287, 18842, 274, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6060, 19778, 401, 11644, 403, 1462, 390, 9955, 418, 27602, 22484, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 796, 279, 67, 13, 6601, 19778, 7, 70, 437, 1045, 22784, 15180, 28, 17816, 53, 49361, 1581, 3256, 705, 53, 10619, 1921, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 32599, 64, 610, 421, 452, 418, 401, 299, 2586, 23430, 18842, 274, 795, 2493, 1018, 947, 401, 410, 1631, 2850, 304, 424, 292, 2461, 38630, 10817, 292, 285, 641, 15152, 198, 220, 220, 220, 220, 220, 220, 220, 47764, 13, 1462, 62, 1069, 5276, 7, 67, 22484, 13, 4480, 62, 3672, 7, 69, 1, 90, 6880, 27422, 87, 7278, 87, 12340, 6376, 28, 25101, 8, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1057, 3419, 198 ]
2.365854
820
import allure import pytest from api.account import account from api.user import user from util.log_util import logger from util.mysql_util import mysqler # 在crm后台登录,获取cookies @pytest.fixture(scope="session") # 在h5后台登录,获取cookies @pytest.fixture(scope="session") # 注册1个leads # 注册1个正课用户 # 已老用户身份登录并拿到cookie # 获取1个leads # 获取n个正课学员 # BASE_PATH = common_kit.env('PROJECT_ROOT') # def get_data(yaml_file_name): # try: # # data_file_path = os.path.join(BASE_PATH, "data", yaml_file_name) # yaml_file_path = f"{BASE_PATH}/data/{yaml_file_name}" # yaml_data = data_pool.load_yml(yaml_file_path) # except Exception as ex: # pytest.skip(str(ex)) # else: # return yaml_data # base_data = get_data("base_data.yml") # api_data = get_data("api_test_data.yml") # scenario_data = get_data("scenario_test_data.yml") # leadsapi_data = get_data("leadsapi_test_data.yml") # get_add_leads_data = get_data("test_add_leads.yml") # bbc_data = get_data("bbc_signup_data.yml") # # @pytest.fixture(scope="session") # def login_fixture(): # username = base_data["init_admin_user"]["username"] # password = base_data["init_admin_user"]["password"] # header = { # "Content-Type": "application/x-www-form-urlencoded" # } # payload = { # "username": username, # "password": password # } # loginInfo = user.login(data=payload, headers=header) # step_login(username, password) # yield loginInfo.json() # # @pytest.fixture(scope="function") # def insert_delete_user(): # """删除用户前,先在数据库插入一条用户数据""" # insert_sql = base_data["init_sql"]["insert_delete_user"][0] # mysqler.execute_db(insert_sql) # step_first() # logger.info("删除用户操作:插入新用户--准备用于删除用户") # logger.info("执行前置SQL:{}".format(insert_sql)) # yield # # 因为有些情况是不给删除管理员用户的,这种情况需要手动清理上面插入的数据 # del_sql = base_data["init_sql"]["insert_delete_user"][1] # mysqler.execute_db(del_sql) # step_last() # logger.info("删除用户操作:手工清理处理失败的数据") # logger.info("执行后置SQL:{}".format(del_sql)) # # @pytest.fixture(scope="function") # def delete_register_user(): # """注册用户前,先删除数据,用例执行之后,再次删除以清理数据""" # del_sql = base_data["init_sql"]["delete_register_user"] # mysqler.execute_db(del_sql) # step_first() # logger.info("注册用户操作:清理用户--准备注册新用户") # logger.info("执行前置SQL:{}".format(del_sql)) # yield # mysqler.execute_db(del_sql) # step_last() # logger.info("注册用户操作:删除注册的用户") # logger.info("执行后置SQL:{}".format(del_sql)) # # @pytest.fixture(scope="function") # def update_user_telephone(): # """修改用户前,因为手机号唯一,为了使用例重复执行,每次需要先修改手机号,再执行用例""" # update_sql = base_data["init_sql"]["update_user_telephone"] # mysqler.execute_db(update_sql) # step_first() # logger.info("修改用户操作:手工修改用户的手机号,以便用例重复执行") # logger.info("执行SQL:{}".format(update_sql)) @allure.step("前置步骤 ==>> 清理数据") @allure.step("后置步骤 ==>> 清理数据") @allure.step("前置步骤 ==>> 管理员用户登录") if __name__ == '__main__': pass
[ 11748, 477, 495, 198, 11748, 12972, 9288, 198, 198, 6738, 40391, 13, 23317, 1330, 1848, 198, 6738, 40391, 13, 7220, 1330, 2836, 198, 6738, 7736, 13, 6404, 62, 22602, 1330, 49706, 198, 6738, 7736, 13, 28744, 13976, 62, 22602, 1330, 616, 31166, 1754, 628, 198, 2, 10263, 250, 101, 6098, 76, 28938, 236, 20998, 108, 163, 247, 119, 37605, 243, 171, 120, 234, 164, 236, 115, 20998, 244, 27916, 444, 198, 31, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 29891, 4943, 628, 198, 2, 10263, 250, 101, 71, 20, 28938, 236, 20998, 108, 163, 247, 119, 37605, 243, 171, 120, 234, 164, 236, 115, 20998, 244, 27916, 444, 198, 31, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 29891, 4943, 628, 198, 2, 10545, 111, 101, 37863, 234, 16, 10310, 103, 293, 5643, 628, 198, 2, 10545, 111, 101, 37863, 234, 16, 10310, 103, 29826, 96, 46237, 122, 18796, 101, 22755, 115, 628, 198, 2, 10263, 115, 110, 32003, 223, 18796, 101, 22755, 115, 164, 118, 104, 20015, 121, 163, 247, 119, 37605, 243, 33176, 35050, 233, 123, 26344, 108, 44453, 628, 198, 2, 5525, 236, 115, 20998, 244, 16, 10310, 103, 293, 5643, 628, 198, 2, 5525, 236, 115, 20998, 244, 77, 10310, 103, 29826, 96, 46237, 122, 27764, 99, 37772, 246, 198, 198, 2, 49688, 62, 34219, 796, 2219, 62, 15813, 13, 24330, 10786, 31190, 23680, 62, 13252, 2394, 11537, 198, 2, 825, 651, 62, 7890, 7, 88, 43695, 62, 7753, 62, 3672, 2599, 198, 2, 220, 220, 220, 220, 1949, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1366, 62, 7753, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 33, 11159, 62, 34219, 11, 366, 7890, 1600, 331, 43695, 62, 7753, 62, 3672, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 331, 43695, 62, 7753, 62, 6978, 796, 277, 1, 90, 33, 11159, 62, 34219, 92, 14, 7890, 14, 90, 88, 43695, 62, 7753, 62, 3672, 36786, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 331, 43695, 62, 7890, 796, 1366, 62, 7742, 13, 2220, 62, 88, 4029, 7, 88, 43695, 62, 7753, 62, 6978, 8, 198, 2, 220, 220, 220, 220, 2845, 35528, 355, 409, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 12972, 9288, 13, 48267, 7, 2536, 7, 1069, 4008, 198, 2, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 331, 43695, 62, 7890, 198, 2, 2779, 62, 7890, 796, 651, 62, 7890, 7203, 8692, 62, 7890, 13, 88, 4029, 4943, 198, 2, 40391, 62, 7890, 796, 651, 62, 7890, 7203, 15042, 62, 9288, 62, 7890, 13, 88, 4029, 4943, 198, 2, 8883, 62, 7890, 796, 651, 62, 7890, 7203, 1416, 39055, 62, 9288, 62, 7890, 13, 88, 4029, 4943, 198, 2, 5983, 15042, 62, 7890, 796, 651, 62, 7890, 7203, 293, 5643, 15042, 62, 9288, 62, 7890, 13, 88, 4029, 4943, 198, 2, 651, 62, 2860, 62, 293, 5643, 62, 7890, 796, 651, 62, 7890, 7203, 9288, 62, 2860, 62, 293, 5643, 13, 88, 4029, 4943, 198, 2, 275, 15630, 62, 7890, 796, 651, 62, 7890, 7203, 11848, 66, 62, 12683, 929, 62, 7890, 13, 88, 4029, 4943, 198, 2, 198, 2, 2488, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 29891, 4943, 198, 2, 825, 17594, 62, 69, 9602, 33529, 198, 2, 220, 220, 220, 220, 20579, 796, 2779, 62, 7890, 14692, 15003, 62, 28482, 62, 7220, 1, 7131, 1, 29460, 8973, 198, 2, 220, 220, 220, 220, 9206, 796, 2779, 62, 7890, 14692, 15003, 62, 28482, 62, 7220, 1, 7131, 1, 28712, 8973, 198, 2, 220, 220, 220, 220, 13639, 796, 1391, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19746, 12, 6030, 1298, 366, 31438, 14, 87, 12, 2503, 12, 687, 12, 6371, 12685, 9043, 1, 198, 2, 220, 220, 220, 220, 1782, 198, 2, 220, 220, 220, 220, 21437, 796, 1391, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29460, 1298, 20579, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28712, 1298, 9206, 198, 2, 220, 220, 220, 220, 1782, 198, 2, 220, 220, 220, 220, 17594, 12360, 796, 2836, 13, 38235, 7, 7890, 28, 15577, 2220, 11, 24697, 28, 25677, 8, 198, 2, 220, 220, 220, 220, 2239, 62, 38235, 7, 29460, 11, 9206, 8, 198, 2, 220, 220, 220, 220, 7800, 17594, 12360, 13, 17752, 3419, 198, 2, 198, 2, 2488, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 8818, 4943, 198, 2, 825, 7550, 62, 33678, 62, 7220, 33529, 198, 2, 220, 220, 220, 220, 37227, 26344, 254, 165, 247, 97, 18796, 101, 22755, 115, 30298, 235, 171, 120, 234, 17739, 230, 28839, 101, 46763, 108, 162, 235, 106, 41753, 241, 162, 237, 240, 17739, 98, 31660, 30266, 94, 18796, 101, 22755, 115, 46763, 108, 162, 235, 106, 37811, 198, 2, 220, 220, 220, 220, 7550, 62, 25410, 796, 2779, 62, 7890, 14692, 15003, 62, 25410, 1, 7131, 1, 28463, 62, 33678, 62, 7220, 1, 7131, 15, 60, 198, 2, 220, 220, 220, 220, 616, 31166, 1754, 13, 41049, 62, 9945, 7, 28463, 62, 25410, 8, 198, 2, 220, 220, 220, 220, 2239, 62, 11085, 3419, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 26344, 254, 165, 247, 97, 18796, 101, 22755, 115, 162, 241, 235, 43291, 171, 120, 248, 162, 237, 240, 17739, 98, 23877, 108, 18796, 101, 22755, 115, 438, 49035, 228, 13783, 229, 18796, 101, 12859, 236, 26344, 254, 165, 247, 97, 18796, 101, 22755, 115, 4943, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 33699, 100, 26193, 234, 30298, 235, 163, 121, 106, 17861, 171, 120, 248, 90, 92, 1911, 18982, 7, 28463, 62, 25410, 4008, 198, 2, 220, 220, 220, 220, 7800, 198, 2, 220, 220, 220, 220, 1303, 10263, 249, 254, 10310, 118, 17312, 231, 12859, 249, 46349, 227, 37863, 113, 42468, 38834, 163, 119, 247, 26344, 254, 165, 247, 97, 163, 106, 94, 49426, 228, 37772, 246, 18796, 101, 22755, 115, 21410, 171, 120, 234, 32573, 247, 163, 100, 235, 46349, 227, 37863, 113, 165, 250, 222, 17358, 223, 33699, 233, 27950, 101, 162, 116, 227, 49426, 228, 41468, 165, 251, 95, 162, 237, 240, 17739, 98, 21410, 46763, 108, 162, 235, 106, 198, 2, 220, 220, 220, 220, 1619, 62, 25410, 796, 2779, 62, 7890, 14692, 15003, 62, 25410, 1, 7131, 1, 28463, 62, 33678, 62, 7220, 1, 7131, 16, 60, 198, 2, 220, 220, 220, 220, 616, 31166, 1754, 13, 41049, 62, 9945, 7, 12381, 62, 25410, 8, 198, 2, 220, 220, 220, 220, 2239, 62, 12957, 3419, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 26344, 254, 165, 247, 97, 18796, 101, 22755, 115, 162, 241, 235, 43291, 171, 120, 248, 33699, 233, 32432, 98, 162, 116, 227, 49426, 228, 13783, 226, 49426, 228, 13783, 109, 164, 112, 98, 21410, 46763, 108, 162, 235, 106, 4943, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 33699, 100, 26193, 234, 28938, 236, 163, 121, 106, 17861, 171, 120, 248, 90, 92, 1911, 18982, 7, 12381, 62, 25410, 4008, 198, 2, 198, 2, 2488, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 8818, 4943, 198, 2, 825, 12233, 62, 30238, 62, 7220, 33529, 198, 2, 220, 220, 220, 220, 37227, 37345, 101, 37863, 234, 18796, 101, 22755, 115, 30298, 235, 171, 120, 234, 17739, 230, 26344, 254, 165, 247, 97, 46763, 108, 162, 235, 106, 171, 120, 234, 18796, 101, 160, 122, 233, 33699, 100, 26193, 234, 45298, 28938, 236, 171, 120, 234, 37863, 235, 162, 105, 94, 26344, 254, 165, 247, 97, 20015, 98, 162, 116, 227, 49426, 228, 46763, 108, 162, 235, 106, 37811, 198, 2, 220, 220, 220, 220, 1619, 62, 25410, 796, 2779, 62, 7890, 14692, 15003, 62, 25410, 1, 7131, 1, 33678, 62, 30238, 62, 7220, 8973, 198, 2, 220, 220, 220, 220, 616, 31166, 1754, 13, 41049, 62, 9945, 7, 12381, 62, 25410, 8, 198, 2, 220, 220, 220, 220, 2239, 62, 11085, 3419, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 37345, 101, 37863, 234, 18796, 101, 22755, 115, 162, 241, 235, 43291, 171, 120, 248, 162, 116, 227, 49426, 228, 18796, 101, 22755, 115, 438, 49035, 228, 13783, 229, 37345, 101, 37863, 234, 23877, 108, 18796, 101, 22755, 115, 4943, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 33699, 100, 26193, 234, 30298, 235, 163, 121, 106, 17861, 171, 120, 248, 90, 92, 1911, 18982, 7, 12381, 62, 25410, 4008, 198, 2, 220, 220, 220, 220, 7800, 198, 2, 220, 220, 220, 220, 616, 31166, 1754, 13, 41049, 62, 9945, 7, 12381, 62, 25410, 8, 198, 2, 220, 220, 220, 220, 2239, 62, 12957, 3419, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 37345, 101, 37863, 234, 18796, 101, 22755, 115, 162, 241, 235, 43291, 171, 120, 248, 26344, 254, 165, 247, 97, 37345, 101, 37863, 234, 21410, 18796, 101, 22755, 115, 4943, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 33699, 100, 26193, 234, 28938, 236, 163, 121, 106, 17861, 171, 120, 248, 90, 92, 1911, 18982, 7, 12381, 62, 25410, 4008, 198, 2, 198, 2, 2488, 9078, 9288, 13, 69, 9602, 7, 29982, 2625, 8818, 4943, 198, 2, 825, 4296, 62, 7220, 62, 46813, 4862, 33529, 198, 2, 220, 220, 220, 220, 37227, 46479, 106, 162, 242, 117, 18796, 101, 22755, 115, 30298, 235, 171, 120, 234, 32368, 254, 10310, 118, 33699, 233, 17312, 118, 20998, 115, 161, 242, 107, 31660, 171, 120, 234, 10310, 118, 12859, 228, 45635, 18796, 101, 160, 122, 233, 34932, 235, 13783, 235, 33699, 100, 26193, 234, 171, 120, 234, 162, 107, 237, 162, 105, 94, 165, 250, 222, 17358, 223, 17739, 230, 46479, 106, 162, 242, 117, 33699, 233, 17312, 118, 20998, 115, 171, 120, 234, 37863, 235, 33699, 100, 26193, 234, 18796, 101, 160, 122, 233, 37811, 198, 2, 220, 220, 220, 220, 4296, 62, 25410, 796, 2779, 62, 7890, 14692, 15003, 62, 25410, 1, 7131, 1, 19119, 62, 7220, 62, 46813, 4862, 8973, 198, 2, 220, 220, 220, 220, 616, 31166, 1754, 13, 41049, 62, 9945, 7, 19119, 62, 25410, 8, 198, 2, 220, 220, 220, 220, 2239, 62, 11085, 3419, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 46479, 106, 162, 242, 117, 18796, 101, 22755, 115, 162, 241, 235, 43291, 171, 120, 248, 33699, 233, 32432, 98, 46479, 106, 162, 242, 117, 18796, 101, 22755, 115, 21410, 33699, 233, 17312, 118, 20998, 115, 171, 120, 234, 20015, 98, 160, 122, 123, 18796, 101, 160, 122, 233, 34932, 235, 13783, 235, 33699, 100, 26193, 234, 4943, 198, 2, 220, 220, 220, 220, 49706, 13, 10951, 7203, 33699, 100, 26193, 234, 17861, 171, 120, 248, 90, 92, 1911, 18982, 7, 19119, 62, 25410, 4008, 198, 198, 31, 439, 495, 13, 9662, 7203, 30298, 235, 163, 121, 106, 29826, 98, 165, 103, 97, 6624, 4211, 10545, 116, 227, 49426, 228, 46763, 108, 162, 235, 106, 4943, 628, 198, 31, 439, 495, 13, 9662, 7203, 28938, 236, 163, 121, 106, 29826, 98, 165, 103, 97, 6624, 4211, 10545, 116, 227, 49426, 228, 46763, 108, 162, 235, 106, 4943, 628, 198, 31, 439, 495, 13, 9662, 7203, 30298, 235, 163, 121, 106, 29826, 98, 165, 103, 97, 6624, 4211, 13328, 106, 94, 49426, 228, 37772, 246, 18796, 101, 22755, 115, 163, 247, 119, 37605, 243, 4943, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1208, 198 ]
1.567413
1,921
from django.shortcuts import render, redirect from django.http import HttpResponse from .gdscript import GDSCriptCLI, GODOT_BINARY
[ 198, 6738, 42625, 14208, 13, 19509, 23779, 1330, 8543, 11, 18941, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 31077, 198, 198, 6738, 764, 21287, 12048, 1330, 402, 5258, 34, 1968, 5097, 40, 11, 29562, 2394, 62, 33, 1268, 13153, 628, 198 ]
3.139535
43
# Create a plotter that we initialize with no lights, and add a # cube and a single headlight to it. # import pyvista as pv plotter = pv.Plotter(lighting='none') _ = plotter.add_mesh(pv.Cube()) light = pv.Light(color='cyan', light_type='headlight') plotter.add_light(light) plotter.show()
[ 2, 13610, 257, 7110, 353, 326, 356, 41216, 351, 645, 7588, 11, 290, 751, 257, 198, 2, 23441, 290, 257, 2060, 1182, 2971, 284, 340, 13, 198, 2, 198, 11748, 12972, 85, 12523, 355, 279, 85, 198, 29487, 353, 796, 279, 85, 13, 43328, 353, 7, 43351, 11639, 23108, 11537, 198, 62, 796, 7110, 353, 13, 2860, 62, 76, 5069, 7, 79, 85, 13, 29071, 28955, 198, 2971, 796, 279, 85, 13, 15047, 7, 8043, 11639, 948, 272, 3256, 1657, 62, 4906, 11639, 2256, 2971, 11537, 198, 29487, 353, 13, 2860, 62, 2971, 7, 2971, 8, 198, 29487, 353, 13, 12860, 3419, 198 ]
2.805825
103
# THE MOST INTERESTING MAN IN THE WORLD # SLACK CHATBOT IN PYTHON # # Author: Zachary Gillis #-------------------------------------- import os import time import re import random import urllib import requests import json import sqlite3 from slackclient import SlackClient from config import SLACK_BOT_TOKEN from database import DictionaryBotDatabase from urllib.parse import quote # Instantiate Slack Client slack_client = SlackClient(SLACK_BOT_TOKEN) starterbot_id = None # Database access nameDB = None # Constants found = False RTM_READ_DELAY = 1 # 1-second delay RTM read MENTION_REGEX = "^<@(|[WU].+?)>(.*)" if __name__ == "__main__": if slack_client.rtm_connect(with_team_state=False): print("Starter bot connected and running!") # Read bot's user ID by calling Web API method `auth.test` starterbot_id = slack_client.api_call("auth.test")["user_id"] try: nameDB = DictionaryBotDatabase() except Exception as e: print(e) while True: try: command, user_id, channel, text = parse_bot_commands(slack_client.rtm_read()) if command: handle_command(command, channel, user_id, text) time.sleep(RTM_READ_DELAY) except Exception as e: print(e) print("\nRESTARTING BOT LOGIC") if slack_client.rtm_connect(with_team_state=False): starterbot_id = slack_client.api_call("auth.test")["user_id"] continue else: exit(5) else: print("Connection failed.")
[ 2, 3336, 337, 10892, 23255, 6465, 2751, 17254, 3268, 3336, 29564, 198, 2, 12419, 8120, 5870, 1404, 33, 2394, 3268, 350, 56, 4221, 1340, 198, 2, 198, 2, 6434, 25, 18825, 560, 12981, 271, 198, 2, 3880, 23031, 198, 198, 11748, 28686, 198, 11748, 640, 198, 11748, 302, 198, 11748, 4738, 198, 11748, 2956, 297, 571, 198, 11748, 7007, 198, 11748, 33918, 198, 11748, 44161, 578, 18, 198, 6738, 30740, 16366, 1330, 36256, 11792, 198, 6738, 4566, 1330, 12419, 8120, 62, 33, 2394, 62, 10468, 43959, 198, 6738, 6831, 1330, 28261, 20630, 38105, 198, 6738, 2956, 297, 571, 13, 29572, 1330, 9577, 198, 198, 2, 24470, 9386, 36256, 20985, 198, 6649, 441, 62, 16366, 796, 36256, 11792, 7, 8634, 8120, 62, 33, 2394, 62, 10468, 43959, 8, 198, 12339, 13645, 62, 312, 796, 6045, 198, 198, 2, 24047, 1895, 198, 3672, 11012, 796, 6045, 198, 198, 2, 4757, 1187, 198, 9275, 796, 10352, 198, 14181, 44, 62, 15675, 62, 35, 3698, 4792, 796, 352, 1303, 352, 12, 12227, 5711, 11923, 44, 1100, 198, 10979, 2849, 62, 31553, 6369, 796, 366, 61, 27, 31, 7, 91, 58, 54, 52, 4083, 10, 10091, 33994, 15885, 16725, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 611, 30740, 62, 16366, 13, 17034, 76, 62, 8443, 7, 4480, 62, 15097, 62, 5219, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 1273, 2571, 10214, 5884, 290, 2491, 2474, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4149, 10214, 338, 2836, 4522, 416, 4585, 5313, 7824, 2446, 4600, 18439, 13, 9288, 63, 198, 220, 220, 220, 220, 220, 220, 220, 14217, 13645, 62, 312, 796, 30740, 62, 16366, 13, 15042, 62, 13345, 7203, 18439, 13, 9288, 4943, 14692, 7220, 62, 312, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 11012, 796, 28261, 20630, 38105, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 68, 8, 628, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3141, 11, 2836, 62, 312, 11, 6518, 11, 2420, 796, 21136, 62, 13645, 62, 9503, 1746, 7, 6649, 441, 62, 16366, 13, 17034, 76, 62, 961, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3141, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5412, 62, 21812, 7, 21812, 11, 6518, 11, 2836, 62, 312, 11, 2420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 13, 42832, 7, 14181, 44, 62, 15675, 62, 35, 3698, 4792, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 59, 77, 49, 6465, 7227, 2751, 347, 2394, 41605, 2149, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 30740, 62, 16366, 13, 17034, 76, 62, 8443, 7, 4480, 62, 15097, 62, 5219, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14217, 13645, 62, 312, 796, 30740, 62, 16366, 13, 15042, 62, 13345, 7203, 18439, 13, 9288, 4943, 14692, 7220, 62, 312, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8420, 7, 20, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 32048, 4054, 19570, 198 ]
2.229028
751
""" Test file for asynchronous requests handlers. """ import pytest from osbrain import Agent from osbrain import run_agent from osbrain.helper import wait_agent_attr from common import nsproxy # noqa: F401 from common import append_received def test_async_rep_handler_exists(nsproxy): """ When binding an ASYNC_REP socket without a handler, an exception must be thrown, letting the user know that a handler must be specified. """ server = run_agent('server', base=Agent) with pytest.raises(ValueError) as error: server.bind('ASYNC_REP', alias='should_crash') assert 'This socket requires a handler!' in str(error.value) @pytest.mark.parametrize( 'handler', ['reply', append_received, lambda a, x: a.received.append(x)] ) def test_async_rep_handler_types(nsproxy, handler): """ When binding an ASYNC_REP socket, we must accept different types of handlers: methods, functions, lambda expressions... """ server = run_agent('server', base=ServerAsyncRep) assert server.bind('ASYNC_REP', alias='should_not_crash', handler=handler) @pytest.mark.parametrize( 'handler, check_function', [('receive_method', False), (append_received, True), (lambda a, x: a.received.append(x), False)]) def test_async_rep_connect_handler_types(nsproxy, handler, check_function): """ We should be able to specify the handler in the `connect` call in different ways: method, functions, lambda expressions... Note that this handler will be used if not overridden by the `handler` parameter in the `send` call. However, that is specifically checked in other test. """ server = run_agent('server', base=ServerAsyncRep) client = run_agent('client', base=ClientWithHandler) addr = server.addr('publish') client.connect(addr, alias='sub', handler=handler) client.send('sub', 'request!') assert wait_agent_attr(client, length=1) if check_function: # Check that the function was not stored as a method for the object with pytest.raises(AttributeError) as error: assert client.get_attr('append_received') assert 'object has no attribute' in str(error.value) @pytest.mark.parametrize( 'handler, check_function', [('receive_method', False), (append_received, True), (lambda a, x: a.received.append(x), False)]) def test_async_rep_send_handler_types(nsproxy, handler, check_function): """ We should be able to make requests even if we do not specify a handler on the `connect` call, as long as we specify it on the `send` call. """ server = run_agent('server', base=ServerAsyncRep) client = run_agent('client', base=ClientWithHandler) addr = server.addr('publish') # Connect without a handler client.connect(addr, alias='sub') client.send('sub', 'request!', handler=handler) assert wait_agent_attr(client, length=1) if check_function: # Check that the function was not stored as a method for the object with pytest.raises(AttributeError) as error: assert client.get_attr('append_received') assert 'object has no attribute' in str(error.value)
[ 37811, 198, 14402, 2393, 329, 39354, 7007, 32847, 13, 198, 37811, 198, 11748, 12972, 9288, 198, 198, 6738, 28686, 27825, 1330, 15906, 198, 6738, 28686, 27825, 1330, 1057, 62, 25781, 198, 6738, 28686, 27825, 13, 2978, 525, 1330, 4043, 62, 25781, 62, 35226, 198, 198, 6738, 2219, 1330, 36545, 36436, 220, 1303, 645, 20402, 25, 376, 21844, 198, 6738, 2219, 1330, 24443, 62, 47844, 628, 628, 198, 4299, 1332, 62, 292, 13361, 62, 7856, 62, 30281, 62, 1069, 1023, 7, 5907, 36436, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1649, 12765, 281, 7054, 56, 7792, 62, 35316, 17802, 1231, 257, 21360, 11, 281, 6631, 1276, 307, 198, 220, 220, 220, 8754, 11, 9616, 262, 2836, 760, 326, 257, 21360, 1276, 307, 7368, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4382, 796, 1057, 62, 25781, 10786, 15388, 3256, 2779, 28, 36772, 8, 628, 220, 220, 220, 351, 12972, 9288, 13, 430, 2696, 7, 11395, 12331, 8, 355, 4049, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4382, 13, 21653, 10786, 26483, 7792, 62, 35316, 3256, 16144, 11639, 21754, 62, 6098, 1077, 11537, 198, 220, 220, 220, 6818, 705, 1212, 17802, 4433, 257, 21360, 13679, 287, 965, 7, 18224, 13, 8367, 8, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 198, 220, 220, 220, 705, 30281, 3256, 198, 220, 220, 220, 37250, 47768, 3256, 24443, 62, 47844, 11, 37456, 257, 11, 2124, 25, 257, 13, 47844, 13, 33295, 7, 87, 15437, 198, 8, 198, 4299, 1332, 62, 292, 13361, 62, 7856, 62, 30281, 62, 19199, 7, 5907, 36436, 11, 21360, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1649, 12765, 281, 7054, 56, 7792, 62, 35316, 17802, 11, 356, 1276, 2453, 1180, 3858, 286, 198, 220, 220, 220, 32847, 25, 5050, 11, 5499, 11, 37456, 14700, 986, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4382, 796, 1057, 62, 25781, 10786, 15388, 3256, 2779, 28, 10697, 42367, 6207, 8, 628, 220, 220, 220, 6818, 4382, 13, 21653, 10786, 26483, 7792, 62, 35316, 3256, 16144, 11639, 21754, 62, 1662, 62, 6098, 1077, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21360, 28, 30281, 8, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 198, 220, 220, 220, 705, 30281, 11, 2198, 62, 8818, 3256, 198, 220, 220, 220, 685, 10786, 260, 15164, 62, 24396, 3256, 10352, 828, 198, 220, 220, 220, 220, 357, 33295, 62, 47844, 11, 6407, 828, 198, 220, 220, 220, 220, 357, 50033, 257, 11, 2124, 25, 257, 13, 47844, 13, 33295, 7, 87, 828, 10352, 8, 12962, 198, 4299, 1332, 62, 292, 13361, 62, 7856, 62, 8443, 62, 30281, 62, 19199, 7, 5907, 36436, 11, 21360, 11, 2198, 62, 8818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 775, 815, 307, 1498, 284, 11986, 262, 21360, 287, 262, 4600, 8443, 63, 869, 287, 198, 220, 220, 220, 1180, 2842, 25, 2446, 11, 5499, 11, 37456, 14700, 986, 628, 220, 220, 220, 5740, 326, 428, 21360, 481, 307, 973, 611, 407, 23170, 4651, 416, 262, 4600, 30281, 63, 198, 220, 220, 220, 11507, 287, 262, 4600, 21280, 63, 869, 13, 2102, 11, 326, 318, 5734, 10667, 287, 198, 220, 220, 220, 584, 1332, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4382, 796, 1057, 62, 25781, 10786, 15388, 3256, 2779, 28, 10697, 42367, 6207, 8, 198, 220, 220, 220, 5456, 796, 1057, 62, 25781, 10786, 16366, 3256, 2779, 28, 11792, 3152, 25060, 8, 628, 220, 220, 220, 37817, 796, 4382, 13, 29851, 10786, 12984, 1836, 11537, 628, 220, 220, 220, 5456, 13, 8443, 7, 29851, 11, 16144, 11639, 7266, 3256, 21360, 28, 30281, 8, 198, 220, 220, 220, 5456, 13, 21280, 10786, 7266, 3256, 705, 25927, 0, 11537, 198, 220, 220, 220, 6818, 4043, 62, 25781, 62, 35226, 7, 16366, 11, 4129, 28, 16, 8, 628, 220, 220, 220, 611, 2198, 62, 8818, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 326, 262, 2163, 373, 407, 8574, 355, 257, 2446, 329, 262, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 351, 12972, 9288, 13, 430, 2696, 7, 33682, 12331, 8, 355, 4049, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 5456, 13, 1136, 62, 35226, 10786, 33295, 62, 47844, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 705, 15252, 468, 645, 11688, 6, 287, 965, 7, 18224, 13, 8367, 8, 628, 198, 31, 9078, 9288, 13, 4102, 13, 17143, 316, 380, 2736, 7, 198, 220, 220, 220, 705, 30281, 11, 2198, 62, 8818, 3256, 198, 220, 220, 220, 685, 10786, 260, 15164, 62, 24396, 3256, 10352, 828, 198, 220, 220, 220, 220, 357, 33295, 62, 47844, 11, 6407, 828, 198, 220, 220, 220, 220, 357, 50033, 257, 11, 2124, 25, 257, 13, 47844, 13, 33295, 7, 87, 828, 10352, 8, 12962, 198, 4299, 1332, 62, 292, 13361, 62, 7856, 62, 21280, 62, 30281, 62, 19199, 7, 5907, 36436, 11, 21360, 11, 2198, 62, 8818, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 775, 815, 307, 1498, 284, 787, 7007, 772, 611, 356, 466, 407, 11986, 257, 21360, 198, 220, 220, 220, 319, 262, 4600, 8443, 63, 869, 11, 355, 890, 355, 356, 11986, 340, 319, 262, 4600, 21280, 63, 869, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4382, 796, 1057, 62, 25781, 10786, 15388, 3256, 2779, 28, 10697, 42367, 6207, 8, 198, 220, 220, 220, 5456, 796, 1057, 62, 25781, 10786, 16366, 3256, 2779, 28, 11792, 3152, 25060, 8, 628, 220, 220, 220, 37817, 796, 4382, 13, 29851, 10786, 12984, 1836, 11537, 628, 220, 220, 220, 1303, 8113, 1231, 257, 21360, 198, 220, 220, 220, 5456, 13, 8443, 7, 29851, 11, 16144, 11639, 7266, 11537, 628, 220, 220, 220, 5456, 13, 21280, 10786, 7266, 3256, 705, 25927, 0, 3256, 21360, 28, 30281, 8, 198, 220, 220, 220, 6818, 4043, 62, 25781, 62, 35226, 7, 16366, 11, 4129, 28, 16, 8, 628, 220, 220, 220, 611, 2198, 62, 8818, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 6822, 326, 262, 2163, 373, 407, 8574, 355, 257, 2446, 329, 262, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 351, 12972, 9288, 13, 430, 2696, 7, 33682, 12331, 8, 355, 4049, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6818, 5456, 13, 1136, 62, 35226, 10786, 33295, 62, 47844, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 6818, 705, 15252, 468, 645, 11688, 6, 287, 965, 7, 18224, 13, 8367, 8, 198 ]
2.899461
1,114
import pickle from .. import romanian from ...datasources import revision_oriented from ...dependencies import solve from .util import compare_extraction BAD = [ "bou", "caca", "cacat", "cur", "curu", "curva", "curve", "dracu", "fraier", "fraieri", "fraierilor", "fut", "fute", "futut", "kkt", "laba", "mata", "muie", "muist", "pidar", "pizda", "plm", "porcarie", "pula", "pule", "puli", "pulii", "suge", "sugeti", "sugi", "supt" ] INFORMAL = [ "aia", "asa", "asta", "astea", "ati", "aveti", "bag", "bagat", "bla", "naspa", "prost", "prosti", "prostie", "prostii", "prostilor", "rahat", "smecher", "tigani" ] OTHER = [ """ Perioada Dinastiei Song (în chineză 宋朝, Sòng Cháo; sʊŋ tʂʰɑʊ̯) reprezintă denumirea unei epoci istorice din istoria Chinei, care a a început în anul 960 și a durat până în anul 1279. Ea a a fost precedată de „Perioada Celor Cinci Dinastii și a Celor Zece Regate” și a fost urmată de „Perioada Dinastiei Yuan”. În timpul acestei perioade au fost emiși primii bani adevărați de hârtie din istoria lumii - bancnote - de către un guvern național. Tot în această perioadă a fost înființată prima flotă maritimă militară permanentă a Chinei, s-a folosit pentru prima dată praful de pușcă și s-a determinat, tot pentru prima dată, nordului geografic cu ajutorul busolei. """, ] r_text = revision_oriented.revision.text
[ 11748, 2298, 293, 628, 198, 6738, 11485, 1330, 374, 5185, 666, 198, 6738, 2644, 19608, 292, 2203, 1330, 18440, 62, 17107, 198, 6738, 2644, 45841, 3976, 1330, 8494, 198, 6738, 764, 22602, 1330, 8996, 62, 2302, 7861, 198, 198, 33, 2885, 796, 685, 198, 220, 220, 220, 366, 65, 280, 1600, 198, 220, 220, 220, 366, 66, 22260, 1600, 366, 66, 330, 265, 1600, 198, 220, 220, 220, 366, 22019, 1600, 366, 66, 14717, 1600, 366, 22019, 6862, 1600, 366, 22019, 303, 1600, 198, 220, 220, 220, 366, 7109, 330, 84, 1600, 198, 220, 220, 220, 366, 69, 430, 959, 1600, 366, 69, 430, 29864, 1600, 366, 69, 430, 959, 346, 273, 1600, 198, 220, 220, 220, 366, 69, 315, 1600, 366, 69, 1133, 1600, 366, 69, 315, 315, 1600, 198, 220, 220, 220, 366, 74, 21841, 1600, 198, 220, 220, 220, 366, 75, 15498, 1600, 198, 220, 220, 220, 366, 76, 1045, 1600, 198, 220, 220, 220, 366, 30300, 494, 1600, 366, 30300, 396, 1600, 198, 220, 220, 220, 366, 35317, 283, 1600, 198, 220, 220, 220, 366, 79, 528, 6814, 1600, 198, 220, 220, 220, 366, 489, 76, 1600, 198, 220, 220, 220, 366, 1819, 7718, 494, 1600, 198, 220, 220, 220, 366, 79, 4712, 1600, 366, 79, 2261, 1600, 366, 79, 32176, 1600, 366, 79, 377, 4178, 1600, 198, 220, 220, 220, 366, 82, 2217, 1600, 366, 82, 1018, 316, 72, 1600, 366, 82, 45659, 1600, 198, 220, 220, 220, 366, 2385, 457, 1, 198, 60, 198, 198, 1268, 21389, 1847, 796, 685, 198, 220, 220, 220, 366, 64, 544, 1600, 366, 15462, 1600, 198, 220, 220, 220, 366, 40197, 1600, 366, 4594, 64, 1600, 198, 220, 220, 220, 366, 7246, 1600, 366, 1015, 20259, 1600, 198, 220, 220, 220, 366, 21454, 1600, 366, 21454, 265, 1600, 198, 220, 220, 220, 366, 2436, 64, 1600, 198, 220, 220, 220, 366, 77, 5126, 64, 1600, 198, 220, 220, 220, 366, 1676, 301, 1600, 366, 1676, 301, 72, 1600, 366, 1676, 301, 494, 1600, 366, 1676, 301, 4178, 1600, 366, 1676, 301, 346, 273, 1600, 198, 220, 220, 220, 366, 430, 5183, 1600, 198, 220, 220, 220, 366, 5796, 721, 372, 1600, 198, 220, 220, 220, 366, 83, 328, 3216, 1, 198, 60, 198, 198, 31858, 796, 685, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2448, 952, 4763, 23448, 459, 494, 72, 10940, 357, 34803, 77, 442, 18885, 128, 225, 10263, 106, 233, 17312, 251, 11, 311, 127, 110, 782, 609, 6557, 78, 26, 264, 134, 232, 129, 233, 256, 134, 224, 134, 108, 133, 239, 134, 232, 136, 107, 8, 198, 220, 220, 220, 1128, 21107, 600, 128, 225, 2853, 388, 557, 64, 17809, 72, 2462, 1733, 318, 13165, 501, 16278, 318, 83, 7661, 609, 500, 72, 11, 198, 220, 220, 220, 1337, 257, 257, 6184, 106, 1198, 1996, 6184, 106, 77, 281, 377, 41263, 220, 132, 247, 72, 257, 22365, 265, 279, 22940, 77, 128, 225, 6184, 106, 77, 281, 377, 1105, 3720, 13, 412, 64, 257, 257, 198, 220, 220, 220, 26546, 8555, 265, 128, 225, 390, 564, 252, 5990, 952, 4763, 15248, 273, 327, 259, 979, 23448, 459, 4178, 220, 132, 247, 72, 257, 15248, 273, 9033, 344, 3310, 378, 447, 251, 198, 220, 220, 220, 220, 132, 247, 72, 257, 26546, 2956, 6759, 128, 225, 390, 564, 252, 5990, 952, 4763, 23448, 459, 494, 72, 34071, 447, 251, 13, 6184, 236, 77, 4628, 79, 377, 936, 395, 20295, 583, 952, 671, 198, 220, 220, 220, 35851, 26546, 795, 72, 132, 247, 72, 2684, 4178, 275, 3216, 512, 1990, 128, 225, 430, 132, 249, 72, 390, 289, 22940, 17034, 494, 16278, 318, 83, 7661, 46390, 4178, 532, 275, 1192, 11295, 198, 220, 220, 220, 532, 390, 269, 128, 225, 33945, 555, 915, 933, 12385, 132, 249, 1538, 13, 20323, 6184, 106, 77, 31506, 459, 128, 225, 583, 952, 324, 128, 225, 257, 26546, 6184, 106, 77, 12463, 259, 132, 249, 265, 128, 225, 198, 220, 220, 220, 2684, 64, 781, 313, 128, 225, 1667, 270, 320, 128, 225, 28131, 128, 225, 7748, 128, 225, 257, 609, 500, 72, 11, 264, 12, 64, 5955, 7434, 28145, 622, 2684, 64, 198, 220, 220, 220, 4818, 128, 225, 7201, 913, 390, 47574, 132, 247, 66, 128, 225, 220, 132, 247, 72, 264, 12, 64, 3416, 265, 11, 2006, 28145, 622, 2684, 64, 4818, 128, 225, 11, 299, 585, 377, 9019, 198, 220, 220, 220, 4903, 519, 32188, 291, 18912, 257, 73, 38409, 377, 1323, 2305, 72, 13, 198, 220, 220, 220, 13538, 1600, 198, 60, 198, 198, 81, 62, 5239, 796, 18440, 62, 17107, 13, 260, 10178, 13, 5239, 628, 628, 628 ]
1.935567
776
from __future__ import annotations from dataclasses import dataclass from typing import Optional, List from ..database import Database @dataclass
[ 6738, 11593, 37443, 834, 1330, 37647, 198, 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 198, 6738, 19720, 1330, 32233, 11, 7343, 198, 198, 6738, 11485, 48806, 1330, 24047, 628, 198, 31, 19608, 330, 31172, 198 ]
4.138889
36
# Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. # Note: The solution set must not contain duplicate triplets. # For example, given array S = [-1, 0, 1, 2, -1, -4], # A solution set is: # [ # [-1, 0, 1], # [-1, -1, 2] # ]
[ 2, 11259, 281, 7177, 311, 286, 299, 37014, 11, 389, 612, 4847, 257, 11, 275, 11, 269, 287, 311, 884, 326, 257, 1343, 275, 1343, 269, 796, 657, 30, 9938, 477, 3748, 15055, 912, 287, 262, 7177, 543, 3607, 262, 2160, 286, 6632, 13, 198, 198, 2, 5740, 25, 383, 4610, 900, 1276, 407, 3994, 23418, 15055, 912, 13, 198, 198, 2, 1114, 1672, 11, 1813, 7177, 311, 796, 25915, 16, 11, 657, 11, 352, 11, 362, 11, 532, 16, 11, 532, 19, 4357, 198, 198, 2, 317, 4610, 900, 318, 25, 198, 2, 685, 198, 2, 220, 220, 220, 220, 25915, 16, 11, 657, 11, 352, 4357, 198, 2, 220, 220, 220, 220, 25915, 16, 11, 532, 16, 11, 362, 60, 198, 2, 2361 ]
2.728
125
from paraview.simple import * import paraview sourceDs = Wavelet() inputDs = Sphere() # Test 'Resample With Dataset` proxies p1 = ResampleWithDataset(Input=inputDs, Source=sourceDs) print("Proxy Name before: %s" % p1.GetXMLName()) assert p1.GetXMLName() == "ResampleWithDataset", "The default proxy name must be ResampleWithDataset" print("") print("Setting compatibility version to 5.0...") paraview.compatibility.major = 5 paraview.compatibility.minor = 0 p2 = paraview.simple.ResampleWithDataset(Input=inputDs, Source=sourceDs) print("Proxy Name for compatibility version 5.0: %s" % p2.GetXMLName()) assert p2.GetXMLName() == "Probe", "The default proxy name must be Probe"
[ 6738, 1582, 615, 769, 13, 36439, 1330, 1635, 198, 11748, 1582, 615, 769, 198, 198, 10459, 30832, 796, 17084, 1616, 3419, 198, 15414, 30832, 796, 31798, 3419, 198, 198, 2, 6208, 705, 4965, 1403, 2080, 16092, 292, 316, 63, 41775, 198, 79, 16, 796, 1874, 1403, 3152, 27354, 292, 316, 7, 20560, 28, 15414, 30832, 11, 8090, 28, 10459, 30832, 8, 198, 4798, 7203, 44148, 6530, 878, 25, 4064, 82, 1, 4064, 279, 16, 13, 3855, 55, 5805, 5376, 28955, 198, 30493, 279, 16, 13, 3855, 55, 5805, 5376, 3419, 6624, 366, 4965, 1403, 3152, 27354, 292, 316, 1600, 366, 464, 4277, 15741, 1438, 1276, 307, 1874, 1403, 3152, 27354, 292, 316, 1, 198, 198, 4798, 7203, 4943, 198, 4798, 7203, 34149, 17764, 2196, 284, 642, 13, 15, 9313, 8, 198, 1845, 615, 769, 13, 5589, 25901, 13, 22478, 796, 642, 198, 1845, 615, 769, 13, 5589, 25901, 13, 1084, 273, 796, 657, 198, 198, 79, 17, 796, 1582, 615, 769, 13, 36439, 13, 4965, 1403, 3152, 27354, 292, 316, 7, 20560, 28, 15414, 30832, 11, 8090, 28, 10459, 30832, 8, 198, 4798, 7203, 44148, 6530, 329, 17764, 2196, 642, 13, 15, 25, 4064, 82, 1, 4064, 279, 17, 13, 3855, 55, 5805, 5376, 28955, 198, 30493, 279, 17, 13, 3855, 55, 5805, 5376, 3419, 6624, 366, 2964, 1350, 1600, 366, 464, 4277, 15741, 1438, 1276, 307, 42600, 1, 198 ]
2.96087
230
#!/usr/bin/python #-*- coding: UTF-8-*- import cgi import cgitb import os import sys sys.path.append("/home/pi/devel/BerePi/apps/tinyosGW/cgi") #import simple if __name__ == "__main__": cgitb.enable() args = cgi.FieldStorage() #print os.environ.items() print "Content-type: text/html\n" print "Simple CGI, Python ! <br>" print args # sample # http://10.0.2.4/cgi-bin/simple.py?Id=4&time=2017/01/01 # FieldStorage(None, None, [MiniFieldStorage('Id', '4'), MiniFieldStorage('time', '2017/01/01')])
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 12, 9, 12, 19617, 25, 41002, 12, 23, 12, 9, 12, 198, 198, 11748, 269, 12397, 198, 11748, 269, 18300, 65, 198, 11748, 28686, 198, 11748, 25064, 198, 198, 17597, 13, 6978, 13, 33295, 7203, 14, 11195, 14, 14415, 14, 2934, 626, 14, 33, 567, 38729, 14, 18211, 14, 44152, 418, 33191, 14, 37157, 4943, 198, 2, 11748, 2829, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 628, 220, 220, 220, 269, 18300, 65, 13, 21633, 3419, 198, 220, 220, 220, 26498, 796, 269, 12397, 13, 15878, 31425, 3419, 220, 220, 198, 220, 220, 220, 1303, 4798, 28686, 13, 268, 2268, 13, 23814, 3419, 628, 220, 220, 220, 3601, 366, 19746, 12, 4906, 25, 2420, 14, 6494, 59, 77, 1, 220, 220, 220, 220, 198, 220, 220, 220, 3601, 366, 26437, 36378, 11, 11361, 5145, 1279, 1671, 24618, 198, 220, 220, 220, 3601, 26498, 628, 198, 2, 6291, 198, 2, 2638, 1378, 940, 13, 15, 13, 17, 13, 19, 14, 37157, 12, 8800, 14, 36439, 13, 9078, 30, 7390, 28, 19, 5, 2435, 28, 5539, 14, 486, 14, 486, 198, 2, 7663, 31425, 7, 14202, 11, 6045, 11, 685, 39234, 15878, 31425, 10786, 7390, 3256, 705, 19, 33809, 12558, 15878, 31425, 10786, 2435, 3256, 705, 5539, 14, 486, 14, 486, 11537, 12962, 198 ]
2.358407
226
# -*- coding: utf-8 -*- """ Created on Mon Feb 22 18:24:32 2021 @author: mauricio parameter handle for GUI """ import pandas as pd from nasagamma import spectrum as sp from nasagamma import peaksearch as ps from nasagamma import read_cnf import re
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 41972, 319, 2892, 3158, 2534, 1248, 25, 1731, 25, 2624, 33448, 198, 198, 31, 9800, 25, 285, 2899, 46441, 198, 17143, 2357, 5412, 329, 25757, 198, 37811, 198, 198, 11748, 19798, 292, 355, 279, 67, 198, 6738, 25221, 363, 321, 2611, 1330, 10958, 355, 599, 198, 6738, 25221, 363, 321, 2611, 1330, 9103, 12947, 355, 26692, 198, 6738, 25221, 363, 321, 2611, 1330, 1100, 62, 31522, 69, 198, 11748, 302, 628, 198 ]
2.863636
88
import os import streamlit as st from text import ( spanish_text, english_text, spanish_labels_dictionary, english_labels_dictionary, ) import pandas as pd import altair as alt import biome.text st.set_page_config(page_title="Temis Demo App", layout="centered") os.environ["TOKENIZERS_PARALLELISM"] = "False" # To avoid warnings @st.cache(suppress_st_warning=True, allow_output_mutation=True, show_spinner=False) def loading_model(): """Loading of the model classifier. Passed to a function to include cache decorator""" return biome.text.Pipeline.from_pretrained("../models/temis_model.tar.gz") def populating_predictions(input_df, threshold): """Method for getting which categories surpassed the threshold. Parameters ---------- input_df: Pandas Dataframe Dataframe with predictions and score (in %) threshold: int Value from which predictions are considered valid Return ---------- prediction_output: List[str] Predicted classes in descending order. """ predictions_output = [] df_sorted = input_df.sort_values(by="score") for index, row in df_sorted.iterrows(): if row["score"] >= threshold * 100: predictions_output.append(index) return predictions_output def bar_chart_generator(df, confidence_threshold): """Creating the bar chart, decluttering of code from main function""" bars = ( alt.Chart(df.reset_index()) .mark_bar() .encode( x=alt.X("labels", sort="-y", title=None), y=alt.Y("score", title=None), # The highlight is set based on the result # of the conditional statement color=alt.condition( alt.datum.score >= confidence_threshold, # If the rating is >= threshold it returns True, alt.value("green"), # and the matching bars are set as green. # and if it does not satisfy the condition # the color is set to steelblue. alt.value("steelblue"), ), ) .mark_bar(size=20) ) return bars def predict_labels(df, confidence_threshold, mode): """Returning predicted labels from a dataframe given a treshold. mode=0 returns all labels, mode=1 returns only categories, not passive nor active""" predicted_labels = [] if mode == 0: for i in range(len(df)): if df["score"][i] >= confidence_threshold: predicted_labels.append(df.index[i]) elif mode == 1: for i in range(len(df)): if ( df["score"][i] >= confidence_threshold and df.index[i] != "passive" and df.index[i] != "active" and df.index[i] != "pasiva" and df.index[i] != "activa" ): predicted_labels.append(df.index[i]) return predicted_labels if __name__ == "__main__": main()
[ 11748, 28686, 198, 198, 11748, 4269, 18250, 355, 336, 198, 6738, 2420, 1330, 357, 198, 220, 220, 220, 599, 7115, 62, 5239, 11, 198, 220, 220, 220, 46932, 62, 5239, 11, 198, 220, 220, 220, 599, 7115, 62, 23912, 1424, 62, 67, 14188, 11, 198, 220, 220, 220, 46932, 62, 23912, 1424, 62, 67, 14188, 11, 198, 8, 198, 11748, 19798, 292, 355, 279, 67, 198, 11748, 5988, 958, 355, 5988, 198, 11748, 48493, 13, 5239, 628, 198, 301, 13, 2617, 62, 7700, 62, 11250, 7, 7700, 62, 7839, 2625, 12966, 271, 34588, 2034, 1600, 12461, 2625, 38050, 4943, 198, 198, 418, 13, 268, 2268, 14692, 10468, 43959, 14887, 4877, 62, 27082, 1847, 2538, 43, 31125, 8973, 796, 366, 25101, 1, 220, 1303, 1675, 3368, 14601, 628, 198, 198, 31, 301, 13, 23870, 7, 18608, 601, 62, 301, 62, 43917, 28, 17821, 11, 1249, 62, 22915, 62, 76, 7094, 28, 17821, 11, 905, 62, 2777, 5083, 28, 25101, 8, 198, 4299, 11046, 62, 19849, 33529, 198, 220, 220, 220, 37227, 19031, 286, 262, 2746, 1398, 7483, 13, 23228, 284, 257, 2163, 284, 2291, 12940, 11705, 1352, 37811, 628, 220, 220, 220, 1441, 48493, 13, 5239, 13, 47, 541, 4470, 13, 6738, 62, 5310, 13363, 7203, 40720, 27530, 14, 11498, 271, 62, 19849, 13, 18870, 13, 34586, 4943, 628, 198, 4299, 1461, 8306, 62, 28764, 9278, 7, 15414, 62, 7568, 11, 11387, 2599, 198, 220, 220, 220, 37227, 17410, 329, 1972, 543, 9376, 30612, 262, 11387, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 5128, 62, 7568, 25, 16492, 292, 6060, 14535, 198, 220, 220, 220, 220, 220, 220, 220, 6060, 14535, 351, 16277, 290, 4776, 357, 259, 4064, 8, 198, 220, 220, 220, 11387, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 11052, 422, 543, 16277, 389, 3177, 4938, 628, 220, 220, 220, 8229, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 17724, 62, 22915, 25, 7343, 58, 2536, 60, 198, 220, 220, 220, 220, 220, 220, 220, 14322, 5722, 6097, 287, 31491, 1502, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 16277, 62, 22915, 796, 17635, 198, 220, 220, 220, 47764, 62, 82, 9741, 796, 5128, 62, 7568, 13, 30619, 62, 27160, 7, 1525, 2625, 26675, 4943, 628, 220, 220, 220, 329, 6376, 11, 5752, 287, 47764, 62, 82, 9741, 13, 2676, 8516, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5752, 14692, 26675, 8973, 18189, 11387, 1635, 1802, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16277, 62, 22915, 13, 33295, 7, 9630, 8, 628, 220, 220, 220, 1441, 16277, 62, 22915, 628, 198, 4299, 2318, 62, 40926, 62, 8612, 1352, 7, 7568, 11, 6628, 62, 400, 10126, 2599, 198, 220, 220, 220, 37227, 32071, 262, 2318, 8262, 11, 2377, 33598, 286, 2438, 422, 1388, 2163, 37811, 628, 220, 220, 220, 9210, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 5988, 13, 45488, 7, 7568, 13, 42503, 62, 9630, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 764, 4102, 62, 5657, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 764, 268, 8189, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 2501, 13, 55, 7203, 23912, 1424, 1600, 3297, 2625, 12, 88, 1600, 3670, 28, 14202, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 28, 2501, 13, 56, 7203, 26675, 1600, 3670, 28, 14202, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 7238, 318, 900, 1912, 319, 262, 1255, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 286, 262, 26340, 2643, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 28, 2501, 13, 31448, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5988, 13, 19608, 388, 13, 26675, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18189, 6628, 62, 400, 10126, 11, 220, 1303, 1002, 262, 7955, 318, 18189, 11387, 340, 5860, 6407, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5988, 13, 8367, 7203, 14809, 12340, 220, 1303, 290, 262, 12336, 9210, 389, 900, 355, 4077, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 290, 611, 340, 857, 407, 15959, 262, 4006, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 262, 3124, 318, 900, 284, 7771, 17585, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5988, 13, 8367, 7203, 44822, 17585, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10612, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 764, 4102, 62, 5657, 7, 7857, 28, 1238, 8, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1441, 9210, 628, 198, 4299, 4331, 62, 23912, 1424, 7, 7568, 11, 6628, 62, 400, 10126, 11, 4235, 2599, 198, 220, 220, 220, 37227, 13615, 278, 11001, 14722, 422, 257, 1366, 14535, 1813, 257, 256, 10126, 13, 198, 220, 220, 220, 4235, 28, 15, 5860, 477, 14722, 11, 4235, 28, 16, 5860, 691, 9376, 11, 407, 14513, 4249, 4075, 37811, 628, 220, 220, 220, 11001, 62, 23912, 1424, 796, 17635, 628, 220, 220, 220, 611, 4235, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 7568, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 47764, 14692, 26675, 1, 7131, 72, 60, 18189, 6628, 62, 400, 10126, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11001, 62, 23912, 1424, 13, 33295, 7, 7568, 13, 9630, 58, 72, 12962, 628, 220, 220, 220, 1288, 361, 4235, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 7568, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 47764, 14692, 26675, 1, 7131, 72, 60, 18189, 6628, 62, 400, 10126, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 47764, 13, 9630, 58, 72, 60, 14512, 366, 6603, 425, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 47764, 13, 9630, 58, 72, 60, 14512, 366, 5275, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 47764, 13, 9630, 58, 72, 60, 14512, 366, 44429, 12151, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 47764, 13, 9630, 58, 72, 60, 14512, 366, 529, 12151, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11001, 62, 23912, 1424, 13, 33295, 7, 7568, 13, 9630, 58, 72, 12962, 628, 220, 220, 220, 1441, 11001, 62, 23912, 1424, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.39585
1,253
import imp, glob, shutil, numpy imp.load_source('common_functions','common_functions.py') import common_functions as cf def contsub(msfile,config,config_raw,config_file,logger): """ Subtracts the continuum from each of the science target MSs. If the no line free range is set then the user is queried (in interactive mode) and the configuration file updated. Input: msfile = Path to the MS. (String) config = The parameters read from the configuration file. (Ordered dictionary) config_raw = The instance of the parser. config_file = Path to configuration file. (String) """ logger.info('Starting continuum subtraction.') contsub = config['continuum_subtraction'] calib = config['calibration'] src_dir = config['global']['src_dir']+'/' logger.info('Checking for line free channel ranges in parameters.') targets = calib['target_names'][:] fields = calib['targets'][:] for i in range(len(targets)): target = targets[i] if 'spw' in target: inx = target.index('.spw') target_name = target[:inx] if target_name in calib['target_names'][i-1]: fields.insert(i,fields[i-1]) if calib['mosaic']: logger.info('The parameters file indicates that this data set is a mosaic.') logger.info('All fields in the mosaic will have the same continuum channels.') targets = list(set(targets)) reset_ch = False if len(contsub['linefree_ch']) == 0 or len(contsub['linefree_ch']) != len(targets): reset_ch = True if len(contsub['linefree_ch']) < len(targets): logger.warning('There are more target fields than channel ranges. Appending blank ranges.') while len(contsub['linefree_ch']) < len(targets): contsub['linefree_ch'].append('') elif len(contsub['linefree_ch']) > len(targets): logger.warning('There are more channel ranges than target fields.') logger.info('Current channel ranges: {}'.format(contsub['linefree_ch'])) logger.warning('The channel range list will now be truncated to match the number of targets.') contsub['linefree_ch'] = contsub['linefree_ch'][:len(targets)] elif interactive: print('Current line free channels set as:') for i in range(len(contsub['linefree_ch'])): print('{0}: {1}'.format(targets[i],contsub['linefree_ch'][i])) resp = str(raw_input('Do you want revise the line free channels (y/n): ')) if resp.lower() in ['yes','ye','y']: reset_ch = True if reset_ch: if not interactive: logger.critical('The number of line free channel ranges provided does not match the number of targets.') logger.info('Line free change ranges: {}'.format(contsub['linefree_ch'])) logger.info('Targets: {}'.format(targets)) sys.exit(-1) else: print('For each target enter the line free channels in the following format:\nspwID1:min_ch1~max_ch1;min_ch2~max_ch2,spwID2:min_ch3~max_ch3;min_ch4~max_ch4') for i in range(len(targets)): contsub['linefree_ch'][i] = cf.uinput('Line free channels for {}: '.format(targets[i]), contsub['linefree_ch'][i]) logger.info('Setting line free channels for {0} as: {1}.'.format(targets[i], contsub['linefree_ch'][i])) if type(contsub['fitorder']) == type(1): order_set = False while not order_set: try: order = int(cf.uinput('Set the fit order for {}: '.format(targets[i]), contsub['fitorder'])) if order >= 0: order_set = True except ValueError: print 'Fit order must be an integer.' if order != contsub['fitorder'] and len(targets) > 1: order_list = list(numpy.zeros(len(targets),dtype='int')+contsub['fitorder']) order_list[i] = order order = order_list contsub['fitorder'] = order else: order_set = False while not order_set: try: order = int(cf.uinput('Set the fit order for {}: '.format(targets[i]), contsub['fitorder'][i])) if order >= 0: order_set = True contsub['fitorder'] = order except ValueError: print 'Fit order must be an integer.' logger.info('Updating config file to set line free channels and fit orders.') config_raw.set('continuum_subtraction','linefree_ch',contsub['linefree_ch']) config_raw.set('continuum_subtraction','fitorder',contsub['fitorder']) configfile = open(config_file,'w') config_raw.write(configfile) configfile.close() logger.info('Line free channels set as: {}.'.format(contsub['linefree_ch'])) logger.info('Fit order(s) set as: {}.'.format(contsub['fitorder'])) logger.info('For the targets: {}.'.format(targets)) for i in range(len(targets)): target = targets[i] field = fields[i] if calib['mosaic']: for target_name in targets: inx = [j for j in range(len(calib['target_names'])) if target_name in calib['target_names'][j]] fields = numpy.array(calib['targets'],dtype='str')[inx] field = ','.join(fields) chans = contsub['linefree_ch'][i] spws = chans.split(',') for j in range(len(spws)): spw = spws[j].strip() inx = spw.index(':') spw = spw[0:inx] spws[j] = spw logger.info('Subtracting the continuum from field: {}'.format(target)) if type(contsub['fitorder']) == type(1): order = int(contsub['fitorder']) else: order = int(contsub['fitorder'][i]) command = "uvcontsub(vis='{0}{1}'+'.split', field='{2}', fitspw='{3}', spw='{4}', excludechans=False, combine='spw', solint='int', fitorder={5}, want_cont={6})".format(src_dir,target,field,chans,','.join(spws),order,contsub['save_cont']) logger.info('Executing command: '+command) exec(command) cf.check_casalog(config,config_raw,logger,casalog) logger.info('Completed continuum subtraction.') def plot_spec(config,logger,contsub=False): """ For each SPW and each science target amplitude vs channel and amplitude vs velocity are plotted. Input: config = The parameters read from the configuration file. (Ordered dictionary) """ logger.info('Starting plotting amplitude spectrum.') plots_obs_dir = './plots/' cf.makedir(plots_obs_dir,logger) calib = config['calibration'] targets = calib['target_names'][:] if calib['mosaic']: targets = list(set(calib['target_names'])) src_dir = config['global']['src_dir']+'/' for target in targets: if contsub: MS_list = glob.glob('{0}{1}.split.contsub'.format(src_dir,target)) else: MS_list = glob.glob('{0}{1}.split'.format(src_dir,target)) for MS in MS_list: if contsub: plot_file = plots_obs_dir+'{0}_contsub_amp_chn.png'.format(target) else: plot_file = plots_obs_dir+'{0}_amp_chn.png'.format(target) logger.info('Plotting amplitude vs channel to {}'.format(plot_file)) plotms(vis=MS, xaxis='chan', yaxis='amp', ydatacolumn='corrected', plotfile=plot_file, expformat='png', overwrite=True, showgui=False) if not contsub: plot_file = plots_obs_dir+'{0}_amp_vel.png'.format(target) logger.info('Plotting amplitude vs velocity to {}'.format(plot_file)) plotms(vis=MS, xaxis='velocity', yaxis='amp', ydatacolumn='corrected', plotfile=plot_file, expformat='png', overwrite=True, showgui=False, freqframe='BARY', restfreq=str(config['global']['rest_freq']), veldef='OPTICAL') logger.info('Completed plotting amplitude spectrum.') def dirty_image(config,config_raw,config_file,logger): """ Generates a dirty (continuum subtracted) image of each science target. Checks that the pixel size, image size, and line emission channels are set (will prompt user if in interactive mode). Input: config = The parameters read from the configuration file. (Ordered dictionary) config_raw = The instance of the parser. config_file = Path to configuration file. (String) """ logger.info('Starting making dirty image.') calib = config['calibration'] contsub = config['continuum_subtraction'] rest_freq = config['global']['rest_freq'] targets = calib['target_names'][:] fields = calib['targets'][:] for i in range(len(targets)): target = targets[i] if 'spw' in target: inx = target.index('.spw') target_name = target[:inx] if target_name in calib['target_names'][i-1]: fields.insert(i,fields[i-1]) if calib['mosaic']: targets = list(set(calib['target_names'])) cln_param = config['clean'] src_dir = config['global']['src_dir']+'/' img_dir = config['global']['img_dir']+'/' cf.makedir('./'+img_dir,logger) logger.info('Removing any existing dirty images.') for target in targets: del_list = glob.glob(img_dir+'{}.dirty*'.format(target)) for file_path in del_list: logger.info('Deleting: '+file_path) shutil.rmtree(file_path) logger.info('Checking clean parameters for dirty image.') reset_cln = False if len(cln_param['pix_size']) == 0 or len(cln_param['pix_size']) != len(targets): if not interactive: logger.critical('The number of pixel sizes provided does not match the number of targets.') logger.info('Pixel sizes: {}'.format(cln_param['pix_size'])) logger.info('Targets: {}'.format(targets)) sys.exit(-1) reset_cln = True if len(cln_param['pix_size']) < len(targets): logger.warning('There are more target fields than pixel sizes. Appending blanks.') while len(cln_param['pix_size']) < len(targets): cln_param['pix_size'].append('') elif len(cln_param['pix_size']) > len(targets): logger.warning('There are more pixel sizes than target fields.') logger.info('Current pixel sizes: {}'.format(cln_param['pix_size'])) logger.warning('The pixel size list will now be truncated to match the number of targets.') cln_param['pix_size'] = cln_param['pix_size'][:len(targets)] elif interactive: print('Current pixel sizes set as:') for i in range(len(cln_param['pix_size'])): print('{0}: {1}'.format(targets[i],cln_param['pix_size'][i])) resp = str(raw_input('Do you want revise the pixel sizes (y/n): ')) if resp.lower() in ['yes','ye','y']: reset_cln = True if reset_cln and interactive: print('For each target enter the desired pixel size:') for i in range(len(targets)): cln_param['pix_size'][i] = cf.uinput('Pixel size for {}: '.format(targets[i]), cln_param['pix_size'][i]) logger.info('Setting pixel size for {0} as: {1}.'.format(targets[i], cln_param['pix_size'][i])) logger.info('Updating config file to set pixel sizes.') config_raw.set('clean','pix_size',cln_param['pix_size']) configfile = open(config_file,'w') config_raw.write(configfile) configfile.close() logger.info('Pixel sizes set as: {}.'.format(cln_param['pix_size'])) logger.info('For the targets: {}.'.format(targets)) reset_cln = False if len(cln_param['im_size']) == 0 or len(cln_param['im_size']) != len(targets): if not interactive: logger.critical('The number of image sizes provided does not match the number of targets.') logger.info('Image sizes: {}'.format(cln_param['im_size'])) logger.info('Targets: {}'.format(targets)) sys.exit(-1) reset_cln = True if len(cln_param['im_size']) < len(targets): logger.warning('There are more target fields than image sizes. Appending blanks.') while len(cln_param['im_size']) < len(targets): cln_param['im_size'].append('') elif len(cln_param['im_size']) > len(targets): logger.warning('There are more image sizes than target fields.') logger.info('Current image sizes: {} pixels.'.format(cln_param['im_size'])) logger.warning('The image size list will now be truncated to match the number of targets.') cln_param['im_size'] = cln_param['im_size'][:len(targets)] elif interactive: print('Current images sizes set as:') for i in range(len(cln_param['im_size'])): print('{0}: {1}'.format(targets[i],cln_param['im_size'][i])) resp = str(raw_input('Do you want revise the image sizes (y/n): ')) if resp.lower() in ['yes','ye','y']: reset_cln = True if reset_cln and interactive: print('For each target enter the desired image size:') for i in range(len(targets)): print('Note: The pixel size for this target was set to: {}'.format(cln_param['pix_size'][i])) cln_param['im_size'][i] = cf.uinput('Image size for {}: '.format(targets[i]), cln_param['im_size'][i]) logger.info('Setting image size for {0} as: {1} x {2}.'.format(targets[i], cln_param['im_size'][i],cln_param['pix_size'][i])) logger.info('Updating config file to set image sizes.') config_raw.set('clean','im_size',cln_param['im_size']) configfile = open(config_file,'w') config_raw.write(configfile) configfile.close() logger.info('Image sizes set as: {} pixels.'.format(cln_param['im_size'])) logger.info('For the targets: {}.'.format(targets)) reset_cln = False if len(cln_param['line_ch']) == 0 or len(cln_param['line_ch']) != len(targets): if not interactive: logger.critical('The number of line channel ranges provided does not match the number of targets.') logger.info('Pixel sizes: {}'.format(cln_param['line_ch'])) logger.info('Targets: {}'.format(targets)) sys.exit(-1) reset_cln = True if len(cln_param['line_ch']) < len(targets): logger.warning('There are more target fields than channel ranges. Appending blank ranges.') while len(cln_param['line_ch']) < len(targets): cln_param['line_ch'].append('') elif len(cln_param['line_ch']) > len(targets): logger.warning('There are more channel ranges than target fields.') logger.info('Current channel ranges: {}'.format(cln_param['line_ch'])) logger.warning('The channel range list will now be truncated to match the number of targets.') cln_param['line_ch'] = cln_param['line_ch'][:len(targets)] elif interactive: print('Current image channels set as:') for i in range(len(cln_param['line_ch'])): print('{0}: {1}'.format(targets[i],cln_param['line_ch'][i])) resp = str(raw_input('Do you want revise the channels that will be imaged (y/n): ')) if resp.lower() in ['yes','ye','y']: reset_cln = True if reset_cln and interactive: print('For each target enter the channels you want to image in the following format:\nspwID:min_ch~max_ch') for i in range(len(targets)): print('Note: The continuum channels for this target were set to: {}'.format(contsub['linefree_ch'][i])) cln_param['line_ch'][i] = cf.uinput('Channels to image for {}: '.format(targets[i]), cln_param['line_ch'][i]) logger.info('Setting image channels for {0} as: {1}.'.format(targets[i], cln_param['line_ch'][i])) logger.info('Updating config file to set channels to be imaged.') config_raw.set('clean','line_ch',cln_param['line_ch']) configfile = open(config_file,'w') config_raw.write(configfile) configfile.close() logger.info('Line emission channels set as: {}.'.format(cln_param['line_ch'])) logger.info('For the targets: {}.'.format(targets)) for i in range(len(targets)): target = targets[i] field = fields[i] gridder = 'wproject' if calib['mosaic']: for target_name in targets: inx = [j for j in range(len(calib['target_names'])) if target_name in calib['target_names'][j]] fields = numpy.array(calib['targets'],dtype='str')[inx] field = ','.join(fields) gridder = 'mosaic' logger.info('Making dirty image of {} (line only).'.format(target)) command = "tclean(vis='{0}{1}'+'.split.contsub', field='{2}', imagename='{3}{1}'+'.dirty', cell='{4}', imsize=[{5},{5}], specmode='cube', outframe='bary', veltype='radio', restfreq='{6}', gridder='{7}', wprojplanes=-1, pblimit=0.1, normtype='flatnoise', deconvolver='hogbom', weighting='briggs', robust={8}, restoringbeam='common', niter=0, phasecenter='{9}', interactive=False)".format(src_dir,target,field,img_dir,cln_param['pix_size'][i],cln_param['im_size'][i],rest_freq,gridder,cln_param['robust'],cln_param['phasecenter']) logger.info('Executing command: '+command) exec(command) cf.check_casalog(config,config_raw,logger,casalog) logger.info('Completed making dirty image.') # Read configuration file with parameters config_file = sys.argv[-1] config,config_raw = cf.read_config(config_file) interactive = config['global']['interactive'] # Set up your logger logger = cf.get_logger(LOG_FILE_INFO = '{}.log'.format(config['global']['project_name']), LOG_FILE_ERROR = '{}_errors.log'.format(config['global']['project_name'])) # Set up your logger # Define MS file name msfile = '{0}.ms'.format(config['global']['project_name']) #Contsub cf.check_casaversion(logger) plot_spec(config,logger) contsub(msfile,config,config_raw,config_file,logger) plot_spec(config,logger,contsub=True) #Remove previous dirty images targets = config['calibration']['target_names'] for target in targets: del_list = glob.glob(config['global']['img_dir']+'/'+'{}.dirty.*'.format(target)) if len(del_list) > 0: logger.info('Deleting existing dirty image(s): {}'.format(del_list)) for file_path in del_list: shutil.rmtree(file_path) #Make dirty image dirty_image(config,config_raw,config_file,logger) #Review and backup parameters file cf.diff_pipeline_params(config_file,logger) cf.backup_pipeline_params(config_file,logger)
[ 11748, 848, 11, 15095, 11, 4423, 346, 11, 299, 32152, 198, 11011, 13, 2220, 62, 10459, 10786, 11321, 62, 12543, 2733, 41707, 11321, 62, 12543, 2733, 13, 9078, 11537, 198, 11748, 2219, 62, 12543, 2733, 355, 30218, 198, 198, 4299, 542, 7266, 7, 907, 7753, 11, 11250, 11, 11250, 62, 1831, 11, 11250, 62, 7753, 11, 6404, 1362, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3834, 83, 974, 82, 262, 44422, 422, 1123, 286, 262, 3783, 2496, 6579, 82, 13, 198, 220, 220, 220, 1002, 262, 645, 1627, 1479, 2837, 318, 900, 788, 262, 2836, 318, 42517, 798, 357, 259, 14333, 4235, 8, 290, 262, 8398, 2393, 6153, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 23412, 25, 198, 220, 220, 220, 13845, 7753, 796, 10644, 284, 262, 6579, 13, 357, 10100, 8, 198, 220, 220, 220, 4566, 796, 383, 10007, 1100, 422, 262, 8398, 2393, 13, 357, 35422, 1068, 22155, 8, 198, 220, 220, 220, 4566, 62, 1831, 796, 383, 4554, 286, 262, 30751, 13, 198, 220, 220, 220, 4566, 62, 7753, 796, 10644, 284, 8398, 2393, 13, 357, 10100, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 49706, 13, 10951, 10786, 22851, 44422, 13284, 7861, 2637, 8, 198, 220, 220, 220, 542, 7266, 796, 4566, 17816, 18487, 13814, 62, 7266, 83, 7861, 20520, 198, 220, 220, 220, 27417, 796, 4566, 17816, 9948, 571, 1358, 20520, 198, 220, 220, 220, 12351, 62, 15908, 796, 4566, 17816, 20541, 6, 7131, 6, 10677, 62, 15908, 20520, 10, 26488, 6, 198, 220, 220, 220, 49706, 13, 10951, 10786, 9787, 278, 329, 1627, 1479, 6518, 16069, 287, 10007, 2637, 8, 198, 220, 220, 220, 6670, 796, 27417, 17816, 16793, 62, 14933, 6, 7131, 47715, 198, 220, 220, 220, 7032, 796, 27417, 17816, 83, 853, 1039, 6, 7131, 47715, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 83, 853, 1039, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 796, 6670, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 2777, 86, 6, 287, 2496, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 87, 796, 2496, 13, 9630, 7, 4458, 2777, 86, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 3672, 796, 2496, 58, 25, 28413, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2496, 62, 3672, 287, 27417, 17816, 16793, 62, 14933, 6, 7131, 72, 12, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7032, 13, 28463, 7, 72, 11, 25747, 58, 72, 12, 16, 12962, 198, 220, 220, 220, 611, 27417, 17816, 76, 8546, 291, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 464, 10007, 2393, 9217, 326, 428, 1366, 900, 318, 257, 47076, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 3237, 7032, 287, 262, 47076, 481, 423, 262, 976, 44422, 9619, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6670, 796, 1351, 7, 2617, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 13259, 62, 354, 796, 10352, 198, 220, 220, 220, 611, 18896, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 12962, 6624, 657, 393, 18896, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 12962, 14512, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 13259, 62, 354, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 12962, 1279, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 1858, 389, 517, 2496, 7032, 621, 6518, 16069, 13, 2034, 1571, 9178, 16069, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 18896, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 12962, 1279, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 542, 7266, 17816, 1370, 5787, 62, 354, 6, 4083, 33295, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 12962, 1875, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 1858, 389, 517, 6518, 16069, 621, 2496, 7032, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 11297, 6518, 16069, 25, 23884, 4458, 18982, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 464, 6518, 2837, 1351, 481, 783, 307, 40122, 515, 284, 2872, 262, 1271, 286, 6670, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 542, 7266, 17816, 1370, 5787, 62, 354, 20520, 796, 542, 7266, 17816, 1370, 5787, 62, 354, 6, 7131, 25, 11925, 7, 83, 853, 1039, 15437, 198, 220, 220, 220, 1288, 361, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11297, 1627, 1479, 9619, 900, 355, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 12962, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 90, 15, 38362, 1391, 16, 92, 4458, 18982, 7, 83, 853, 1039, 58, 72, 4357, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 965, 7, 1831, 62, 15414, 10786, 5211, 345, 765, 32548, 262, 1627, 1479, 9619, 357, 88, 14, 77, 2599, 705, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1217, 13, 21037, 3419, 287, 37250, 8505, 41707, 5948, 41707, 88, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13259, 62, 354, 796, 6407, 198, 220, 220, 220, 611, 13259, 62, 354, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 34666, 10786, 464, 1271, 286, 1627, 1479, 6518, 16069, 2810, 857, 407, 2872, 262, 1271, 286, 6670, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 13949, 1479, 1487, 16069, 25, 23884, 4458, 18982, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 51, 853, 1039, 25, 23884, 4458, 18982, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 37023, 32590, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1890, 1123, 2496, 3802, 262, 1627, 1479, 9619, 287, 262, 1708, 5794, 7479, 77, 2777, 86, 2389, 16, 25, 1084, 62, 354, 16, 93, 9806, 62, 354, 16, 26, 1084, 62, 354, 17, 93, 9806, 62, 354, 17, 11, 2777, 86, 2389, 17, 25, 1084, 62, 354, 18, 93, 9806, 62, 354, 18, 26, 1084, 62, 354, 19, 93, 9806, 62, 354, 19, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 83, 853, 1039, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 542, 7266, 17816, 1370, 5787, 62, 354, 6, 7131, 72, 60, 796, 30218, 13, 84, 15414, 10786, 13949, 1479, 9619, 329, 23884, 25, 45302, 18982, 7, 83, 853, 1039, 58, 72, 46570, 542, 7266, 17816, 1370, 5787, 62, 354, 6, 7131, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 34149, 1627, 1479, 9619, 329, 1391, 15, 92, 355, 25, 1391, 16, 92, 2637, 13, 18982, 7, 83, 853, 1039, 58, 72, 4357, 542, 7266, 17816, 1370, 5787, 62, 354, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2099, 7, 3642, 7266, 17816, 11147, 2875, 6, 12962, 6624, 2099, 7, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 62, 2617, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 407, 1502, 62, 2617, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 796, 493, 7, 12993, 13, 84, 15414, 10786, 7248, 262, 4197, 1502, 329, 23884, 25, 45302, 18982, 7, 83, 853, 1039, 58, 72, 46570, 542, 7266, 17816, 11147, 2875, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1502, 18189, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 62, 2617, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 705, 31805, 1502, 1276, 307, 281, 18253, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1502, 14512, 542, 7266, 17816, 11147, 2875, 20520, 290, 18896, 7, 83, 853, 1039, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 62, 4868, 796, 1351, 7, 77, 32152, 13, 9107, 418, 7, 11925, 7, 83, 853, 1039, 828, 67, 4906, 11639, 600, 11537, 10, 3642, 7266, 17816, 11147, 2875, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 62, 4868, 58, 72, 60, 796, 1502, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 796, 1502, 62, 4868, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 542, 7266, 17816, 11147, 2875, 20520, 796, 1502, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 62, 2617, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 407, 1502, 62, 2617, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 796, 493, 7, 12993, 13, 84, 15414, 10786, 7248, 262, 4197, 1502, 329, 23884, 25, 45302, 18982, 7, 83, 853, 1039, 58, 72, 46570, 542, 7266, 17816, 11147, 2875, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1502, 18189, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 62, 2617, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 542, 7266, 17816, 11147, 2875, 20520, 796, 1502, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 705, 31805, 1502, 1276, 307, 281, 18253, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 4933, 38734, 4566, 2393, 284, 900, 1627, 1479, 9619, 290, 4197, 6266, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 2617, 10786, 18487, 13814, 62, 7266, 83, 7861, 41707, 1370, 5787, 62, 354, 3256, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 2617, 10786, 18487, 13814, 62, 7266, 83, 7861, 41707, 11147, 2875, 3256, 3642, 7266, 17816, 11147, 2875, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 7753, 796, 1280, 7, 11250, 62, 7753, 4032, 86, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 13564, 7, 11250, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 7753, 13, 19836, 3419, 198, 220, 220, 220, 49706, 13, 10951, 10786, 13949, 1479, 9619, 900, 355, 25, 23884, 2637, 13, 18982, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 20520, 4008, 198, 220, 220, 220, 49706, 13, 10951, 10786, 31805, 1502, 7, 82, 8, 900, 355, 25, 23884, 2637, 13, 18982, 7, 3642, 7266, 17816, 11147, 2875, 20520, 4008, 198, 220, 220, 220, 49706, 13, 10951, 10786, 1890, 262, 6670, 25, 23884, 2637, 13, 18982, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 83, 853, 1039, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 796, 6670, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2214, 796, 7032, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27417, 17816, 76, 8546, 291, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2496, 62, 3672, 287, 6670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 87, 796, 685, 73, 329, 474, 287, 2837, 7, 11925, 7, 9948, 571, 17816, 16793, 62, 14933, 20520, 4008, 611, 2496, 62, 3672, 287, 27417, 17816, 16793, 62, 14933, 6, 7131, 73, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7032, 796, 299, 32152, 13, 18747, 7, 9948, 571, 17816, 83, 853, 1039, 6, 4357, 67, 4906, 11639, 2536, 11537, 58, 28413, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 796, 705, 4032, 13, 22179, 7, 25747, 8, 198, 220, 220, 220, 220, 220, 220, 220, 442, 504, 796, 542, 7266, 17816, 1370, 5787, 62, 354, 6, 7131, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 599, 18504, 796, 442, 504, 13, 35312, 7, 3256, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2837, 7, 11925, 7, 2777, 18504, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 599, 86, 796, 599, 18504, 58, 73, 4083, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 87, 796, 599, 86, 13, 9630, 7, 10354, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 599, 86, 796, 599, 86, 58, 15, 25, 28413, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 599, 18504, 58, 73, 60, 796, 599, 86, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 7004, 83, 974, 278, 262, 44422, 422, 2214, 25, 23884, 4458, 18982, 7, 16793, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2099, 7, 3642, 7266, 17816, 11147, 2875, 6, 12962, 6624, 2099, 7, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 796, 493, 7, 3642, 7266, 17816, 11147, 2875, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 796, 493, 7, 3642, 7266, 17816, 11147, 2875, 6, 7131, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 3141, 796, 366, 14795, 3642, 7266, 7, 4703, 11639, 90, 15, 18477, 16, 92, 6, 10, 4458, 35312, 3256, 2214, 11639, 90, 17, 92, 3256, 11414, 79, 86, 11639, 90, 18, 92, 3256, 599, 86, 11639, 90, 19, 92, 3256, 409, 758, 3055, 504, 28, 25101, 11, 12082, 11639, 2777, 86, 3256, 1540, 600, 11639, 600, 3256, 4197, 2875, 34758, 20, 5512, 765, 62, 3642, 34758, 21, 30072, 1911, 18982, 7, 10677, 62, 15908, 11, 16793, 11, 3245, 11, 354, 504, 11, 3256, 4458, 22179, 7, 2777, 18504, 828, 2875, 11, 3642, 7266, 17816, 21928, 62, 3642, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 23002, 15129, 3141, 25, 705, 10, 21812, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2452, 7, 21812, 8, 198, 220, 220, 220, 220, 220, 220, 220, 30218, 13, 9122, 62, 34004, 11794, 7, 11250, 11, 11250, 62, 1831, 11, 6404, 1362, 11, 34004, 11794, 8, 198, 220, 220, 220, 49706, 13, 10951, 10786, 43768, 44422, 13284, 7861, 2637, 8, 198, 220, 220, 220, 220, 628, 198, 4299, 7110, 62, 16684, 7, 11250, 11, 6404, 1362, 11, 3642, 7266, 28, 25101, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1114, 1123, 6226, 54, 290, 1123, 3783, 2496, 37188, 3691, 6518, 290, 37188, 3691, 15432, 389, 37515, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 23412, 25, 198, 220, 220, 220, 4566, 796, 383, 10007, 1100, 422, 262, 8398, 2393, 13, 357, 35422, 1068, 22155, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 49706, 13, 10951, 10786, 22851, 29353, 37188, 10958, 2637, 8, 198, 220, 220, 220, 21528, 62, 8158, 62, 15908, 796, 705, 19571, 489, 1747, 14, 6, 198, 220, 220, 220, 30218, 13, 76, 4335, 343, 7, 489, 1747, 62, 8158, 62, 15908, 11, 6404, 1362, 8, 198, 220, 220, 220, 27417, 796, 4566, 17816, 9948, 571, 1358, 20520, 198, 220, 220, 220, 6670, 796, 27417, 17816, 16793, 62, 14933, 6, 7131, 47715, 198, 220, 220, 220, 611, 27417, 17816, 76, 8546, 291, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 6670, 796, 1351, 7, 2617, 7, 9948, 571, 17816, 16793, 62, 14933, 20520, 4008, 198, 220, 220, 220, 12351, 62, 15908, 796, 4566, 17816, 20541, 6, 7131, 6, 10677, 62, 15908, 20520, 10, 26488, 6, 198, 220, 220, 220, 329, 2496, 287, 6670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 542, 7266, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6579, 62, 4868, 796, 15095, 13, 4743, 672, 10786, 90, 15, 18477, 16, 27422, 35312, 13, 3642, 7266, 4458, 18982, 7, 10677, 62, 15908, 11, 16793, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6579, 62, 4868, 796, 15095, 13, 4743, 672, 10786, 90, 15, 18477, 16, 27422, 35312, 4458, 18982, 7, 10677, 62, 15908, 11, 16793, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 329, 6579, 287, 6579, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 542, 7266, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 62, 7753, 796, 21528, 62, 8158, 62, 15908, 10, 6, 90, 15, 92, 62, 3642, 7266, 62, 696, 62, 1349, 13, 11134, 4458, 18982, 7, 16793, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 62, 7753, 796, 21528, 62, 8158, 62, 15908, 10, 6, 90, 15, 92, 62, 696, 62, 1349, 13, 11134, 4458, 18982, 7, 16793, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 43328, 889, 37188, 3691, 6518, 284, 23884, 4458, 18982, 7, 29487, 62, 7753, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 907, 7, 4703, 28, 5653, 11, 2124, 22704, 11639, 3147, 3256, 331, 22704, 11639, 696, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 19608, 330, 349, 4182, 11639, 30283, 276, 3256, 7110, 7753, 28, 29487, 62, 7753, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1033, 18982, 11639, 11134, 3256, 49312, 28, 17821, 11, 905, 48317, 28, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 542, 7266, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 62, 7753, 796, 21528, 62, 8158, 62, 15908, 10, 6, 90, 15, 92, 62, 696, 62, 626, 13, 11134, 4458, 18982, 7, 16793, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 43328, 889, 37188, 3691, 15432, 284, 23884, 4458, 18982, 7, 29487, 62, 7753, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7110, 907, 7, 4703, 28, 5653, 11, 2124, 22704, 11639, 626, 11683, 3256, 331, 22704, 11639, 696, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 19608, 330, 349, 4182, 11639, 30283, 276, 3256, 7110, 7753, 28, 29487, 62, 7753, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1033, 18982, 11639, 11134, 3256, 49312, 28, 17821, 11, 905, 48317, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2030, 80, 14535, 11639, 33, 13153, 3256, 1334, 19503, 80, 28, 2536, 7, 11250, 17816, 20541, 6, 7131, 6, 2118, 62, 19503, 80, 20520, 828, 1569, 335, 891, 11639, 3185, 51, 20151, 11537, 198, 220, 220, 220, 49706, 13, 10951, 10786, 43768, 29353, 37188, 10958, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 4299, 11841, 62, 9060, 7, 11250, 11, 11250, 62, 1831, 11, 11250, 62, 7753, 11, 6404, 1362, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2980, 689, 257, 11841, 357, 18487, 13814, 13284, 20216, 8, 2939, 286, 1123, 3783, 2496, 13, 198, 220, 220, 220, 47719, 326, 262, 17465, 2546, 11, 2939, 2546, 11, 290, 1627, 25592, 9619, 389, 900, 357, 10594, 6152, 2836, 611, 287, 14333, 4235, 737, 198, 220, 220, 220, 220, 198, 220, 220, 220, 23412, 25, 198, 220, 220, 220, 4566, 796, 383, 10007, 1100, 422, 262, 8398, 2393, 13, 357, 35422, 1068, 22155, 8, 198, 220, 220, 220, 4566, 62, 1831, 796, 383, 4554, 286, 262, 30751, 13, 198, 220, 220, 220, 4566, 62, 7753, 796, 10644, 284, 8398, 2393, 13, 357, 10100, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 49706, 13, 10951, 10786, 22851, 1642, 11841, 2939, 2637, 8, 198, 220, 220, 220, 27417, 796, 4566, 17816, 9948, 571, 1358, 20520, 198, 220, 220, 220, 542, 7266, 796, 4566, 17816, 18487, 13814, 62, 7266, 83, 7861, 20520, 198, 220, 220, 220, 1334, 62, 19503, 80, 796, 4566, 17816, 20541, 6, 7131, 6, 2118, 62, 19503, 80, 20520, 198, 220, 220, 220, 6670, 796, 27417, 17816, 16793, 62, 14933, 6, 7131, 47715, 198, 220, 220, 220, 7032, 796, 27417, 17816, 83, 853, 1039, 6, 7131, 47715, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 83, 853, 1039, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 796, 6670, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 2777, 86, 6, 287, 2496, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 87, 796, 2496, 13, 9630, 7, 4458, 2777, 86, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 3672, 796, 2496, 58, 25, 28413, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2496, 62, 3672, 287, 27417, 17816, 16793, 62, 14933, 6, 7131, 72, 12, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7032, 13, 28463, 7, 72, 11, 25747, 58, 72, 12, 16, 12962, 198, 220, 220, 220, 611, 27417, 17816, 76, 8546, 291, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 6670, 796, 1351, 7, 2617, 7, 9948, 571, 17816, 16793, 62, 14933, 20520, 4008, 198, 220, 220, 220, 537, 77, 62, 17143, 796, 4566, 17816, 27773, 20520, 198, 220, 220, 220, 12351, 62, 15908, 796, 4566, 17816, 20541, 6, 7131, 6, 10677, 62, 15908, 20520, 10, 26488, 6, 198, 220, 220, 220, 33705, 62, 15908, 796, 4566, 17816, 20541, 6, 7131, 6, 9600, 62, 15908, 20520, 10, 26488, 6, 198, 220, 220, 220, 30218, 13, 76, 4335, 343, 7, 4458, 14, 6, 10, 9600, 62, 15908, 11, 6404, 1362, 8, 198, 220, 220, 220, 49706, 13, 10951, 10786, 8413, 5165, 597, 4683, 11841, 4263, 2637, 8, 198, 220, 220, 220, 329, 2496, 287, 6670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1619, 62, 4868, 796, 15095, 13, 4743, 672, 7, 9600, 62, 15908, 10, 6, 90, 27422, 49075, 9, 4458, 18982, 7, 16793, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2393, 62, 6978, 287, 1619, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 5005, 293, 889, 25, 705, 10, 7753, 62, 6978, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4423, 346, 13, 81, 16762, 631, 7, 7753, 62, 6978, 8, 198, 220, 220, 220, 49706, 13, 10951, 10786, 9787, 278, 3424, 10007, 329, 11841, 2939, 2637, 8, 198, 220, 220, 220, 13259, 62, 565, 77, 796, 10352, 198, 220, 220, 220, 611, 18896, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 12962, 6624, 657, 393, 18896, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 12962, 14512, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 34666, 10786, 464, 1271, 286, 17465, 10620, 2810, 857, 407, 2872, 262, 1271, 286, 6670, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 40809, 10620, 25, 23884, 4458, 18982, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 51, 853, 1039, 25, 23884, 4458, 18982, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 37023, 32590, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13259, 62, 565, 77, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 12962, 1279, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 1858, 389, 517, 2496, 7032, 621, 17465, 10620, 13, 2034, 1571, 698, 2283, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 18896, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 12962, 1279, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 4083, 33295, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 12962, 1875, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 1858, 389, 517, 17465, 10620, 621, 2496, 7032, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 11297, 17465, 10620, 25, 23884, 4458, 18982, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 464, 17465, 2546, 1351, 481, 783, 307, 40122, 515, 284, 2872, 262, 1271, 286, 6670, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 79, 844, 62, 7857, 20520, 796, 537, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 7131, 25, 11925, 7, 83, 853, 1039, 15437, 198, 220, 220, 220, 1288, 361, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11297, 17465, 10620, 900, 355, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 12962, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 90, 15, 38362, 1391, 16, 92, 4458, 18982, 7, 83, 853, 1039, 58, 72, 4357, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 965, 7, 1831, 62, 15414, 10786, 5211, 345, 765, 32548, 262, 17465, 10620, 357, 88, 14, 77, 2599, 705, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1217, 13, 21037, 3419, 287, 37250, 8505, 41707, 5948, 41707, 88, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13259, 62, 565, 77, 796, 6407, 198, 220, 220, 220, 611, 13259, 62, 565, 77, 290, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1890, 1123, 2496, 3802, 262, 10348, 17465, 2546, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 83, 853, 1039, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 7131, 72, 60, 796, 30218, 13, 84, 15414, 10786, 40809, 2546, 329, 23884, 25, 45302, 18982, 7, 83, 853, 1039, 58, 72, 46570, 537, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 7131, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 34149, 17465, 2546, 329, 1391, 15, 92, 355, 25, 1391, 16, 92, 2637, 13, 18982, 7, 83, 853, 1039, 58, 72, 4357, 537, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 4933, 38734, 4566, 2393, 284, 900, 17465, 10620, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 2617, 10786, 27773, 41707, 79, 844, 62, 7857, 3256, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 7753, 796, 1280, 7, 11250, 62, 7753, 4032, 86, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 13564, 7, 11250, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 7753, 13, 19836, 3419, 198, 220, 220, 220, 49706, 13, 10951, 10786, 40809, 10620, 900, 355, 25, 23884, 2637, 13, 18982, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 20520, 4008, 198, 220, 220, 220, 49706, 13, 10951, 10786, 1890, 262, 6670, 25, 23884, 2637, 13, 18982, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 13259, 62, 565, 77, 796, 10352, 198, 220, 220, 220, 611, 18896, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 12962, 6624, 657, 393, 18896, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 12962, 14512, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 34666, 10786, 464, 1271, 286, 2939, 10620, 2810, 857, 407, 2872, 262, 1271, 286, 6670, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 5159, 10620, 25, 23884, 4458, 18982, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 51, 853, 1039, 25, 23884, 4458, 18982, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 37023, 32590, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13259, 62, 565, 77, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 12962, 1279, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 1858, 389, 517, 2496, 7032, 621, 2939, 10620, 13, 2034, 1571, 698, 2283, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 18896, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 12962, 1279, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 320, 62, 7857, 6, 4083, 33295, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 12962, 1875, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 1858, 389, 517, 2939, 10620, 621, 2496, 7032, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 11297, 2939, 10620, 25, 23884, 17848, 2637, 13, 18982, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 464, 2939, 2546, 1351, 481, 783, 307, 40122, 515, 284, 2872, 262, 1271, 286, 6670, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 320, 62, 7857, 20520, 796, 537, 77, 62, 17143, 17816, 320, 62, 7857, 6, 7131, 25, 11925, 7, 83, 853, 1039, 15437, 198, 220, 220, 220, 1288, 361, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11297, 4263, 10620, 900, 355, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 12962, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 90, 15, 38362, 1391, 16, 92, 4458, 18982, 7, 83, 853, 1039, 58, 72, 4357, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 965, 7, 1831, 62, 15414, 10786, 5211, 345, 765, 32548, 262, 2939, 10620, 357, 88, 14, 77, 2599, 705, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1217, 13, 21037, 3419, 287, 37250, 8505, 41707, 5948, 41707, 88, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13259, 62, 565, 77, 796, 6407, 198, 220, 220, 220, 611, 13259, 62, 565, 77, 290, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1890, 1123, 2496, 3802, 262, 10348, 2939, 2546, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 83, 853, 1039, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 6425, 25, 383, 17465, 2546, 329, 428, 2496, 373, 900, 284, 25, 23884, 4458, 18982, 7, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 320, 62, 7857, 6, 7131, 72, 60, 796, 30218, 13, 84, 15414, 10786, 5159, 2546, 329, 23884, 25, 45302, 18982, 7, 83, 853, 1039, 58, 72, 46570, 537, 77, 62, 17143, 17816, 320, 62, 7857, 6, 7131, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 34149, 2939, 2546, 329, 1391, 15, 92, 355, 25, 1391, 16, 92, 2124, 1391, 17, 92, 2637, 13, 18982, 7, 83, 853, 1039, 58, 72, 4357, 537, 77, 62, 17143, 17816, 320, 62, 7857, 6, 7131, 72, 4357, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 4933, 38734, 4566, 2393, 284, 900, 2939, 10620, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 2617, 10786, 27773, 41707, 320, 62, 7857, 3256, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 7753, 796, 1280, 7, 11250, 62, 7753, 4032, 86, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 13564, 7, 11250, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 7753, 13, 19836, 3419, 198, 220, 220, 220, 49706, 13, 10951, 10786, 5159, 10620, 900, 355, 25, 23884, 17848, 2637, 13, 18982, 7, 565, 77, 62, 17143, 17816, 320, 62, 7857, 20520, 4008, 198, 220, 220, 220, 49706, 13, 10951, 10786, 1890, 262, 6670, 25, 23884, 2637, 13, 18982, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 13259, 62, 565, 77, 796, 10352, 198, 220, 220, 220, 611, 18896, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 6, 12962, 6624, 657, 393, 18896, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 6, 12962, 14512, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 34666, 10786, 464, 1271, 286, 1627, 6518, 16069, 2810, 857, 407, 2872, 262, 1271, 286, 6670, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 40809, 10620, 25, 23884, 4458, 18982, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 51, 853, 1039, 25, 23884, 4458, 18982, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25064, 13, 37023, 32590, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13259, 62, 565, 77, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 6, 12962, 1279, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 1858, 389, 517, 2496, 7032, 621, 6518, 16069, 13, 2034, 1571, 9178, 16069, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 18896, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 6, 12962, 1279, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 1370, 62, 354, 6, 4083, 33295, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 6, 12962, 1875, 18896, 7, 83, 853, 1039, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 1858, 389, 517, 6518, 16069, 621, 2496, 7032, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 11297, 6518, 16069, 25, 23884, 4458, 18982, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 20520, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 464, 6518, 2837, 1351, 481, 783, 307, 40122, 515, 284, 2872, 262, 1271, 286, 6670, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 1370, 62, 354, 20520, 796, 537, 77, 62, 17143, 17816, 1370, 62, 354, 6, 7131, 25, 11925, 7, 83, 853, 1039, 15437, 198, 220, 220, 220, 1288, 361, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 11297, 2939, 9619, 900, 355, 25, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 6, 12962, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 90, 15, 38362, 1391, 16, 92, 4458, 18982, 7, 83, 853, 1039, 58, 72, 4357, 565, 77, 62, 17143, 17816, 1370, 62, 354, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1217, 796, 965, 7, 1831, 62, 15414, 10786, 5211, 345, 765, 32548, 262, 9619, 326, 481, 307, 545, 1886, 357, 88, 14, 77, 2599, 705, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1217, 13, 21037, 3419, 287, 37250, 8505, 41707, 5948, 41707, 88, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13259, 62, 565, 77, 796, 6407, 198, 220, 220, 220, 611, 13259, 62, 565, 77, 290, 14333, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 1890, 1123, 2496, 3802, 262, 9619, 345, 765, 284, 2939, 287, 262, 1708, 5794, 7479, 77, 2777, 86, 2389, 25, 1084, 62, 354, 93, 9806, 62, 354, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 83, 853, 1039, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 6425, 25, 383, 44422, 9619, 329, 428, 2496, 547, 900, 284, 25, 23884, 4458, 18982, 7, 3642, 7266, 17816, 1370, 5787, 62, 354, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 537, 77, 62, 17143, 17816, 1370, 62, 354, 6, 7131, 72, 60, 796, 30218, 13, 84, 15414, 10786, 1925, 8961, 284, 2939, 329, 23884, 25, 45302, 18982, 7, 83, 853, 1039, 58, 72, 46570, 537, 77, 62, 17143, 17816, 1370, 62, 354, 6, 7131, 72, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 34149, 2939, 9619, 329, 1391, 15, 92, 355, 25, 1391, 16, 92, 2637, 13, 18982, 7, 83, 853, 1039, 58, 72, 4357, 537, 77, 62, 17143, 17816, 1370, 62, 354, 6, 7131, 72, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 4933, 38734, 4566, 2393, 284, 900, 9619, 284, 307, 545, 1886, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 2617, 10786, 27773, 41707, 1370, 62, 354, 3256, 565, 77, 62, 17143, 17816, 1370, 62, 354, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 7753, 796, 1280, 7, 11250, 62, 7753, 4032, 86, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 1831, 13, 13564, 7, 11250, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 7753, 13, 19836, 3419, 198, 220, 220, 220, 49706, 13, 10951, 10786, 13949, 25592, 9619, 900, 355, 25, 23884, 2637, 13, 18982, 7, 565, 77, 62, 17143, 17816, 1370, 62, 354, 20520, 4008, 198, 220, 220, 220, 49706, 13, 10951, 10786, 1890, 262, 6670, 25, 23884, 2637, 13, 18982, 7, 83, 853, 1039, 4008, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 83, 853, 1039, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2496, 796, 6670, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2214, 796, 7032, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 10706, 1082, 796, 705, 86, 16302, 6, 198, 220, 220, 220, 220, 220, 220, 220, 611, 27417, 17816, 76, 8546, 291, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2496, 62, 3672, 287, 6670, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 87, 796, 685, 73, 329, 474, 287, 2837, 7, 11925, 7, 9948, 571, 17816, 16793, 62, 14933, 20520, 4008, 611, 2496, 62, 3672, 287, 27417, 17816, 16793, 62, 14933, 6, 7131, 73, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7032, 796, 299, 32152, 13, 18747, 7, 9948, 571, 17816, 83, 853, 1039, 6, 4357, 67, 4906, 11639, 2536, 11537, 58, 28413, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 796, 705, 4032, 13, 22179, 7, 25747, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10706, 1082, 796, 705, 76, 8546, 291, 6, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 23874, 11841, 2939, 286, 23884, 357, 1370, 691, 737, 4458, 18982, 7, 16793, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 3141, 796, 366, 83, 27773, 7, 4703, 11639, 90, 15, 18477, 16, 92, 6, 10, 4458, 35312, 13, 3642, 7266, 3256, 2214, 11639, 90, 17, 92, 3256, 3590, 12453, 11639, 90, 18, 18477, 16, 92, 6, 10, 4458, 49075, 3256, 2685, 11639, 90, 19, 92, 3256, 545, 7857, 41888, 90, 20, 5512, 90, 20, 92, 4357, 1020, 14171, 11639, 40296, 3256, 503, 14535, 11639, 65, 560, 3256, 11555, 4906, 11639, 37004, 3256, 1334, 19503, 80, 11639, 90, 21, 92, 3256, 10706, 1082, 11639, 90, 22, 92, 3256, 266, 1676, 73, 22587, 10779, 16, 11, 279, 2436, 320, 270, 28, 15, 13, 16, 11, 2593, 4906, 11639, 38568, 3919, 786, 3256, 37431, 10396, 332, 11639, 31897, 65, 296, 3256, 3463, 278, 11639, 1671, 20340, 3256, 12373, 34758, 23, 5512, 25646, 40045, 11639, 11321, 3256, 299, 2676, 28, 15, 11, 7108, 16159, 11639, 90, 24, 92, 3256, 14333, 28, 25101, 8, 1911, 18982, 7, 10677, 62, 15908, 11, 16793, 11, 3245, 11, 9600, 62, 15908, 11, 565, 77, 62, 17143, 17816, 79, 844, 62, 7857, 6, 7131, 72, 4357, 565, 77, 62, 17143, 17816, 320, 62, 7857, 6, 7131, 72, 4357, 2118, 62, 19503, 80, 11, 25928, 1082, 11, 565, 77, 62, 17143, 17816, 22609, 436, 6, 4357, 565, 77, 62, 17143, 17816, 40715, 16159, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 23002, 15129, 3141, 25, 705, 10, 21812, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2452, 7, 21812, 8, 198, 220, 220, 220, 220, 220, 220, 220, 30218, 13, 9122, 62, 34004, 11794, 7, 11250, 11, 11250, 62, 1831, 11, 6404, 1362, 11, 34004, 11794, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 49706, 13, 10951, 10786, 43768, 1642, 11841, 2939, 2637, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 198, 2, 4149, 8398, 2393, 351, 10007, 198, 11250, 62, 7753, 796, 25064, 13, 853, 85, 58, 12, 16, 60, 198, 11250, 11, 11250, 62, 1831, 796, 30218, 13, 961, 62, 11250, 7, 11250, 62, 7753, 8, 198, 3849, 5275, 796, 4566, 17816, 20541, 6, 7131, 6, 3849, 5275, 20520, 198, 198, 2, 5345, 510, 534, 49706, 198, 6404, 1362, 796, 30218, 13, 1136, 62, 6404, 1362, 7, 25294, 62, 25664, 62, 10778, 220, 796, 705, 90, 27422, 6404, 4458, 18982, 7, 11250, 17816, 20541, 6, 7131, 6, 16302, 62, 3672, 20520, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41605, 62, 25664, 62, 24908, 796, 705, 90, 92, 62, 48277, 13, 6404, 4458, 18982, 7, 11250, 17816, 20541, 6, 7131, 6, 16302, 62, 3672, 20520, 4008, 1303, 5345, 510, 534, 49706, 198, 198, 2, 2896, 500, 6579, 2393, 1438, 198, 907, 7753, 796, 705, 90, 15, 27422, 907, 4458, 18982, 7, 11250, 17816, 20541, 6, 7131, 6, 16302, 62, 3672, 6, 12962, 198, 198, 2, 4264, 7266, 198, 12993, 13, 9122, 62, 66, 15462, 9641, 7, 6404, 1362, 8, 198, 29487, 62, 16684, 7, 11250, 11, 6404, 1362, 8, 198, 3642, 7266, 7, 907, 7753, 11, 11250, 11, 11250, 62, 1831, 11, 11250, 62, 7753, 11, 6404, 1362, 8, 198, 29487, 62, 16684, 7, 11250, 11, 6404, 1362, 11, 3642, 7266, 28, 17821, 8, 198, 198, 2, 27914, 2180, 11841, 4263, 198, 83, 853, 1039, 796, 4566, 17816, 9948, 571, 1358, 6, 7131, 6, 16793, 62, 14933, 20520, 198, 1640, 2496, 287, 6670, 25, 198, 220, 220, 220, 1619, 62, 4868, 796, 15095, 13, 4743, 672, 7, 11250, 17816, 20541, 6, 7131, 6, 9600, 62, 15908, 20520, 10, 26488, 6, 10, 6, 90, 27422, 49075, 15885, 4458, 18982, 7, 16793, 4008, 198, 220, 220, 220, 611, 18896, 7, 12381, 62, 4868, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 10951, 10786, 5005, 293, 889, 4683, 11841, 2939, 7, 82, 2599, 23884, 4458, 18982, 7, 12381, 62, 4868, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 329, 2393, 62, 6978, 287, 1619, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4423, 346, 13, 81, 16762, 631, 7, 7753, 62, 6978, 8, 198, 220, 220, 220, 220, 198, 2, 12050, 11841, 2939, 198, 49075, 62, 9060, 7, 11250, 11, 11250, 62, 1831, 11, 11250, 62, 7753, 11, 6404, 1362, 8, 198, 198, 2, 14832, 290, 11559, 10007, 2393, 198, 12993, 13, 26069, 62, 79, 541, 4470, 62, 37266, 7, 11250, 62, 7753, 11, 6404, 1362, 8, 198, 12993, 13, 1891, 929, 62, 79, 541, 4470, 62, 37266, 7, 11250, 62, 7753, 11, 6404, 1362, 8 ]
2.245676
8,556
from threading import Thread import time import datetime import json import requests import csv # Create keys.py in same directory and include API keys from keys import METRA_USER, METRA_PASS, WEATHER_KEY import logging as log # Setup logging log.basicConfig(filename='data/data_collection.log', filemode='a', format='%(asctime)s - %(levelname)s - %(message)s', level=log.INFO) # Global API URLs TRIPUPDATES_URL = "https://gtfsapi.metrarail.com/gtfs/tripUpdates" ALERTS_URL = "https://gtfsapi.metrarail.com/gtfs/alerts" WEATHER_URL = lambda lat,lon: "https://api.openweathermap.org/data/2.5/weather \ ?lat="+str(lat)+"&lon="+str(lon)+"&appid="+WEATHER_KEY if __name__ == "__main__": mainDataThread = Thread(name='Main Data Collection', target=CollectData) alertsDataThread = Thread(name='Alert Data Collection', target=CollectAlerts) mainDataThread.setDaemon(True) alertsDataThread.setDaemon(True) mainDataThread.start() alertsDataThread.start() while True: pass # allow threads to continue as daemons
[ 6738, 4704, 278, 1330, 14122, 198, 11748, 640, 198, 11748, 4818, 8079, 198, 11748, 33918, 198, 11748, 7007, 198, 11748, 269, 21370, 198, 198, 2, 13610, 8251, 13, 9078, 287, 976, 8619, 290, 2291, 7824, 8251, 198, 6738, 8251, 1330, 31243, 3861, 62, 29904, 11, 31243, 3861, 62, 47924, 11, 12887, 45226, 62, 20373, 198, 198, 11748, 18931, 355, 2604, 1303, 31122, 18931, 198, 6404, 13, 35487, 16934, 7, 34345, 11639, 7890, 14, 7890, 62, 43681, 13, 6404, 3256, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2393, 14171, 11639, 64, 3256, 5794, 11639, 4, 7, 292, 310, 524, 8, 82, 532, 4064, 7, 5715, 3672, 8, 82, 532, 4064, 7, 20500, 8, 82, 3256, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1241, 28, 6404, 13, 10778, 8, 198, 198, 2, 8060, 7824, 32336, 198, 5446, 4061, 52, 5760, 29462, 62, 21886, 796, 366, 5450, 1378, 13655, 9501, 15042, 13, 4164, 20040, 603, 13, 785, 14, 13655, 9501, 14, 39813, 4933, 19581, 1, 198, 1847, 1137, 4694, 62, 21886, 796, 366, 5450, 1378, 13655, 9501, 15042, 13, 4164, 20040, 603, 13, 785, 14, 13655, 9501, 14, 44598, 82, 1, 198, 8845, 45226, 62, 21886, 796, 37456, 3042, 11, 14995, 25, 366, 5450, 1378, 15042, 13, 9654, 23563, 8899, 13, 2398, 14, 7890, 14, 17, 13, 20, 14, 23563, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5633, 15460, 2625, 10, 2536, 7, 15460, 47762, 1, 5, 14995, 2625, 10, 2536, 7, 14995, 47762, 1, 5, 1324, 312, 2625, 10, 8845, 45226, 62, 20373, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 197, 12417, 6601, 16818, 796, 14122, 7, 3672, 11639, 13383, 6060, 12251, 3256, 2496, 28, 31337, 6601, 8, 198, 197, 44598, 82, 6601, 16818, 796, 14122, 7, 3672, 11639, 36420, 6060, 12251, 3256, 2496, 28, 31337, 36420, 82, 8, 628, 197, 12417, 6601, 16818, 13, 2617, 26531, 7966, 7, 17821, 8, 198, 197, 44598, 82, 6601, 16818, 13, 2617, 26531, 7966, 7, 17821, 8, 628, 197, 12417, 6601, 16818, 13, 9688, 3419, 198, 197, 44598, 82, 6601, 16818, 13, 9688, 3419, 628, 197, 4514, 6407, 25, 198, 197, 197, 6603, 1303, 1249, 14390, 284, 2555, 355, 12379, 368, 684, 198 ]
2.668317
404
""" Contains the 'ClustarData' class, which is responsible for executing the entire project pipeline for detecting groups in a single FITS image; this class also collects and stores all relevant data, statistics, and variables in this pipeline. Visit <https://clustar.github.io/> for additional information. """ from clustar import denoise, group, graph, fit import astropy.io.fits import numpy as np class ClustarData(object): """ A class for executing the entire pipline for detecting groups in a FITS image and for storing all relevant data associated with each group. Attributes ---------- path : str Path to FITS file. image : Image Internal class for storing FITS image variables. params : Params Internal class for specifying the ClustarData parameters. groups : list List of 'Group' objects extracted from the given FITS image. flag : bool True if any detected group in the FITS image is flagged for manual review, otherwise false. Methods ------- update(**kwargs) Updates 'Params' object with the specified arguments and executes the entire pipeline. reset(**kwargs) Resets 'Params' object to the default values, then updates 'Params' object with the specified arguments and executes the entire pipeline. identify(vmin=None, vmax=None, show=True, dpi=180) Displays the FITS image and identifies the groups in green, orange, or red rectangles, which are defined as: 1. 'Green' denotes that the group is not flagged for manual review 2. 'Orange' denotes that the group is not flagged for manual review, but the group is smaller than the beam size. 3. 'Red' denotes that the group is flagged for manual review. Beam size is the white oval shown on the bottom right corner of the FITS image. Examples -------- Create the 'ClustarData' object by specifying the path to FITS file. >>> cd = ClustarData(path='~/data/example.fits', threshold=0.025) Visualize the detected groups. >>> cd.identify() Access individual 'Group' objects. >>> cd.groups Notes ----- Visit <https://clustar.github.io/> for additional information. """ class Image(object): """ An internal class for storing FITS image variables. Attributes ---------- clean : ndarray Data from the FITS image after denoising process. x : ndarray Index values of the 'x' position from the data. y : ndarray Index values of the 'y' position from the data. pos : ndarray Index values of the data, given as (x, y). nonzero : ndarray Index values of nonzero points in the data. std : ndarray Standard deviation values from each block in the grid composed in the denoise process; used to calculate the noise statistic. rms : ndarray Root mean squared values from each block in the grid composed in the denoise process; used to calculate the noise statistic. noise : float Noise statistic generated for the denoise process; values less than "noise" times "sigma" are set to zero. major : float Length of the major axis for the beam. minor : float Length of the minor axis for the beam. degrees : float Degrees of rotation for the beam. area : float Number of points inside the beam; used to identify groups smaller than the beam size. """ def __init__(self, data, header): """ Parameters ---------- data : ndarray Raw data from the FITS image; must be 2-D. header : dict Header dictionary stored in FITS file. Raises ------ KeyError If the following keys are missing from the FITS header: 'BMAJ', 'BMIN', 'BPA', 'CDELT1', 'CDELT2', and 'OBJECT'. """ self.data = data self.header = header self._setup() class Group(object): """ An internal class for storing variables associated to a detection. Attributes ---------- image : _Image Internal subclass for storing image variables. res : _Res Internal subclass for storing residual variables. fit : _Fit Internal subclass for storing fit variables. stats : _Stats Internal subclass for storing statistics. metrics : _Metrics Internal subclass for storing the evaluated metrics. flag : bool Determines whether this group is marked for manual review. """ class _Image(object): """ An internal subclass for storing image variables associated to a detection. Attributes ---------- data : ndarray Subset of raw data from the FITS image identifying the group. clean : ndarray Data of the group after the denoising process. x : ndarray Index values of the 'x' position from the group data. y : ndarray Index values of the 'y' position from the group data. pos : ndarray Index values of the group data, given as (x, y). nonzero : ndarray Index values of nonzero points in the group data. ref : list List containing the minimum row value and minimum column value of the group data. limit : list List containing the maximum row value and maximum column value of the overall FITS image. """ def __init__(self, bounds): """ Parameters ---------- bounds : list List of four integers corresponding to minimum row value, maximum row value, minimum column value, and maximum column value in this order. """ self.bounds = bounds self.data = None self.clean = None self.x = None self.y = None self.ref = None self.limit = None self.pos = None self.nonzero = None class _Residuals(object): """ An internal subclass for storing residual variables associated to a detection. Attributes ---------- data : ndarray Residuals computed in the fitting process. Precisely, they are [1 - ("bivariate Gaussian model" / "group data")]. clean : ndarray Residuals computed in the fitting process, where points outside of the ellipse are set to zero. pos : ndarray Index values of the residual data, given as (x, y). inside : ndarray Subset of index values that lie inside of the ellipse. outside : ndarray Subset of index values that lie outside of the ellipse. output : array_like List of residuals that lie inside of the ellipse; the result of the evaluation metric that is computed on this list is compared to the specified threshold; this determines which groups are flagged for manual review. """ class _Fit(object): """ An internal subclass for storing fit variables associated to a detection. Attributes ---------- rv : multivariate_normal_frozen Frozen multivariable normal distribution generated from the group statistics. bvg : ndarray Results of the multivariate normal probability density function evaluated at the points specified by the group data. ellipse : Polygon Polygon object containing the points that generate an ellipse corresponding to the multivariate normal distribution. major_peaks : int Number of local maximas along the major axis of the ellipse. minor_peaks : int Number of local maximas along the minor axis of the ellipse. """ class _Stats(object): """ An internal subclass for storing statistics associated to a detection. Attributes ---------- x_bar : float Average of index values in the 'x' position weighted by the corresponding group data. y_bar : float Average of index values in the 'y' position weighted by the corresponding group data. x_var : float Variance of index values in the 'x' position weighted by the corresponding group data. y_var : float Variance of index values in the 'y' position weighted by the corresponding group data. covariance : float Covariance of the index values weighted by the corresponding group data. covariance_matrix : array_like Covariance matrix for the multivariate normal that is used in the fitting process. rho : float Correlation coefficient computed from the covariance matrix. eigen_values : array_like Eigenvalues obtained from the eigendecomposition of the covariance matrix. eigen_vectors : array_like Eigenvectors obtained from the eigendecomposition of the covariance matrix. x_len : float Length of the major axis of the ellipse in pixels. y_len : float Length of the minor axis of the ellipse in pixels. radians : float Rotation of ellipse denoted in radians. degrees : float Rotation of ellipse denoted in degrees. """ class _Metrics(object): """ An internal subclass for storing the evaluated metrics associated to a detection. Attributes ---------- standard_deviation : float Standard deviation of the output residuals for the group. variance : float Variance of the output residuals for the group. average : float Mean of the output residuals for the group. weighted_average : float Mean of the output residuals weighted by the group data. """ def __init__(self, bounds): """ Parameters ---------- bounds : list List of four integers corresponding to minimum row value, maximum row value, minimum column value, and maximum column value in this order. """ self.image = self._Image(bounds) self.res = self._Residuals() self.fit = self._Fit() self.stats = self._Stats() self.metrics = self._Metrics() self.flag = False class Params(object): """ An internal class for specifying the ClustarData parameters. Attributes ---------- radius_factor : float Factor mulitplied to radius to determine cropping circle in the denoising process; must be within the range [0, 1]. chunks : int Number of chunks to use in a grid; must be an odd number. quantile : float Quantile of RMS to determine the noise level; must be within the range [0, 1]. apply_gradient : bool Determine if the FITS image should be multiplied by a gradient in order to elevate central points; similar to multiplying the FITS image by the associated 'pb' data. sigma : float Factor multiplied to noise level to determine the cutoff point, where values less than this threshold are set to zero. alpha : float Determines the size of the ellipse in relation to the chi-squared distribution; must be within the range (0, 1). buffer_size : int Number of points considered outside of the group range. For in- stance, given a 1-d group range of [10, 20], the algorithm checks for nonzero points within the range [5, 25] when the 'buffer_size' is 5. group_size : int Minimum number of nonzero points that determines a group. group_factor : float Ratio between [0, 1] that specifies the minimum number of nonzero points that determines a group in relation to the number of nonzero points in the largest group. metric : str Method used for evaluating the groups; must be one of the following: "standard_deviation", "variance", "average", or "weighted_average". threshold : float Cutoff point that determines which groups are flagged for manual review, given the specified metric. split_binary : bool Experimental; determine whether binary subgroups identified within a group should be split into individual groups. subgroup_factor : float Experimental; ratio between [0, 1] that specifies the subgroup range in terms of the absolute maximum intensity. evaluate_peaks : bool Experimental; determine whether the peaks of the output residuals should be taken into consideration in the flagging process. smoothing : int Experimental; size of window used in the moving average smoothing process for peak evaluation. clip : float Experimental; determines the percentage of tail values that are trimmed for peak evaluation. """ def __init__(self, args): """ Parameters ---------- args : dict Dictionary of keyword arguments; see 'Attributes' for keys. Raises ------ KeyError If specified key in 'args' does not match the label of the specified attributes. """ self.radius_factor = 1 self.chunks = 3 self.quantile = 0.5 self.apply_gradient = True self.sigma = 5 self.alpha = 0.2 self.buffer_size = 10 self.group_size = 50 self.group_factor = 0 self.split_binary = False self.subgroup_factor = 0.5 self.metric = "variance" self.threshold = 0.01 self.evaluate_peaks = False self.smoothing = 5 self.clip = 0.75 self._extract(args) def __init__(self, path, **kwargs): """ Parameters ---------- path : str Path to FITS file. **kwargs : optional See '~clustar.core.ClustarData.params' for other possible arguments. """ self.path = path self.params = self.Params(kwargs) self.groups = [] self.flag = False self._load_file() self._setup() def update(self, **kwargs): """ Updates 'Params' object with the specified arguments and executes the entire pipeline. Parameters ---------- **kwargs : optional See '~clustar.core.ClustarData.params' for other possible arguments. """ self.params.extract(kwargs) self._setup() def reset(self, **kwargs): """ Resets 'Params' object to the default values, then updates 'Params' object with the specified arguments and executes the entire pipeline. Parameters ---------- **kwargs : optional See '~clustar.core.ClustarData.params' for other possible arguments. """ self.params = self.Params(kwargs) self._setup() def identify(self, vmin=None, vmax=None, show=True, dpi=180): """ Displays the FITS image and identifies the groups in green, orange, or red rectangles, which are defined as: 1. Green denotes that the group is not flagged for manual review 2. Orange denotes that the group is not flagged for manual review, but the group is smaller than the beam size. 3. Red denotes that the group is flagged for manual review. Beam size is the white oval shown on the bottom right corner of the FITS image. Parameters ---------- vmin : float, optional Lower bound for the shown intensities. vmax : float, optional Upper bound for the shown intensities. show : bool, optional Determines whether the groups should be identified. If false, the rectangles identifying the groups are not drawn. dpi : int, optional Dots per inch. """ graph.identify_groups(self, vmin, vmax, show, dpi)
[ 37811, 198, 4264, 1299, 262, 705, 2601, 436, 283, 6601, 6, 1398, 11, 543, 318, 4497, 329, 23710, 262, 198, 298, 557, 1628, 11523, 329, 31521, 2628, 287, 257, 2060, 376, 29722, 2939, 26, 428, 220, 198, 4871, 635, 26609, 290, 7000, 477, 5981, 1366, 11, 7869, 11, 290, 9633, 287, 198, 5661, 11523, 13, 198, 198, 31141, 1279, 5450, 1378, 565, 436, 283, 13, 12567, 13, 952, 15913, 329, 3224, 1321, 13, 198, 37811, 628, 198, 6738, 32966, 283, 1330, 2853, 25678, 11, 1448, 11, 4823, 11, 4197, 198, 11748, 6468, 28338, 13, 952, 13, 21013, 198, 11748, 299, 32152, 355, 45941, 628, 198, 4871, 1012, 436, 283, 6601, 7, 15252, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 1398, 329, 23710, 262, 2104, 279, 24705, 500, 329, 31521, 2628, 287, 257, 376, 29722, 220, 198, 220, 220, 220, 2939, 290, 329, 23069, 477, 5981, 1366, 3917, 351, 1123, 1448, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 49213, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 3108, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 10644, 284, 376, 29722, 2393, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2939, 1058, 7412, 198, 220, 220, 220, 220, 220, 220, 220, 18628, 1398, 329, 23069, 376, 29722, 2939, 9633, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 42287, 1058, 2547, 4105, 198, 220, 220, 220, 220, 220, 220, 220, 18628, 1398, 329, 31577, 262, 1012, 436, 283, 6601, 10007, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 2628, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 705, 13247, 6, 5563, 21242, 422, 262, 1813, 376, 29722, 2939, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 6056, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 611, 597, 12326, 1448, 287, 262, 376, 29722, 2939, 318, 34060, 329, 10107, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2423, 11, 4306, 3991, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 25458, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 4296, 7, 1174, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 28090, 705, 10044, 4105, 6, 2134, 351, 262, 7368, 7159, 290, 42985, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2104, 11523, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 13259, 7, 1174, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1874, 1039, 705, 10044, 4105, 6, 2134, 284, 262, 4277, 3815, 11, 788, 5992, 705, 10044, 4105, 6, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2134, 351, 262, 7368, 7159, 290, 42985, 262, 2104, 11523, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 5911, 7, 85, 1084, 28, 14202, 11, 410, 9806, 28, 14202, 11, 905, 28, 17821, 11, 288, 14415, 28, 15259, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3167, 26024, 262, 376, 29722, 2939, 290, 21079, 262, 2628, 287, 4077, 11, 10912, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 393, 2266, 13621, 27787, 11, 543, 389, 5447, 355, 25, 198, 220, 220, 220, 220, 220, 220, 220, 352, 13, 705, 13719, 6, 43397, 326, 262, 1448, 318, 407, 34060, 329, 10107, 2423, 198, 220, 220, 220, 220, 220, 220, 220, 362, 13, 705, 40141, 6, 43397, 326, 262, 1448, 318, 407, 34060, 329, 10107, 2423, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 475, 262, 1448, 318, 4833, 621, 262, 15584, 2546, 13, 198, 220, 220, 220, 220, 220, 220, 220, 513, 13, 705, 7738, 6, 43397, 326, 262, 1448, 318, 34060, 329, 10107, 2423, 13, 198, 220, 220, 220, 220, 220, 220, 220, 25855, 2546, 318, 262, 2330, 41186, 3402, 319, 262, 4220, 826, 5228, 286, 220, 198, 220, 220, 220, 220, 220, 220, 220, 262, 376, 29722, 2939, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 21066, 198, 220, 220, 220, 24200, 198, 220, 220, 220, 13610, 262, 705, 2601, 436, 283, 6601, 6, 2134, 416, 31577, 262, 3108, 284, 376, 29722, 2393, 13, 220, 198, 220, 220, 220, 13163, 22927, 796, 1012, 436, 283, 6601, 7, 6978, 11639, 93, 14, 7890, 14, 20688, 13, 21013, 3256, 11387, 28, 15, 13, 36629, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 15612, 1096, 262, 12326, 2628, 13, 198, 220, 220, 220, 13163, 22927, 13, 738, 1958, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 8798, 1981, 705, 13247, 6, 5563, 13, 198, 220, 220, 220, 13163, 22927, 13, 24432, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11822, 198, 220, 220, 220, 37404, 198, 220, 220, 220, 16440, 1279, 5450, 1378, 565, 436, 283, 13, 12567, 13, 952, 15913, 329, 3224, 1321, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1398, 7412, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1052, 5387, 1398, 329, 23069, 376, 29722, 2939, 9633, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 49213, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 3424, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6060, 422, 262, 376, 29722, 2939, 706, 2853, 78, 1710, 1429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 262, 705, 87, 6, 2292, 422, 262, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 331, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 262, 705, 88, 6, 2292, 422, 262, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1426, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 262, 1366, 11, 1813, 355, 357, 87, 11, 331, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1729, 22570, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 1729, 22570, 2173, 287, 262, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 14367, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8997, 28833, 3815, 422, 1123, 2512, 287, 262, 10706, 13160, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 2853, 25678, 1429, 26, 973, 284, 15284, 262, 7838, 24696, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 374, 907, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20410, 1612, 44345, 3815, 422, 1123, 2512, 287, 262, 10706, 13160, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 2853, 25678, 1429, 26, 973, 284, 15284, 262, 7838, 24696, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 7838, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30964, 24696, 7560, 329, 262, 2853, 25678, 1429, 26, 3815, 1342, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 621, 366, 3919, 786, 1, 1661, 366, 82, 13495, 1, 389, 900, 284, 6632, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1688, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22313, 286, 262, 1688, 16488, 329, 262, 15584, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 4159, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22313, 286, 262, 4159, 16488, 329, 262, 15584, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 7370, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25905, 6037, 286, 13179, 329, 262, 15584, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1989, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 2173, 2641, 262, 15584, 26, 973, 284, 5911, 2628, 4833, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 621, 262, 15584, 2546, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 1366, 11, 13639, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16089, 1366, 422, 262, 376, 29722, 2939, 26, 1276, 307, 362, 12, 35, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13639, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48900, 22155, 8574, 287, 376, 29722, 2393, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7567, 2696, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40103, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7383, 12331, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 262, 1708, 8251, 389, 4814, 422, 262, 376, 29722, 13639, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33, 5673, 41, 3256, 705, 12261, 1268, 3256, 705, 33, 4537, 3256, 705, 8610, 3698, 51, 16, 3256, 705, 8610, 3698, 51, 17, 3256, 290, 705, 9864, 23680, 4458, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25677, 796, 13639, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 40406, 3419, 628, 220, 220, 220, 1398, 4912, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1052, 5387, 1398, 329, 23069, 9633, 3917, 284, 257, 13326, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 49213, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 2939, 1058, 4808, 5159, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18628, 47611, 329, 23069, 2939, 9633, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 581, 1058, 4808, 4965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18628, 47611, 329, 23069, 29598, 9633, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 4197, 1058, 4808, 31805, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18628, 47611, 329, 23069, 4197, 9633, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 9756, 1058, 4808, 29668, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18628, 47611, 329, 23069, 7869, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 20731, 1058, 4808, 9171, 10466, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18628, 47611, 329, 23069, 262, 16726, 20731, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 6056, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 360, 13221, 274, 1771, 428, 1448, 318, 7498, 329, 10107, 2423, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1398, 4808, 5159, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 5387, 47611, 329, 23069, 2939, 9633, 3917, 284, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13326, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49213, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3834, 2617, 286, 8246, 1366, 422, 262, 376, 29722, 2939, 13720, 262, 1448, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3424, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6060, 286, 262, 1448, 706, 262, 2853, 78, 1710, 1429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 262, 705, 87, 6, 2292, 422, 262, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 262, 705, 88, 6, 2292, 422, 262, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1426, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 262, 1448, 1366, 11, 1813, 355, 357, 87, 11, 331, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1729, 22570, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 1729, 22570, 2173, 287, 262, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 262, 5288, 5752, 1988, 290, 5288, 5721, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4179, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7343, 7268, 262, 5415, 5752, 1988, 290, 5415, 5721, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 4045, 376, 29722, 2939, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 22303, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22303, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 1440, 37014, 11188, 284, 5288, 5752, 1988, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5415, 5752, 1988, 11, 5288, 5721, 1988, 11, 290, 5415, 5721, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 287, 428, 1502, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 65, 3733, 796, 22303, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7890, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 27773, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 87, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 88, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5420, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32374, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1930, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 13159, 22570, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 1398, 4808, 4965, 312, 723, 82, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 5387, 47611, 329, 23069, 29598, 9633, 3917, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 13326, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49213, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1874, 312, 723, 82, 29231, 287, 262, 15830, 1429, 13, 28737, 786, 306, 11, 484, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 389, 685, 16, 532, 5855, 65, 42524, 12822, 31562, 2746, 1, 1220, 366, 8094, 1366, 4943, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3424, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1874, 312, 723, 82, 29231, 287, 262, 15830, 1429, 11, 810, 2173, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2354, 286, 262, 30004, 541, 325, 389, 900, 284, 6632, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1426, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12901, 3815, 286, 262, 29598, 1366, 11, 1813, 355, 357, 87, 11, 331, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2641, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3834, 2617, 286, 6376, 3815, 326, 6486, 2641, 286, 262, 30004, 541, 325, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2354, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3834, 2617, 286, 6376, 3815, 326, 6486, 2354, 286, 262, 30004, 541, 325, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 1058, 7177, 62, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 29598, 82, 326, 6486, 2641, 286, 262, 30004, 541, 325, 26, 262, 1255, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 12660, 18663, 326, 318, 29231, 319, 428, 1351, 318, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3688, 284, 262, 7368, 11387, 26, 428, 15947, 543, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2628, 389, 34060, 329, 10107, 2423, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1398, 4808, 31805, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 5387, 47611, 329, 23069, 4197, 9633, 3917, 284, 257, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13326, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49213, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 85, 1058, 1963, 42524, 62, 11265, 62, 69, 42005, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23673, 1963, 35460, 540, 3487, 6082, 7560, 422, 262, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 7869, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 45119, 1058, 299, 67, 18747, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15691, 286, 262, 1963, 42524, 3487, 12867, 12109, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2163, 16726, 379, 262, 2173, 7368, 416, 262, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30004, 541, 325, 1058, 12280, 14520, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12280, 14520, 2134, 7268, 262, 2173, 326, 7716, 281, 30004, 541, 325, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11188, 284, 262, 1963, 42524, 3487, 6082, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1688, 62, 431, 4730, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 1957, 12991, 292, 1863, 262, 1688, 16488, 286, 262, 30004, 541, 325, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4159, 62, 431, 4730, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 1957, 12991, 292, 1863, 262, 4159, 16488, 286, 262, 30004, 541, 325, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1398, 4808, 29668, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 5387, 47611, 329, 23069, 7869, 3917, 284, 257, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13326, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49213, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 5657, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13475, 286, 6376, 3815, 287, 262, 705, 87, 6, 2292, 26356, 416, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11188, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 5657, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13475, 286, 6376, 3815, 287, 262, 705, 88, 6, 2292, 26356, 416, 262, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11188, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 7785, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15965, 590, 286, 6376, 3815, 287, 262, 705, 87, 6, 2292, 26356, 416, 262, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11188, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 7785, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15965, 590, 286, 6376, 3815, 287, 262, 705, 88, 6, 2292, 26356, 416, 262, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11188, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44829, 590, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 39751, 2743, 590, 286, 262, 6376, 3815, 26356, 416, 262, 11188, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 1366, 13, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44829, 590, 62, 6759, 8609, 1058, 7177, 62, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 39751, 2743, 590, 17593, 329, 262, 1963, 42524, 3487, 326, 318, 973, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 15830, 1429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 8873, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2744, 49501, 35381, 29231, 422, 262, 44829, 590, 17593, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 9324, 62, 27160, 1058, 7177, 62, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 412, 9324, 27160, 6492, 422, 262, 304, 328, 437, 721, 296, 9150, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44829, 590, 17593, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 9324, 62, 303, 5217, 1058, 7177, 62, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 412, 9324, 303, 5217, 6492, 422, 262, 304, 328, 437, 721, 296, 9150, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44829, 590, 17593, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 62, 11925, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22313, 286, 262, 1688, 16488, 286, 262, 30004, 541, 325, 287, 17848, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 62, 11925, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22313, 286, 262, 4159, 16488, 286, 262, 30004, 541, 325, 287, 17848, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2511, 1547, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 371, 14221, 286, 30004, 541, 325, 2853, 5191, 287, 2511, 1547, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7370, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 371, 14221, 286, 30004, 541, 325, 2853, 5191, 287, 7370, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 1398, 4808, 9171, 10466, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 5387, 47611, 329, 23069, 262, 16726, 20731, 3917, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 257, 13326, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49213, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3210, 62, 7959, 3920, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8997, 28833, 286, 262, 5072, 29598, 82, 329, 262, 1448, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24198, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15965, 590, 286, 262, 5072, 29598, 82, 329, 262, 1448, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2811, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22728, 286, 262, 5072, 29598, 82, 329, 262, 1448, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26356, 62, 23913, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22728, 286, 262, 5072, 29598, 82, 26356, 416, 262, 1448, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 22303, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22303, 1058, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7343, 286, 1440, 37014, 11188, 284, 5288, 5752, 1988, 11, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5415, 5752, 1988, 11, 5288, 5721, 1988, 11, 290, 5415, 5721, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 287, 428, 1502, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9060, 796, 2116, 13557, 5159, 7, 65, 3733, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 411, 796, 2116, 13557, 4965, 312, 723, 82, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 11147, 796, 2116, 13557, 31805, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 34242, 796, 2116, 13557, 29668, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 4164, 10466, 796, 2116, 13557, 9171, 10466, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32109, 796, 10352, 628, 220, 220, 220, 1398, 2547, 4105, 7, 15252, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1052, 5387, 1398, 329, 31577, 262, 1012, 436, 283, 6601, 10007, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 49213, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 16874, 62, 31412, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27929, 35971, 270, 489, 798, 284, 16874, 284, 5004, 6763, 2105, 9197, 287, 262, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2853, 78, 1710, 1429, 26, 1276, 307, 1626, 262, 2837, 685, 15, 11, 352, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 22716, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 22716, 284, 779, 287, 257, 10706, 26, 1276, 307, 281, 5629, 1271, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 5554, 576, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16972, 576, 286, 371, 5653, 284, 5004, 262, 7838, 1241, 26, 1276, 307, 1626, 262, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2837, 685, 15, 11, 352, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 4174, 62, 49607, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45559, 3810, 611, 262, 376, 29722, 2939, 815, 307, 33096, 416, 257, 31312, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 1502, 284, 36830, 4318, 2173, 26, 2092, 284, 48816, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 376, 29722, 2939, 416, 262, 3917, 705, 40842, 6, 1366, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 264, 13495, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27929, 33096, 284, 7838, 1241, 284, 5004, 262, 45616, 966, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 810, 3815, 1342, 621, 428, 11387, 389, 900, 284, 6632, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 17130, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 360, 13221, 274, 262, 2546, 286, 262, 30004, 541, 325, 287, 8695, 284, 262, 33166, 12, 16485, 1144, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6082, 26, 1276, 307, 1626, 262, 2837, 357, 15, 11, 352, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 11876, 62, 7857, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7913, 286, 2173, 3177, 2354, 286, 262, 1448, 2837, 13, 1114, 287, 12, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12046, 11, 1813, 257, 352, 12, 67, 1448, 2837, 286, 685, 940, 11, 1160, 4357, 262, 11862, 8794, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1729, 22570, 2173, 1626, 262, 2837, 685, 20, 11, 1679, 60, 618, 262, 705, 22252, 62, 7857, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 642, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1448, 62, 7857, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26265, 1271, 286, 1729, 22570, 2173, 326, 15947, 257, 1448, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1448, 62, 31412, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33956, 1022, 685, 15, 11, 352, 60, 326, 26052, 262, 5288, 1271, 286, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1729, 22570, 2173, 326, 15947, 257, 1448, 287, 8695, 284, 262, 1271, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 1729, 22570, 2173, 287, 262, 4387, 1448, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 18663, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11789, 973, 329, 22232, 262, 2628, 26, 1276, 307, 530, 286, 262, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1708, 25, 366, 20307, 62, 7959, 3920, 1600, 366, 25641, 590, 1600, 366, 23913, 1600, 393, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6551, 276, 62, 23913, 1911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 11387, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9712, 2364, 966, 326, 15947, 543, 2628, 389, 34060, 329, 10107, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2423, 11, 1813, 262, 7368, 18663, 13, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 6626, 62, 39491, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32286, 26, 5004, 1771, 13934, 850, 24432, 5174, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1626, 257, 1448, 815, 307, 6626, 656, 1981, 2628, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 850, 8094, 62, 31412, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32286, 26, 8064, 1022, 685, 15, 11, 352, 60, 326, 26052, 262, 850, 8094, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2837, 287, 2846, 286, 262, 4112, 5415, 12245, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 13446, 62, 431, 4730, 1058, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32286, 26, 5004, 1771, 262, 25740, 286, 262, 5072, 29598, 82, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 815, 307, 2077, 656, 9110, 287, 262, 6056, 2667, 1429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 32746, 722, 1058, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32286, 26, 2546, 286, 4324, 973, 287, 262, 3867, 2811, 32746, 722, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1429, 329, 9103, 12660, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 10651, 1058, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32286, 26, 15947, 262, 5873, 286, 7894, 3815, 326, 389, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40325, 329, 9103, 12660, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 26498, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 1058, 8633, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28261, 286, 21179, 7159, 26, 766, 705, 29021, 6, 329, 8251, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7567, 2696, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40103, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7383, 12331, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 7368, 1994, 287, 705, 22046, 6, 857, 407, 2872, 262, 6167, 286, 262, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7368, 12608, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 42172, 62, 31412, 796, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 354, 14125, 796, 513, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40972, 576, 796, 657, 13, 20, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 39014, 62, 49607, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 82, 13495, 796, 642, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 26591, 796, 657, 13, 17, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 22252, 62, 7857, 796, 838, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8094, 62, 7857, 796, 2026, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8094, 62, 31412, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 35312, 62, 39491, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 7266, 8094, 62, 31412, 796, 657, 13, 20, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 4164, 1173, 796, 366, 25641, 590, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 400, 10126, 796, 657, 13, 486, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 49786, 62, 431, 4730, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 5796, 1025, 722, 796, 642, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15036, 796, 657, 13, 2425, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2302, 974, 7, 22046, 8, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 3108, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 1058, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10644, 284, 376, 29722, 2393, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 1058, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4091, 705, 93, 565, 436, 283, 13, 7295, 13, 2601, 436, 283, 6601, 13, 37266, 6, 329, 584, 1744, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6978, 796, 3108, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37266, 796, 2116, 13, 10044, 4105, 7, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 24432, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 32109, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 2220, 62, 7753, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 40406, 3419, 628, 220, 220, 220, 825, 4296, 7, 944, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 28090, 705, 10044, 4105, 6, 2134, 351, 262, 7368, 7159, 290, 42985, 262, 198, 220, 220, 220, 220, 220, 220, 220, 2104, 11523, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 1058, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4091, 705, 93, 565, 436, 283, 13, 7295, 13, 2601, 436, 283, 6601, 13, 37266, 6, 329, 584, 1744, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37266, 13, 2302, 974, 7, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 40406, 3419, 628, 220, 220, 220, 825, 13259, 7, 944, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1874, 1039, 705, 10044, 4105, 6, 2134, 284, 262, 4277, 3815, 11, 788, 5992, 705, 10044, 4105, 6, 220, 198, 220, 220, 220, 220, 220, 220, 220, 2134, 351, 262, 7368, 7159, 290, 42985, 262, 2104, 11523, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 1058, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4091, 705, 93, 565, 436, 283, 13, 7295, 13, 2601, 436, 283, 6601, 13, 37266, 6, 329, 584, 1744, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7159, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 37266, 796, 2116, 13, 10044, 4105, 7, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 40406, 3419, 628, 220, 220, 220, 825, 5911, 7, 944, 11, 410, 1084, 28, 14202, 11, 410, 9806, 28, 14202, 11, 905, 28, 17821, 11, 288, 14415, 28, 15259, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3167, 26024, 262, 376, 29722, 2939, 290, 21079, 262, 2628, 287, 4077, 11, 10912, 11, 393, 198, 220, 220, 220, 220, 220, 220, 220, 2266, 13621, 27787, 11, 543, 389, 5447, 355, 25, 198, 220, 220, 220, 220, 220, 220, 220, 352, 13, 3469, 43397, 326, 262, 1448, 318, 407, 34060, 329, 10107, 2423, 198, 220, 220, 220, 220, 220, 220, 220, 362, 13, 11942, 43397, 326, 262, 1448, 318, 407, 34060, 329, 10107, 2423, 11, 475, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1448, 318, 4833, 621, 262, 15584, 2546, 13, 198, 220, 220, 220, 220, 220, 220, 220, 513, 13, 2297, 43397, 326, 262, 1448, 318, 34060, 329, 10107, 2423, 13, 198, 220, 220, 220, 220, 220, 220, 220, 25855, 2546, 318, 262, 2330, 41186, 3402, 319, 262, 4220, 826, 5228, 286, 220, 198, 220, 220, 220, 220, 220, 220, 220, 262, 376, 29722, 2939, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 410, 1084, 1058, 12178, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16048, 5421, 329, 262, 3402, 17509, 871, 13, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 410, 9806, 1058, 12178, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20390, 5421, 329, 262, 3402, 17509, 871, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 905, 1058, 20512, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 360, 13221, 274, 1771, 262, 2628, 815, 307, 5174, 13, 1002, 3991, 11, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13621, 27787, 13720, 262, 2628, 389, 407, 7428, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 288, 14415, 1058, 493, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 360, 1747, 583, 11111, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4823, 13, 738, 1958, 62, 24432, 7, 944, 11, 410, 1084, 11, 410, 9806, 11, 905, 11, 288, 14415, 8, 198 ]
2.152137
8,775
import tensorflow as tf import numpy as np from ..agent import Agent from abc import ABC, abstractmethod
[ 11748, 11192, 273, 11125, 355, 48700, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 11485, 25781, 1330, 15906, 198, 6738, 450, 66, 1330, 9738, 11, 12531, 24396 ]
3.851852
27
#!/usr/bin/env python __author__ = 'Sergei F. Kliver' import argparse from RouToolPa.Collections.General import IdList from RouToolPa.Tools.NCBIToolkit import FastqDump parser = argparse.ArgumentParser() parser.add_argument("-i", "--ids", action="store", dest="ids", type=lambda s: s.split(","), help="Comma-separated list of SRA ids to download") parser.add_argument("-f", "--id_file", action="store", dest="id_file", help="File with SRA ids(one per line) to download") parser.add_argument("-t", "--threads", action="store", dest="threads", type=int, default=1, help="Number of simultaneous downloads") parser.add_argument("-o", "--out_dir", action="store", dest="out_dir", default="./", help="Output directory. Default: current directory") args = parser.parse_args() if (not args.ids) and (not args.id_file): raise ValueError("Both ids and id file were not set") id_list = IdList(filename=args.id_file) if args.id_file else args.ids FastqDump.threads = args.threads FastqDump.parallel_download(id_list, args.out_dir, split_pe=True, retain_original_ids=True)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 834, 9800, 834, 796, 705, 7089, 469, 72, 376, 13, 14770, 1428, 6, 198, 11748, 1822, 29572, 198, 6738, 13876, 25391, 28875, 13, 5216, 26448, 13, 12218, 1330, 5121, 8053, 198, 6738, 13876, 25391, 28875, 13, 33637, 13, 7792, 26094, 970, 15813, 1330, 12549, 80, 35, 931, 628, 198, 48610, 796, 1822, 29572, 13, 28100, 1713, 46677, 3419, 198, 198, 48610, 13, 2860, 62, 49140, 7203, 12, 72, 1600, 366, 438, 2340, 1600, 2223, 2625, 8095, 1600, 2244, 2625, 2340, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 28, 50033, 264, 25, 264, 13, 35312, 7, 2430, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 6935, 64, 12, 25512, 515, 1351, 286, 311, 3861, 220, 2340, 284, 4321, 4943, 198, 48610, 13, 2860, 62, 49140, 7203, 12, 69, 1600, 366, 438, 312, 62, 7753, 1600, 2223, 2625, 8095, 1600, 2244, 2625, 312, 62, 7753, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 8979, 351, 311, 3861, 220, 2340, 7, 505, 583, 1627, 8, 284, 4321, 4943, 198, 48610, 13, 2860, 62, 49140, 7203, 12, 83, 1600, 366, 438, 16663, 82, 1600, 2223, 2625, 8095, 1600, 2244, 2625, 16663, 82, 1600, 2099, 28, 600, 11, 4277, 28, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 15057, 286, 29526, 21333, 4943, 198, 48610, 13, 2860, 62, 49140, 7203, 12, 78, 1600, 366, 438, 448, 62, 15908, 1600, 2223, 2625, 8095, 1600, 2244, 2625, 448, 62, 15908, 1600, 4277, 28, 1911, 14, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 26410, 8619, 13, 15161, 25, 1459, 8619, 4943, 198, 198, 22046, 796, 30751, 13, 29572, 62, 22046, 3419, 198, 198, 361, 357, 1662, 26498, 13, 2340, 8, 290, 357, 1662, 26498, 13, 312, 62, 7753, 2599, 198, 220, 220, 220, 5298, 11052, 12331, 7203, 10265, 220, 2340, 290, 4686, 2393, 547, 407, 900, 4943, 198, 198, 312, 62, 4868, 796, 5121, 8053, 7, 34345, 28, 22046, 13, 312, 62, 7753, 8, 611, 26498, 13, 312, 62, 7753, 2073, 26498, 13, 2340, 198, 198, 22968, 80, 35, 931, 13, 16663, 82, 796, 26498, 13, 16663, 82, 198, 22968, 80, 35, 931, 13, 1845, 29363, 62, 15002, 7, 312, 62, 4868, 11, 26498, 13, 448, 62, 15908, 11, 6626, 62, 431, 28, 17821, 11, 12377, 62, 14986, 62, 2340, 28, 17821, 8, 198 ]
2.534632
462
import dolfin as df import os from . import * from common.io import mpi_is_root from common.bcs import Fixed, Pressure # from ufl import max_value __author__ = "Asger Bolet; Gaute Linga" # Left boundary is target domain def initialize(Lx, Ly, rad_init, interface_thickness, solutes, restart_folder, field_to_subspace, inlet_velocity, front_position_init, concentration_left, enable_NS, enable_PF, enable_EC, initial_interface, **namespace): """ Create the initial state. The initial states are specified in a dict indexed by field. The format should be w_init_field[field] = 'df.Function(...)'. The work dicts w_ and w_1 are automatically initialized from these functions elsewhere in the code. Note: You only need to specify the initial states that are nonzero. """ w_init_field = dict() if not restart_folder: if enable_NS: try: subspace = field_to_subspace["u"].collapse() except: subspace = field_to_subspace["u"] w_init_field["u"] = initial_velocity(inlet_velocity, subspace) # Phase field if enable_PF: w_init_field["phi"] = initial_phasefield( front_position_init, Lx/2, rad_init, interface_thickness, field_to_subspace["phi"].collapse(), shape=initial_interface) if enable_EC: for solute in solutes: w_init_field[solute[0]] = initial_phasefield( front_position_init, Lx/2, rad_init, interface_thickness, field_to_subspace[solute[0]].collapse(), shape=initial_interface) w_init_field[solute[0]].vector()[:] = \ concentration_left*( - w_init_field[solute[0]].vector()[:] + 1.0)/2.0 return w_init_field def create_bcs(Lx, Ly, inlet_velocity, V_0, solutes, concentration_left, enable_NS, enable_PF, enable_EC, **namespace): """ The boundaries and boundary conditions are defined here. """ boundaries = dict( right=[Right(Lx)], left=[Left(0)] ) # Alocating the boundary dicts bcs = dict() bcs_pointwise = dict() bcs["left"] = dict() bcs["right"] = dict() inlet_velocity = Fixed((inlet_velocity, 0.)) #pressurein_out = Pressure(0.0) phi_inlet = Fixed(-1.0) phi_outlet = Fixed(1.0) V_left = Fixed(V_0) V_right = Fixed(0.) if enable_NS: bcs["left"]["u"] = inlet_velocity bcs["right"]["u"] = inlet_velocity # bcs["left"]["p"] = pressurein_out bcs_pointwise["p"] = (0., "x[0] < DOLFIN_EPS && x[1] < DOLFIN_EPS") if enable_PF: bcs["left"]["phi"] = phi_inlet bcs["right"]["phi"] = phi_outlet if enable_EC: bcs["left"]["V"] = V_left bcs["right"]["V"] = V_right for solute in solutes: bcs["left"][solute[0]] = Fixed(concentration_left) return boundaries, bcs, bcs_pointwise def pf_mobility(phi, gamma): """ Phase field mobility function. """ # return gamma * (phi**2-1.)**2 # func = 1.-phi**2 # return 0.75 * gamma * max_value(func, 0.) return gamma def reference(t_0, front_position_init, inlet_velocity, interface_thickness, **namespace): """ This contains the analytical reference for convergence analysis. """ expr_str_phi = "tanh((x[0]-x0-u0x*t)/(sqrt(2)*eps))" expr = dict() expr["phi"] = df.Expression(expr_str_phi, t=t_0, x0=front_position_init, u0x=inlet_velocity, eps=interface_thickness, degree=2) expr["u"] = df.Expression(("u0x", "0."), u0x=inlet_velocity, degree=2) expr["p"] = df.Expression("0.", degree=2) expr["g"] = df.Expression("0.", degree=2) # ? return expr
[ 11748, 288, 4024, 259, 355, 47764, 198, 11748, 28686, 198, 6738, 764, 1330, 1635, 198, 6738, 2219, 13, 952, 1330, 285, 14415, 62, 271, 62, 15763, 198, 6738, 2219, 13, 65, 6359, 1330, 10832, 11, 30980, 198, 2, 422, 334, 2704, 1330, 3509, 62, 8367, 198, 834, 9800, 834, 796, 366, 1722, 1362, 3248, 1616, 26, 12822, 1133, 25116, 64, 1, 628, 220, 220, 220, 1303, 9578, 18645, 318, 2496, 7386, 628, 628, 198, 4299, 41216, 7, 43, 87, 11, 9334, 11, 2511, 62, 15003, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7071, 62, 400, 624, 1108, 11, 1540, 1769, 11, 15765, 62, 43551, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 1462, 62, 7266, 13200, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 1616, 62, 626, 11683, 11, 2166, 62, 9150, 62, 15003, 11, 10368, 62, 9464, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7139, 62, 8035, 11, 7139, 62, 42668, 11, 7139, 62, 2943, 11, 4238, 62, 39994, 11, 12429, 14933, 10223, 2599, 198, 220, 220, 220, 37227, 13610, 262, 4238, 1181, 13, 198, 220, 220, 220, 383, 4238, 2585, 389, 7368, 287, 257, 8633, 41497, 416, 2214, 13, 383, 5794, 198, 220, 220, 220, 815, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 62, 15003, 62, 3245, 58, 3245, 60, 796, 705, 7568, 13, 22203, 7, 23029, 4458, 198, 220, 220, 220, 383, 670, 8633, 82, 266, 62, 290, 266, 62, 16, 389, 6338, 23224, 422, 777, 198, 220, 220, 220, 5499, 8057, 287, 262, 2438, 13, 628, 220, 220, 220, 5740, 25, 921, 691, 761, 284, 11986, 262, 4238, 2585, 326, 389, 1729, 22570, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 266, 62, 15003, 62, 3245, 796, 8633, 3419, 198, 220, 220, 220, 611, 407, 15765, 62, 43551, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7139, 62, 8035, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 13200, 796, 2214, 62, 1462, 62, 7266, 13200, 14692, 84, 1, 4083, 26000, 7512, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 13200, 796, 2214, 62, 1462, 62, 7266, 13200, 14692, 84, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 62, 15003, 62, 3245, 14692, 84, 8973, 796, 4238, 62, 626, 11683, 7, 259, 1616, 62, 626, 11683, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 850, 13200, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 18983, 2214, 198, 220, 220, 220, 220, 220, 220, 220, 611, 7139, 62, 42668, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 62, 15003, 62, 3245, 14692, 34846, 8973, 796, 4238, 62, 40715, 3245, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2166, 62, 9150, 62, 15003, 11, 406, 87, 14, 17, 11, 2511, 62, 15003, 11, 7071, 62, 400, 624, 1108, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 1462, 62, 7266, 13200, 14692, 34846, 1, 4083, 26000, 7512, 22784, 5485, 28, 36733, 62, 39994, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 7139, 62, 2943, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1540, 1133, 287, 1540, 1769, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 62, 15003, 62, 3245, 58, 82, 3552, 58, 15, 11907, 796, 4238, 62, 40715, 3245, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2166, 62, 9150, 62, 15003, 11, 406, 87, 14, 17, 11, 2511, 62, 15003, 11, 7071, 62, 400, 624, 1108, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 1462, 62, 7266, 13200, 58, 82, 3552, 58, 15, 60, 4083, 26000, 7512, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5485, 28, 36733, 62, 39994, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 62, 15003, 62, 3245, 58, 82, 3552, 58, 15, 60, 4083, 31364, 3419, 58, 47715, 796, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10368, 62, 9464, 9, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 266, 62, 15003, 62, 3245, 58, 82, 3552, 58, 15, 60, 4083, 31364, 3419, 58, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 352, 13, 15, 20679, 17, 13, 15, 628, 220, 220, 220, 1441, 266, 62, 15003, 62, 3245, 628, 198, 4299, 2251, 62, 65, 6359, 7, 43, 87, 11, 9334, 11, 287, 1616, 62, 626, 11683, 11, 569, 62, 15, 11, 1540, 1769, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10368, 62, 9464, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7139, 62, 8035, 11, 7139, 62, 42668, 11, 7139, 62, 2943, 11, 12429, 14933, 10223, 2599, 198, 220, 220, 220, 37227, 383, 13215, 290, 18645, 3403, 389, 5447, 994, 13, 37227, 198, 220, 220, 220, 13215, 796, 8633, 7, 198, 220, 220, 220, 220, 220, 220, 220, 826, 41888, 11028, 7, 43, 87, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 1364, 41888, 18819, 7, 15, 15437, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 1303, 978, 27123, 262, 18645, 8633, 82, 198, 220, 220, 220, 275, 6359, 796, 8633, 3419, 198, 220, 220, 220, 275, 6359, 62, 4122, 3083, 796, 8633, 3419, 198, 220, 220, 220, 275, 6359, 14692, 9464, 8973, 796, 8633, 3419, 198, 220, 220, 220, 275, 6359, 14692, 3506, 8973, 796, 8633, 3419, 628, 220, 220, 220, 287, 1616, 62, 626, 11683, 796, 10832, 19510, 259, 1616, 62, 626, 11683, 11, 657, 2014, 8, 198, 220, 220, 220, 1303, 36151, 259, 62, 448, 796, 30980, 7, 15, 13, 15, 8, 198, 220, 220, 220, 872, 72, 62, 259, 1616, 796, 10832, 32590, 16, 13, 15, 8, 198, 220, 220, 220, 872, 72, 62, 448, 1616, 796, 10832, 7, 16, 13, 15, 8, 198, 220, 220, 220, 569, 62, 9464, 796, 10832, 7, 53, 62, 15, 8, 198, 220, 220, 220, 569, 62, 3506, 796, 10832, 7, 15, 2014, 628, 220, 220, 220, 611, 7139, 62, 8035, 25, 198, 220, 220, 220, 220, 220, 220, 220, 275, 6359, 14692, 9464, 1, 7131, 1, 84, 8973, 796, 287, 1616, 62, 626, 11683, 198, 220, 220, 220, 220, 220, 220, 220, 275, 6359, 14692, 3506, 1, 7131, 1, 84, 8973, 796, 287, 1616, 62, 626, 11683, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 275, 6359, 14692, 9464, 1, 7131, 1, 79, 8973, 796, 3833, 259, 62, 448, 198, 220, 220, 220, 220, 220, 220, 220, 275, 6359, 62, 4122, 3083, 14692, 79, 8973, 796, 357, 15, 1539, 366, 87, 58, 15, 60, 1279, 360, 3535, 20032, 62, 36, 3705, 11405, 2124, 58, 16, 60, 1279, 360, 3535, 20032, 62, 36, 3705, 4943, 628, 220, 220, 220, 611, 7139, 62, 42668, 25, 198, 220, 220, 220, 220, 220, 220, 220, 275, 6359, 14692, 9464, 1, 7131, 1, 34846, 8973, 796, 872, 72, 62, 259, 1616, 198, 220, 220, 220, 220, 220, 220, 220, 275, 6359, 14692, 3506, 1, 7131, 1, 34846, 8973, 796, 872, 72, 62, 448, 1616, 628, 220, 220, 220, 611, 7139, 62, 2943, 25, 198, 220, 220, 220, 220, 220, 220, 220, 275, 6359, 14692, 9464, 1, 7131, 1, 53, 8973, 796, 569, 62, 9464, 198, 220, 220, 220, 220, 220, 220, 220, 275, 6359, 14692, 3506, 1, 7131, 1, 53, 8973, 796, 569, 62, 3506, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1540, 1133, 287, 1540, 1769, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 6359, 14692, 9464, 1, 7131, 82, 3552, 58, 15, 11907, 796, 10832, 7, 1102, 1087, 1358, 62, 9464, 8, 628, 220, 220, 220, 1441, 13215, 11, 275, 6359, 11, 275, 6359, 62, 4122, 3083, 628, 628, 198, 4299, 279, 69, 62, 39949, 879, 7, 34846, 11, 34236, 2599, 198, 220, 220, 220, 37227, 18983, 2214, 15873, 2163, 13, 37227, 198, 220, 220, 220, 1303, 1441, 34236, 1635, 357, 34846, 1174, 17, 12, 16, 2014, 1174, 17, 198, 220, 220, 220, 1303, 25439, 796, 352, 7874, 34846, 1174, 17, 198, 220, 220, 220, 1303, 1441, 657, 13, 2425, 1635, 34236, 1635, 3509, 62, 8367, 7, 20786, 11, 657, 2014, 198, 220, 220, 220, 1441, 34236, 628, 198, 198, 4299, 4941, 7, 83, 62, 15, 11, 2166, 62, 9150, 62, 15003, 11, 287, 1616, 62, 626, 11683, 11, 7071, 62, 400, 624, 1108, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 14933, 10223, 2599, 198, 220, 220, 220, 37227, 770, 4909, 262, 30063, 4941, 329, 40826, 3781, 13, 37227, 198, 220, 220, 220, 44052, 62, 2536, 62, 34846, 796, 366, 38006, 71, 19510, 87, 58, 15, 45297, 87, 15, 12, 84, 15, 87, 9, 83, 20679, 7, 31166, 17034, 7, 17, 27493, 25386, 4008, 1, 198, 220, 220, 220, 44052, 796, 8633, 3419, 198, 220, 220, 220, 44052, 14692, 34846, 8973, 796, 47764, 13, 16870, 2234, 7, 31937, 62, 2536, 62, 34846, 11, 256, 28, 83, 62, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 15, 28, 8534, 62, 9150, 62, 15003, 11, 334, 15, 87, 28, 259, 1616, 62, 626, 11683, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 862, 28, 39994, 62, 400, 624, 1108, 11, 4922, 28, 17, 8, 198, 220, 220, 220, 44052, 14692, 84, 8973, 796, 47764, 13, 16870, 2234, 7, 7203, 84, 15, 87, 1600, 366, 15, 526, 828, 334, 15, 87, 28, 259, 1616, 62, 626, 11683, 11, 4922, 28, 17, 8, 198, 220, 220, 220, 44052, 14692, 79, 8973, 796, 47764, 13, 16870, 2234, 7203, 15, 33283, 4922, 28, 17, 8, 198, 220, 220, 220, 44052, 14692, 70, 8973, 796, 47764, 13, 16870, 2234, 7203, 15, 33283, 4922, 28, 17, 8, 220, 1303, 5633, 198, 220, 220, 220, 1441, 44052, 198 ]
2.080311
1,930
""" Python unit tests for the aeon3odt project. Test suite for aeon3yw.pyw. For further information see https://github.com/peter88213/aeon3yw Published under the MIT License (https://opensource.org/licenses/mit-license.php) """ from shutil import copyfile import zipfile import os import unittest import cnvaeon_stub_ # Test environment # The paths are relative to the "test" directory, # where this script is placed and executed TEST_PATH = os.getcwd() + '/../test' TEST_DATA_PATH = TEST_PATH + '/data/' TEST_EXEC_PATH = TEST_PATH + '/yw7/' # To be placed in TEST_DATA_PATH: NORMAL_CSV = TEST_DATA_PATH + 'normal.csv' PARTS_CONTENT = TEST_DATA_PATH + 'parts.xml' CHAPTERS_CONTENT = TEST_DATA_PATH + 'chapters.xml' SCENES_CONTENT = TEST_DATA_PATH + 'scenes.xml' CHARACTERS_CONTENT = TEST_DATA_PATH + 'characters.xml' LOCATIONS_CONTENT = TEST_DATA_PATH + 'locations.xml' REPORT_CONTENT = TEST_DATA_PATH + 'report.xml' # Test data TEST_CSV = TEST_EXEC_PATH + 'yw7 Sample Project.csv' TEST_PARTS = TEST_EXEC_PATH + 'yw7 Sample Project_chapter_overview.odt' TEST_CHAPTERS = TEST_EXEC_PATH + 'yw7 Sample Project_brief_synopsis.odt' TEST_SCENES = TEST_EXEC_PATH + 'yw7 Sample Project_full_synopsis.odt' TEST_CHARACTERS = TEST_EXEC_PATH + 'yw7 Sample Project_character_sheets.odt' TEST_LOCATIONS = TEST_EXEC_PATH + 'yw7 Sample Project_location_sheets.odt' TEST_REPORT = TEST_EXEC_PATH + 'yw7 Sample Project_report.odt' ODF_CONTENT = 'content.xml' class NormalOperation(unittest.TestCase): """Test case: Normal operation.""" @unittest.skip('No example available') if __name__ == '__main__': main()
[ 37811, 11361, 4326, 5254, 329, 262, 257, 23277, 18, 375, 83, 1628, 13, 198, 198, 14402, 18389, 329, 257, 23277, 18, 88, 86, 13, 9078, 86, 13, 198, 198, 1890, 2252, 1321, 766, 3740, 1378, 12567, 13, 785, 14, 79, 2357, 3459, 26427, 14, 3609, 261, 18, 88, 86, 198, 24492, 739, 262, 17168, 13789, 357, 5450, 1378, 44813, 1668, 13, 2398, 14, 677, 4541, 14, 2781, 12, 43085, 13, 10121, 8, 198, 37811, 198, 6738, 4423, 346, 1330, 4866, 7753, 198, 11748, 19974, 7753, 198, 11748, 28686, 198, 11748, 555, 715, 395, 198, 198, 11748, 269, 77, 33353, 261, 62, 301, 549, 62, 198, 198, 2, 6208, 2858, 198, 198, 2, 383, 13532, 389, 3585, 284, 262, 366, 9288, 1, 8619, 11, 198, 2, 810, 428, 4226, 318, 4624, 290, 10945, 198, 198, 51, 6465, 62, 34219, 796, 28686, 13, 1136, 66, 16993, 3419, 1343, 31051, 40720, 9288, 6, 198, 51, 6465, 62, 26947, 62, 34219, 796, 43001, 62, 34219, 1343, 31051, 7890, 14, 6, 198, 51, 6465, 62, 6369, 2943, 62, 34219, 796, 43001, 62, 34219, 1343, 31051, 88, 86, 22, 14, 6, 198, 198, 2, 1675, 307, 4624, 287, 43001, 62, 26947, 62, 34219, 25, 198, 35510, 42126, 62, 7902, 53, 796, 43001, 62, 26947, 62, 34219, 1343, 705, 11265, 13, 40664, 6, 198, 27082, 4694, 62, 37815, 3525, 796, 43001, 62, 26947, 62, 34219, 1343, 705, 42632, 13, 19875, 6, 198, 3398, 2969, 51, 4877, 62, 37815, 3525, 796, 43001, 62, 26947, 62, 34219, 1343, 705, 354, 12126, 13, 19875, 6, 198, 6173, 1677, 1546, 62, 37815, 3525, 796, 43001, 62, 26947, 62, 34219, 1343, 705, 28123, 13, 19875, 6, 198, 38019, 10659, 4877, 62, 37815, 3525, 796, 43001, 62, 26947, 62, 34219, 1343, 705, 10641, 19858, 13, 19875, 6, 198, 29701, 18421, 62, 37815, 3525, 796, 43001, 62, 26947, 62, 34219, 1343, 705, 17946, 602, 13, 19875, 6, 198, 2200, 15490, 62, 37815, 3525, 796, 43001, 62, 26947, 62, 34219, 1343, 705, 13116, 13, 19875, 6, 198, 198, 2, 6208, 1366, 198, 51, 6465, 62, 7902, 53, 796, 43001, 62, 6369, 2943, 62, 34219, 1343, 705, 88, 86, 22, 27565, 4935, 13, 40664, 6, 198, 51, 6465, 62, 27082, 4694, 796, 43001, 62, 6369, 2943, 62, 34219, 1343, 705, 88, 86, 22, 27565, 4935, 62, 43582, 62, 2502, 1177, 13, 375, 83, 6, 198, 51, 6465, 62, 3398, 2969, 51, 4877, 796, 43001, 62, 6369, 2943, 62, 34219, 1343, 705, 88, 86, 22, 27565, 4935, 62, 65, 3796, 62, 28869, 24608, 13, 375, 83, 6, 198, 51, 6465, 62, 6173, 1677, 1546, 796, 43001, 62, 6369, 2943, 62, 34219, 1343, 705, 88, 86, 22, 27565, 4935, 62, 12853, 62, 28869, 24608, 13, 375, 83, 6, 198, 51, 6465, 62, 38019, 10659, 4877, 796, 43001, 62, 6369, 2943, 62, 34219, 1343, 705, 88, 86, 22, 27565, 4935, 62, 22769, 62, 42011, 13, 375, 83, 6, 198, 51, 6465, 62, 29701, 18421, 796, 43001, 62, 6369, 2943, 62, 34219, 1343, 705, 88, 86, 22, 27565, 4935, 62, 24886, 62, 42011, 13, 375, 83, 6, 198, 51, 6465, 62, 2200, 15490, 796, 43001, 62, 6369, 2943, 62, 34219, 1343, 705, 88, 86, 22, 27565, 4935, 62, 13116, 13, 375, 83, 6, 198, 3727, 37, 62, 37815, 3525, 796, 705, 11299, 13, 19875, 6, 628, 628, 198, 4871, 14435, 32180, 7, 403, 715, 395, 13, 14402, 20448, 2599, 198, 220, 220, 220, 37227, 14402, 1339, 25, 14435, 4905, 526, 15931, 628, 220, 220, 220, 2488, 403, 715, 395, 13, 48267, 10786, 2949, 1672, 1695, 11537, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
2.669967
606
# -*- coding: utf-8 -*- """ @author: Chris Lucas """ import numpy as np def structure_tensor(points): """ Computes the structure tensor of points by computing the eigenvalues and eigenvectors of the covariance matrix of a point cloud. Parameters ---------- points : (Mx3) array X, Y and Z coordinates of points. Returns ------- eigenvalues : (1x3) array The eigenvalues corrisponding to the eigenvectors of the covariance matrix. eigenvectors : (3,3) array The eigenvectors of the covariance matrix. """ if len(points) > 3: cov_mat = np.cov(points, rowvar=False) eigenvalues, eigenvectors = np.linalg.eig(cov_mat) order = np.argsort(-eigenvalues) eigenvalues = eigenvalues[order] eigenvectors = eigenvectors[:, order] return eigenvalues, eigenvectors else: raise ValueError('Not enough points to compute eigenvalues/vectors.')
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 198, 198, 31, 9800, 25, 5180, 15257, 198, 37811, 198, 198, 11748, 299, 32152, 355, 45941, 628, 198, 4299, 4645, 62, 83, 22854, 7, 13033, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3082, 1769, 262, 4645, 11192, 273, 286, 2173, 416, 14492, 262, 304, 9324, 27160, 198, 220, 220, 220, 290, 304, 9324, 303, 5217, 286, 262, 44829, 590, 17593, 286, 257, 966, 6279, 13, 628, 220, 220, 220, 40117, 198, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 2173, 1058, 357, 44, 87, 18, 8, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 1395, 11, 575, 290, 1168, 22715, 286, 2173, 13, 628, 220, 220, 220, 16409, 198, 220, 220, 220, 35656, 198, 220, 220, 220, 304, 9324, 27160, 1058, 357, 16, 87, 18, 8, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 383, 304, 9324, 27160, 1162, 2442, 79, 42703, 284, 262, 304, 9324, 303, 5217, 286, 262, 44829, 590, 198, 220, 220, 220, 220, 220, 220, 220, 17593, 13, 198, 220, 220, 220, 304, 9324, 303, 5217, 1058, 357, 18, 11, 18, 8, 7177, 198, 220, 220, 220, 220, 220, 220, 220, 383, 304, 9324, 303, 5217, 286, 262, 44829, 590, 17593, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 18896, 7, 13033, 8, 1875, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 39849, 62, 6759, 796, 45941, 13, 66, 709, 7, 13033, 11, 5752, 7785, 28, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 304, 9324, 27160, 11, 304, 9324, 303, 5217, 796, 45941, 13, 75, 1292, 70, 13, 68, 328, 7, 66, 709, 62, 6759, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1502, 796, 45941, 13, 22046, 419, 32590, 68, 9324, 27160, 8, 198, 220, 220, 220, 220, 220, 220, 220, 304, 9324, 27160, 796, 304, 9324, 27160, 58, 2875, 60, 198, 220, 220, 220, 220, 220, 220, 220, 304, 9324, 303, 5217, 796, 304, 9324, 303, 5217, 58, 45299, 1502, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 304, 9324, 27160, 11, 304, 9324, 303, 5217, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 3673, 1576, 2173, 284, 24061, 304, 9324, 27160, 14, 303, 5217, 2637, 8, 198 ]
2.457071
396
# coding: utf-8 """ LUSID API FINBOURNE Technology # noqa: E501 The version of the OpenAPI document: 0.11.2863 Contact: [email protected] Generated by: https://openapi-generator.tech """ import pprint import re # noqa: F401 import six class EquitySwapAllOf(object): """NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech Do not edit the class manually. """ """ Attributes: openapi_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. required_map (dict): The key is attribute name and the value is whether it is 'required' or 'optional'. """ openapi_types = { 'start_date': 'datetime', 'maturity_date': 'datetime', 'code': 'str', 'equity_flow_conventions': 'FlowConventions', 'funding_leg': 'InstrumentLeg', 'include_dividends': 'bool', 'initial_price': 'float', 'notional_reset': 'bool', 'quantity': 'float', 'underlying_identifier': 'str', 'instrument_type': 'str' } attribute_map = { 'start_date': 'startDate', 'maturity_date': 'maturityDate', 'code': 'code', 'equity_flow_conventions': 'equityFlowConventions', 'funding_leg': 'fundingLeg', 'include_dividends': 'includeDividends', 'initial_price': 'initialPrice', 'notional_reset': 'notionalReset', 'quantity': 'quantity', 'underlying_identifier': 'underlyingIdentifier', 'instrument_type': 'instrumentType' } required_map = { 'start_date': 'required', 'maturity_date': 'required', 'code': 'required', 'equity_flow_conventions': 'required', 'funding_leg': 'required', 'include_dividends': 'required', 'initial_price': 'required', 'notional_reset': 'required', 'quantity': 'required', 'underlying_identifier': 'required', 'instrument_type': 'required' } def __init__(self, start_date=None, maturity_date=None, code=None, equity_flow_conventions=None, funding_leg=None, include_dividends=None, initial_price=None, notional_reset=None, quantity=None, underlying_identifier=None, instrument_type=None): # noqa: E501 """ EquitySwapAllOf - a model defined in OpenAPI :param start_date: The start date of the EquitySwap (required) :type start_date: datetime :param maturity_date: The maturity date of the EquitySwap. (required) :type maturity_date: datetime :param code: The code of the underlying. (required) :type code: str :param equity_flow_conventions: (required) :type equity_flow_conventions: lusid.FlowConventions :param funding_leg: (required) :type funding_leg: lusid.InstrumentLeg :param include_dividends: Dividend inclusion flag, if true dividends are included in the equity leg (total return). (required) :type include_dividends: bool :param initial_price: The initial equity price of the Equity Swap. (required) :type initial_price: float :param notional_reset: Notional reset flag, if true the notional of the funding leg is reset at the start of every coupon to match the value of the equity leg (equity price at start of coupon times quantity) (required) :type notional_reset: bool :param quantity: The quantity or number of shares in the Equity Swap. (required) :type quantity: float :param underlying_identifier: external market codes and identifiers for the EquitySwap, e.g. RIC. Supported string (enumeration) values are: [LusidInstrumentId, Isin, Sedol, Cusip, ClientInternal, Figi, RIC, QuotePermId]. (required) :type underlying_identifier: str :param instrument_type: The available values are: QuotedSecurity, InterestRateSwap, FxForward, Future, ExoticInstrument, FxOption, CreditDefaultSwap, InterestRateSwaption, Bond, EquityOption, FixedLeg, FloatingLeg, BespokeCashflowLeg, Unknown, TermDeposit, ContractForDifference, EquitySwap, CashPerpetual, CashSettled, CdsIndex, Basket (required) :type instrument_type: str """ # noqa: E501 self._start_date = None self._maturity_date = None self._code = None self._equity_flow_conventions = None self._funding_leg = None self._include_dividends = None self._initial_price = None self._notional_reset = None self._quantity = None self._underlying_identifier = None self._instrument_type = None self.discriminator = None self.start_date = start_date self.maturity_date = maturity_date self.code = code self.equity_flow_conventions = equity_flow_conventions self.funding_leg = funding_leg self.include_dividends = include_dividends self.initial_price = initial_price self.notional_reset = notional_reset self.quantity = quantity self.underlying_identifier = underlying_identifier self.instrument_type = instrument_type @property def start_date(self): """Gets the start_date of this EquitySwapAllOf. # noqa: E501 The start date of the EquitySwap # noqa: E501 :return: The start_date of this EquitySwapAllOf. # noqa: E501 :rtype: datetime """ return self._start_date @start_date.setter def start_date(self, start_date): """Sets the start_date of this EquitySwapAllOf. The start date of the EquitySwap # noqa: E501 :param start_date: The start_date of this EquitySwapAllOf. # noqa: E501 :type: datetime """ if start_date is None: raise ValueError("Invalid value for `start_date`, must not be `None`") # noqa: E501 self._start_date = start_date @property def maturity_date(self): """Gets the maturity_date of this EquitySwapAllOf. # noqa: E501 The maturity date of the EquitySwap. # noqa: E501 :return: The maturity_date of this EquitySwapAllOf. # noqa: E501 :rtype: datetime """ return self._maturity_date @maturity_date.setter def maturity_date(self, maturity_date): """Sets the maturity_date of this EquitySwapAllOf. The maturity date of the EquitySwap. # noqa: E501 :param maturity_date: The maturity_date of this EquitySwapAllOf. # noqa: E501 :type: datetime """ if maturity_date is None: raise ValueError("Invalid value for `maturity_date`, must not be `None`") # noqa: E501 self._maturity_date = maturity_date @property def code(self): """Gets the code of this EquitySwapAllOf. # noqa: E501 The code of the underlying. # noqa: E501 :return: The code of this EquitySwapAllOf. # noqa: E501 :rtype: str """ return self._code @code.setter def code(self, code): """Sets the code of this EquitySwapAllOf. The code of the underlying. # noqa: E501 :param code: The code of this EquitySwapAllOf. # noqa: E501 :type: str """ if code is None: raise ValueError("Invalid value for `code`, must not be `None`") # noqa: E501 self._code = code @property def equity_flow_conventions(self): """Gets the equity_flow_conventions of this EquitySwapAllOf. # noqa: E501 :return: The equity_flow_conventions of this EquitySwapAllOf. # noqa: E501 :rtype: FlowConventions """ return self._equity_flow_conventions @equity_flow_conventions.setter def equity_flow_conventions(self, equity_flow_conventions): """Sets the equity_flow_conventions of this EquitySwapAllOf. :param equity_flow_conventions: The equity_flow_conventions of this EquitySwapAllOf. # noqa: E501 :type: FlowConventions """ if equity_flow_conventions is None: raise ValueError("Invalid value for `equity_flow_conventions`, must not be `None`") # noqa: E501 self._equity_flow_conventions = equity_flow_conventions @property def funding_leg(self): """Gets the funding_leg of this EquitySwapAllOf. # noqa: E501 :return: The funding_leg of this EquitySwapAllOf. # noqa: E501 :rtype: InstrumentLeg """ return self._funding_leg @funding_leg.setter def funding_leg(self, funding_leg): """Sets the funding_leg of this EquitySwapAllOf. :param funding_leg: The funding_leg of this EquitySwapAllOf. # noqa: E501 :type: InstrumentLeg """ if funding_leg is None: raise ValueError("Invalid value for `funding_leg`, must not be `None`") # noqa: E501 self._funding_leg = funding_leg @property def include_dividends(self): """Gets the include_dividends of this EquitySwapAllOf. # noqa: E501 Dividend inclusion flag, if true dividends are included in the equity leg (total return). # noqa: E501 :return: The include_dividends of this EquitySwapAllOf. # noqa: E501 :rtype: bool """ return self._include_dividends @include_dividends.setter def include_dividends(self, include_dividends): """Sets the include_dividends of this EquitySwapAllOf. Dividend inclusion flag, if true dividends are included in the equity leg (total return). # noqa: E501 :param include_dividends: The include_dividends of this EquitySwapAllOf. # noqa: E501 :type: bool """ if include_dividends is None: raise ValueError("Invalid value for `include_dividends`, must not be `None`") # noqa: E501 self._include_dividends = include_dividends @property def initial_price(self): """Gets the initial_price of this EquitySwapAllOf. # noqa: E501 The initial equity price of the Equity Swap. # noqa: E501 :return: The initial_price of this EquitySwapAllOf. # noqa: E501 :rtype: float """ return self._initial_price @initial_price.setter def initial_price(self, initial_price): """Sets the initial_price of this EquitySwapAllOf. The initial equity price of the Equity Swap. # noqa: E501 :param initial_price: The initial_price of this EquitySwapAllOf. # noqa: E501 :type: float """ if initial_price is None: raise ValueError("Invalid value for `initial_price`, must not be `None`") # noqa: E501 self._initial_price = initial_price @property def notional_reset(self): """Gets the notional_reset of this EquitySwapAllOf. # noqa: E501 Notional reset flag, if true the notional of the funding leg is reset at the start of every coupon to match the value of the equity leg (equity price at start of coupon times quantity) # noqa: E501 :return: The notional_reset of this EquitySwapAllOf. # noqa: E501 :rtype: bool """ return self._notional_reset @notional_reset.setter def notional_reset(self, notional_reset): """Sets the notional_reset of this EquitySwapAllOf. Notional reset flag, if true the notional of the funding leg is reset at the start of every coupon to match the value of the equity leg (equity price at start of coupon times quantity) # noqa: E501 :param notional_reset: The notional_reset of this EquitySwapAllOf. # noqa: E501 :type: bool """ if notional_reset is None: raise ValueError("Invalid value for `notional_reset`, must not be `None`") # noqa: E501 self._notional_reset = notional_reset @property def quantity(self): """Gets the quantity of this EquitySwapAllOf. # noqa: E501 The quantity or number of shares in the Equity Swap. # noqa: E501 :return: The quantity of this EquitySwapAllOf. # noqa: E501 :rtype: float """ return self._quantity @quantity.setter def quantity(self, quantity): """Sets the quantity of this EquitySwapAllOf. The quantity or number of shares in the Equity Swap. # noqa: E501 :param quantity: The quantity of this EquitySwapAllOf. # noqa: E501 :type: float """ if quantity is None: raise ValueError("Invalid value for `quantity`, must not be `None`") # noqa: E501 self._quantity = quantity @property def underlying_identifier(self): """Gets the underlying_identifier of this EquitySwapAllOf. # noqa: E501 external market codes and identifiers for the EquitySwap, e.g. RIC. Supported string (enumeration) values are: [LusidInstrumentId, Isin, Sedol, Cusip, ClientInternal, Figi, RIC, QuotePermId]. # noqa: E501 :return: The underlying_identifier of this EquitySwapAllOf. # noqa: E501 :rtype: str """ return self._underlying_identifier @underlying_identifier.setter def underlying_identifier(self, underlying_identifier): """Sets the underlying_identifier of this EquitySwapAllOf. external market codes and identifiers for the EquitySwap, e.g. RIC. Supported string (enumeration) values are: [LusidInstrumentId, Isin, Sedol, Cusip, ClientInternal, Figi, RIC, QuotePermId]. # noqa: E501 :param underlying_identifier: The underlying_identifier of this EquitySwapAllOf. # noqa: E501 :type: str """ if underlying_identifier is None: raise ValueError("Invalid value for `underlying_identifier`, must not be `None`") # noqa: E501 self._underlying_identifier = underlying_identifier @property def instrument_type(self): """Gets the instrument_type of this EquitySwapAllOf. # noqa: E501 The available values are: QuotedSecurity, InterestRateSwap, FxForward, Future, ExoticInstrument, FxOption, CreditDefaultSwap, InterestRateSwaption, Bond, EquityOption, FixedLeg, FloatingLeg, BespokeCashflowLeg, Unknown, TermDeposit, ContractForDifference, EquitySwap, CashPerpetual, CashSettled, CdsIndex, Basket # noqa: E501 :return: The instrument_type of this EquitySwapAllOf. # noqa: E501 :rtype: str """ return self._instrument_type @instrument_type.setter def instrument_type(self, instrument_type): """Sets the instrument_type of this EquitySwapAllOf. The available values are: QuotedSecurity, InterestRateSwap, FxForward, Future, ExoticInstrument, FxOption, CreditDefaultSwap, InterestRateSwaption, Bond, EquityOption, FixedLeg, FloatingLeg, BespokeCashflowLeg, Unknown, TermDeposit, ContractForDifference, EquitySwap, CashPerpetual, CashSettled, CdsIndex, Basket # noqa: E501 :param instrument_type: The instrument_type of this EquitySwapAllOf. # noqa: E501 :type: str """ if instrument_type is None: raise ValueError("Invalid value for `instrument_type`, must not be `None`") # noqa: E501 allowed_values = ["QuotedSecurity", "InterestRateSwap", "FxForward", "Future", "ExoticInstrument", "FxOption", "CreditDefaultSwap", "InterestRateSwaption", "Bond", "EquityOption", "FixedLeg", "FloatingLeg", "BespokeCashflowLeg", "Unknown", "TermDeposit", "ContractForDifference", "EquitySwap", "CashPerpetual", "CashSettled", "CdsIndex", "Basket"] # noqa: E501 if instrument_type not in allowed_values: raise ValueError( "Invalid value for `instrument_type` ({0}), must be one of {1}" # noqa: E501 .format(instrument_type, allowed_values) ) self._instrument_type = instrument_type def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.openapi_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, EquitySwapAllOf): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
[ 2, 19617, 25, 3384, 69, 12, 23, 198, 198, 37811, 198, 220, 220, 220, 406, 2937, 2389, 7824, 628, 220, 220, 220, 33642, 33, 11698, 12161, 8987, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 383, 2196, 286, 262, 4946, 17614, 3188, 25, 657, 13, 1157, 13, 2078, 5066, 198, 220, 220, 220, 14039, 25, 7508, 31, 15643, 12544, 13, 785, 198, 220, 220, 220, 2980, 515, 416, 25, 3740, 1378, 9654, 15042, 12, 8612, 1352, 13, 13670, 198, 37811, 628, 198, 11748, 279, 4798, 198, 11748, 302, 220, 1303, 645, 20402, 25, 376, 21844, 198, 198, 11748, 2237, 198, 198, 4871, 35659, 10462, 499, 3237, 5189, 7, 15252, 2599, 198, 220, 220, 220, 37227, 16580, 25, 770, 1398, 318, 8295, 7560, 416, 4946, 17614, 35986, 13, 198, 220, 220, 220, 6524, 25, 3740, 1378, 9654, 15042, 12, 8612, 1352, 13, 13670, 628, 220, 220, 220, 2141, 407, 4370, 262, 1398, 14500, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 49213, 25, 198, 220, 220, 220, 220, 220, 1280, 15042, 62, 19199, 357, 11600, 2599, 383, 1994, 318, 11688, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 262, 1988, 318, 11688, 2099, 13, 198, 220, 220, 220, 220, 220, 11688, 62, 8899, 357, 11600, 2599, 383, 1994, 318, 11688, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 262, 1988, 318, 33918, 1994, 287, 6770, 13, 198, 220, 220, 220, 220, 220, 2672, 62, 8899, 357, 11600, 2599, 383, 1994, 318, 11688, 1438, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 262, 1988, 318, 1771, 340, 318, 705, 35827, 6, 393, 705, 25968, 4458, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1280, 15042, 62, 19199, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9688, 62, 4475, 10354, 705, 19608, 8079, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6759, 1684, 62, 4475, 10354, 705, 19608, 8079, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 8189, 10354, 705, 2536, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4853, 414, 62, 11125, 62, 1102, 16593, 10354, 705, 37535, 3103, 16593, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 25032, 62, 1455, 10354, 705, 818, 43872, 11484, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17256, 62, 67, 1699, 2412, 10354, 705, 30388, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 36733, 62, 20888, 10354, 705, 22468, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1662, 1538, 62, 42503, 10354, 705, 30388, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 40972, 414, 10354, 705, 22468, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4625, 3157, 62, 738, 7483, 10354, 705, 2536, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 259, 43872, 62, 4906, 10354, 705, 2536, 6, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 11688, 62, 8899, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9688, 62, 4475, 10354, 705, 9688, 10430, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6759, 1684, 62, 4475, 10354, 705, 6759, 1684, 10430, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 8189, 10354, 705, 8189, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4853, 414, 62, 11125, 62, 1102, 16593, 10354, 705, 4853, 414, 37535, 3103, 16593, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 25032, 62, 1455, 10354, 705, 25032, 11484, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17256, 62, 67, 1699, 2412, 10354, 705, 17256, 35, 1699, 2412, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 36733, 62, 20888, 10354, 705, 36733, 18124, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1662, 1538, 62, 42503, 10354, 705, 1662, 1538, 4965, 316, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 40972, 414, 10354, 705, 40972, 414, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4625, 3157, 62, 738, 7483, 10354, 705, 4625, 3157, 33234, 7483, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 259, 43872, 62, 4906, 10354, 705, 259, 43872, 6030, 6, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 2672, 62, 8899, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 9688, 62, 4475, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6759, 1684, 62, 4475, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 8189, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4853, 414, 62, 11125, 62, 1102, 16593, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 25032, 62, 1455, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17256, 62, 67, 1699, 2412, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 36733, 62, 20888, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1662, 1538, 62, 42503, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 40972, 414, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4625, 3157, 62, 738, 7483, 10354, 705, 35827, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 259, 43872, 62, 4906, 10354, 705, 35827, 6, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 923, 62, 4475, 28, 14202, 11, 24841, 62, 4475, 28, 14202, 11, 2438, 28, 14202, 11, 13598, 62, 11125, 62, 1102, 16593, 28, 14202, 11, 4918, 62, 1455, 28, 14202, 11, 2291, 62, 67, 1699, 2412, 28, 14202, 11, 4238, 62, 20888, 28, 14202, 11, 407, 1538, 62, 42503, 28, 14202, 11, 12040, 28, 14202, 11, 10238, 62, 738, 7483, 28, 14202, 11, 8875, 62, 4906, 28, 14202, 2599, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 35659, 10462, 499, 3237, 5189, 532, 257, 2746, 5447, 287, 4946, 17614, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 923, 62, 4475, 25, 220, 383, 923, 3128, 286, 262, 35659, 10462, 499, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 923, 62, 4475, 25, 4818, 8079, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 24841, 62, 4475, 25, 220, 383, 24841, 3128, 286, 262, 35659, 10462, 499, 13, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 24841, 62, 4475, 25, 4818, 8079, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2438, 25, 220, 383, 2438, 286, 262, 10238, 13, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 2438, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 13598, 62, 11125, 62, 1102, 16593, 25, 220, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 13598, 62, 11125, 62, 1102, 16593, 25, 300, 385, 312, 13, 37535, 3103, 16593, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4918, 62, 1455, 25, 220, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 4918, 62, 1455, 25, 300, 385, 312, 13, 818, 43872, 11484, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2291, 62, 67, 1699, 2412, 25, 220, 360, 1699, 437, 14900, 6056, 11, 611, 2081, 26360, 389, 3017, 287, 262, 13598, 1232, 357, 23350, 1441, 737, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 2291, 62, 67, 1699, 2412, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4238, 62, 20888, 25, 220, 383, 4238, 13598, 2756, 286, 262, 35659, 48408, 13, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 4238, 62, 20888, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 407, 1538, 62, 42503, 25, 220, 1892, 1538, 13259, 6056, 11, 611, 2081, 262, 407, 1538, 286, 262, 4918, 1232, 318, 13259, 379, 262, 923, 286, 790, 220, 34990, 284, 2872, 262, 1988, 286, 262, 13598, 1232, 357, 4853, 414, 2756, 379, 923, 286, 34990, 1661, 12040, 8, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 407, 1538, 62, 42503, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 12040, 25, 220, 383, 12040, 393, 1271, 286, 7303, 287, 262, 35659, 48408, 13, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 12040, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 10238, 62, 738, 7483, 25, 220, 7097, 1910, 12416, 290, 42814, 329, 262, 35659, 10462, 499, 11, 304, 13, 70, 13, 371, 2149, 13, 220, 36848, 4731, 357, 268, 6975, 341, 8, 3815, 389, 25, 685, 43, 385, 312, 818, 43872, 7390, 11, 1148, 259, 11, 22710, 349, 11, 327, 385, 541, 11, 20985, 37693, 11, 12138, 72, 11, 371, 2149, 11, 19879, 5990, 76, 7390, 4083, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 10238, 62, 738, 7483, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8875, 62, 4906, 25, 220, 383, 1695, 3815, 389, 25, 2264, 5191, 24074, 11, 12033, 32184, 10462, 499, 11, 376, 87, 39746, 11, 10898, 11, 1475, 6210, 818, 43872, 11, 376, 87, 19722, 11, 10504, 19463, 10462, 499, 11, 12033, 32184, 50, 10247, 1159, 11, 12812, 11, 35659, 19722, 11, 10832, 11484, 11, 49768, 11484, 11, 347, 9774, 2088, 35361, 11125, 11484, 11, 16185, 11, 35118, 12156, 7434, 11, 17453, 1890, 28813, 1945, 11, 35659, 10462, 499, 11, 16210, 5990, 6449, 723, 11, 16210, 50, 3087, 992, 11, 327, 9310, 15732, 11, 347, 11715, 357, 35827, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 8875, 62, 4906, 25, 965, 628, 220, 220, 220, 220, 220, 220, 220, 37227, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 9688, 62, 4475, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 6759, 1684, 62, 4475, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 8189, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 4853, 414, 62, 11125, 62, 1102, 16593, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 25032, 62, 1455, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 17256, 62, 67, 1699, 2412, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 36733, 62, 20888, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 1662, 1538, 62, 42503, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 40972, 414, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 4625, 3157, 62, 738, 7483, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 259, 43872, 62, 4906, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15410, 3036, 20900, 796, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 9688, 62, 4475, 796, 923, 62, 4475, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6759, 1684, 62, 4475, 796, 24841, 62, 4475, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 8189, 796, 2438, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 4853, 414, 62, 11125, 62, 1102, 16593, 796, 13598, 62, 11125, 62, 1102, 16593, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 25032, 62, 1455, 796, 4918, 62, 1455, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 17256, 62, 67, 1699, 2412, 796, 2291, 62, 67, 1699, 2412, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 36733, 62, 20888, 796, 4238, 62, 20888, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 1662, 1538, 62, 42503, 796, 407, 1538, 62, 42503, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 40972, 414, 796, 12040, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 4625, 3157, 62, 738, 7483, 796, 10238, 62, 738, 7483, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 259, 43872, 62, 4906, 796, 8875, 62, 4906, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 923, 62, 4475, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 923, 62, 4475, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 383, 923, 3128, 286, 262, 35659, 10462, 499, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 923, 62, 4475, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 4818, 8079, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 9688, 62, 4475, 628, 220, 220, 220, 2488, 9688, 62, 4475, 13, 2617, 353, 198, 220, 220, 220, 825, 923, 62, 4475, 7, 944, 11, 923, 62, 4475, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 923, 62, 4475, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 923, 3128, 286, 262, 35659, 10462, 499, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 923, 62, 4475, 25, 383, 923, 62, 4475, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 4818, 8079, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 923, 62, 4475, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 9688, 62, 4475, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 9688, 62, 4475, 796, 923, 62, 4475, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 24841, 62, 4475, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 24841, 62, 4475, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 383, 24841, 3128, 286, 262, 35659, 10462, 499, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 24841, 62, 4475, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 4818, 8079, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 6759, 1684, 62, 4475, 628, 220, 220, 220, 2488, 6759, 1684, 62, 4475, 13, 2617, 353, 198, 220, 220, 220, 825, 24841, 62, 4475, 7, 944, 11, 24841, 62, 4475, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 24841, 62, 4475, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 24841, 3128, 286, 262, 35659, 10462, 499, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 24841, 62, 4475, 25, 383, 24841, 62, 4475, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 4818, 8079, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 24841, 62, 4475, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 6759, 1684, 62, 4475, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 6759, 1684, 62, 4475, 796, 24841, 62, 4475, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 2438, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 2438, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 383, 2438, 286, 262, 10238, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 2438, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 8189, 628, 220, 220, 220, 2488, 8189, 13, 2617, 353, 198, 220, 220, 220, 825, 2438, 7, 944, 11, 2438, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 2438, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 2438, 286, 262, 10238, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2438, 25, 383, 2438, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2438, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 8189, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 8189, 796, 2438, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 13598, 62, 11125, 62, 1102, 16593, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 13598, 62, 11125, 62, 1102, 16593, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 13598, 62, 11125, 62, 1102, 16593, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 27782, 3103, 16593, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 4853, 414, 62, 11125, 62, 1102, 16593, 628, 220, 220, 220, 2488, 4853, 414, 62, 11125, 62, 1102, 16593, 13, 2617, 353, 198, 220, 220, 220, 825, 13598, 62, 11125, 62, 1102, 16593, 7, 944, 11, 13598, 62, 11125, 62, 1102, 16593, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 13598, 62, 11125, 62, 1102, 16593, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 13598, 62, 11125, 62, 1102, 16593, 25, 383, 13598, 62, 11125, 62, 1102, 16593, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 27782, 3103, 16593, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 13598, 62, 11125, 62, 1102, 16593, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 4853, 414, 62, 11125, 62, 1102, 16593, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 4853, 414, 62, 11125, 62, 1102, 16593, 796, 13598, 62, 11125, 62, 1102, 16593, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 4918, 62, 1455, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 4918, 62, 1455, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 4918, 62, 1455, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 42410, 11484, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 25032, 62, 1455, 628, 220, 220, 220, 2488, 25032, 62, 1455, 13, 2617, 353, 198, 220, 220, 220, 825, 4918, 62, 1455, 7, 944, 11, 4918, 62, 1455, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 4918, 62, 1455, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4918, 62, 1455, 25, 383, 4918, 62, 1455, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 42410, 11484, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4918, 62, 1455, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 25032, 62, 1455, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 25032, 62, 1455, 796, 4918, 62, 1455, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 2291, 62, 67, 1699, 2412, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 2291, 62, 67, 1699, 2412, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 360, 1699, 437, 14900, 6056, 11, 611, 2081, 26360, 389, 3017, 287, 262, 13598, 1232, 357, 23350, 1441, 737, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 2291, 62, 67, 1699, 2412, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 17256, 62, 67, 1699, 2412, 628, 220, 220, 220, 2488, 17256, 62, 67, 1699, 2412, 13, 2617, 353, 198, 220, 220, 220, 825, 2291, 62, 67, 1699, 2412, 7, 944, 11, 2291, 62, 67, 1699, 2412, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 2291, 62, 67, 1699, 2412, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 360, 1699, 437, 14900, 6056, 11, 611, 2081, 26360, 389, 3017, 287, 262, 13598, 1232, 357, 23350, 1441, 737, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 2291, 62, 67, 1699, 2412, 25, 383, 2291, 62, 67, 1699, 2412, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2291, 62, 67, 1699, 2412, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 17256, 62, 67, 1699, 2412, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 17256, 62, 67, 1699, 2412, 796, 2291, 62, 67, 1699, 2412, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 4238, 62, 20888, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 4238, 62, 20888, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 383, 4238, 13598, 2756, 286, 262, 35659, 48408, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 4238, 62, 20888, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 36733, 62, 20888, 628, 220, 220, 220, 2488, 36733, 62, 20888, 13, 2617, 353, 198, 220, 220, 220, 825, 4238, 62, 20888, 7, 944, 11, 4238, 62, 20888, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 4238, 62, 20888, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 4238, 13598, 2756, 286, 262, 35659, 48408, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 4238, 62, 20888, 25, 383, 4238, 62, 20888, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4238, 62, 20888, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 36733, 62, 20888, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 36733, 62, 20888, 796, 4238, 62, 20888, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 407, 1538, 62, 42503, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 407, 1538, 62, 42503, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1892, 1538, 13259, 6056, 11, 611, 2081, 262, 407, 1538, 286, 262, 4918, 1232, 318, 13259, 379, 262, 923, 286, 790, 220, 34990, 284, 2872, 262, 1988, 286, 262, 13598, 1232, 357, 4853, 414, 2756, 379, 923, 286, 34990, 1661, 12040, 8, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 407, 1538, 62, 42503, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 1662, 1538, 62, 42503, 628, 220, 220, 220, 2488, 1662, 1538, 62, 42503, 13, 2617, 353, 198, 220, 220, 220, 825, 407, 1538, 62, 42503, 7, 944, 11, 407, 1538, 62, 42503, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 407, 1538, 62, 42503, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 1892, 1538, 13259, 6056, 11, 611, 2081, 262, 407, 1538, 286, 262, 4918, 1232, 318, 13259, 379, 262, 923, 286, 790, 220, 34990, 284, 2872, 262, 1988, 286, 262, 13598, 1232, 357, 4853, 414, 2756, 379, 923, 286, 34990, 1661, 12040, 8, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 407, 1538, 62, 42503, 25, 383, 407, 1538, 62, 42503, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1538, 62, 42503, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 1662, 1538, 62, 42503, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 1662, 1538, 62, 42503, 796, 407, 1538, 62, 42503, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 12040, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 12040, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 383, 12040, 393, 1271, 286, 7303, 287, 262, 35659, 48408, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 12040, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 40972, 414, 628, 220, 220, 220, 2488, 40972, 414, 13, 2617, 353, 198, 220, 220, 220, 825, 12040, 7, 944, 11, 12040, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 12040, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 12040, 393, 1271, 286, 7303, 287, 262, 35659, 48408, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 12040, 25, 383, 12040, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 12178, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 12040, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 40972, 414, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 40972, 414, 796, 12040, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 10238, 62, 738, 7483, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 10238, 62, 738, 7483, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 7097, 1910, 12416, 290, 42814, 329, 262, 35659, 10462, 499, 11, 304, 13, 70, 13, 371, 2149, 13, 220, 36848, 4731, 357, 268, 6975, 341, 8, 3815, 389, 25, 685, 43, 385, 312, 818, 43872, 7390, 11, 1148, 259, 11, 22710, 349, 11, 327, 385, 541, 11, 20985, 37693, 11, 12138, 72, 11, 371, 2149, 11, 19879, 5990, 76, 7390, 4083, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 10238, 62, 738, 7483, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 4625, 3157, 62, 738, 7483, 628, 220, 220, 220, 2488, 4625, 3157, 62, 738, 7483, 13, 2617, 353, 198, 220, 220, 220, 825, 10238, 62, 738, 7483, 7, 944, 11, 10238, 62, 738, 7483, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 10238, 62, 738, 7483, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 7097, 1910, 12416, 290, 42814, 329, 262, 35659, 10462, 499, 11, 304, 13, 70, 13, 371, 2149, 13, 220, 36848, 4731, 357, 268, 6975, 341, 8, 3815, 389, 25, 685, 43, 385, 312, 818, 43872, 7390, 11, 1148, 259, 11, 22710, 349, 11, 327, 385, 541, 11, 20985, 37693, 11, 12138, 72, 11, 371, 2149, 11, 19879, 5990, 76, 7390, 4083, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 10238, 62, 738, 7483, 25, 383, 10238, 62, 738, 7483, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 10238, 62, 738, 7483, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 4625, 3157, 62, 738, 7483, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 4625, 3157, 62, 738, 7483, 796, 10238, 62, 738, 7483, 628, 220, 220, 220, 2488, 26745, 198, 220, 220, 220, 825, 8875, 62, 4906, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 38, 1039, 262, 8875, 62, 4906, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 383, 1695, 3815, 389, 25, 2264, 5191, 24074, 11, 12033, 32184, 10462, 499, 11, 376, 87, 39746, 11, 10898, 11, 1475, 6210, 818, 43872, 11, 376, 87, 19722, 11, 10504, 19463, 10462, 499, 11, 12033, 32184, 50, 10247, 1159, 11, 12812, 11, 35659, 19722, 11, 10832, 11484, 11, 49768, 11484, 11, 347, 9774, 2088, 35361, 11125, 11484, 11, 16185, 11, 35118, 12156, 7434, 11, 17453, 1890, 28813, 1945, 11, 35659, 10462, 499, 11, 16210, 5990, 6449, 723, 11, 16210, 50, 3087, 992, 11, 327, 9310, 15732, 11, 347, 11715, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 7783, 25, 383, 8875, 62, 4906, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 81, 4906, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 259, 43872, 62, 4906, 628, 220, 220, 220, 2488, 259, 43872, 62, 4906, 13, 2617, 353, 198, 220, 220, 220, 825, 8875, 62, 4906, 7, 944, 11, 8875, 62, 4906, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 50, 1039, 262, 8875, 62, 4906, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 628, 220, 220, 220, 220, 220, 220, 220, 383, 1695, 3815, 389, 25, 2264, 5191, 24074, 11, 12033, 32184, 10462, 499, 11, 376, 87, 39746, 11, 10898, 11, 1475, 6210, 818, 43872, 11, 376, 87, 19722, 11, 10504, 19463, 10462, 499, 11, 12033, 32184, 50, 10247, 1159, 11, 12812, 11, 35659, 19722, 11, 10832, 11484, 11, 49768, 11484, 11, 347, 9774, 2088, 35361, 11125, 11484, 11, 16185, 11, 35118, 12156, 7434, 11, 17453, 1890, 28813, 1945, 11, 35659, 10462, 499, 11, 16210, 5990, 6449, 723, 11, 16210, 50, 3087, 992, 11, 327, 9310, 15732, 11, 347, 11715, 220, 1303, 645, 20402, 25, 412, 33548, 628, 220, 220, 220, 220, 220, 220, 220, 1058, 17143, 8875, 62, 4906, 25, 383, 8875, 62, 4906, 286, 428, 35659, 10462, 499, 3237, 5189, 13, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 1058, 4906, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 8875, 62, 4906, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 44651, 1988, 329, 4600, 259, 43872, 62, 4906, 47671, 1276, 407, 307, 4600, 14202, 63, 4943, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 3142, 62, 27160, 796, 14631, 4507, 5191, 24074, 1600, 366, 19302, 32184, 10462, 499, 1600, 366, 37, 87, 39746, 1600, 366, 29783, 1600, 366, 3109, 6210, 818, 43872, 1600, 366, 37, 87, 19722, 1600, 366, 23690, 19463, 10462, 499, 1600, 366, 19302, 32184, 50, 10247, 1159, 1600, 366, 33, 623, 1600, 366, 23588, 414, 19722, 1600, 366, 13715, 11484, 1600, 366, 33574, 803, 11484, 1600, 366, 33, 9774, 2088, 35361, 11125, 11484, 1600, 366, 20035, 1600, 366, 40596, 12156, 7434, 1600, 366, 45845, 1890, 28813, 1945, 1600, 366, 23588, 414, 10462, 499, 1600, 366, 35361, 5990, 6449, 723, 1600, 366, 35361, 50, 3087, 992, 1600, 366, 34, 9310, 15732, 1600, 366, 33, 11715, 8973, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 611, 8875, 62, 4906, 407, 287, 3142, 62, 27160, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 44651, 1988, 329, 4600, 259, 43872, 62, 4906, 63, 37913, 15, 92, 828, 1276, 307, 530, 286, 1391, 16, 36786, 220, 1303, 645, 20402, 25, 412, 33548, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 764, 18982, 7, 259, 43872, 62, 4906, 11, 3142, 62, 27160, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 259, 43872, 62, 4906, 796, 8875, 62, 4906, 628, 220, 220, 220, 825, 284, 62, 11600, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 2746, 6608, 355, 257, 8633, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 23884, 628, 220, 220, 220, 220, 220, 220, 220, 329, 708, 81, 11, 4808, 287, 2237, 13, 2676, 23814, 7, 944, 13, 9654, 15042, 62, 19199, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 651, 35226, 7, 944, 11, 708, 81, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 8367, 11, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 58, 35226, 60, 796, 1351, 7, 8899, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37456, 2124, 25, 2124, 13, 1462, 62, 11600, 3419, 611, 468, 35226, 7, 87, 11, 366, 1462, 62, 11600, 4943, 2073, 2124, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15306, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 468, 35226, 7, 8367, 11, 366, 1462, 62, 11600, 1, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 58, 35226, 60, 796, 1988, 13, 1462, 62, 11600, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 8367, 11, 8633, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 58, 35226, 60, 796, 8633, 7, 8899, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37456, 2378, 25, 357, 9186, 58, 15, 4357, 2378, 58, 16, 4083, 1462, 62, 11600, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 468, 35226, 7, 9186, 58, 16, 4357, 366, 1462, 62, 11600, 4943, 2073, 2378, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 13, 23814, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15306, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 58, 35226, 60, 796, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1255, 628, 220, 220, 220, 825, 284, 62, 2536, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 262, 4731, 10552, 286, 262, 2746, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 279, 4798, 13, 79, 18982, 7, 944, 13, 1462, 62, 11600, 28955, 628, 220, 220, 220, 825, 11593, 260, 1050, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 1890, 4600, 4798, 63, 290, 4600, 381, 22272, 63, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 1462, 62, 2536, 3419, 628, 220, 220, 220, 825, 11593, 27363, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 2081, 611, 1111, 5563, 389, 4961, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 847, 11, 35659, 10462, 499, 3237, 5189, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 834, 11600, 834, 6624, 584, 13, 834, 11600, 834, 628, 220, 220, 220, 825, 11593, 710, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 35561, 2081, 611, 1111, 5563, 389, 407, 4961, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 407, 2116, 6624, 584, 198 ]
2.467431
7,062
from __future__ import print_function import sys import subprocess import signal import time import os import shlex from Choruslib.Blatres import Blatres def start_gfServer(file2bit, gfspath, stepsize=7, blatport=10010): ''' :param file2bit: :param gfspath: :param stepsize: :param blatport: :return: blat gfserver pid ''' gfserverpath = '"' + os.path.realpath(gfspath) + '"' genomefile = os.path.realpath(file2bit) genomefilename = os.path.basename(genomefile) genomefilepath = os.path.dirname(genomefile) blatcmd = gfserverpath + " start 127.0.0.1 "\ +str(blatport) + " -maxDnaHits=20 -stepSize=" \ + str(stepsize) + ' ' + genomefilename blatcmd = shlex.split(blatcmd) print("start gfServer: ", blatcmd) p = subprocess.Popen(blatcmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=genomefilepath) print(p.pid) return p.pid def blat_searchpb(gfcpath, sequence, blatport=10010, minIdentity=75, file2bit='/'): ''' :param gfcpath: gfclient path :param sequence: seqeunce or probe :param blatport: blat port :param minIdentity: :param file2bit: genome 2bit file for blat :return: blatres class ''' gfclientpath = '"'+os.path.realpath(gfcpath)+'"' genomepath = os.path.dirname(file2bit) queryseq = ">%s\n%s" % (sequence, sequence) searchcmd = gfclientpath + " -minIdentity="+str(minIdentity)+" -nohead 127.0.0.1 "+str(blatport)+" " + "." + " /dev/stdin /dev/stdout" num = 0 searchcmd = shlex.split(searchcmd) p = subprocess.Popen(searchcmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, cwd=genomepath) p.stdin.write(queryseq.encode('ascii')) p.stdin.close() blatlines = list() for line in p.stdout: if line == b"Output is in /dev/stdout\n": continue else: blatlines.append(line.decode("utf-8")) blatres = Blatres(seq=sequence, blatlines=blatlines) return blatres
[ 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 11748, 25064, 198, 11748, 850, 14681, 198, 11748, 6737, 198, 11748, 640, 198, 11748, 28686, 198, 11748, 427, 2588, 198, 6738, 609, 15125, 8019, 13, 3629, 265, 411, 1330, 1086, 265, 411, 628, 198, 4299, 923, 62, 70, 69, 10697, 7, 7753, 17, 2545, 11, 308, 69, 2777, 776, 11, 4831, 1096, 28, 22, 11, 21451, 634, 28, 3064, 940, 2599, 628, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1058, 17143, 2393, 17, 2545, 25, 198, 220, 220, 220, 1058, 17143, 308, 69, 2777, 776, 25, 198, 220, 220, 220, 1058, 17143, 4831, 1096, 25, 198, 220, 220, 220, 1058, 17143, 21451, 634, 25, 198, 220, 220, 220, 1058, 7783, 25, 21451, 308, 69, 15388, 46514, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 308, 69, 15388, 6978, 796, 705, 30543, 1343, 28686, 13, 6978, 13, 5305, 6978, 7, 70, 69, 2777, 776, 8, 1343, 705, 30543, 628, 220, 220, 220, 19270, 7753, 796, 28686, 13, 6978, 13, 5305, 6978, 7, 7753, 17, 2545, 8, 628, 220, 220, 220, 19270, 34345, 796, 28686, 13, 6978, 13, 12093, 12453, 7, 5235, 462, 7753, 8, 628, 220, 220, 220, 19270, 7753, 6978, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 5235, 462, 7753, 8, 628, 220, 220, 220, 21451, 28758, 796, 308, 69, 15388, 6978, 1343, 366, 923, 18112, 13, 15, 13, 15, 13, 16, 37082, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 2536, 7, 2436, 265, 634, 8, 1343, 366, 532, 9806, 35, 2616, 39, 896, 28, 1238, 532, 9662, 10699, 2625, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1343, 965, 7, 9662, 7857, 8, 1343, 705, 705, 1343, 19270, 34345, 198, 220, 220, 220, 21451, 28758, 796, 427, 2588, 13, 35312, 7, 2436, 265, 28758, 8, 198, 220, 220, 220, 3601, 7203, 9688, 308, 69, 10697, 25, 33172, 21451, 28758, 8, 628, 220, 220, 220, 279, 796, 850, 14681, 13, 47, 9654, 7, 2436, 265, 28758, 11, 14367, 448, 28, 7266, 14681, 13, 47, 4061, 36, 11, 336, 1082, 81, 28, 7266, 14681, 13, 47, 4061, 36, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 16993, 28, 5235, 462, 7753, 6978, 8, 628, 220, 220, 220, 3601, 7, 79, 13, 35317, 8, 628, 220, 220, 220, 1441, 279, 13, 35317, 628, 628, 628, 628, 198, 4299, 21451, 62, 12947, 40842, 7, 70, 16072, 6978, 11, 8379, 11, 21451, 634, 28, 3064, 940, 11, 949, 7390, 26858, 28, 2425, 11, 2393, 17, 2545, 11639, 14, 6, 2599, 628, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1058, 17143, 308, 16072, 6978, 25, 308, 69, 16366, 3108, 198, 220, 220, 220, 1058, 17143, 8379, 25, 33756, 68, 403, 344, 393, 12774, 198, 220, 220, 220, 1058, 17143, 21451, 634, 25, 21451, 2493, 198, 220, 220, 220, 1058, 17143, 949, 7390, 26858, 25, 198, 220, 220, 220, 1058, 17143, 2393, 17, 2545, 25, 19270, 362, 2545, 2393, 329, 21451, 198, 220, 220, 220, 1058, 7783, 25, 21451, 411, 1398, 198, 220, 220, 220, 705, 7061, 628, 220, 220, 220, 308, 69, 16366, 6978, 796, 705, 30543, 10, 418, 13, 6978, 13, 5305, 6978, 7, 70, 16072, 6978, 47762, 29653, 6, 628, 220, 220, 220, 19270, 6978, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 7753, 17, 2545, 8, 628, 220, 220, 220, 12405, 41068, 796, 366, 29, 4, 82, 59, 77, 4, 82, 1, 4064, 357, 43167, 11, 8379, 8, 628, 220, 220, 220, 2989, 28758, 796, 308, 69, 16366, 6978, 1343, 366, 532, 1084, 7390, 26858, 2625, 10, 2536, 7, 1084, 7390, 26858, 47762, 1, 532, 3919, 2256, 18112, 13, 15, 13, 15, 13, 16, 43825, 2536, 7, 2436, 265, 634, 47762, 1, 366, 1343, 366, 526, 1343, 366, 1220, 7959, 14, 19282, 259, 1220, 7959, 14, 19282, 448, 1, 628, 220, 220, 220, 997, 796, 657, 628, 220, 220, 220, 2989, 28758, 796, 427, 2588, 13, 35312, 7, 12947, 28758, 8, 628, 220, 220, 220, 279, 796, 850, 14681, 13, 47, 9654, 7, 12947, 28758, 11, 14367, 259, 28, 7266, 14681, 13, 47, 4061, 36, 11, 14367, 448, 28, 7266, 14681, 13, 47, 4061, 36, 11, 269, 16993, 28, 5235, 462, 6978, 8, 628, 220, 220, 220, 279, 13, 19282, 259, 13, 13564, 7, 22766, 41068, 13, 268, 8189, 10786, 292, 979, 72, 6, 4008, 628, 220, 220, 220, 279, 13, 19282, 259, 13, 19836, 3419, 628, 220, 220, 220, 21451, 6615, 796, 1351, 3419, 628, 220, 220, 220, 329, 1627, 287, 279, 13, 19282, 448, 25, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1627, 6624, 275, 1, 26410, 318, 287, 1220, 7959, 14, 19282, 448, 59, 77, 1298, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21451, 6615, 13, 33295, 7, 1370, 13, 12501, 1098, 7203, 40477, 12, 23, 48774, 628, 220, 220, 220, 21451, 411, 796, 1086, 265, 411, 7, 41068, 28, 43167, 11, 21451, 6615, 28, 2436, 265, 6615, 8, 628, 220, 220, 220, 1441, 21451, 411, 198 ]
2.294643
896
"""empty message Revision ID: af9c317d2c92 Revises: 245d12695c69 Create Date: 2020-03-12 08:49:36.009020 """ # revision identifiers, used by Alembic. revision = 'af9c317d2c92' down_revision = '245d12695c69' from alembic import op import sqlalchemy as sa from sqlalchemy import orm from app import db from enum import Enum import datetime from sqlalchemy.ext.declarative import declarative_base Base = declarative_base()
[ 37811, 28920, 3275, 198, 198, 18009, 1166, 4522, 25, 6580, 24, 66, 34125, 67, 17, 66, 5892, 198, 18009, 2696, 25, 29637, 67, 1065, 37381, 66, 3388, 198, 16447, 7536, 25, 12131, 12, 3070, 12, 1065, 8487, 25, 2920, 25, 2623, 13, 405, 3829, 1238, 198, 198, 37811, 198, 198, 2, 18440, 42814, 11, 973, 416, 9300, 2022, 291, 13, 198, 260, 10178, 796, 705, 1878, 24, 66, 34125, 67, 17, 66, 5892, 6, 198, 2902, 62, 260, 10178, 796, 705, 22995, 67, 1065, 37381, 66, 3388, 6, 198, 198, 6738, 31341, 2022, 291, 1330, 1034, 198, 11748, 44161, 282, 26599, 355, 473, 198, 6738, 44161, 282, 26599, 1330, 393, 76, 198, 6738, 598, 1330, 20613, 198, 6738, 33829, 1330, 2039, 388, 198, 11748, 4818, 8079, 198, 6738, 44161, 282, 26599, 13, 2302, 13, 32446, 283, 876, 1330, 2377, 283, 876, 62, 8692, 198, 198, 14881, 796, 2377, 283, 876, 62, 8692, 3419, 628, 198 ]
2.754839
155
from model import Igrica nova_igra = 'n' while nova_igra == "n": trenutna_igra = Igrica() # print(trenutna_igra) while True: trenutna_igra.izpis_igre() print(f"na vrsti je igralec {trenutna_igra.igralec}") while True: print("Napiši št: ") polje = input() poteza = trenutna_igra.shrani_potezo(polje) if poteza: break if trenutna_igra.zmaga() != False: print(f"Zmagovalec je {trenutna_igra.zmaga()}") print("!!!!!!!!!!!!!!") trenutna_igra.izpis_igre() print("!!!!!!!!!!!!!!") break if trenutna_igra.neodloceno(): print("Neodloceno") break trenutna_igra.menjava_igralcev() print("Igre je konec") nova_igra = input("Pritisnite N za novo igro: ") print("KONEC PROGRAMA")
[ 6738, 2746, 1330, 28818, 30997, 198, 198, 38438, 62, 328, 430, 796, 705, 77, 6, 198, 198, 4514, 645, 6862, 62, 328, 430, 6624, 366, 77, 1298, 198, 220, 220, 220, 256, 918, 315, 2616, 62, 328, 430, 796, 28818, 30997, 3419, 628, 220, 220, 220, 1303, 3601, 7, 83, 918, 315, 2616, 62, 328, 430, 8, 628, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 256, 918, 315, 2616, 62, 328, 430, 13, 528, 79, 271, 62, 328, 260, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 2616, 410, 81, 301, 72, 11223, 45329, 1373, 721, 1391, 83, 918, 315, 2616, 62, 328, 430, 13, 328, 1373, 721, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 45, 15042, 32790, 72, 25370, 94, 83, 25, 220, 366, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 755, 18015, 796, 5128, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 1258, 4496, 796, 256, 918, 315, 2616, 62, 328, 430, 13, 1477, 2596, 72, 62, 79, 1258, 10872, 7, 16104, 18015, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 279, 1258, 4496, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 611, 256, 918, 315, 2616, 62, 328, 430, 13, 89, 76, 8126, 3419, 14512, 10352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 57, 19726, 8325, 721, 11223, 1391, 83, 918, 315, 2616, 62, 328, 430, 13, 89, 76, 8126, 3419, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 34635, 50184, 2474, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 918, 315, 2616, 62, 328, 430, 13, 528, 79, 271, 62, 328, 260, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 34635, 50184, 2474, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 611, 256, 918, 315, 2616, 62, 328, 430, 13, 710, 375, 17946, 23397, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 8199, 375, 17946, 23397, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 256, 918, 315, 2616, 62, 328, 430, 13, 3653, 12355, 62, 328, 1373, 344, 85, 3419, 628, 220, 220, 220, 3601, 7203, 40, 16694, 11223, 479, 505, 66, 4943, 198, 220, 220, 220, 645, 6862, 62, 328, 430, 796, 5128, 7203, 47, 27398, 77, 578, 399, 1976, 64, 645, 13038, 45329, 305, 25, 366, 8, 198, 198, 4798, 7203, 42, 1340, 2943, 46805, 32, 4943 ]
1.759369
507
# Python EVE Swagger Interface # https://github.com/nicoscha/PESI # ESI version 0.8.9 import ESI_request def get_alliances(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag List all active player alliances --- Alternate route: `/dev/alliances/` Alternate route: `/legacy/alliances/` Alternate route: `/v1/alliances/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/alliances/') def get_alliances_alliance_id(*, alliance_id, if_none_match=None): """ :param alliance_id: An EVE alliance ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Public information about an alliance --- Alternate route: `/dev/alliances/{alliance_id}/` Alternate route: `/v3/alliances/{alliance_id}/` --- This route is cached for up to 3600 seconds """ ESI_request.request(alliance_id=alliance_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/alliances/{alliance_id}/') def get_alliances_alliance_id_contacts(*, alliance_id, token, if_none_match=None, page='1'): """ :param alliance_id: An EVE alliance ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return contacts of an alliance --- Alternate route: `/dev/alliances/{alliance_id}/contacts/` Alternate route: `/v2/alliances/{alliance_id}/contacts/` --- This route is cached for up to 300 seconds """ ESI_request.request(alliance_id=alliance_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/alliances/{alliance_id}/contacts/') def get_alliances_alliance_id_contacts_labels(*, alliance_id, token, if_none_match=None): """ :param alliance_id: An EVE alliance ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return custom labels for an alliance's contacts --- Alternate route: `/dev/alliances/{alliance_id}/contacts/labels/` Alternate route: `/legacy/alliances/{alliance_id}/contacts/labels/` Alternate route: `/v1/alliances/{alliance_id}/contacts/labels/` --- This route is cached for up to 300 seconds """ ESI_request.request(alliance_id=alliance_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/alliances/{alliance_id}/contacts/labels/') def get_alliances_alliance_id_corporations(*, alliance_id, if_none_match=None): """ :param alliance_id: An EVE alliance ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag List all current member corporations of an alliance --- Alternate route: `/dev/alliances/{alliance_id}/corporations/` Alternate route: `/legacy/alliances/{alliance_id}/corporations/` Alternate route: `/v1/alliances/{alliance_id}/corporations/` --- This route is cached for up to 3600 seconds """ ESI_request.request(alliance_id=alliance_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/alliances/{alliance_id}/corporations/') def get_alliances_alliance_id_icons(*, alliance_id, if_none_match=None): """ :param alliance_id: An EVE alliance ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get the icon urls for a alliance --- Alternate route: `/dev/alliances/{alliance_id}/icons/` Alternate route: `/legacy/alliances/{alliance_id}/icons/` Alternate route: `/v1/alliances/{alliance_id}/icons/` --- This route expires daily at 11:05 """ ESI_request.request(alliance_id=alliance_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/alliances/{alliance_id}/icons/') def post_characters_affiliation(*, characters): """ :param characters: The character IDs to fetch affiliations for. All characters must exist, or none will be returned Bulk lookup of character IDs to corporation, alliance and faction --- Alternate route: `/dev/characters/affiliation/` Alternate route: `/legacy/characters/affiliation/` Alternate route: `/v1/characters/affiliation/` --- This route is cached for up to 3600 seconds """ ESI_request.request(characters=characters, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/characters/affiliation/') def get_characters_character_id(*, character_id, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Public information about a character --- Alternate route: `/dev/characters/{character_id}/` Alternate route: `/v4/characters/{character_id}/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/') def get_characters_character_id_agents_research(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return a list of agents research information for a character. The formula for finding the current research points with an agent is: currentPoints = remainderPoints + pointsPerDay * days(currentTime - researchStartDate) --- Alternate route: `/dev/characters/{character_id}/agents_research/` Alternate route: `/legacy/characters/{character_id}/agents_research/` Alternate route: `/v1/characters/{character_id}/agents_research/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/agents_research/') def get_characters_character_id_assets(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return a list of the characters assets --- Alternate route: `/dev/characters/{character_id}/assets/` Alternate route: `/v3/characters/{character_id}/assets/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/assets/') def post_characters_character_id_assets_locations(*, character_id, item_ids, token): """ :param character_id: An EVE character ID :param item_ids: A list of item ids :param token: Access token to use if unable to set a header Return locations for a set of item ids, which you can get from character assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0) --- Alternate route: `/dev/characters/{character_id}/assets/locations/` Alternate route: `/v2/characters/{character_id}/assets/locations/` """ ESI_request.request(character_id=character_id, item_ids=item_ids, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/characters/{character_id}/assets/locations/') def post_characters_character_id_assets_names(*, character_id, item_ids, token): """ :param character_id: An EVE character ID :param item_ids: A list of item ids :param token: Access token to use if unable to set a header Return names for a set of item ids, which you can get from character assets endpoint. Typically used for items that can customize names, like containers or ships. --- Alternate route: `/dev/characters/{character_id}/assets/names/` Alternate route: `/legacy/characters/{character_id}/assets/names/` Alternate route: `/v1/characters/{character_id}/assets/names/` """ ESI_request.request(character_id=character_id, item_ids=item_ids, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/characters/{character_id}/assets/names/') def get_characters_character_id_attributes(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return attributes of a character --- Alternate route: `/dev/characters/{character_id}/attributes/` Alternate route: `/legacy/characters/{character_id}/attributes/` Alternate route: `/v1/characters/{character_id}/attributes/` --- This route is cached for up to 120 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/attributes/') def get_characters_character_id_blueprints(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return a list of blueprints the character owns --- Alternate route: `/dev/characters/{character_id}/blueprints/` Alternate route: `/v2/characters/{character_id}/blueprints/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/blueprints/') def get_characters_character_id_bookmarks(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header A list of your character's personal bookmarks --- Alternate route: `/dev/characters/{character_id}/bookmarks/` Alternate route: `/v2/characters/{character_id}/bookmarks/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/bookmarks/') def get_characters_character_id_bookmarks_folders(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header A list of your character's personal bookmark folders --- Alternate route: `/dev/characters/{character_id}/bookmarks/folders/` Alternate route: `/v2/characters/{character_id}/bookmarks/folders/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/bookmarks/folders/') def get_characters_character_id_calendar(*, character_id, from_event, token, if_none_match=None): """ :param character_id: An EVE character ID :param from_event: The event ID to retrieve events from :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Get 50 event summaries from the calendar. If no from_event ID is given, the resource will return the next 50 chronological event summaries from now. If a from_event ID is specified, it will return the next 50 chronological event summaries from after that event --- Alternate route: `/dev/characters/{character_id}/calendar/` Alternate route: `/legacy/characters/{character_id}/calendar/` Alternate route: `/v1/characters/{character_id}/calendar/` --- This route is cached for up to 5 seconds """ ESI_request.request(character_id=character_id, from_event=from_event, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/calendar/') def get_characters_character_id_calendar_event_id(*, character_id, event_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param event_id: The id of the event requested :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Get all the information for a specific event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/` Alternate route: `/v3/characters/{character_id}/calendar/{event_id}/` --- This route is cached for up to 5 seconds """ ESI_request.request( character_id=character_id, event_id=event_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/calendar/{event_id}/') def put_characters_character_id_calendar_event_id(*, character_id, event_id, response, token): """ :param character_id: An EVE character ID :param event_id: The ID of the event requested :param response: The response value to set, overriding current value :param token: Access token to use if unable to set a header Set your response status to an event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/` Alternate route: `/v3/characters/{character_id}/calendar/{event_id}/` """ ESI_request.request( character_id=character_id, event_id=event_id, response=response, token=token, data_source='tranquility', version='latest', HTTP_method='PUT', path=f'/characters/{character_id}/calendar/{event_id}/') def get_characters_character_id_calendar_event_id_attendees( *, character_id, event_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param event_id: The id of the event requested :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Get all invited attendees for a given event --- Alternate route: `/dev/characters/{character_id}/calendar/{event_id}/attendees/` Alternate route: `/legacy/characters/{character_id}/calendar/{event_id}/attendees/` Alternate route: `/v1/characters/{character_id}/calendar/{event_id}/attendees/` --- This route is cached for up to 600 seconds """ ESI_request.request( character_id=character_id, event_id=event_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/calendar/{event_id}/attendees/') def get_characters_character_id_clones(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header A list of the character's clones --- Alternate route: `/dev/characters/{character_id}/clones/` Alternate route: `/v3/characters/{character_id}/clones/` --- This route is cached for up to 120 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/clones/') def delete_characters_character_id_contacts(*, character_id, contact_ids, token): """ :param character_id: An EVE character ID :param contact_ids: A list of contacts to delete :param token: Access token to use if unable to set a header Bulk delete contacts --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` """ ESI_request.request(character_id=character_id, contact_ids=contact_ids, token=token, data_source='tranquility', version='latest', HTTP_method='DELETE', path=f'/characters/{character_id}/contacts/') def get_characters_character_id_contacts(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return contacts of a character --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` --- This route is cached for up to 300 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/contacts/') def post_characters_character_id_contacts(*, character_id, contact_ids, label_ids, standing, token, watched): """ :param character_id: An EVE character ID :param contact_ids: A list of contacts :param label_ids: Add custom labels to the new contact :param standing: Standing for the contact :param token: Access token to use if unable to set a header :param watched: Whether the contact should be watched, note this is only effective on characters Bulk add contacts with same settings --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` """ ESI_request.request(character_id=character_id, contact_ids=contact_ids, label_ids=label_ids, standing=standing, token=token, watched=watched, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/characters/{character_id}/contacts/') def put_characters_character_id_contacts(*, character_id, contact_ids, label_ids, standing, token, watched): """ :param character_id: An EVE character ID :param contact_ids: A list of contacts :param label_ids: Add custom labels to the contact :param standing: Standing for the contact :param token: Access token to use if unable to set a header :param watched: Whether the contact should be watched, note this is only effective on characters Bulk edit contacts with same settings --- Alternate route: `/dev/characters/{character_id}/contacts/` Alternate route: `/v2/characters/{character_id}/contacts/` """ ESI_request.request(character_id=character_id, contact_ids=contact_ids, label_ids=label_ids, standing=standing, token=token, watched=watched, data_source='tranquility', version='latest', HTTP_method='PUT', path=f'/characters/{character_id}/contacts/') def get_characters_character_id_contacts_labels(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return custom labels for a character's contacts --- Alternate route: `/dev/characters/{character_id}/contacts/labels/` Alternate route: `/legacy/characters/{character_id}/contacts/labels/` Alternate route: `/v1/characters/{character_id}/contacts/labels/` --- This route is cached for up to 300 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/contacts/labels/') def get_characters_character_id_contracts(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Returns contracts available to a character, only if the character is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is "in_progress". --- Alternate route: `/dev/characters/{character_id}/contracts/` Alternate route: `/legacy/characters/{character_id}/contracts/` Alternate route: `/v1/characters/{character_id}/contracts/` --- This route is cached for up to 300 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/contracts/') def get_characters_character_id_contracts_contract_id_bids( *, character_id, contract_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param contract_id: ID of a contract :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Lists bids on a particular auction contract --- Alternate route: `/dev/characters/{character_id}/contracts/{contract_id}/bids/` Alternate route: `/legacy/characters/{character_id}/contracts/{contract_id}/bids/` Alternate route: `/v1/characters/{character_id}/contracts/{contract_id}/bids/` --- This route is cached for up to 300 seconds """ ESI_request.request( character_id=character_id, contract_id=contract_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/contracts/{contract_id}/bids/') def get_characters_character_id_contracts_contract_id_items( *, character_id, contract_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param contract_id: ID of a contract :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Lists items of a particular contract --- Alternate route: `/dev/characters/{character_id}/contracts/{contract_id}/items/` Alternate route: `/legacy/characters/{character_id}/contracts/{contract_id}/items/` Alternate route: `/v1/characters/{character_id}/contracts/{contract_id}/items/` --- This route is cached for up to 3600 seconds """ ESI_request.request( character_id=character_id, contract_id=contract_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/contracts/{contract_id}/items/') def get_characters_character_id_corporationhistory(*, character_id, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of all the corporations a character has been a member of --- Alternate route: `/dev/characters/{character_id}/corporationhistory/` Alternate route: `/legacy/characters/{character_id}/corporationhistory/` Alternate route: `/v1/characters/{character_id}/corporationhistory/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/corporationhistory/') def post_characters_character_id_cspa(*, character_id, characters, token): """ :param character_id: An EVE character ID :param characters: The target characters to calculate the charge for :param token: Access token to use if unable to set a header Takes a source character ID in the url and a set of target character ID's in the body, returns a CSPA charge cost --- Alternate route: `/dev/characters/{character_id}/cspa/` Alternate route: `/v4/characters/{character_id}/cspa/` """ ESI_request.request(character_id=character_id, characters=characters, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/characters/{character_id}/cspa/') def get_characters_character_id_fatigue(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return a character's jump activation and fatigue information --- Alternate route: `/dev/characters/{character_id}/fatigue/` Alternate route: `/legacy/characters/{character_id}/fatigue/` Alternate route: `/v1/characters/{character_id}/fatigue/` --- This route is cached for up to 300 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/fatigue/') def get_characters_character_id_fittings(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return fittings of a character --- Alternate route: `/dev/characters/{character_id}/fittings/` Alternate route: `/v2/characters/{character_id}/fittings/` --- This route is cached for up to 300 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/fittings/') def post_characters_character_id_fittings(*, character_id, fitting, token): """ :param character_id: An EVE character ID :param fitting: Details about the new fitting :param token: Access token to use if unable to set a header Save a new fitting for a character --- Alternate route: `/dev/characters/{character_id}/fittings/` Alternate route: `/v2/characters/{character_id}/fittings/` """ ESI_request.request(character_id=character_id, fitting=fitting, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/characters/{character_id}/fittings/') def delete_characters_character_id_fittings_fitting_id(*, character_id, fitting_id, token): """ :param character_id: An EVE character ID :param fitting_id: ID for a fitting of this character :param token: Access token to use if unable to set a header Delete a fitting from a character --- Alternate route: `/dev/characters/{character_id}/fittings/{fitting_id}/` Alternate route: `/legacy/characters/{character_id}/fittings/{fitting_id}/` Alternate route: `/v1/characters/{character_id}/fittings/{fitting_id}/` """ ESI_request.request( character_id=character_id, fitting_id=fitting_id, token=token, data_source='tranquility', version='latest', HTTP_method='DELETE', path=f'/characters/{character_id}/fittings/{fitting_id}/') def get_characters_character_id_fleet(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return the fleet ID the character is in, if any. --- Alternate route: `/legacy/characters/{character_id}/fleet/` Alternate route: `/v1/characters/{character_id}/fleet/` --- This route is cached for up to 60 seconds --- Warning: This route has an upgrade available --- [Diff of the upcoming changes](https://esi.evetech.net/diff/latest/dev/#GET-/characters/{character_id}/fleet/) """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/fleet/') def get_characters_character_id_fw_stats(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Statistical overview of a character involved in faction warfare --- Alternate route: `/dev/characters/{character_id}/fw/stats/` Alternate route: `/legacy/characters/{character_id}/fw/stats/` Alternate route: `/v1/characters/{character_id}/fw/stats/` --- This route expires daily at 11:05 """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/fw/stats/') def get_characters_character_id_implants(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return implants on the active clone of a character --- Alternate route: `/dev/characters/{character_id}/implants/` Alternate route: `/legacy/characters/{character_id}/implants/` Alternate route: `/v1/characters/{character_id}/implants/` --- This route is cached for up to 120 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/implants/') def get_characters_character_id_industry_jobs(*, character_id, include_completed, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param include_completed: Whether to retrieve completed character industry jobs. Only includes jobs from the past 90 days :param token: Access token to use if unable to set a header List industry jobs placed by a character --- Alternate route: `/dev/characters/{character_id}/industry/jobs/` Alternate route: `/legacy/characters/{character_id}/industry/jobs/` Alternate route: `/v1/characters/{character_id}/industry/jobs/` --- This route is cached for up to 300 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, include_completed=include_completed, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/industry/jobs/') def get_characters_character_id_killmails_recent(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return a list of a character's kills and losses going back 90 days --- Alternate route: `/dev/characters/{character_id}/killmails/recent/` Alternate route: `/legacy/characters/{character_id}/killmails/recent/` Alternate route: `/v1/characters/{character_id}/killmails/recent/` --- This route is cached for up to 300 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/killmails/recent/') def get_characters_character_id_location(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Information about the characters current location. Returns the current solar system id, and also the current station or structure ID if applicable --- Alternate route: `/legacy/characters/{character_id}/location/` Alternate route: `/v1/characters/{character_id}/location/` --- This route is cached for up to 5 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/location/') def get_characters_character_id_loyalty_points(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return a list of loyalty points for all corporations the character has worked for --- Alternate route: `/dev/characters/{character_id}/loyalty/points/` Alternate route: `/legacy/characters/{character_id}/loyalty/points/` Alternate route: `/v1/characters/{character_id}/loyalty/points/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/loyalty/points/') def get_characters_character_id_mail(*, character_id, labels, last_mail_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param labels: Fetch only mails that match one or more of the given labels :param last_mail_id: List only mail with an ID lower than the given ID, if present :param token: Access token to use if unable to set a header Return the 50 most recent mail headers belonging to the character that match the query criteria. Queries can be filtered by label, and last_mail_id can be used to paginate backwards --- Alternate route: `/dev/characters/{character_id}/mail/` Alternate route: `/legacy/characters/{character_id}/mail/` Alternate route: `/v1/characters/{character_id}/mail/` --- This route is cached for up to 30 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, labels=labels, last_mail_id=last_mail_id, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/mail/') def post_characters_character_id_mail(*, character_id, mail, token): """ :param character_id: An EVE character ID :param mail: The mail to send :param token: Access token to use if unable to set a header Create and send a new mail --- Alternate route: `/dev/characters/{character_id}/mail/` Alternate route: `/legacy/characters/{character_id}/mail/` Alternate route: `/v1/characters/{character_id}/mail/` """ ESI_request.request(character_id=character_id, mail=mail, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/characters/{character_id}/mail/') def get_characters_character_id_mail_labels(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return a list of the users mail labels, unread counts for each label and a total unread count. --- Alternate route: `/dev/characters/{character_id}/mail/labels/` Alternate route: `/v3/characters/{character_id}/mail/labels/` --- This route is cached for up to 30 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/mail/labels/') def post_characters_character_id_mail_labels(*, character_id, label, token): """ :param character_id: An EVE character ID :param label: Label to create :param token: Access token to use if unable to set a header Create a mail label --- Alternate route: `/dev/characters/{character_id}/mail/labels/` Alternate route: `/legacy/characters/{character_id}/mail/labels/` Alternate route: `/v2/characters/{character_id}/mail/labels/` """ ESI_request.request(character_id=character_id, label=label, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/characters/{character_id}/mail/labels/') def delete_characters_character_id_mail_labels_label_id( *, character_id, label_id, token): """ :param character_id: An EVE character ID :param label_id: An EVE label id :param token: Access token to use if unable to set a header Delete a mail label --- Alternate route: `/dev/characters/{character_id}/mail/labels/{label_id}/` Alternate route: `/legacy/characters/{character_id}/mail/labels/{label_id}/` Alternate route: `/v1/characters/{character_id}/mail/labels/{label_id}/` """ ESI_request.request( character_id=character_id, label_id=label_id, token=token, data_source='tranquility', version='latest', HTTP_method='DELETE', path=f'/characters/{character_id}/mail/labels/{label_id}/') def get_characters_character_id_mail_lists(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return all mailing lists that the character is subscribed to --- Alternate route: `/dev/characters/{character_id}/mail/lists/` Alternate route: `/legacy/characters/{character_id}/mail/lists/` Alternate route: `/v1/characters/{character_id}/mail/lists/` --- This route is cached for up to 120 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/mail/lists/') def delete_characters_character_id_mail_mail_id(*, character_id, mail_id, token): """ :param character_id: An EVE character ID :param mail_id: An EVE mail ID :param token: Access token to use if unable to set a header Delete a mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` """ ESI_request.request(character_id=character_id, mail_id=mail_id, token=token, data_source='tranquility', version='latest', HTTP_method='DELETE', path=f'/characters/{character_id}/mail/{mail_id}/') def get_characters_character_id_mail_mail_id(*, character_id, mail_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param mail_id: An EVE mail ID :param token: Access token to use if unable to set a header Return the contents of an EVE mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` --- This route is cached for up to 30 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, mail_id=mail_id, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/mail/{mail_id}/') def put_characters_character_id_mail_mail_id(*, character_id, contents, mail_id, token): """ :param character_id: An EVE character ID :param contents: Data used to update the mail :param mail_id: An EVE mail ID :param token: Access token to use if unable to set a header Update metadata about a mail --- Alternate route: `/dev/characters/{character_id}/mail/{mail_id}/` Alternate route: `/legacy/characters/{character_id}/mail/{mail_id}/` Alternate route: `/v1/characters/{character_id}/mail/{mail_id}/` """ ESI_request.request(character_id=character_id, contents=contents, mail_id=mail_id, token=token, data_source='tranquility', version='latest', HTTP_method='PUT', path=f'/characters/{character_id}/mail/{mail_id}/') def get_characters_character_id_medals(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return a list of medals the character has --- Alternate route: `/dev/characters/{character_id}/medals/` Alternate route: `/legacy/characters/{character_id}/medals/` Alternate route: `/v1/characters/{character_id}/medals/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/medals/') def get_characters_character_id_mining(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Paginated record of all mining done by a character for the past 30 days --- Alternate route: `/dev/characters/{character_id}/mining/` Alternate route: `/legacy/characters/{character_id}/mining/` Alternate route: `/v1/characters/{character_id}/mining/` --- This route is cached for up to 600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/mining/') def get_characters_character_id_notifications(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return character notifications --- Alternate route: `/dev/characters/{character_id}/notifications/` Alternate route: `/v5/characters/{character_id}/notifications/` --- This route is cached for up to 600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/notifications/') def get_characters_character_id_notifications_contacts(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return notifications about having been added to someone's contact list --- Alternate route: `/dev/characters/{character_id}/notifications/contacts/` Alternate route: `/legacy/characters/{character_id}/notifications/contacts/` Alternate route: `/v1/characters/{character_id}/notifications/contacts/` --- This route is cached for up to 600 seconds """ ESI_request.request( character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/notifications/contacts/') def get_characters_character_id_online(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Checks if the character is currently online --- Alternate route: `/v2/characters/{character_id}/online/` --- This route is cached for up to 60 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/online/') def get_characters_character_id_opportunities(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return a list of tasks finished by a character --- Alternate route: `/dev/characters/{character_id}/opportunities/` Alternate route: `/legacy/characters/{character_id}/opportunities/` Alternate route: `/v1/characters/{character_id}/opportunities/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/opportunities/') def get_characters_character_id_orders(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header List open market orders placed by a character --- Alternate route: `/dev/characters/{character_id}/orders/` Alternate route: `/v2/characters/{character_id}/orders/` --- This route is cached for up to 1200 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/orders/') def get_characters_character_id_orders_history(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header List cancelled and expired market orders placed by a character up to 90 days in the past. --- Alternate route: `/dev/characters/{character_id}/orders/history/` Alternate route: `/legacy/characters/{character_id}/orders/history/` Alternate route: `/v1/characters/{character_id}/orders/history/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/orders/history/') def get_characters_character_id_planets(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Returns a list of all planetary colonies owned by a character. --- Alternate route: `/dev/characters/{character_id}/planets/` Alternate route: `/legacy/characters/{character_id}/planets/` Alternate route: `/v1/characters/{character_id}/planets/` --- This route is cached for up to 600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/planets/') def get_characters_character_id_planets_planet_id(*, character_id, planet_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param planet_id: Planet id of the target planet :param token: Access token to use if unable to set a header Returns full details on the layout of a single planetary colony, including links, pins and routes. Note: Planetary information is only recalculated when the colony is viewed through the client. Information will not update until this criteria is met. --- Alternate route: `/dev/characters/{character_id}/planets/{planet_id}/` Alternate route: `/v3/characters/{character_id}/planets/{planet_id}/` --- This route is cached for up to 600 seconds """ ESI_request.request( character_id=character_id, if_none_match=if_none_match, planet_id=planet_id, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/planets/{planet_id}/') def get_characters_character_id_portrait(*, character_id, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get portrait urls for a character --- Alternate route: `/dev/characters/{character_id}/portrait/` Alternate route: `/v2/characters/{character_id}/portrait/` --- This route expires daily at 11:05 """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/portrait/') def get_characters_character_id_roles(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Returns a character's corporation roles --- Alternate route: `/dev/characters/{character_id}/roles/` Alternate route: `/v2/characters/{character_id}/roles/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/roles/') def get_characters_character_id_search(*, categories, character_id, language, search, strict, token, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param categories: Type of entities to search for :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param search: The string to search on :param strict: Whether the search should be a strict match :param token: Access token to use if unable to set a header Search for entities that match a given sub-string. --- Alternate route: `/dev/characters/{character_id}/search/` Alternate route: `/legacy/characters/{character_id}/search/` Alternate route: `/v3/characters/{character_id}/search/` --- This route is cached for up to 3600 seconds """ ESI_request.request(accept_language=accept_language, categories=categories, character_id=character_id, if_none_match=if_none_match, language=language, search=search, strict=strict, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/search/') def get_characters_character_id_ship(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Get the current ship type, name and id --- Alternate route: `/legacy/characters/{character_id}/ship/` Alternate route: `/v1/characters/{character_id}/ship/` --- This route is cached for up to 5 seconds --- [Diff of the upcoming changes](https://esi.evetech.net/diff/latest/dev/#GET-/characters/{character_id}/ship/) """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/ship/') def get_characters_character_id_skillqueue(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header List the configured skill queue for the given character --- Alternate route: `/dev/characters/{character_id}/skillqueue/` Alternate route: `/legacy/characters/{character_id}/skillqueue/` Alternate route: `/v2/characters/{character_id}/skillqueue/` --- This route is cached for up to 120 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/skillqueue/') def get_characters_character_id_skills(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header List all trained skills for the given character --- Alternate route: `/dev/characters/{character_id}/skills/` Alternate route: `/v4/characters/{character_id}/skills/` --- This route is cached for up to 120 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/skills/') def get_characters_character_id_standings(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return character standings from agents, NPC corporations, and factions --- Alternate route: `/dev/characters/{character_id}/standings/` Alternate route: `/legacy/characters/{character_id}/standings/` Alternate route: `/v1/characters/{character_id}/standings/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/standings/') def get_characters_character_id_stats(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Returns aggregate yearly stats for a character --- Alternate route: `/dev/characters/{character_id}/stats/` Alternate route: `/v2/characters/{character_id}/stats/` --- This route is cached for up to 86400 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/stats/') def get_characters_character_id_titles(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Returns a character's titles --- Alternate route: `/dev/characters/{character_id}/titles/` Alternate route: `/legacy/characters/{character_id}/titles/` Alternate route: `/v1/characters/{character_id}/titles/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/titles/') def get_characters_character_id_wallet(*, character_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Returns a character's wallet balance --- Alternate route: `/dev/characters/{character_id}/wallet/` Alternate route: `/legacy/characters/{character_id}/wallet/` Alternate route: `/v1/characters/{character_id}/wallet/` --- This route is cached for up to 120 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/wallet/') def get_characters_character_id_wallet_journal(*, character_id, token, if_none_match=None, page='1'): """ :param character_id: An EVE character ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Retrieve the given character's wallet journal going 30 days back --- Alternate route: `/dev/characters/{character_id}/wallet/journal/` Alternate route: `/v6/characters/{character_id}/wallet/journal/` --- This route is cached for up to 3600 seconds """ ESI_request.request(character_id=character_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/wallet/journal/') def get_characters_character_id_wallet_transactions(*, character_id, from_id, token, if_none_match=None): """ :param character_id: An EVE character ID :param from_id: Only show transactions happened before the one referenced by this id :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Get wallet transactions of a character --- Alternate route: `/dev/characters/{character_id}/wallet/transactions/` Alternate route: `/legacy/characters/{character_id}/wallet/transactions/` Alternate route: `/v1/characters/{character_id}/wallet/transactions/` --- This route is cached for up to 3600 seconds """ ESI_request.request( character_id=character_id, from_id=from_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/characters/{character_id}/wallet/transactions/') def get_contracts_public_bids_contract_id(*, contract_id, if_none_match=None, page='1'): """ :param contract_id: ID of a contract :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return Lists bids on a public auction contract --- Alternate route: `/dev/contracts/public/bids/{contract_id}/` Alternate route: `/legacy/contracts/public/bids/{contract_id}/` Alternate route: `/v1/contracts/public/bids/{contract_id}/` --- This route is cached for up to 300 seconds """ ESI_request.request(contract_id=contract_id, if_none_match=if_none_match, page=page, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/contracts/public/bids/{contract_id}/') def get_contracts_public_items_contract_id(*, contract_id, if_none_match=None, page='1'): """ :param contract_id: ID of a contract :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return Lists items of a public contract --- Alternate route: `/dev/contracts/public/items/{contract_id}/` Alternate route: `/legacy/contracts/public/items/{contract_id}/` Alternate route: `/v1/contracts/public/items/{contract_id}/` --- This route is cached for up to 3600 seconds """ ESI_request.request(contract_id=contract_id, if_none_match=if_none_match, page=page, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/contracts/public/items/{contract_id}/') def get_contracts_public_region_id(*, region_id, if_none_match=None, page='1'): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param region_id: An EVE region id Returns a paginated list of all public contracts in the given region --- Alternate route: `/dev/contracts/public/{region_id}/` Alternate route: `/legacy/contracts/public/{region_id}/` Alternate route: `/v1/contracts/public/{region_id}/` --- This route is cached for up to 1800 seconds """ ESI_request.request(if_none_match=if_none_match, page=page, region_id=region_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/contracts/public/{region_id}/') def get_corporation_corporation_id_mining_extractions(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Extraction timers for all moon chunks being extracted by refineries belonging to a corporation. --- Alternate route: `/dev/corporation/{corporation_id}/mining/extractions/` Alternate route: `/legacy/corporation/{corporation_id}/mining/extractions/` Alternate route: `/v1/corporation/{corporation_id}/mining/extractions/` --- This route is cached for up to 1800 seconds --- Requires one of the following EVE corporation role(s): Station_Manager """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporation/{corporation_id}/mining/extractions/') def get_corporation_corporation_id_mining_observers(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Paginated list of all entities capable of observing and recording mining for a corporation --- Alternate route: `/dev/corporation/{corporation_id}/mining/observers/` Alternate route: `/legacy/corporation/{corporation_id}/mining/observers/` Alternate route: `/v1/corporation/{corporation_id}/mining/observers/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporation/{corporation_id}/mining/observers/') def get_corporation_corporation_id_mining_observers_observer_id( *, corporation_id, observer_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param observer_id: A mining observer id :param page: Which page of results to return :param token: Access token to use if unable to set a header Paginated record of all mining seen by an observer --- Alternate route: `/dev/corporation/{corporation_id}/mining/observers/{observer_id}/` Alternate route: `/legacy/corporation/{corporation_id}/mining/observers/{observer_id}/` Alternate route: `/v1/corporation/{corporation_id}/mining/observers/{observer_id}/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, observer_id=observer_id, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporation/{corporation_id}/mining/observers/{observer_id}/') def get_corporations_npccorps(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of npc corporations --- Alternate route: `/dev/corporations/npccorps/` Alternate route: `/legacy/corporations/npccorps/` Alternate route: `/v1/corporations/npccorps/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/npccorps/') def get_corporations_corporation_id(*, corporation_id, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Public information about a corporation --- Alternate route: `/dev/corporations/{corporation_id}/` Alternate route: `/v4/corporations/{corporation_id}/` --- This route is cached for up to 3600 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/') def get_corporations_corporation_id_alliancehistory(*, corporation_id, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of all the alliances a corporation has been a member of --- Alternate route: `/dev/corporations/{corporation_id}/alliancehistory/` Alternate route: `/v2/corporations/{corporation_id}/alliancehistory/` --- This route is cached for up to 3600 seconds """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/alliancehistory/') def get_corporations_corporation_id_assets(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return a list of the corporation assets --- Alternate route: `/dev/corporations/{corporation_id}/assets/` Alternate route: `/v3/corporations/{corporation_id}/assets/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/assets/') def post_corporations_corporation_id_assets_locations(*, corporation_id, item_ids, token): """ :param corporation_id: An EVE corporation ID :param item_ids: A list of item ids :param token: Access token to use if unable to set a header Return locations for a set of item ids, which you can get from corporation assets endpoint. Coordinates for items in hangars or stations are set to (0,0,0) --- Alternate route: `/dev/corporations/{corporation_id}/assets/locations/` Alternate route: `/v2/corporations/{corporation_id}/assets/locations/` --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request( corporation_id=corporation_id, item_ids=item_ids, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/corporations/{corporation_id}/assets/locations/') def post_corporations_corporation_id_assets_names(*, corporation_id, item_ids, token): """ :param corporation_id: An EVE corporation ID :param item_ids: A list of item ids :param token: Access token to use if unable to set a header Return names for a set of item ids, which you can get from corporation assets endpoint. Only valid for items that can customize names, like containers or ships --- Alternate route: `/dev/corporations/{corporation_id}/assets/names/` Alternate route: `/legacy/corporations/{corporation_id}/assets/names/` Alternate route: `/v1/corporations/{corporation_id}/assets/names/` --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, item_ids=item_ids, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/corporations/{corporation_id}/assets/names/') def get_corporations_corporation_id_blueprints(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Returns a list of blueprints the corporation owns --- Alternate route: `/dev/corporations/{corporation_id}/blueprints/` Alternate route: `/v2/corporations/{corporation_id}/blueprints/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/blueprints/') def get_corporations_corporation_id_bookmarks(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header A list of your corporation's bookmarks --- Alternate route: `/dev/corporations/{corporation_id}/bookmarks/` Alternate route: `/legacy/corporations/{corporation_id}/bookmarks/` Alternate route: `/v1/corporations/{corporation_id}/bookmarks/` --- This route is cached for up to 3600 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/bookmarks/') def get_corporations_corporation_id_bookmarks_folders(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header A list of your corporation's bookmark folders --- Alternate route: `/dev/corporations/{corporation_id}/bookmarks/folders/` Alternate route: `/legacy/corporations/{corporation_id}/bookmarks/folders/` Alternate route: `/v1/corporations/{corporation_id}/bookmarks/folders/` --- This route is cached for up to 3600 seconds """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/bookmarks/folders/') def get_corporations_corporation_id_contacts(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return contacts of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/contacts/` Alternate route: `/v2/corporations/{corporation_id}/contacts/` --- This route is cached for up to 300 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/contacts/') def get_corporations_corporation_id_contacts_labels(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return custom labels for a corporation's contacts --- Alternate route: `/dev/corporations/{corporation_id}/contacts/labels/` Alternate route: `/legacy/corporations/{corporation_id}/contacts/labels/` Alternate route: `/v1/corporations/{corporation_id}/contacts/labels/` --- This route is cached for up to 300 seconds """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/contacts/labels/') def get_corporations_corporation_id_containers_logs(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Returns logs recorded in the past seven days from all audit log secure containers (ALSC) owned by a given corporation --- Alternate route: `/dev/corporations/{corporation_id}/containers/logs/` Alternate route: `/v2/corporations/{corporation_id}/containers/logs/` --- This route is cached for up to 600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/containers/logs/') def get_corporations_corporation_id_contracts(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Returns contracts available to a corporation, only if the corporation is issuer, acceptor or assignee. Only returns contracts no older than 30 days, or if the status is "in_progress". --- Alternate route: `/dev/corporations/{corporation_id}/contracts/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/` Alternate route: `/v1/corporations/{corporation_id}/contracts/` --- This route is cached for up to 300 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/contracts/') def get_corporations_corporation_id_contracts_contract_id_bids( *, contract_id, corporation_id, token, if_none_match=None, page='1'): """ :param contract_id: ID of a contract :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Lists bids on a particular auction contract --- Alternate route: `/dev/corporations/{corporation_id}/contracts/{contract_id}/bids/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/{contract_id}/bids/` Alternate route: `/v1/corporations/{corporation_id}/contracts/{contract_id}/bids/` --- This route is cached for up to 3600 seconds """ ESI_request.request( contract_id=contract_id, corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/contracts/{contract_id}/bids/') def get_corporations_corporation_id_contracts_contract_id_items( *, contract_id, corporation_id, token, if_none_match=None): """ :param contract_id: ID of a contract :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Lists items of a particular contract --- Alternate route: `/dev/corporations/{corporation_id}/contracts/{contract_id}/items/` Alternate route: `/legacy/corporations/{corporation_id}/contracts/{contract_id}/items/` Alternate route: `/v1/corporations/{corporation_id}/contracts/{contract_id}/items/` --- This route is cached for up to 3600 seconds """ ESI_request.request( contract_id=contract_id, corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/contracts/{contract_id}/items/') def get_corporations_corporation_id_customs_offices(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header List customs offices owned by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/customs_offices/` Alternate route: `/legacy/corporations/{corporation_id}/customs_offices/` Alternate route: `/v1/corporations/{corporation_id}/customs_offices/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/customs_offices/') def get_corporations_corporation_id_divisions(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return corporation hangar and wallet division names, only show if a division is not using the default name --- Alternate route: `/dev/corporations/{corporation_id}/divisions/` Alternate route: `/legacy/corporations/{corporation_id}/divisions/` Alternate route: `/v1/corporations/{corporation_id}/divisions/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/divisions/') def get_corporations_corporation_id_facilities(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return a corporation's facilities --- Alternate route: `/dev/corporations/{corporation_id}/facilities/` Alternate route: `/legacy/corporations/{corporation_id}/facilities/` Alternate route: `/v1/corporations/{corporation_id}/facilities/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Factory_Manager """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/facilities/') def get_corporations_corporation_id_fw_stats(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Statistics about a corporation involved in faction warfare --- Alternate route: `/dev/corporations/{corporation_id}/fw/stats/` Alternate route: `/legacy/corporations/{corporation_id}/fw/stats/` Alternate route: `/v1/corporations/{corporation_id}/fw/stats/` --- This route expires daily at 11:05 """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/fw/stats/') def get_corporations_corporation_id_icons(*, corporation_id, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get the icon urls for a corporation --- Alternate route: `/dev/corporations/{corporation_id}/icons/` Alternate route: `/legacy/corporations/{corporation_id}/icons/` Alternate route: `/v1/corporations/{corporation_id}/icons/` --- This route is cached for up to 3600 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/icons/') def get_corporations_corporation_id_industry_jobs(*, corporation_id, include_completed, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param include_completed: Whether to retrieve completed corporation industry jobs. Only includes jobs from the past 90 days :param page: Which page of results to return :param token: Access token to use if unable to set a header List industry jobs run by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/industry/jobs/` Alternate route: `/legacy/corporations/{corporation_id}/industry/jobs/` Alternate route: `/v1/corporations/{corporation_id}/industry/jobs/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): Factory_Manager """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, include_completed=include_completed, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/industry/jobs/') def get_corporations_corporation_id_killmails_recent(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Get a list of a corporation's kills and losses going back 90 days --- Alternate route: `/dev/corporations/{corporation_id}/killmails/recent/` Alternate route: `/legacy/corporations/{corporation_id}/killmails/recent/` Alternate route: `/v1/corporations/{corporation_id}/killmails/recent/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/killmails/recent/') def get_corporations_corporation_id_medals(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Returns a corporation's medals --- Alternate route: `/dev/corporations/{corporation_id}/medals/` Alternate route: `/legacy/corporations/{corporation_id}/medals/` Alternate route: `/v1/corporations/{corporation_id}/medals/` --- This route is cached for up to 3600 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/medals/') def get_corporations_corporation_id_medals_issued(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Returns medals issued by a corporation --- Alternate route: `/dev/corporations/{corporation_id}/medals/issued/` Alternate route: `/legacy/corporations/{corporation_id}/medals/issued/` Alternate route: `/v1/corporations/{corporation_id}/medals/issued/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/medals/issued/') def get_corporations_corporation_id_members(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return the current member list of a corporation, the token's character need to be a member of the corporation. --- Alternate route: `/dev/corporations/{corporation_id}/members/` Alternate route: `/v3/corporations/{corporation_id}/members/` --- This route is cached for up to 3600 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/members/') def get_corporations_corporation_id_members_limit(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return a corporation's member limit, not including CEO himself --- Alternate route: `/dev/corporations/{corporation_id}/members/limit/` Alternate route: `/legacy/corporations/{corporation_id}/members/limit/` Alternate route: `/v1/corporations/{corporation_id}/members/limit/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/members/limit/') def get_corporations_corporation_id_members_titles(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Returns a corporation's members' titles --- Alternate route: `/dev/corporations/{corporation_id}/members/titles/` Alternate route: `/legacy/corporations/{corporation_id}/members/titles/` Alternate route: `/v1/corporations/{corporation_id}/members/titles/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/members/titles/') def get_corporations_corporation_id_membertracking(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Returns additional information about a corporation's members which helps tracking their activities --- Alternate route: `/dev/corporations/{corporation_id}/membertracking/` Alternate route: `/legacy/corporations/{corporation_id}/membertracking/` Alternate route: `/v1/corporations/{corporation_id}/membertracking/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/membertracking/') def get_corporations_corporation_id_orders(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header List open market orders placed on behalf of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/orders/` Alternate route: `/v3/corporations/{corporation_id}/orders/` --- This route is cached for up to 1200 seconds --- Requires one of the following EVE corporation role(s): Accountant, Trader """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/orders/') def get_corporations_corporation_id_orders_history(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header List cancelled and expired market orders placed on behalf of a corporation up to 90 days in the past. --- Alternate route: `/dev/corporations/{corporation_id}/orders/history/` Alternate route: `/v2/corporations/{corporation_id}/orders/history/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Trader """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/orders/history/') def get_corporations_corporation_id_roles(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return the roles of all members if the character has the personnel manager role or any grantable role. --- Alternate route: `/dev/corporations/{corporation_id}/roles/` Alternate route: `/legacy/corporations/{corporation_id}/roles/` Alternate route: `/v1/corporations/{corporation_id}/roles/` --- This route is cached for up to 3600 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/roles/') def get_corporations_corporation_id_roles_history(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return how roles have changed for a coporation's members, up to a month --- Alternate route: `/dev/corporations/{corporation_id}/roles/history/` Alternate route: `/legacy/corporations/{corporation_id}/roles/history/` Alternate route: `/v1/corporations/{corporation_id}/roles/history/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/roles/history/') def get_corporations_corporation_id_shareholders(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return the current shareholders of a corporation. --- Alternate route: `/dev/corporations/{corporation_id}/shareholders/` Alternate route: `/legacy/corporations/{corporation_id}/shareholders/` Alternate route: `/v1/corporations/{corporation_id}/shareholders/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/shareholders/') def get_corporations_corporation_id_standings(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Return corporation standings from agents, NPC corporations, and factions --- Alternate route: `/dev/corporations/{corporation_id}/standings/` Alternate route: `/legacy/corporations/{corporation_id}/standings/` Alternate route: `/v1/corporations/{corporation_id}/standings/` --- This route is cached for up to 3600 seconds """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/standings/') def get_corporations_corporation_id_starbases(*, corporation_id, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Returns list of corporation starbases (POSes) --- Alternate route: `/dev/corporations/{corporation_id}/starbases/` Alternate route: `/legacy/corporations/{corporation_id}/starbases/` Alternate route: `/v1/corporations/{corporation_id}/starbases/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/starbases/') def get_corporations_corporation_id_starbases_starbase_id( *, corporation_id, starbase_id, system_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param starbase_id: An EVE starbase (POS) ID :param system_id: The solar system this starbase (POS) is located in, :param token: Access token to use if unable to set a header Returns various settings and fuels of a starbase (POS) --- Alternate route: `/dev/corporations/{corporation_id}/starbases/{starbase_id}/` Alternate route: `/legacy/corporations/{corporation_id}/starbases/{starbase_id}/` Alternate route: `/v1/corporations/{corporation_id}/starbases/{starbase_id}/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request( corporation_id=corporation_id, if_none_match=if_none_match, starbase_id=starbase_id, system_id=system_id, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/starbases/{starbase_id}/') def get_corporations_corporation_id_structures(*, corporation_id, language, token, accept_language='en-us', if_none_match=None, page='1'): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param page: Which page of results to return :param token: Access token to use if unable to set a header Get a list of corporation structures. This route's version includes the changes to structures detailed in this blog: https://www.eveonline.com/article/upwell-2.0-structures-changes-coming-on-february-13th --- Alternate route: `/dev/corporations/{corporation_id}/structures/` Alternate route: `/v3/corporations/{corporation_id}/structures/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Station_Manager """ ESI_request.request(accept_language=accept_language, corporation_id=corporation_id, if_none_match=if_none_match, language=language, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/structures/') def get_corporations_corporation_id_titles(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Returns a corporation's titles --- Alternate route: `/dev/corporations/{corporation_id}/titles/` Alternate route: `/legacy/corporations/{corporation_id}/titles/` Alternate route: `/v1/corporations/{corporation_id}/titles/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Director """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/titles/') def get_corporations_corporation_id_wallets(*, corporation_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Get a corporation's wallets --- Alternate route: `/dev/corporations/{corporation_id}/wallets/` Alternate route: `/legacy/corporations/{corporation_id}/wallets/` Alternate route: `/v1/corporations/{corporation_id}/wallets/` --- This route is cached for up to 300 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/wallets/') def get_corporations_corporation_id_wallets_division_journal( *, corporation_id, division, token, if_none_match=None, page='1'): """ :param corporation_id: An EVE corporation ID :param division: Wallet key of the division to fetch journals from :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param token: Access token to use if unable to set a header Retrieve the given corporation's wallet journal for the given division going 30 days back --- Alternate route: `/dev/corporations/{corporation_id}/wallets/{division}/journal/` Alternate route: `/v4/corporations/{corporation_id}/wallets/{division}/journal/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant """ ESI_request.request( corporation_id=corporation_id, division=division, if_none_match=if_none_match, page=page, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/wallets/{division}/journal/') def get_corporations_corporation_id_wallets_division_transactions( *, corporation_id, division, from_id, token, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param division: Wallet key of the division to fetch journals from :param from_id: Only show journal entries happened before the transaction referenced by this id :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Get wallet transactions of a corporation --- Alternate route: `/dev/corporations/{corporation_id}/wallets/{division}/transactions/` Alternate route: `/legacy/corporations/{corporation_id}/wallets/{division}/transactions/` Alternate route: `/v1/corporations/{corporation_id}/wallets/{division}/transactions/` --- This route is cached for up to 3600 seconds --- Requires one of the following EVE corporation role(s): Accountant, Junior_Accountant """ ESI_request.request( corporation_id=corporation_id, division=division, from_id=from_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/corporations/{corporation_id}/wallets/{division}/transactions/' ) def get_dogma_attributes(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of dogma attribute ids --- Alternate route: `/dev/dogma/attributes/` Alternate route: `/legacy/dogma/attributes/` Alternate route: `/v1/dogma/attributes/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/dogma/attributes/') def get_dogma_attributes_attribute_id(*, attribute_id, if_none_match=None): """ :param attribute_id: A dogma attribute ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get information on a dogma attribute --- Alternate route: `/dev/dogma/attributes/{attribute_id}/` Alternate route: `/legacy/dogma/attributes/{attribute_id}/` Alternate route: `/v1/dogma/attributes/{attribute_id}/` --- This route expires daily at 11:05 """ ESI_request.request(attribute_id=attribute_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/dogma/attributes/{attribute_id}/') def get_dogma_dynamic_items_type_id_item_id(*, item_id, type_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param item_id: item_id integer :param type_id: type_id integer Returns info about a dynamic item resulting from mutation with a mutaplasmid. --- Alternate route: `/dev/dogma/dynamic/items/{type_id}/{item_id}/` Alternate route: `/legacy/dogma/dynamic/items/{type_id}/{item_id}/` Alternate route: `/v1/dogma/dynamic/items/{type_id}/{item_id}/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, item_id=item_id, type_id=type_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/dogma/dynamic/items/{type_id}/{item_id}/') def get_dogma_effects(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of dogma effect ids --- Alternate route: `/dev/dogma/effects/` Alternate route: `/legacy/dogma/effects/` Alternate route: `/v1/dogma/effects/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/dogma/effects/') def get_dogma_effects_effect_id(*, effect_id, if_none_match=None): """ :param effect_id: A dogma effect ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get information on a dogma effect --- Alternate route: `/dev/dogma/effects/{effect_id}/` Alternate route: `/v2/dogma/effects/{effect_id}/` --- This route expires daily at 11:05 """ ESI_request.request(effect_id=effect_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/dogma/effects/{effect_id}/') def get_fleets_fleet_id(*, fleet_id, token, if_none_match=None): """ :param fleet_id: ID for a fleet :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param token: Access token to use if unable to set a header Return details about a fleet --- Alternate route: `/dev/fleets/{fleet_id}/` Alternate route: `/legacy/fleets/{fleet_id}/` Alternate route: `/v1/fleets/{fleet_id}/` --- This route is cached for up to 5 seconds """ ESI_request.request(fleet_id=fleet_id, if_none_match=if_none_match, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fleets/{fleet_id}/') def put_fleets_fleet_id(*, fleet_id, new_settings, token): """ :param fleet_id: ID for a fleet :param new_settings: What to update for this fleet :param token: Access token to use if unable to set a header Update settings about a fleet --- Alternate route: `/dev/fleets/{fleet_id}/` Alternate route: `/legacy/fleets/{fleet_id}/` Alternate route: `/v1/fleets/{fleet_id}/` """ ESI_request.request(fleet_id=fleet_id, new_settings=new_settings, token=token, data_source='tranquility', version='latest', HTTP_method='PUT', path=f'/fleets/{fleet_id}/') def get_fleets_fleet_id_members(*, fleet_id, language, token, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param fleet_id: ID for a fleet :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param token: Access token to use if unable to set a header Return information about fleet members --- Alternate route: `/dev/fleets/{fleet_id}/members/` Alternate route: `/legacy/fleets/{fleet_id}/members/` Alternate route: `/v1/fleets/{fleet_id}/members/` --- This route is cached for up to 5 seconds """ ESI_request.request(accept_language=accept_language, fleet_id=fleet_id, if_none_match=if_none_match, language=language, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fleets/{fleet_id}/members/') def post_fleets_fleet_id_members(*, fleet_id, invitation, token): """ :param fleet_id: ID for a fleet :param invitation: Details of the invitation :param token: Access token to use if unable to set a header Invite a character into the fleet. If a character has a CSPA charge set it is not possible to invite them to the fleet using ESI --- Alternate route: `/dev/fleets/{fleet_id}/members/` Alternate route: `/legacy/fleets/{fleet_id}/members/` Alternate route: `/v1/fleets/{fleet_id}/members/` """ ESI_request.request(fleet_id=fleet_id, invitation=invitation, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/fleets/{fleet_id}/members/') def delete_fleets_fleet_id_members_member_id(*, fleet_id, member_id, token): """ :param fleet_id: ID for a fleet :param member_id: The character ID of a member in this fleet :param token: Access token to use if unable to set a header Kick a fleet member --- Alternate route: `/dev/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/legacy/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/v1/fleets/{fleet_id}/members/{member_id}/` """ ESI_request.request(fleet_id=fleet_id, member_id=member_id, token=token, data_source='tranquility', version='latest', HTTP_method='DELETE', path=f'/fleets/{fleet_id}/members/{member_id}/') def put_fleets_fleet_id_members_member_id(*, fleet_id, member_id, movement, token): """ :param fleet_id: ID for a fleet :param member_id: The character ID of a member in this fleet :param movement: Details of the invitation :param token: Access token to use if unable to set a header Move a fleet member around --- Alternate route: `/dev/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/legacy/fleets/{fleet_id}/members/{member_id}/` Alternate route: `/v1/fleets/{fleet_id}/members/{member_id}/` """ ESI_request.request(fleet_id=fleet_id, member_id=member_id, movement=movement, token=token, data_source='tranquility', version='latest', HTTP_method='PUT', path=f'/fleets/{fleet_id}/members/{member_id}/') def delete_fleets_fleet_id_squads_squad_id(*, fleet_id, squad_id, token): """ :param fleet_id: ID for a fleet :param squad_id: The squad to delete :param token: Access token to use if unable to set a header Delete a fleet squad, only empty squads can be deleted --- Alternate route: `/dev/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/legacy/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/v1/fleets/{fleet_id}/squads/{squad_id}/` """ ESI_request.request(fleet_id=fleet_id, squad_id=squad_id, token=token, data_source='tranquility', version='latest', HTTP_method='DELETE', path=f'/fleets/{fleet_id}/squads/{squad_id}/') def put_fleets_fleet_id_squads_squad_id(*, fleet_id, naming, squad_id, token): """ :param fleet_id: ID for a fleet :param naming: New name of the squad :param squad_id: The squad to rename :param token: Access token to use if unable to set a header Rename a fleet squad --- Alternate route: `/dev/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/legacy/fleets/{fleet_id}/squads/{squad_id}/` Alternate route: `/v1/fleets/{fleet_id}/squads/{squad_id}/` """ ESI_request.request(fleet_id=fleet_id, naming=naming, squad_id=squad_id, token=token, data_source='tranquility', version='latest', HTTP_method='PUT', path=f'/fleets/{fleet_id}/squads/{squad_id}/') def get_fleets_fleet_id_wings(*, fleet_id, language, token, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param fleet_id: ID for a fleet :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param token: Access token to use if unable to set a header Return information about wings in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/` Alternate route: `/legacy/fleets/{fleet_id}/wings/` Alternate route: `/v1/fleets/{fleet_id}/wings/` --- This route is cached for up to 5 seconds """ ESI_request.request(accept_language=accept_language, fleet_id=fleet_id, if_none_match=if_none_match, language=language, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fleets/{fleet_id}/wings/') def post_fleets_fleet_id_wings(*, fleet_id, token): """ :param fleet_id: ID for a fleet :param token: Access token to use if unable to set a header Create a new wing in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/` Alternate route: `/legacy/fleets/{fleet_id}/wings/` Alternate route: `/v1/fleets/{fleet_id}/wings/` """ ESI_request.request(fleet_id=fleet_id, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/fleets/{fleet_id}/wings/') def delete_fleets_fleet_id_wings_wing_id(*, fleet_id, token, wing_id): """ :param fleet_id: ID for a fleet :param token: Access token to use if unable to set a header :param wing_id: The wing to delete Delete a fleet wing, only empty wings can be deleted. The wing may contain squads, but the squads must be empty --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/` """ ESI_request.request(fleet_id=fleet_id, token=token, wing_id=wing_id, data_source='tranquility', version='latest', HTTP_method='DELETE', path=f'/fleets/{fleet_id}/wings/{wing_id}/') def put_fleets_fleet_id_wings_wing_id(*, fleet_id, naming, token, wing_id): """ :param fleet_id: ID for a fleet :param naming: New name of the wing :param token: Access token to use if unable to set a header :param wing_id: The wing to rename Rename a fleet wing --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/` """ ESI_request.request(fleet_id=fleet_id, naming=naming, token=token, wing_id=wing_id, data_source='tranquility', version='latest', HTTP_method='PUT', path=f'/fleets/{fleet_id}/wings/{wing_id}/') def post_fleets_fleet_id_wings_wing_id_squads(*, fleet_id, token, wing_id): """ :param fleet_id: ID for a fleet :param token: Access token to use if unable to set a header :param wing_id: The wing_id to create squad in Create a new squad in a fleet --- Alternate route: `/dev/fleets/{fleet_id}/wings/{wing_id}/squads/` Alternate route: `/legacy/fleets/{fleet_id}/wings/{wing_id}/squads/` Alternate route: `/v1/fleets/{fleet_id}/wings/{wing_id}/squads/` """ ESI_request.request(fleet_id=fleet_id, token=token, wing_id=wing_id, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/fleets/{fleet_id}/wings/{wing_id}/squads/') def get_fw_leaderboards(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Top 4 leaderboard of factions for kills and victory points separated by total, last week and yesterday --- Alternate route: `/dev/fw/leaderboards/` Alternate route: `/legacy/fw/leaderboards/` Alternate route: `/v1/fw/leaderboards/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fw/leaderboards/') def get_fw_leaderboards_characters(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Top 100 leaderboard of pilots for kills and victory points separated by total, last week and yesterday --- Alternate route: `/dev/fw/leaderboards/characters/` Alternate route: `/legacy/fw/leaderboards/characters/` Alternate route: `/v1/fw/leaderboards/characters/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fw/leaderboards/characters/') def get_fw_leaderboards_corporations(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Top 10 leaderboard of corporations for kills and victory points separated by total, last week and yesterday --- Alternate route: `/dev/fw/leaderboards/corporations/` Alternate route: `/legacy/fw/leaderboards/corporations/` Alternate route: `/v1/fw/leaderboards/corporations/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fw/leaderboards/corporations/') def get_fw_stats(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Statistical overviews of factions involved in faction warfare --- Alternate route: `/dev/fw/stats/` Alternate route: `/legacy/fw/stats/` Alternate route: `/v1/fw/stats/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fw/stats/') def get_fw_systems(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag An overview of the current ownership of faction warfare solar systems --- Alternate route: `/dev/fw/systems/` Alternate route: `/v2/fw/systems/` --- This route is cached for up to 1800 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fw/systems/') def get_fw_wars(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Data about which NPC factions are at war --- Alternate route: `/dev/fw/wars/` Alternate route: `/legacy/fw/wars/` Alternate route: `/v1/fw/wars/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/fw/wars/') def get_incursions(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Return a list of current incursions --- Alternate route: `/dev/incursions/` Alternate route: `/legacy/incursions/` Alternate route: `/v1/incursions/` --- This route is cached for up to 300 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/incursions/') def get_industry_facilities(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Return a list of industry facilities --- Alternate route: `/dev/industry/facilities/` Alternate route: `/legacy/industry/facilities/` Alternate route: `/v1/industry/facilities/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/industry/facilities/') def get_industry_systems(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Return cost indices for solar systems --- Alternate route: `/dev/industry/systems/` Alternate route: `/legacy/industry/systems/` Alternate route: `/v1/industry/systems/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/industry/systems/') def get_insurance_prices(*, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Return available insurance levels for all ship types --- Alternate route: `/dev/insurance/prices/` Alternate route: `/legacy/insurance/prices/` Alternate route: `/v1/insurance/prices/` --- This route is cached for up to 3600 seconds """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/insurance/prices/') def get_killmails_killmail_id_killmail_hash(*, killmail_hash, killmail_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param killmail_hash: The killmail hash for verification :param killmail_id: The killmail ID to be queried Return a single killmail from its ID and hash --- Alternate route: `/dev/killmails/{killmail_id}/{killmail_hash}/` Alternate route: `/legacy/killmails/{killmail_id}/{killmail_hash}/` Alternate route: `/v1/killmails/{killmail_id}/{killmail_hash}/` --- This route is cached for up to 1209600 seconds """ ESI_request.request(if_none_match=if_none_match, killmail_hash=killmail_hash, killmail_id=killmail_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/killmails/{killmail_id}/{killmail_hash}/') def get_loyalty_stores_corporation_id_offers(*, corporation_id, if_none_match=None): """ :param corporation_id: An EVE corporation ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Return a list of offers from a specific corporation's loyalty store --- Alternate route: `/dev/loyalty/stores/{corporation_id}/offers/` Alternate route: `/legacy/loyalty/stores/{corporation_id}/offers/` Alternate route: `/v1/loyalty/stores/{corporation_id}/offers/` --- This route expires daily at 11:05 """ ESI_request.request(corporation_id=corporation_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/loyalty/stores/{corporation_id}/offers/') def get_markets_groups(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of item groups --- Alternate route: `/dev/markets/groups/` Alternate route: `/legacy/markets/groups/` Alternate route: `/v1/markets/groups/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/markets/groups/') def get_markets_groups_market_group_id(*, language, market_group_id, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param market_group_id: An Eve item group ID Get information on an item group --- Alternate route: `/dev/markets/groups/{market_group_id}/` Alternate route: `/legacy/markets/groups/{market_group_id}/` Alternate route: `/v1/markets/groups/{market_group_id}/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, market_group_id=market_group_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/markets/groups/{market_group_id}/') def get_markets_prices(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Return a list of prices --- Alternate route: `/dev/markets/prices/` Alternate route: `/legacy/markets/prices/` Alternate route: `/v1/markets/prices/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/markets/prices/') def get_markets_structures_structure_id(*, structure_id, token, if_none_match=None, page='1'): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param structure_id: Return orders in this structure :param token: Access token to use if unable to set a header Return all orders in a structure --- Alternate route: `/dev/markets/structures/{structure_id}/` Alternate route: `/legacy/markets/structures/{structure_id}/` Alternate route: `/v1/markets/structures/{structure_id}/` --- This route is cached for up to 300 seconds """ ESI_request.request(if_none_match=if_none_match, page=page, structure_id=structure_id, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/markets/structures/{structure_id}/') def get_markets_region_id_history(*, region_id, type_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param region_id: Return statistics in this region :param type_id: Return statistics for this type Return a list of historical market statistics for the specified type in a region --- Alternate route: `/dev/markets/{region_id}/history/` Alternate route: `/legacy/markets/{region_id}/history/` Alternate route: `/v1/markets/{region_id}/history/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, region_id=region_id, type_id=type_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/markets/{region_id}/history/') def get_markets_region_id_orders(*, order_type, region_id, type_id, if_none_match=None, page='1'): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param order_type: ['buy', 'sell', 'all'] Filter buy/sell orders, return all orders by default. If you query without type_id, we always return both buy and sell orders :param page: Which page of results to return :param region_id: Return orders in this region :param type_id: Return orders only for this type Return a list of orders in a region --- Alternate route: `/dev/markets/{region_id}/orders/` Alternate route: `/legacy/markets/{region_id}/orders/` Alternate route: `/v1/markets/{region_id}/orders/` --- This route is cached for up to 300 seconds """ ESI_request.request(if_none_match=if_none_match, order_type=order_type, page=page, region_id=region_id, type_id=type_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/markets/{region_id}/orders/') def get_markets_region_id_types(*, region_id, if_none_match=None, page='1'): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param region_id: Return statistics in this region Return a list of type IDs that have active orders in the region, for efficient market indexing. --- Alternate route: `/dev/markets/{region_id}/types/` Alternate route: `/legacy/markets/{region_id}/types/` Alternate route: `/v1/markets/{region_id}/types/` --- This route is cached for up to 600 seconds """ ESI_request.request(if_none_match=if_none_match, page=page, region_id=region_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/markets/{region_id}/types/') def get_opportunities_groups(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Return a list of opportunities groups --- Alternate route: `/dev/opportunities/groups/` Alternate route: `/legacy/opportunities/groups/` Alternate route: `/v1/opportunities/groups/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/opportunities/groups/') def get_opportunities_groups_group_id(*, group_id, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param group_id: ID of an opportunities group :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Return information of an opportunities group --- Alternate route: `/dev/opportunities/groups/{group_id}/` Alternate route: `/legacy/opportunities/groups/{group_id}/` Alternate route: `/v1/opportunities/groups/{group_id}/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, group_id=group_id, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/opportunities/groups/{group_id}/') def get_opportunities_tasks(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Return a list of opportunities tasks --- Alternate route: `/dev/opportunities/tasks/` Alternate route: `/legacy/opportunities/tasks/` Alternate route: `/v1/opportunities/tasks/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/opportunities/tasks/') def get_opportunities_tasks_task_id(*, task_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param task_id: ID of an opportunities task Return information of an opportunities task --- Alternate route: `/dev/opportunities/tasks/{task_id}/` Alternate route: `/legacy/opportunities/tasks/{task_id}/` Alternate route: `/v1/opportunities/tasks/{task_id}/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, task_id=task_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/opportunities/tasks/{task_id}/') def get_route_origin_destination(*, avoid, connections, destination, flag, origin, if_none_match=None): """ :param avoid: avoid solar system ID(s) :param connections: connected solar system pairs :param destination: destination solar system ID :param flag: ['shortest', 'secure', 'insecure'] route security preference :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param origin: origin solar system ID Get the systems between origin and destination --- Alternate route: `/dev/route/{origin}/{destination}/` Alternate route: `/legacy/route/{origin}/{destination}/` Alternate route: `/v1/route/{origin}/{destination}/` --- This route is cached for up to 86400 seconds """ ESI_request.request(avoid=avoid, connections=connections, destination=destination, flag=flag, if_none_match=if_none_match, origin=origin, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/route/{origin}/{destination}/') def get_search(*, categories, language, search, strict, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param categories: Type of entities to search for :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param search: The string to search on :param strict: Whether the search should be a strict match Search for entities that match a given sub-string. --- Alternate route: `/dev/search/` Alternate route: `/legacy/search/` Alternate route: `/v2/search/` --- This route is cached for up to 3600 seconds """ ESI_request.request(accept_language=accept_language, categories=categories, if_none_match=if_none_match, language=language, search=search, strict=strict, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/search/') def get_sovereignty_campaigns(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Shows sovereignty data for campaigns. --- Alternate route: `/dev/sovereignty/campaigns/` Alternate route: `/legacy/sovereignty/campaigns/` Alternate route: `/v1/sovereignty/campaigns/` --- This route is cached for up to 5 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/sovereignty/campaigns/') def get_sovereignty_map(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Shows sovereignty information for solar systems --- Alternate route: `/dev/sovereignty/map/` Alternate route: `/legacy/sovereignty/map/` Alternate route: `/v1/sovereignty/map/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/sovereignty/map/') def get_sovereignty_structures(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Shows sovereignty data for structures. --- Alternate route: `/dev/sovereignty/structures/` Alternate route: `/legacy/sovereignty/structures/` Alternate route: `/v1/sovereignty/structures/` --- This route is cached for up to 120 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/sovereignty/structures/') def get_status(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag EVE Server status --- Alternate route: `/dev/status/` Alternate route: `/legacy/status/` Alternate route: `/v1/status/` --- This route is cached for up to 30 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/status/') def post_ui_autopilot_waypoint(*, add_to_beginning, clear_other_waypoints, destination_id, token): """ :param add_to_beginning: Whether this solar system should be added to the beginning of all waypoints :param clear_other_waypoints: Whether clean other waypoints beforing adding this one :param destination_id: The destination to travel to, can be solar system, station or structure's id :param token: Access token to use if unable to set a header Set a solar system as autopilot waypoint --- Alternate route: `/dev/ui/autopilot/waypoint/` Alternate route: `/legacy/ui/autopilot/waypoint/` Alternate route: `/v2/ui/autopilot/waypoint/` """ ESI_request.request(add_to_beginning=add_to_beginning, clear_other_waypoints=clear_other_waypoints, destination_id=destination_id, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/ui/autopilot/waypoint/') def post_ui_openwindow_contract(*, contract_id, token): """ :param contract_id: The contract to open :param token: Access token to use if unable to set a header Open the contract window inside the client --- Alternate route: `/dev/ui/openwindow/contract/` Alternate route: `/legacy/ui/openwindow/contract/` Alternate route: `/v1/ui/openwindow/contract/` """ ESI_request.request(contract_id=contract_id, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/ui/openwindow/contract/') def post_ui_openwindow_information(*, target_id, token): """ :param target_id: The target to open :param token: Access token to use if unable to set a header Open the information window for a character, corporation or alliance inside the client --- Alternate route: `/dev/ui/openwindow/information/` Alternate route: `/legacy/ui/openwindow/information/` Alternate route: `/v1/ui/openwindow/information/` """ ESI_request.request(target_id=target_id, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/ui/openwindow/information/') def post_ui_openwindow_marketdetails(*, token, type_id): """ :param token: Access token to use if unable to set a header :param type_id: The item type to open in market window Open the market details window for a specific typeID inside the client --- Alternate route: `/dev/ui/openwindow/marketdetails/` Alternate route: `/legacy/ui/openwindow/marketdetails/` Alternate route: `/v1/ui/openwindow/marketdetails/` """ ESI_request.request(token=token, type_id=type_id, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/ui/openwindow/marketdetails/') def post_ui_openwindow_newmail(*, new_mail, token): """ :param new_mail: The details of mail to create :param token: Access token to use if unable to set a header Open the New Mail window, according to settings from the request if applicable --- Alternate route: `/dev/ui/openwindow/newmail/` Alternate route: `/legacy/ui/openwindow/newmail/` Alternate route: `/v1/ui/openwindow/newmail/` """ ESI_request.request(new_mail=new_mail, token=token, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/ui/openwindow/newmail/') def get_universe_ancestries(*, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Get all character ancestries --- Alternate route: `/dev/universe/ancestries/` Alternate route: `/legacy/universe/ancestries/` Alternate route: `/v1/universe/ancestries/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/ancestries/') def get_universe_asteroid_belts_asteroid_belt_id(*, asteroid_belt_id, if_none_match=None): """ :param asteroid_belt_id: asteroid_belt_id integer :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get information on an asteroid belt --- Alternate route: `/dev/universe/asteroid_belts/{asteroid_belt_id}/` Alternate route: `/legacy/universe/asteroid_belts/{asteroid_belt_id}/` Alternate route: `/v1/universe/asteroid_belts/{asteroid_belt_id}/` --- This route expires daily at 11:05 """ ESI_request.request(asteroid_belt_id=asteroid_belt_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/asteroid_belts/{asteroid_belt_id}/') def get_universe_bloodlines(*, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Get a list of bloodlines --- Alternate route: `/dev/universe/bloodlines/` Alternate route: `/legacy/universe/bloodlines/` Alternate route: `/v1/universe/bloodlines/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/bloodlines/') def get_universe_categories(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of item categories --- Alternate route: `/dev/universe/categories/` Alternate route: `/legacy/universe/categories/` Alternate route: `/v1/universe/categories/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/categories/') def get_universe_categories_category_id(*, category_id, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param category_id: An Eve item category ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Get information of an item category --- Alternate route: `/dev/universe/categories/{category_id}/` Alternate route: `/legacy/universe/categories/{category_id}/` Alternate route: `/v1/universe/categories/{category_id}/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, category_id=category_id, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/categories/{category_id}/') def get_universe_constellations(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of constellations --- Alternate route: `/dev/universe/constellations/` Alternate route: `/legacy/universe/constellations/` Alternate route: `/v1/universe/constellations/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/constellations/') def get_universe_constellations_constellation_id(*, constellation_id, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param constellation_id: constellation_id integer :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Get information on a constellation --- Alternate route: `/dev/universe/constellations/{constellation_id}/` Alternate route: `/legacy/universe/constellations/{constellation_id}/` Alternate route: `/v1/universe/constellations/{constellation_id}/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, constellation_id=constellation_id, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/constellations/{constellation_id}/') def get_universe_factions(*, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Get a list of factions --- Alternate route: `/dev/universe/factions/` Alternate route: `/v2/universe/factions/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/factions/') def get_universe_graphics(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of graphics --- Alternate route: `/dev/universe/graphics/` Alternate route: `/legacy/universe/graphics/` Alternate route: `/v1/universe/graphics/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/graphics/') def get_universe_graphics_graphic_id(*, graphic_id, if_none_match=None): """ :param graphic_id: graphic_id integer :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get information on a graphic --- Alternate route: `/dev/universe/graphics/{graphic_id}/` Alternate route: `/legacy/universe/graphics/{graphic_id}/` Alternate route: `/v1/universe/graphics/{graphic_id}/` --- This route expires daily at 11:05 """ ESI_request.request(graphic_id=graphic_id, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/graphics/{graphic_id}/') def get_universe_groups(*, if_none_match=None, page='1'): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return Get a list of item groups --- Alternate route: `/dev/universe/groups/` Alternate route: `/legacy/universe/groups/` Alternate route: `/v1/universe/groups/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, page=page, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/groups/') def get_universe_groups_group_id(*, group_id, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param group_id: An Eve item group ID :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Get information on an item group --- Alternate route: `/dev/universe/groups/{group_id}/` Alternate route: `/legacy/universe/groups/{group_id}/` Alternate route: `/v1/universe/groups/{group_id}/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, group_id=group_id, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/groups/{group_id}/') def post_universe_ids(*, language, names, accept_language='en-us'): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param names: The names to resolve Resolve a set of names to IDs in the following categories: agents, alliances, characters, constellations, corporations factions, inventory_types, regions, stations, and systems. Only exact matches will be returned. All names searched for are cached for 12 hours --- Alternate route: `/dev/universe/ids/` Alternate route: `/legacy/universe/ids/` Alternate route: `/v1/universe/ids/` """ ESI_request.request(accept_language=accept_language, language=language, names=names, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/universe/ids/') def get_universe_moons_moon_id(*, moon_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param moon_id: moon_id integer Get information on a moon --- Alternate route: `/dev/universe/moons/{moon_id}/` Alternate route: `/legacy/universe/moons/{moon_id}/` Alternate route: `/v1/universe/moons/{moon_id}/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, moon_id=moon_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/moons/{moon_id}/') def post_universe_names(*, ids): """ :param ids: The ids to resolve Resolve a set of IDs to names and categories. Supported ID's for resolving are: Characters, Corporations, Alliances, Stations, Solar Systems, Constellations, Regions, Types, Factions --- Alternate route: `/dev/universe/names/` Alternate route: `/v3/universe/names/` """ ESI_request.request(ids=ids, data_source='tranquility', version='latest', HTTP_method='POST', path=f'/universe/names/') def get_universe_planets_planet_id(*, planet_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param planet_id: planet_id integer Get information on a planet --- Alternate route: `/dev/universe/planets/{planet_id}/` Alternate route: `/legacy/universe/planets/{planet_id}/` Alternate route: `/v1/universe/planets/{planet_id}/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, planet_id=planet_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/planets/{planet_id}/') def get_universe_races(*, language, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language Get a list of character races --- Alternate route: `/dev/universe/races/` Alternate route: `/legacy/universe/races/` Alternate route: `/v1/universe/races/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/races/') def get_universe_regions(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of regions --- Alternate route: `/dev/universe/regions/` Alternate route: `/legacy/universe/regions/` Alternate route: `/v1/universe/regions/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/regions/') def get_universe_regions_region_id(*, language, region_id, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param region_id: region_id integer Get information on a region --- Alternate route: `/dev/universe/regions/{region_id}/` Alternate route: `/legacy/universe/regions/{region_id}/` Alternate route: `/v1/universe/regions/{region_id}/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, region_id=region_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/regions/{region_id}/') def get_universe_schematics_schematic_id(*, schematic_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param schematic_id: A PI schematic ID Get information on a planetary factory schematic --- Alternate route: `/dev/universe/schematics/{schematic_id}/` Alternate route: `/legacy/universe/schematics/{schematic_id}/` Alternate route: `/v1/universe/schematics/{schematic_id}/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, schematic_id=schematic_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/schematics/{schematic_id}/') def get_universe_stargates_stargate_id(*, stargate_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param stargate_id: stargate_id integer Get information on a stargate --- Alternate route: `/dev/universe/stargates/{stargate_id}/` Alternate route: `/legacy/universe/stargates/{stargate_id}/` Alternate route: `/v1/universe/stargates/{stargate_id}/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, stargate_id=stargate_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/stargates/{stargate_id}/') def get_universe_stars_star_id(*, star_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param star_id: star_id integer Get information on a star --- Alternate route: `/dev/universe/stars/{star_id}/` Alternate route: `/legacy/universe/stars/{star_id}/` Alternate route: `/v1/universe/stars/{star_id}/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, star_id=star_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/stars/{star_id}/') def get_universe_stations_station_id(*, station_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param station_id: station_id integer Get information on a station --- Alternate route: `/dev/universe/stations/{station_id}/` Alternate route: `/v2/universe/stations/{station_id}/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, station_id=station_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/stations/{station_id}/') def get_universe_structures(*, filter, if_none_match=None): """ :param filter: ['market', 'manufacturing_basic'] Only list public structures that have this service online :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag List all public structures --- Alternate route: `/dev/universe/structures/` Alternate route: `/legacy/universe/structures/` Alternate route: `/v1/universe/structures/` --- This route is cached for up to 3600 seconds """ ESI_request.request(filter=filter, if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/structures/') def get_universe_structures_structure_id(*, structure_id, token, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param structure_id: An Eve structure ID :param token: Access token to use if unable to set a header Returns information on requested structure if you are on the ACL. Otherwise, returns "Forbidden" for all inputs. --- Alternate route: `/dev/universe/structures/{structure_id}/` Alternate route: `/v2/universe/structures/{structure_id}/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, structure_id=structure_id, token=token, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/structures/{structure_id}/') def get_universe_system_jumps(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get the number of jumps in solar systems within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with jumps will be listed --- Alternate route: `/dev/universe/system_jumps/` Alternate route: `/legacy/universe/system_jumps/` Alternate route: `/v1/universe/system_jumps/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/system_jumps/') def get_universe_system_kills(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get the number of ship, pod and NPC kills per solar system within the last hour ending at the timestamp of the Last-Modified header, excluding wormhole space. Only systems with kills will be listed --- Alternate route: `/dev/universe/system_kills/` Alternate route: `/v2/universe/system_kills/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/system_kills/') def get_universe_systems(*, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag Get a list of solar systems --- Alternate route: `/dev/universe/systems/` Alternate route: `/legacy/universe/systems/` Alternate route: `/v1/universe/systems/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/systems/') def get_universe_systems_system_id(*, language, system_id, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param system_id: system_id integer Get information on a solar system. --- Alternate route: `/dev/universe/systems/{system_id}/` Alternate route: `/v4/universe/systems/{system_id}/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, system_id=system_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/systems/{system_id}/') def get_universe_types(*, if_none_match=None, page='1'): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return Get a list of type ids --- Alternate route: `/dev/universe/types/` Alternate route: `/legacy/universe/types/` Alternate route: `/v1/universe/types/` --- This route expires daily at 11:05 """ ESI_request.request(if_none_match=if_none_match, page=page, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/types/') def get_universe_types_type_id(*, language, type_id, accept_language='en-us', if_none_match=None): """ :param accept_language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param language: ['de', 'en-us', 'fr', 'ja', 'ru', 'zh'] Language to use in the response, takes precedence over Accept-Language :param type_id: An Eve item type ID Get information on a type --- Alternate route: `/dev/universe/types/{type_id}/` Alternate route: `/v3/universe/types/{type_id}/` --- This route expires daily at 11:05 """ ESI_request.request(accept_language=accept_language, if_none_match=if_none_match, language=language, type_id=type_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/universe/types/{type_id}/') def get_wars(*, max_war_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param max_war_id: Only return wars with ID smaller than this Return a list of wars --- Alternate route: `/dev/wars/` Alternate route: `/legacy/wars/` Alternate route: `/v1/wars/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, max_war_id=max_war_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/wars/') def get_wars_war_id(*, war_id, if_none_match=None): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param war_id: ID for a war Return details about a war --- Alternate route: `/dev/wars/{war_id}/` Alternate route: `/legacy/wars/{war_id}/` Alternate route: `/v1/wars/{war_id}/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, war_id=war_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/wars/{war_id}/') def get_wars_war_id_killmails(*, war_id, if_none_match=None, page='1'): """ :param if_none_match: ETag from a previous request. A 304 will be returned if this matches the current ETag :param page: Which page of results to return :param war_id: A valid war ID Return a list of kills related to a war --- Alternate route: `/dev/wars/{war_id}/killmails/` Alternate route: `/legacy/wars/{war_id}/killmails/` Alternate route: `/v1/wars/{war_id}/killmails/` --- This route is cached for up to 3600 seconds """ ESI_request.request(if_none_match=if_none_match, page=page, war_id=war_id, data_source='tranquility', version='latest', HTTP_method='GET', path=f'/wars/{war_id}/killmails/')
[ 2, 11361, 32356, 2451, 7928, 26491, 198, 2, 3740, 1378, 12567, 13, 785, 14, 6988, 418, 11693, 14, 47, 1546, 40, 198, 2, 412, 11584, 2196, 657, 13, 23, 13, 24, 198, 11748, 412, 11584, 62, 25927, 628, 198, 4299, 651, 62, 439, 16097, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 7343, 477, 4075, 2137, 29614, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 439, 16097, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 439, 16097, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 439, 16097, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 439, 16097, 14, 11537, 628, 198, 4299, 651, 62, 439, 16097, 62, 439, 3610, 62, 312, 7, 25666, 12801, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12801, 62, 312, 25, 1052, 32356, 12801, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 5094, 1321, 546, 281, 12801, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 439, 3610, 62, 312, 28, 439, 3610, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 439, 16097, 62, 439, 3610, 62, 312, 62, 3642, 8656, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12801, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12801, 62, 312, 25, 1052, 32356, 12801, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 13961, 286, 281, 12801, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 439, 3610, 62, 312, 28, 439, 3610, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 3642, 8656, 14, 11537, 628, 198, 4299, 651, 62, 439, 16097, 62, 439, 3610, 62, 312, 62, 3642, 8656, 62, 23912, 1424, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12801, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12801, 62, 312, 25, 1052, 32356, 12801, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 2183, 14722, 329, 281, 12801, 338, 13961, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 439, 3610, 62, 312, 28, 439, 3610, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 11537, 628, 198, 4299, 651, 62, 439, 16097, 62, 439, 3610, 62, 312, 62, 10215, 1819, 602, 7, 25666, 12801, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12801, 62, 312, 25, 1052, 32356, 12801, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 7343, 477, 1459, 2888, 10225, 286, 281, 12801, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 10215, 1819, 602, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 10215, 1819, 602, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 10215, 1819, 602, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 439, 3610, 62, 312, 28, 439, 3610, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 10215, 1819, 602, 14, 11537, 628, 198, 4299, 651, 62, 439, 16097, 62, 439, 3610, 62, 312, 62, 34280, 7, 25666, 12801, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12801, 62, 312, 25, 1052, 32356, 12801, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 262, 7196, 2956, 7278, 329, 257, 12801, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 34280, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 34280, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 34280, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 439, 3610, 62, 312, 28, 439, 3610, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 439, 16097, 14, 90, 439, 3610, 62, 312, 92, 14, 34280, 14, 11537, 628, 198, 4299, 1281, 62, 10641, 19858, 62, 2001, 15547, 7, 25666, 3435, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 3435, 25, 383, 2095, 32373, 284, 21207, 8349, 602, 329, 13, 1439, 3435, 1276, 2152, 11, 393, 4844, 481, 307, 4504, 198, 220, 220, 220, 47900, 35847, 286, 2095, 32373, 284, 12017, 11, 12801, 290, 17710, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 2001, 15547, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 2001, 15547, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 2001, 15547, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10641, 19858, 28, 10641, 19858, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 2001, 15547, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 7, 25666, 2095, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 5094, 1321, 546, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 19, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 49638, 62, 34033, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 6554, 2267, 1321, 329, 257, 2095, 13, 383, 10451, 329, 4917, 262, 1459, 2267, 2173, 351, 281, 5797, 318, 25, 1459, 40710, 796, 17675, 40710, 1343, 2173, 5990, 12393, 1635, 1528, 7, 14421, 7575, 532, 2267, 10434, 10430, 8, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 49638, 62, 34033, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 49638, 62, 34033, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 49638, 62, 34033, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 49638, 62, 34033, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 19668, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 262, 3435, 6798, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 11537, 628, 198, 4299, 1281, 62, 10641, 19858, 62, 22769, 62, 312, 62, 19668, 62, 17946, 602, 7, 25666, 2095, 62, 312, 11, 2378, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 2378, 62, 2340, 25, 317, 1351, 286, 2378, 220, 2340, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 7064, 329, 257, 900, 286, 2378, 220, 2340, 11, 543, 345, 460, 651, 422, 2095, 6798, 36123, 13, 22819, 17540, 329, 3709, 287, 8181, 945, 393, 8985, 389, 900, 284, 357, 15, 11, 15, 11, 15, 8, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 17946, 602, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 17946, 602, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 2340, 28, 9186, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 17946, 602, 14, 11537, 628, 198, 4299, 1281, 62, 10641, 19858, 62, 22769, 62, 312, 62, 19668, 62, 14933, 7, 25666, 2095, 62, 312, 11, 2378, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 2378, 62, 2340, 25, 317, 1351, 286, 2378, 220, 2340, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 3891, 329, 257, 900, 286, 2378, 220, 2340, 11, 543, 345, 460, 651, 422, 2095, 6798, 36123, 13, 27095, 973, 329, 3709, 326, 460, 24184, 3891, 11, 588, 16472, 393, 7937, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 14933, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 14933, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 14933, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 2340, 28, 9186, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 19668, 14, 14933, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 1078, 7657, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 12608, 286, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1078, 7657, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1078, 7657, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1078, 7657, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 7982, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1078, 7657, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 17585, 17190, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 4171, 17190, 262, 2095, 12216, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 17585, 17190, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 17585, 17190, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 17585, 17190, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 2070, 14306, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 317, 1351, 286, 534, 2095, 338, 2614, 1492, 14306, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 2070, 14306, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 2070, 14306, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 2070, 14306, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 2070, 14306, 62, 11379, 364, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 317, 1351, 286, 534, 2095, 338, 2614, 44007, 24512, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 2070, 14306, 14, 11379, 364, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 2070, 14306, 14, 11379, 364, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 2070, 14306, 14, 11379, 364, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 9948, 9239, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 62, 15596, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 422, 62, 15596, 25, 383, 1785, 4522, 284, 19818, 2995, 422, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 2026, 1785, 30114, 3166, 422, 262, 11845, 13, 1002, 645, 422, 62, 15596, 4522, 318, 1813, 11, 262, 8271, 481, 1441, 262, 1306, 2026, 45946, 1785, 30114, 3166, 422, 783, 13, 1002, 257, 422, 62, 15596, 4522, 318, 7368, 11, 340, 481, 1441, 262, 1306, 2026, 45946, 1785, 30114, 3166, 422, 706, 326, 1785, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 642, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 62, 15596, 28, 6738, 62, 15596, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 9948, 9239, 62, 15596, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 1785, 62, 312, 25, 383, 4686, 286, 262, 1785, 9167, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 477, 262, 1321, 329, 257, 2176, 1785, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 642, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 312, 28, 15596, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 11537, 628, 198, 4299, 1234, 62, 10641, 19858, 62, 22769, 62, 312, 62, 9948, 9239, 62, 15596, 62, 312, 7, 25666, 2095, 62, 312, 11, 1785, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2882, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 1785, 62, 312, 25, 383, 4522, 286, 262, 1785, 9167, 198, 220, 220, 220, 1058, 17143, 2882, 25, 383, 2882, 1988, 284, 900, 11, 44987, 1459, 1988, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 5345, 534, 2882, 3722, 284, 281, 1785, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 312, 28, 15596, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2882, 28, 26209, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 30076, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 9948, 9239, 62, 15596, 62, 312, 62, 1078, 437, 2841, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 2095, 62, 312, 11, 1785, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 1785, 62, 312, 25, 383, 4686, 286, 262, 1785, 9167, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 477, 9392, 21736, 329, 257, 1813, 1785, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 1078, 437, 2841, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 1078, 437, 2841, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 1078, 437, 2841, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 10053, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 312, 28, 15596, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 9948, 9239, 14, 90, 15596, 62, 312, 92, 14, 1078, 437, 2841, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 565, 1952, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 317, 1351, 286, 262, 2095, 338, 32498, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 565, 1952, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 565, 1952, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 7982, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 565, 1952, 14, 11537, 628, 198, 4299, 12233, 62, 10641, 19858, 62, 22769, 62, 312, 62, 3642, 8656, 7, 25666, 2095, 62, 312, 11, 2800, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 2800, 62, 2340, 25, 317, 1351, 286, 13961, 284, 12233, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 47900, 12233, 13961, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2800, 62, 2340, 28, 32057, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 7206, 2538, 9328, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 3642, 8656, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 13961, 286, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 11537, 628, 198, 4299, 1281, 62, 10641, 19858, 62, 22769, 62, 312, 62, 3642, 8656, 7, 25666, 2095, 62, 312, 11, 2800, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 2340, 11, 5055, 11, 11241, 11, 7342, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 2800, 62, 2340, 25, 317, 1351, 286, 13961, 198, 220, 220, 220, 1058, 17143, 6167, 62, 2340, 25, 3060, 2183, 14722, 284, 262, 649, 2800, 198, 220, 220, 220, 1058, 17143, 5055, 25, 22493, 329, 262, 2800, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 1058, 17143, 7342, 25, 10127, 262, 2800, 815, 307, 7342, 11, 3465, 428, 318, 691, 4050, 319, 3435, 198, 220, 220, 220, 47900, 751, 13961, 351, 976, 6460, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2800, 62, 2340, 28, 32057, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 2340, 28, 18242, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5055, 28, 5646, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7342, 28, 86, 14265, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 11537, 628, 198, 4299, 1234, 62, 10641, 19858, 62, 22769, 62, 312, 62, 3642, 8656, 7, 25666, 2095, 62, 312, 11, 2800, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 2340, 11, 5055, 11, 11241, 11, 7342, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 2800, 62, 2340, 25, 317, 1351, 286, 13961, 198, 220, 220, 220, 1058, 17143, 6167, 62, 2340, 25, 3060, 2183, 14722, 284, 262, 2800, 198, 220, 220, 220, 1058, 17143, 5055, 25, 22493, 329, 262, 2800, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 1058, 17143, 7342, 25, 10127, 262, 2800, 815, 307, 7342, 11, 3465, 428, 318, 691, 4050, 319, 3435, 198, 220, 220, 220, 47900, 4370, 13961, 351, 976, 6460, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2800, 62, 2340, 28, 32057, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 2340, 28, 18242, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5055, 28, 5646, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7342, 28, 86, 14265, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 30076, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 3642, 8656, 62, 23912, 1424, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 2183, 14722, 329, 257, 2095, 338, 13961, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 28484, 82, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 8592, 1695, 284, 257, 2095, 11, 691, 611, 262, 2095, 318, 44168, 11, 2453, 273, 393, 8333, 1453, 13, 5514, 5860, 8592, 645, 4697, 621, 1542, 1528, 11, 393, 611, 262, 3722, 318, 366, 259, 62, 33723, 1911, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 28484, 82, 62, 28484, 62, 312, 62, 65, 2340, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 2095, 62, 312, 11, 2775, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 2775, 62, 312, 25, 4522, 286, 257, 2775, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 44968, 27837, 319, 257, 1948, 14389, 2775, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 65, 2340, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 65, 2340, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 65, 2340, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2775, 62, 312, 28, 28484, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 65, 2340, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 28484, 82, 62, 28484, 62, 312, 62, 23814, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 2095, 62, 312, 11, 2775, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 2775, 62, 312, 25, 4522, 286, 257, 2775, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 44968, 3709, 286, 257, 1948, 2775, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 23814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 23814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 23814, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2775, 62, 312, 28, 28484, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 23814, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 10215, 1819, 341, 23569, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 477, 262, 10225, 257, 2095, 468, 587, 257, 2888, 286, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 10215, 1819, 341, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 10215, 1819, 341, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 10215, 1819, 341, 23569, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 10215, 1819, 341, 23569, 14, 11537, 628, 198, 4299, 1281, 62, 10641, 19858, 62, 22769, 62, 312, 62, 66, 2777, 64, 7, 25666, 2095, 62, 312, 11, 3435, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 3435, 25, 383, 2496, 3435, 284, 15284, 262, 3877, 329, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 33687, 257, 2723, 2095, 4522, 287, 262, 19016, 290, 257, 900, 286, 2496, 2095, 4522, 338, 287, 262, 1767, 11, 5860, 257, 327, 50087, 3877, 1575, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 66, 2777, 64, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 19, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 66, 2777, 64, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3435, 28, 10641, 19858, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 66, 2777, 64, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 17359, 15212, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 2095, 338, 4391, 14916, 290, 18787, 1321, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 17359, 15212, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 17359, 15212, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 17359, 15212, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 17359, 15212, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 69, 715, 654, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 43500, 654, 286, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 11537, 628, 198, 4299, 1281, 62, 10641, 19858, 62, 22769, 62, 312, 62, 69, 715, 654, 7, 25666, 2095, 62, 312, 11, 15830, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 15830, 25, 14890, 546, 262, 649, 15830, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 12793, 257, 649, 15830, 329, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15830, 28, 32232, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 11537, 628, 198, 4299, 12233, 62, 10641, 19858, 62, 22769, 62, 312, 62, 69, 715, 654, 62, 32232, 62, 312, 7, 25666, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15830, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 15830, 62, 312, 25, 4522, 329, 257, 15830, 286, 428, 2095, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 23520, 257, 15830, 422, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 90, 32232, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 90, 32232, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 90, 32232, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 15830, 62, 312, 28, 32232, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 7206, 2538, 9328, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 69, 715, 654, 14, 90, 32232, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 33559, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 262, 11026, 4522, 262, 2095, 318, 287, 11, 611, 597, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 33559, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 33559, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 3126, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 15932, 25, 770, 6339, 468, 281, 8515, 1695, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 685, 28813, 286, 262, 7865, 2458, 16151, 5450, 1378, 46551, 13, 44655, 13670, 13, 3262, 14, 26069, 14, 42861, 14, 7959, 31113, 18851, 12, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 33559, 34729, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 33559, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 44482, 62, 34242, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 34931, 16700, 286, 257, 2095, 2950, 287, 17710, 15611, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44482, 14, 34242, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 23928, 1187, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 35223, 319, 262, 4075, 17271, 286, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 23928, 1187, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 23928, 1187, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 23928, 1187, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 7982, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 23928, 1187, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 23213, 563, 62, 43863, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2291, 62, 785, 16838, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2291, 62, 785, 16838, 25, 10127, 284, 19818, 5668, 2095, 2831, 3946, 13, 5514, 3407, 3946, 422, 262, 1613, 4101, 1528, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 2831, 3946, 4624, 416, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 23213, 563, 14, 43863, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 23213, 563, 14, 43863, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 23213, 563, 14, 43863, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2291, 62, 785, 16838, 28, 17256, 62, 785, 16838, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 23213, 563, 14, 43863, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 12728, 26165, 62, 49921, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 257, 2095, 338, 12847, 290, 9089, 1016, 736, 4101, 1528, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 12728, 26165, 14, 49921, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 12728, 26165, 14, 49921, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 12728, 26165, 14, 49921, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 12728, 26165, 14, 49921, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 24886, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 6188, 546, 262, 3435, 1459, 4067, 13, 16409, 262, 1459, 6591, 1080, 4686, 11, 290, 635, 262, 1459, 4429, 393, 4645, 4522, 611, 9723, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 24886, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 24886, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 642, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 24886, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 75, 4815, 774, 62, 13033, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 15843, 2173, 329, 477, 10225, 262, 2095, 468, 3111, 329, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 75, 4815, 774, 14, 13033, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 75, 4815, 774, 14, 13033, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 75, 4815, 774, 14, 13033, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 75, 4815, 774, 14, 13033, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14722, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 62, 4529, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 14722, 25, 376, 7569, 691, 285, 1768, 326, 2872, 530, 393, 517, 286, 262, 1813, 14722, 198, 220, 220, 220, 1058, 17143, 938, 62, 4529, 62, 312, 25, 7343, 691, 6920, 351, 281, 4522, 2793, 621, 262, 1813, 4522, 11, 611, 1944, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 262, 2026, 749, 2274, 6920, 24697, 16686, 284, 262, 2095, 326, 2872, 262, 12405, 9987, 13, 2264, 10640, 460, 307, 29083, 416, 6167, 11, 290, 938, 62, 4529, 62, 312, 460, 307, 973, 284, 42208, 4559, 16196, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 1542, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14722, 28, 23912, 1424, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 62, 4529, 62, 312, 28, 12957, 62, 4529, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 11537, 628, 198, 4299, 1281, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 7, 25666, 2095, 62, 312, 11, 6920, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 6920, 25, 383, 6920, 284, 3758, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 13610, 290, 3758, 257, 649, 6920, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6920, 28, 4529, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 62, 23912, 1424, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 262, 2985, 6920, 14722, 11, 555, 961, 9853, 329, 1123, 6167, 290, 257, 2472, 555, 961, 954, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 1542, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 11537, 628, 198, 4299, 1281, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 62, 23912, 1424, 7, 25666, 2095, 62, 312, 11, 6167, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 6167, 25, 36052, 284, 2251, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 13610, 257, 6920, 6167, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6167, 28, 18242, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 11537, 628, 198, 4299, 12233, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 62, 23912, 1424, 62, 18242, 62, 312, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 2095, 62, 312, 11, 6167, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 6167, 62, 312, 25, 1052, 32356, 6167, 4686, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 23520, 257, 6920, 6167, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 90, 18242, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 90, 18242, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 90, 18242, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 6167, 62, 312, 28, 18242, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 7206, 2538, 9328, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 23912, 1424, 14, 90, 18242, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 62, 20713, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 477, 21898, 8341, 326, 262, 2095, 318, 45794, 284, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 20713, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 20713, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 20713, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 7982, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 20713, 14, 11537, 628, 198, 4299, 12233, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 62, 4529, 62, 312, 7, 25666, 2095, 62, 312, 11, 6920, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 6920, 62, 312, 25, 1052, 32356, 6920, 4522, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 23520, 257, 6920, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6920, 62, 312, 28, 4529, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 7206, 2538, 9328, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 62, 4529, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6920, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 6920, 62, 312, 25, 1052, 32356, 6920, 4522, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 262, 10154, 286, 281, 32356, 6920, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 1542, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6920, 62, 312, 28, 4529, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 11537, 628, 198, 4299, 1234, 62, 10641, 19858, 62, 22769, 62, 312, 62, 4529, 62, 4529, 62, 312, 7, 25666, 2095, 62, 312, 11, 10154, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6920, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 10154, 25, 6060, 973, 284, 4296, 262, 6920, 198, 220, 220, 220, 1058, 17143, 6920, 62, 312, 25, 1052, 32356, 6920, 4522, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 10133, 20150, 546, 257, 6920, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10154, 28, 3642, 658, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6920, 62, 312, 28, 4529, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 30076, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 4529, 14, 90, 4529, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 1150, 874, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 28057, 262, 2095, 468, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1150, 874, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1150, 874, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1150, 874, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1150, 874, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 45374, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 31525, 3898, 1700, 286, 477, 9691, 1760, 416, 257, 2095, 329, 262, 1613, 1542, 1528, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 45374, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 45374, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 45374, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 10053, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 45374, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 1662, 6637, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 2095, 19605, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1662, 6637, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 20, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1662, 6637, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 10053, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1662, 6637, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 1662, 6637, 62, 3642, 8656, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 19605, 546, 1719, 587, 2087, 284, 2130, 338, 2800, 1351, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1662, 6637, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1662, 6637, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1662, 6637, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 10053, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1662, 6637, 14, 3642, 8656, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 25119, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 47719, 611, 262, 2095, 318, 3058, 2691, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 25119, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 3126, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 25119, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 10365, 1922, 871, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 8861, 5201, 416, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 10365, 1922, 871, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 10365, 1922, 871, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 10365, 1922, 871, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 10365, 1922, 871, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 6361, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 1280, 1910, 6266, 4624, 416, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6361, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6361, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 24938, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6361, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 6361, 62, 23569, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 16769, 290, 21350, 1910, 6266, 4624, 416, 257, 2095, 510, 284, 4101, 1528, 287, 262, 1613, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6361, 14, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6361, 14, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6361, 14, 23569, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6361, 14, 23569, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 11578, 1039, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 257, 1351, 286, 477, 27047, 20848, 6898, 416, 257, 2095, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 11578, 1039, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 11578, 1039, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 11578, 1039, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 10053, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 11578, 1039, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 11578, 1039, 62, 47427, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5440, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 5440, 62, 312, 25, 11397, 4686, 286, 262, 2496, 5440, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 1336, 3307, 319, 262, 12461, 286, 257, 2060, 27047, 18815, 11, 1390, 6117, 11, 20567, 290, 11926, 13, 5740, 25, 43800, 1321, 318, 691, 42653, 49262, 618, 262, 18815, 318, 9569, 832, 262, 5456, 13, 6188, 481, 407, 4296, 1566, 428, 9987, 318, 1138, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 11578, 1039, 14, 90, 47427, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 11578, 1039, 14, 90, 47427, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 10053, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 5440, 62, 312, 28, 47427, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 11578, 1039, 14, 90, 47427, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 634, 12907, 7, 25666, 2095, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 18560, 2956, 7278, 329, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 634, 12907, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 634, 12907, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 634, 12907, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 305, 829, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 257, 2095, 338, 12017, 9176, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 305, 829, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 305, 829, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 305, 829, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 12947, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9376, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2989, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7646, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 9376, 25, 5994, 286, 12066, 284, 2989, 329, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 2989, 25, 383, 4731, 284, 2989, 319, 198, 220, 220, 220, 1058, 17143, 7646, 25, 10127, 262, 2989, 815, 307, 257, 7646, 2872, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 11140, 329, 12066, 326, 2872, 257, 1813, 850, 12, 8841, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 12947, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 12947, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 12947, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9376, 28, 66, 26129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2989, 28, 12947, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7646, 28, 301, 2012, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 12947, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 6720, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 262, 1459, 4074, 2099, 11, 1438, 290, 4686, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6720, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6720, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 642, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 685, 28813, 286, 262, 7865, 2458, 16151, 5450, 1378, 46551, 13, 44655, 13670, 13, 3262, 14, 26069, 14, 42861, 14, 7959, 31113, 18851, 12, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6720, 34729, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 6720, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 42401, 36560, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 262, 17839, 5032, 16834, 329, 262, 1813, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 42401, 36560, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 42401, 36560, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 42401, 36560, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 7982, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 42401, 36560, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 8135, 2171, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 477, 8776, 4678, 329, 262, 1813, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 8135, 2171, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 19, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 8135, 2171, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 7982, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 8135, 2171, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 1481, 654, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 2095, 33864, 422, 6554, 11, 15888, 10225, 11, 290, 18783, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1481, 654, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1481, 654, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1481, 654, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 1481, 654, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 34242, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 19406, 24169, 9756, 329, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 34242, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 34242, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 807, 2414, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 34242, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 83, 30540, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 257, 2095, 338, 8714, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 83, 30540, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 44623, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 257, 2095, 338, 13008, 5236, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 7982, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 44623, 62, 24891, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 4990, 30227, 262, 1813, 2095, 338, 13008, 3989, 1016, 1542, 1528, 736, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 24891, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 21, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 24891, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 22769, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 24891, 14, 11537, 628, 198, 4299, 651, 62, 10641, 19858, 62, 22769, 62, 312, 62, 44623, 62, 7645, 4658, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2095, 62, 312, 25, 1052, 32356, 2095, 4522, 198, 220, 220, 220, 1058, 17143, 422, 62, 312, 25, 5514, 905, 8945, 3022, 878, 262, 530, 20717, 416, 428, 4686, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 13008, 8945, 286, 257, 2095, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 7645, 4658, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 7645, 4658, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 7645, 4658, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2095, 62, 312, 28, 22769, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 422, 62, 312, 28, 6738, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10641, 19858, 14, 90, 22769, 62, 312, 92, 14, 44623, 14, 7645, 4658, 14, 11537, 628, 198, 4299, 651, 62, 28484, 82, 62, 11377, 62, 65, 2340, 62, 28484, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2775, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2775, 62, 312, 25, 4522, 286, 257, 2775, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 44968, 27837, 319, 257, 1171, 14389, 2775, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 28484, 82, 14, 11377, 14, 65, 2340, 14, 90, 28484, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 28484, 82, 14, 11377, 14, 65, 2340, 14, 90, 28484, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 28484, 82, 14, 11377, 14, 65, 2340, 14, 90, 28484, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 28484, 62, 312, 28, 28484, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 28484, 82, 14, 11377, 14, 65, 2340, 14, 90, 28484, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 28484, 82, 62, 11377, 62, 23814, 62, 28484, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2775, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2775, 62, 312, 25, 4522, 286, 257, 2775, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 44968, 3709, 286, 257, 1171, 2775, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 28484, 82, 14, 11377, 14, 23814, 14, 90, 28484, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 28484, 82, 14, 11377, 14, 23814, 14, 90, 28484, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 28484, 82, 14, 11377, 14, 23814, 14, 90, 28484, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 28484, 62, 312, 28, 28484, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 28484, 82, 14, 11377, 14, 23814, 14, 90, 28484, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 28484, 82, 62, 11377, 62, 36996, 62, 312, 7, 25666, 3814, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 11, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 3814, 62, 312, 25, 1052, 32356, 3814, 4686, 198, 220, 220, 220, 16409, 257, 42208, 3898, 1351, 286, 477, 1171, 8592, 287, 262, 1813, 3814, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 28484, 82, 14, 11377, 14, 90, 36996, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 28484, 82, 14, 11377, 14, 90, 36996, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 28484, 82, 14, 11377, 14, 90, 36996, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 21431, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3814, 62, 312, 28, 36996, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 28484, 82, 14, 11377, 14, 90, 36996, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 341, 62, 10215, 1819, 341, 62, 312, 62, 45374, 62, 2302, 37810, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 5683, 7861, 48085, 329, 477, 8824, 22716, 852, 21242, 416, 1006, 48858, 16686, 284, 257, 12017, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 2302, 37810, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 2302, 37810, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 2302, 37810, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 21431, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 9327, 62, 13511, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 2302, 37810, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 341, 62, 10215, 1819, 341, 62, 312, 62, 45374, 62, 672, 2655, 690, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 31525, 3898, 1351, 286, 477, 12066, 6007, 286, 21769, 290, 8296, 9691, 329, 257, 12017, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 672, 2655, 690, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 672, 2655, 690, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 672, 2655, 690, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 10781, 415, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 672, 2655, 690, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 341, 62, 10215, 1819, 341, 62, 312, 62, 45374, 62, 672, 2655, 690, 62, 672, 15388, 62, 312, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 12017, 62, 312, 11, 22890, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 11, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 22890, 62, 312, 25, 317, 9691, 22890, 4686, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 31525, 3898, 1700, 286, 477, 9691, 1775, 416, 281, 22890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 672, 2655, 690, 14, 90, 672, 15388, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 672, 2655, 690, 14, 90, 672, 15388, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 672, 2655, 690, 14, 90, 672, 15388, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 10781, 415, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 22890, 62, 312, 28, 672, 15388, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 341, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 45374, 14, 672, 2655, 690, 14, 90, 672, 15388, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 37659, 535, 273, 862, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 299, 14751, 10225, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 37659, 535, 273, 862, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 37659, 535, 273, 862, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 37659, 535, 273, 862, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 37659, 535, 273, 862, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 7, 25666, 12017, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 5094, 1321, 546, 257, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 19, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 439, 3610, 23569, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 477, 262, 29614, 257, 12017, 468, 587, 257, 2888, 286, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 439, 3610, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 439, 3610, 23569, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 439, 3610, 23569, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 19668, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 1351, 286, 262, 12017, 6798, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 11537, 628, 198, 4299, 1281, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 19668, 62, 17946, 602, 7, 25666, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 2340, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 2378, 62, 2340, 25, 317, 1351, 286, 2378, 220, 2340, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 7064, 329, 257, 900, 286, 2378, 220, 2340, 11, 543, 345, 460, 651, 422, 12017, 6798, 36123, 13, 22819, 17540, 329, 3709, 287, 8181, 945, 393, 8985, 389, 900, 284, 357, 15, 11, 15, 11, 15, 8, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 17946, 602, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 17946, 602, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 2340, 28, 9186, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 17946, 602, 14, 11537, 628, 198, 4299, 1281, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 19668, 62, 14933, 7, 25666, 12017, 62, 312, 11, 2378, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 2378, 62, 2340, 25, 317, 1351, 286, 2378, 220, 2340, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 3891, 329, 257, 900, 286, 2378, 220, 2340, 11, 543, 345, 460, 651, 422, 12017, 6798, 36123, 13, 5514, 4938, 329, 3709, 326, 460, 24184, 3891, 11, 588, 16472, 393, 7937, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 14933, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 14933, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 14933, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 2340, 28, 9186, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19668, 14, 14933, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 17585, 17190, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 257, 1351, 286, 4171, 17190, 262, 12017, 12216, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 17585, 17190, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 17585, 17190, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 17585, 17190, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 2070, 14306, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 317, 1351, 286, 534, 12017, 338, 1492, 14306, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2070, 14306, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2070, 14306, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2070, 14306, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2070, 14306, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 2070, 14306, 62, 11379, 364, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 317, 1351, 286, 534, 12017, 338, 44007, 24512, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2070, 14306, 14, 11379, 364, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2070, 14306, 14, 11379, 364, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2070, 14306, 14, 11379, 364, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2070, 14306, 14, 11379, 364, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 3642, 8656, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 13961, 286, 257, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 8656, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 8656, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 3642, 8656, 62, 23912, 1424, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 2183, 14722, 329, 257, 12017, 338, 13961, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 8656, 14, 23912, 1424, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 3642, 50221, 62, 6404, 82, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 17259, 6264, 287, 262, 1613, 3598, 1528, 422, 477, 14984, 2604, 5713, 16472, 357, 1847, 6173, 8, 6898, 416, 257, 1813, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 50221, 14, 6404, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 50221, 14, 6404, 82, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 10053, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 3642, 50221, 14, 6404, 82, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 28484, 82, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 8592, 1695, 284, 257, 12017, 11, 691, 611, 262, 12017, 318, 44168, 11, 2453, 273, 393, 8333, 1453, 13, 5514, 5860, 8592, 645, 4697, 621, 1542, 1528, 11, 393, 611, 262, 3722, 318, 366, 259, 62, 33723, 1911, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 28484, 82, 62, 28484, 62, 312, 62, 65, 2340, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 2775, 62, 312, 11, 12017, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 11, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2775, 62, 312, 25, 4522, 286, 257, 2775, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 44968, 27837, 319, 257, 1948, 14389, 2775, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 65, 2340, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 65, 2340, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 65, 2340, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2775, 62, 312, 28, 28484, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 65, 2340, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 28484, 82, 62, 28484, 62, 312, 62, 23814, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 2775, 62, 312, 11, 12017, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2775, 62, 312, 25, 4522, 286, 257, 2775, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 44968, 3709, 286, 257, 1948, 2775, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 23814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 23814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 23814, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2775, 62, 312, 28, 28484, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 28484, 82, 14, 90, 28484, 62, 312, 92, 14, 23814, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 23144, 82, 62, 2364, 1063, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 17112, 9730, 6898, 416, 257, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 23144, 82, 62, 2364, 1063, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 23144, 82, 62, 2364, 1063, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 23144, 82, 62, 2364, 1063, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 23144, 82, 62, 2364, 1063, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 7146, 3279, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 12017, 44338, 290, 13008, 7297, 3891, 11, 691, 905, 611, 257, 7297, 318, 407, 1262, 262, 4277, 1438, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7146, 3279, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7146, 3279, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7146, 3279, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7146, 3279, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 38942, 2410, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 12017, 338, 7291, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 38942, 2410, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 38942, 2410, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 38942, 2410, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 19239, 62, 13511, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 38942, 2410, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 44482, 62, 34242, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 14370, 546, 257, 12017, 2950, 287, 17710, 15611, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 44482, 14, 34242, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 34280, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 262, 7196, 2956, 7278, 329, 257, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 34280, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 34280, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 34280, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 34280, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 23213, 563, 62, 43863, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2291, 62, 785, 16838, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2291, 62, 785, 16838, 25, 10127, 284, 19818, 5668, 12017, 2831, 3946, 13, 5514, 3407, 3946, 422, 262, 1613, 4101, 1528, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 2831, 3946, 1057, 416, 257, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 23213, 563, 14, 43863, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 23213, 563, 14, 43863, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 23213, 563, 14, 43863, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 19239, 62, 13511, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2291, 62, 785, 16838, 28, 17256, 62, 785, 16838, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 23213, 563, 14, 43863, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 12728, 26165, 62, 49921, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 257, 1351, 286, 257, 12017, 338, 12847, 290, 9089, 1016, 736, 4101, 1528, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 12728, 26165, 14, 49921, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 12728, 26165, 14, 49921, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 12728, 26165, 14, 49921, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 12728, 26165, 14, 49921, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 1150, 874, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 257, 12017, 338, 28057, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1150, 874, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1150, 874, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1150, 874, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1150, 874, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 1150, 874, 62, 39361, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 28057, 4884, 416, 257, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1150, 874, 14, 39361, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1150, 874, 14, 39361, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1150, 874, 14, 39361, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1150, 874, 14, 39361, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 30814, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 262, 1459, 2888, 1351, 286, 257, 12017, 11, 262, 11241, 338, 2095, 761, 284, 307, 257, 2888, 286, 262, 12017, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 30814, 62, 32374, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 257, 12017, 338, 2888, 4179, 11, 407, 1390, 6123, 2241, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 32374, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 32374, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 32374, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 32374, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 30814, 62, 83, 30540, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 257, 12017, 338, 1866, 6, 8714, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 30814, 14, 83, 30540, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 19522, 36280, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 3224, 1321, 546, 257, 12017, 338, 1866, 543, 5419, 9646, 511, 4568, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19522, 36280, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19522, 36280, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19522, 36280, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 19522, 36280, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 6361, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 1280, 1910, 6266, 4624, 319, 8378, 286, 257, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 6361, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 6361, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 24938, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 10781, 415, 11, 41956, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 6361, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 6361, 62, 23569, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7343, 16769, 290, 21350, 1910, 6266, 4624, 319, 8378, 286, 257, 12017, 510, 284, 4101, 1528, 287, 262, 1613, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 6361, 14, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 6361, 14, 23569, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 10781, 415, 11, 41956, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 6361, 14, 23569, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 305, 829, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 262, 9176, 286, 477, 1866, 611, 262, 2095, 468, 262, 8213, 4706, 2597, 393, 597, 7264, 540, 2597, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 305, 829, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 305, 829, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 305, 829, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 305, 829, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 305, 829, 62, 23569, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 703, 9176, 423, 3421, 329, 257, 2243, 6944, 338, 1866, 11, 510, 284, 257, 1227, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 305, 829, 14, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 305, 829, 14, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 305, 829, 14, 23569, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 305, 829, 14, 23569, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 20077, 10476, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 262, 1459, 19195, 286, 257, 12017, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 20077, 10476, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 20077, 10476, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 20077, 10476, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 20077, 10476, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 1481, 654, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 12017, 33864, 422, 6554, 11, 15888, 10225, 11, 290, 18783, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1481, 654, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1481, 654, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1481, 654, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 1481, 654, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 7364, 65, 1386, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 1351, 286, 12017, 3491, 65, 1386, 357, 37997, 274, 8, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7364, 65, 1386, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7364, 65, 1386, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7364, 65, 1386, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7364, 65, 1386, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 7364, 65, 1386, 62, 7364, 8692, 62, 312, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 12017, 62, 312, 11, 3491, 8692, 62, 312, 11, 1080, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3491, 8692, 62, 312, 25, 1052, 32356, 3491, 8692, 357, 37997, 8, 4522, 198, 220, 220, 220, 1058, 17143, 1080, 62, 312, 25, 383, 6591, 1080, 428, 3491, 8692, 357, 37997, 8, 318, 5140, 287, 11, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 2972, 6460, 290, 18017, 286, 257, 3491, 8692, 357, 37997, 8, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7364, 65, 1386, 14, 90, 7364, 8692, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7364, 65, 1386, 14, 90, 7364, 8692, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7364, 65, 1386, 14, 90, 7364, 8692, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3491, 8692, 62, 312, 28, 7364, 8692, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1080, 62, 312, 28, 10057, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7364, 65, 1386, 14, 90, 7364, 8692, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 7249, 942, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 257, 1351, 286, 12017, 8573, 13, 770, 6339, 338, 2196, 3407, 262, 2458, 284, 8573, 6496, 287, 428, 4130, 25, 3740, 1378, 2503, 13, 44655, 25119, 13, 785, 14, 20205, 14, 929, 4053, 12, 17, 13, 15, 12, 7249, 942, 12, 36653, 12, 4976, 12, 261, 12, 69, 1765, 3728, 12, 1485, 400, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7249, 942, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7249, 942, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 9327, 62, 13511, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 7249, 942, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 83, 30540, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 257, 12017, 338, 8714, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 83, 30540, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 5890, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 83, 30540, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 16783, 5289, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 257, 12017, 338, 29608, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 10781, 415, 11, 20000, 62, 30116, 415, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 16783, 5289, 62, 21426, 62, 24891, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 12017, 62, 312, 11, 7297, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 11, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 7297, 25, 37249, 1994, 286, 262, 7297, 284, 21207, 22790, 422, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 4990, 30227, 262, 1813, 12017, 338, 13008, 3989, 329, 262, 1813, 7297, 1016, 1542, 1528, 736, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 90, 21426, 92, 14, 24891, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 19, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 90, 21426, 92, 14, 24891, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 10781, 415, 11, 20000, 62, 30116, 415, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7297, 28, 21426, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 90, 21426, 92, 14, 24891, 14, 11537, 628, 198, 4299, 651, 62, 10215, 1819, 602, 62, 10215, 1819, 341, 62, 312, 62, 16783, 5289, 62, 21426, 62, 7645, 4658, 7, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 11, 12017, 62, 312, 11, 7297, 11, 422, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 7297, 25, 37249, 1994, 286, 262, 7297, 284, 21207, 22790, 422, 198, 220, 220, 220, 1058, 17143, 422, 62, 312, 25, 5514, 905, 3989, 12784, 3022, 878, 262, 8611, 20717, 416, 428, 4686, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 3497, 13008, 8945, 286, 257, 12017, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 90, 21426, 92, 14, 7645, 4658, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 90, 21426, 92, 14, 7645, 4658, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 90, 21426, 92, 14, 7645, 4658, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 26848, 530, 286, 262, 1708, 32356, 12017, 2597, 7, 82, 2599, 10781, 415, 11, 20000, 62, 30116, 415, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 198, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 7297, 28, 21426, 11, 198, 220, 220, 220, 220, 220, 220, 220, 422, 62, 312, 28, 6738, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10215, 1819, 602, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 16783, 5289, 14, 90, 21426, 92, 14, 7645, 4658, 14, 6, 198, 220, 220, 220, 1267, 628, 198, 4299, 651, 62, 9703, 2611, 62, 1078, 7657, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 40937, 11688, 220, 2340, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9703, 2611, 14, 1078, 7657, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9703, 2611, 14, 1078, 7657, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 9703, 2611, 14, 1078, 7657, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9703, 2611, 14, 1078, 7657, 14, 11537, 628, 198, 4299, 651, 62, 9703, 2611, 62, 1078, 7657, 62, 42348, 62, 312, 7, 25666, 11688, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11688, 62, 312, 25, 317, 40937, 11688, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 1321, 319, 257, 40937, 11688, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9703, 2611, 14, 1078, 7657, 14, 90, 42348, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9703, 2611, 14, 1078, 7657, 14, 90, 42348, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 9703, 2611, 14, 1078, 7657, 14, 90, 42348, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 42348, 62, 312, 28, 42348, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9703, 2611, 14, 1078, 7657, 14, 90, 42348, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 9703, 2611, 62, 67, 28995, 62, 23814, 62, 4906, 62, 312, 62, 9186, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2378, 62, 312, 25, 2378, 62, 312, 18253, 198, 220, 220, 220, 1058, 17143, 2099, 62, 312, 25, 2099, 62, 312, 18253, 198, 220, 220, 220, 16409, 7508, 546, 257, 8925, 2378, 7186, 422, 15148, 351, 257, 4517, 64, 489, 8597, 312, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9703, 2611, 14, 67, 28995, 14, 23814, 14, 90, 4906, 62, 312, 92, 14, 90, 9186, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9703, 2611, 14, 67, 28995, 14, 23814, 14, 90, 4906, 62, 312, 92, 14, 90, 9186, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 9703, 2611, 14, 67, 28995, 14, 23814, 14, 90, 4906, 62, 312, 92, 14, 90, 9186, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2378, 62, 312, 28, 9186, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 312, 28, 4906, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9703, 2611, 14, 67, 28995, 14, 23814, 14, 90, 4906, 62, 312, 92, 14, 90, 9186, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 9703, 2611, 62, 34435, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 40937, 1245, 220, 2340, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9703, 2611, 14, 34435, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9703, 2611, 14, 34435, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 9703, 2611, 14, 34435, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9703, 2611, 14, 34435, 14, 11537, 628, 198, 4299, 651, 62, 9703, 2611, 62, 34435, 62, 10760, 62, 312, 7, 25666, 1245, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 1245, 62, 312, 25, 317, 40937, 1245, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 1321, 319, 257, 40937, 1245, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9703, 2611, 14, 34435, 14, 90, 10760, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 9703, 2611, 14, 34435, 14, 90, 10760, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10760, 62, 312, 28, 10760, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9703, 2611, 14, 34435, 14, 90, 10760, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 27919, 1039, 62, 33559, 62, 312, 7, 25666, 11026, 62, 312, 11, 11241, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 3307, 546, 257, 11026, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 642, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 11537, 628, 198, 4299, 1234, 62, 27919, 1039, 62, 33559, 62, 312, 7, 25666, 11026, 62, 312, 11, 649, 62, 33692, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 649, 62, 33692, 25, 1867, 284, 4296, 329, 428, 11026, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 10133, 6460, 546, 257, 11026, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 649, 62, 33692, 28, 3605, 62, 33692, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 30076, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 27919, 1039, 62, 33559, 62, 312, 62, 30814, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11026, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 1321, 546, 11026, 1866, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 642, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11026, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 11537, 628, 198, 4299, 1281, 62, 27919, 1039, 62, 33559, 62, 312, 62, 30814, 7, 25666, 11026, 62, 312, 11, 17023, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 17023, 25, 14890, 286, 262, 17023, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 10001, 578, 257, 2095, 656, 262, 11026, 13, 1002, 257, 2095, 468, 257, 327, 50087, 3877, 900, 340, 318, 407, 1744, 284, 14037, 606, 284, 262, 11026, 1262, 412, 11584, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17023, 28, 16340, 3780, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 11537, 628, 198, 4299, 12233, 62, 27919, 1039, 62, 33559, 62, 312, 62, 30814, 62, 19522, 62, 312, 7, 25666, 11026, 62, 312, 11, 2888, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 2888, 62, 312, 25, 383, 2095, 4522, 286, 257, 2888, 287, 428, 11026, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 10279, 257, 11026, 2888, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 90, 19522, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 90, 19522, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 90, 19522, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2888, 62, 312, 28, 19522, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 7206, 2538, 9328, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 90, 19522, 62, 312, 92, 14, 11537, 628, 198, 4299, 1234, 62, 27919, 1039, 62, 33559, 62, 312, 62, 30814, 62, 19522, 62, 312, 7, 25666, 11026, 62, 312, 11, 2888, 62, 312, 11, 3356, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 2888, 62, 312, 25, 383, 2095, 4522, 286, 257, 2888, 287, 428, 11026, 198, 220, 220, 220, 1058, 17143, 3356, 25, 14890, 286, 262, 17023, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 10028, 257, 11026, 2888, 1088, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 90, 19522, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 90, 19522, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 90, 19522, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2888, 62, 312, 28, 19522, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3356, 28, 21084, 434, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 30076, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 30814, 14, 90, 19522, 62, 312, 92, 14, 11537, 628, 198, 4299, 12233, 62, 27919, 1039, 62, 33559, 62, 312, 62, 16485, 5643, 62, 16485, 324, 62, 312, 7, 25666, 11026, 62, 312, 11, 8244, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 8244, 62, 312, 25, 383, 8244, 284, 12233, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 23520, 257, 11026, 8244, 11, 691, 6565, 31477, 460, 307, 13140, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 16485, 5643, 14, 90, 16485, 324, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 16485, 5643, 14, 90, 16485, 324, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 16485, 5643, 14, 90, 16485, 324, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8244, 62, 312, 28, 16485, 324, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 7206, 2538, 9328, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 16485, 5643, 14, 90, 16485, 324, 62, 312, 92, 14, 11537, 628, 198, 4299, 1234, 62, 27919, 1039, 62, 33559, 62, 312, 62, 16485, 5643, 62, 16485, 324, 62, 312, 7, 25666, 11026, 62, 312, 11, 19264, 11, 8244, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 19264, 25, 968, 1438, 286, 262, 8244, 198, 220, 220, 220, 1058, 17143, 8244, 62, 312, 25, 383, 8244, 284, 36265, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 7152, 480, 257, 11026, 8244, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 16485, 5643, 14, 90, 16485, 324, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 16485, 5643, 14, 90, 16485, 324, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 16485, 5643, 14, 90, 16485, 324, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19264, 28, 77, 3723, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8244, 62, 312, 28, 16485, 324, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 30076, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 16485, 5643, 14, 90, 16485, 324, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 27919, 1039, 62, 33559, 62, 312, 62, 48819, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11026, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 1321, 546, 12098, 287, 257, 11026, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 642, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11026, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 11537, 628, 198, 4299, 1281, 62, 27919, 1039, 62, 33559, 62, 312, 62, 48819, 7, 25666, 11026, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 13610, 257, 649, 8539, 287, 257, 11026, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 11537, 628, 198, 4299, 12233, 62, 27919, 1039, 62, 33559, 62, 312, 62, 48819, 62, 5469, 62, 312, 7, 25666, 11026, 62, 312, 11, 11241, 11, 8539, 62, 312, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 1058, 17143, 8539, 62, 312, 25, 383, 8539, 284, 12233, 198, 220, 220, 220, 23520, 257, 11026, 8539, 11, 691, 6565, 12098, 460, 307, 13140, 13, 383, 8539, 743, 3994, 31477, 11, 475, 262, 31477, 1276, 307, 6565, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8539, 62, 312, 28, 5469, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 7206, 2538, 9328, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 11537, 628, 198, 4299, 1234, 62, 27919, 1039, 62, 33559, 62, 312, 62, 48819, 62, 5469, 62, 312, 7, 25666, 11026, 62, 312, 11, 19264, 11, 11241, 11, 8539, 62, 312, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 19264, 25, 968, 1438, 286, 262, 8539, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 1058, 17143, 8539, 62, 312, 25, 383, 8539, 284, 36265, 198, 220, 220, 220, 7152, 480, 257, 11026, 8539, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19264, 28, 77, 3723, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8539, 62, 312, 28, 5469, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 30076, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 11537, 628, 198, 4299, 1281, 62, 27919, 1039, 62, 33559, 62, 312, 62, 48819, 62, 5469, 62, 312, 62, 16485, 5643, 7, 25666, 11026, 62, 312, 11, 11241, 11, 8539, 62, 312, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11026, 62, 312, 25, 4522, 329, 257, 11026, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 1058, 17143, 8539, 62, 312, 25, 383, 8539, 62, 312, 284, 2251, 8244, 287, 198, 220, 220, 220, 13610, 257, 649, 8244, 287, 257, 11026, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 16485, 5643, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 16485, 5643, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 16485, 5643, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 33559, 62, 312, 28, 33559, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8539, 62, 312, 28, 5469, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 27919, 1039, 14, 90, 33559, 62, 312, 92, 14, 48819, 14, 90, 5469, 62, 312, 92, 14, 16485, 5643, 14, 11537, 628, 198, 4299, 651, 62, 44482, 62, 27940, 12821, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 5849, 604, 3554, 3526, 286, 18783, 329, 12847, 290, 5373, 2173, 11266, 416, 2472, 11, 938, 1285, 290, 7415, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 44482, 14, 27940, 12821, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 44482, 14, 27940, 12821, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 44482, 14, 27940, 12821, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 44482, 14, 27940, 12821, 14, 11537, 628, 198, 4299, 651, 62, 44482, 62, 27940, 12821, 62, 10641, 19858, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 5849, 1802, 3554, 3526, 286, 14982, 329, 12847, 290, 5373, 2173, 11266, 416, 2472, 11, 938, 1285, 290, 7415, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 44482, 14, 27940, 12821, 14, 10641, 19858, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 44482, 14, 27940, 12821, 14, 10641, 19858, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 44482, 14, 27940, 12821, 14, 10641, 19858, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 44482, 14, 27940, 12821, 14, 10641, 19858, 14, 11537, 628, 198, 4299, 651, 62, 44482, 62, 27940, 12821, 62, 10215, 1819, 602, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 5849, 838, 3554, 3526, 286, 10225, 329, 12847, 290, 5373, 2173, 11266, 416, 2472, 11, 938, 1285, 290, 7415, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 44482, 14, 27940, 12821, 14, 10215, 1819, 602, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 44482, 14, 27940, 12821, 14, 10215, 1819, 602, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 44482, 14, 27940, 12821, 14, 10215, 1819, 602, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 44482, 14, 27940, 12821, 14, 10215, 1819, 602, 14, 11537, 628, 198, 4299, 651, 62, 44482, 62, 34242, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 34931, 16700, 82, 286, 18783, 2950, 287, 17710, 15611, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 44482, 14, 34242, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 44482, 14, 34242, 14, 11537, 628, 198, 4299, 651, 62, 44482, 62, 10057, 82, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1052, 16700, 286, 262, 1459, 9238, 286, 17710, 15611, 6591, 3341, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 44482, 14, 10057, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 44482, 14, 10057, 82, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 21431, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 44482, 14, 10057, 82, 14, 11537, 628, 198, 4299, 651, 62, 44482, 62, 86, 945, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 6060, 546, 543, 15888, 18783, 389, 379, 1175, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 44482, 14, 86, 945, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 44482, 14, 86, 945, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 44482, 14, 86, 945, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 44482, 14, 86, 945, 14, 11537, 628, 198, 4299, 651, 62, 1939, 42394, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 8229, 257, 1351, 286, 1459, 753, 42394, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 1939, 42394, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 1939, 42394, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 1939, 42394, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 1939, 42394, 14, 11537, 628, 198, 4299, 651, 62, 23213, 563, 62, 38942, 2410, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 8229, 257, 1351, 286, 2831, 7291, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 23213, 563, 14, 38942, 2410, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 23213, 563, 14, 38942, 2410, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 23213, 563, 14, 38942, 2410, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 23213, 563, 14, 38942, 2410, 14, 11537, 628, 198, 4299, 651, 62, 23213, 563, 62, 10057, 82, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 8229, 1575, 36525, 329, 6591, 3341, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 23213, 563, 14, 10057, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 23213, 563, 14, 10057, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 23213, 563, 14, 10057, 82, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 23213, 563, 14, 10057, 82, 14, 11537, 628, 198, 4299, 651, 62, 1040, 3874, 62, 1050, 1063, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 8229, 1695, 5096, 2974, 329, 477, 4074, 3858, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 1040, 3874, 14, 1050, 1063, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 1040, 3874, 14, 1050, 1063, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 1040, 3874, 14, 1050, 1063, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 1040, 3874, 14, 1050, 1063, 14, 11537, 628, 198, 4299, 651, 62, 12728, 26165, 62, 12728, 4529, 62, 312, 62, 12728, 4529, 62, 17831, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1494, 4529, 62, 17831, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1494, 4529, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 1494, 4529, 62, 17831, 25, 383, 1494, 4529, 12234, 329, 19637, 198, 220, 220, 220, 1058, 17143, 1494, 4529, 62, 312, 25, 383, 1494, 4529, 4522, 284, 307, 42517, 798, 198, 220, 220, 220, 8229, 257, 2060, 1494, 4529, 422, 663, 4522, 290, 12234, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 12728, 26165, 14, 90, 12728, 4529, 62, 312, 92, 14, 90, 12728, 4529, 62, 17831, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 12728, 26165, 14, 90, 12728, 4529, 62, 312, 92, 14, 90, 12728, 4529, 62, 17831, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 12728, 26165, 14, 90, 12728, 4529, 62, 312, 92, 14, 90, 12728, 4529, 62, 17831, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 1105, 2931, 8054, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1494, 4529, 62, 17831, 28, 12728, 4529, 62, 17831, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1494, 4529, 62, 312, 28, 12728, 4529, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 12728, 26165, 14, 90, 12728, 4529, 62, 312, 92, 14, 90, 12728, 4529, 62, 17831, 92, 14, 11537, 628, 198, 4299, 651, 62, 75, 4815, 774, 62, 43409, 62, 10215, 1819, 341, 62, 312, 62, 2364, 364, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12017, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 12017, 62, 312, 25, 1052, 32356, 12017, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 8229, 257, 1351, 286, 4394, 422, 257, 2176, 12017, 338, 15843, 3650, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 75, 4815, 774, 14, 43409, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2364, 364, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 75, 4815, 774, 14, 43409, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2364, 364, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 75, 4815, 774, 14, 43409, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2364, 364, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 10215, 1819, 341, 62, 312, 28, 10215, 1819, 341, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 75, 4815, 774, 14, 43409, 14, 90, 10215, 1819, 341, 62, 312, 92, 14, 2364, 364, 14, 11537, 628, 198, 4299, 651, 62, 34162, 62, 24432, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 2378, 2628, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 34162, 14, 24432, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 34162, 14, 24432, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 34162, 14, 24432, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 34162, 14, 24432, 14, 11537, 628, 198, 4299, 651, 62, 34162, 62, 24432, 62, 10728, 62, 8094, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1910, 62, 8094, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 1910, 62, 8094, 62, 312, 25, 1052, 12882, 2378, 1448, 4522, 198, 220, 220, 220, 3497, 1321, 319, 281, 2378, 1448, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 34162, 14, 24432, 14, 90, 10728, 62, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 34162, 14, 24432, 14, 90, 10728, 62, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 34162, 14, 24432, 14, 90, 10728, 62, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1910, 62, 8094, 62, 312, 28, 10728, 62, 8094, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 34162, 14, 24432, 14, 90, 10728, 62, 8094, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 34162, 62, 1050, 1063, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 8229, 257, 1351, 286, 4536, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 34162, 14, 1050, 1063, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 34162, 14, 1050, 1063, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 34162, 14, 1050, 1063, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 34162, 14, 1050, 1063, 14, 11537, 628, 198, 4299, 651, 62, 34162, 62, 7249, 942, 62, 301, 5620, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4645, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 4645, 62, 312, 25, 8229, 6266, 287, 428, 4645, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 8229, 477, 6266, 287, 257, 4645, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 34162, 14, 7249, 942, 14, 90, 301, 5620, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 34162, 14, 7249, 942, 14, 90, 301, 5620, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 34162, 14, 7249, 942, 14, 90, 301, 5620, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4645, 62, 312, 28, 301, 5620, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 34162, 14, 7249, 942, 14, 90, 301, 5620, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 34162, 62, 36996, 62, 312, 62, 23569, 7, 25666, 3814, 62, 312, 11, 2099, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3814, 62, 312, 25, 8229, 7869, 287, 428, 3814, 198, 220, 220, 220, 1058, 17143, 2099, 62, 312, 25, 8229, 7869, 329, 428, 2099, 198, 220, 220, 220, 8229, 257, 1351, 286, 6754, 1910, 7869, 329, 262, 7368, 2099, 287, 257, 3814, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 23569, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 23569, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3814, 62, 312, 28, 36996, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 312, 28, 4906, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 34162, 14, 90, 36996, 62, 312, 92, 14, 23569, 14, 11537, 628, 198, 4299, 651, 62, 34162, 62, 36996, 62, 312, 62, 6361, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 62, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3814, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 1502, 62, 4906, 25, 37250, 17846, 3256, 705, 7255, 3256, 705, 439, 20520, 25853, 2822, 14, 7255, 6266, 11, 1441, 477, 6266, 416, 4277, 13, 1002, 345, 12405, 1231, 2099, 62, 312, 11, 356, 1464, 1441, 1111, 2822, 290, 3677, 6266, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 3814, 62, 312, 25, 8229, 6266, 287, 428, 3814, 198, 220, 220, 220, 1058, 17143, 2099, 62, 312, 25, 8229, 6266, 691, 329, 428, 2099, 198, 220, 220, 220, 8229, 257, 1351, 286, 6266, 287, 257, 3814, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 6361, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 6361, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 6361, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 5867, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 62, 4906, 28, 2875, 62, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3814, 62, 312, 28, 36996, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 312, 28, 4906, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 34162, 14, 90, 36996, 62, 312, 92, 14, 6361, 14, 11537, 628, 198, 4299, 651, 62, 34162, 62, 36996, 62, 312, 62, 19199, 7, 25666, 3814, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 11, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 3814, 62, 312, 25, 8229, 7869, 287, 428, 3814, 198, 220, 220, 220, 8229, 257, 1351, 286, 2099, 32373, 326, 423, 4075, 6266, 287, 262, 3814, 11, 329, 6942, 1910, 6376, 278, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 19199, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 19199, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 34162, 14, 90, 36996, 62, 312, 92, 14, 19199, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 10053, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3814, 62, 312, 28, 36996, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 34162, 14, 90, 36996, 62, 312, 92, 14, 19199, 14, 11537, 628, 198, 4299, 651, 62, 10365, 1922, 871, 62, 24432, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 8229, 257, 1351, 286, 6443, 2628, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10365, 1922, 871, 14, 24432, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10365, 1922, 871, 14, 24432, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10365, 1922, 871, 14, 24432, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10365, 1922, 871, 14, 24432, 14, 11537, 628, 198, 4299, 651, 62, 10365, 1922, 871, 62, 24432, 62, 8094, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 1448, 62, 312, 25, 4522, 286, 281, 6443, 1448, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 8229, 1321, 286, 281, 6443, 1448, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10365, 1922, 871, 14, 24432, 14, 90, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10365, 1922, 871, 14, 24432, 14, 90, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10365, 1922, 871, 14, 24432, 14, 90, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 62, 312, 28, 8094, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10365, 1922, 871, 14, 24432, 14, 90, 8094, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 10365, 1922, 871, 62, 83, 6791, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 8229, 257, 1351, 286, 6443, 8861, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10365, 1922, 871, 14, 83, 6791, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10365, 1922, 871, 14, 83, 6791, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10365, 1922, 871, 14, 83, 6791, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10365, 1922, 871, 14, 83, 6791, 14, 11537, 628, 198, 4299, 651, 62, 10365, 1922, 871, 62, 83, 6791, 62, 35943, 62, 312, 7, 25666, 4876, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 4876, 62, 312, 25, 4522, 286, 281, 6443, 4876, 198, 220, 220, 220, 8229, 1321, 286, 281, 6443, 4876, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 10365, 1922, 871, 14, 83, 6791, 14, 90, 35943, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 10365, 1922, 871, 14, 83, 6791, 14, 90, 35943, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 10365, 1922, 871, 14, 83, 6791, 14, 90, 35943, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4876, 62, 312, 28, 35943, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 10365, 1922, 871, 14, 83, 6791, 14, 90, 35943, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 38629, 62, 47103, 62, 16520, 1883, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3368, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8787, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6056, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 3368, 25, 3368, 6591, 1080, 4522, 7, 82, 8, 198, 220, 220, 220, 1058, 17143, 8787, 25, 5884, 6591, 1080, 14729, 198, 220, 220, 220, 1058, 17143, 10965, 25, 10965, 6591, 1080, 4522, 198, 220, 220, 220, 1058, 17143, 6056, 25, 37250, 19509, 395, 3256, 705, 22390, 3256, 705, 259, 22390, 20520, 6339, 2324, 12741, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 8159, 25, 8159, 6591, 1080, 4522, 198, 220, 220, 220, 3497, 262, 3341, 1022, 8159, 290, 10965, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 38629, 14, 90, 47103, 92, 14, 90, 16520, 1883, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 38629, 14, 90, 47103, 92, 14, 90, 16520, 1883, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 38629, 14, 90, 47103, 92, 14, 90, 16520, 1883, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 807, 2414, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 27080, 28, 27080, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8787, 28, 8443, 507, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10965, 28, 16520, 1883, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6056, 28, 32109, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8159, 28, 47103, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 38629, 14, 90, 47103, 92, 14, 90, 16520, 1883, 92, 14, 11537, 628, 198, 4299, 651, 62, 12947, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9376, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2989, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7646, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 9376, 25, 5994, 286, 12066, 284, 2989, 329, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 2989, 25, 383, 4731, 284, 2989, 319, 198, 220, 220, 220, 1058, 17143, 7646, 25, 10127, 262, 2989, 815, 307, 257, 7646, 2872, 198, 220, 220, 220, 11140, 329, 12066, 326, 2872, 257, 1813, 850, 12, 8841, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 12947, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 12947, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 12947, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9376, 28, 66, 26129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2989, 28, 12947, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7646, 28, 301, 2012, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 12947, 14, 11537, 628, 198, 4299, 651, 62, 568, 4119, 17224, 62, 35012, 82, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 25156, 18582, 1366, 329, 9964, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 568, 4119, 17224, 14, 35012, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 568, 4119, 17224, 14, 35012, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 568, 4119, 17224, 14, 35012, 82, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 642, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 568, 4119, 17224, 14, 35012, 82, 14, 11537, 628, 198, 4299, 651, 62, 568, 4119, 17224, 62, 8899, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 25156, 18582, 1321, 329, 6591, 3341, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 568, 4119, 17224, 14, 8899, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 568, 4119, 17224, 14, 8899, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 568, 4119, 17224, 14, 8899, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 568, 4119, 17224, 14, 8899, 14, 11537, 628, 198, 4299, 651, 62, 568, 4119, 17224, 62, 7249, 942, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 25156, 18582, 1366, 329, 8573, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 568, 4119, 17224, 14, 7249, 942, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 568, 4119, 17224, 14, 7249, 942, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 568, 4119, 17224, 14, 7249, 942, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 7982, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 568, 4119, 17224, 14, 7249, 942, 14, 11537, 628, 198, 4299, 651, 62, 13376, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 32356, 9652, 3722, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 13376, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 13376, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 13376, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 1542, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 13376, 14, 11537, 628, 198, 4299, 1281, 62, 9019, 62, 2306, 404, 23439, 62, 1014, 4122, 7, 25666, 751, 62, 1462, 62, 27471, 768, 11, 1598, 62, 847, 62, 1014, 13033, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10965, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 751, 62, 1462, 62, 27471, 768, 25, 10127, 428, 6591, 1080, 815, 307, 2087, 284, 262, 3726, 286, 477, 835, 13033, 198, 220, 220, 220, 1058, 17143, 1598, 62, 847, 62, 1014, 13033, 25, 10127, 3424, 584, 835, 13033, 307, 1640, 278, 4375, 428, 530, 198, 220, 220, 220, 1058, 17143, 10965, 62, 312, 25, 383, 10965, 284, 3067, 284, 11, 460, 307, 6591, 1080, 11, 4429, 393, 4645, 338, 4686, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 5345, 257, 6591, 1080, 355, 22320, 23439, 835, 4122, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9019, 14, 2306, 404, 23439, 14, 1014, 4122, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9019, 14, 2306, 404, 23439, 14, 1014, 4122, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 9019, 14, 2306, 404, 23439, 14, 1014, 4122, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 2860, 62, 1462, 62, 27471, 768, 28, 2860, 62, 1462, 62, 27471, 768, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1598, 62, 847, 62, 1014, 13033, 28, 20063, 62, 847, 62, 1014, 13033, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10965, 62, 312, 28, 16520, 1883, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9019, 14, 2306, 404, 23439, 14, 1014, 4122, 14, 11537, 628, 198, 4299, 1281, 62, 9019, 62, 9654, 17497, 62, 28484, 7, 25666, 2775, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2775, 62, 312, 25, 383, 2775, 284, 1280, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 4946, 262, 2775, 4324, 2641, 262, 5456, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9019, 14, 9654, 17497, 14, 28484, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9019, 14, 9654, 17497, 14, 28484, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 9019, 14, 9654, 17497, 14, 28484, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 28484, 62, 312, 28, 28484, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9019, 14, 9654, 17497, 14, 28484, 14, 11537, 628, 198, 4299, 1281, 62, 9019, 62, 9654, 17497, 62, 17018, 7, 25666, 2496, 62, 312, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2496, 62, 312, 25, 383, 2496, 284, 1280, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 4946, 262, 1321, 4324, 329, 257, 2095, 11, 12017, 393, 12801, 2641, 262, 5456, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9019, 14, 9654, 17497, 14, 17018, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9019, 14, 9654, 17497, 14, 17018, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 9019, 14, 9654, 17497, 14, 17018, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 16793, 62, 312, 28, 16793, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9019, 14, 9654, 17497, 14, 17018, 14, 11537, 628, 198, 4299, 1281, 62, 9019, 62, 9654, 17497, 62, 10728, 36604, 7, 25666, 11241, 11, 2099, 62, 312, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 1058, 17143, 2099, 62, 312, 25, 383, 2378, 2099, 284, 1280, 287, 1910, 4324, 198, 220, 220, 220, 4946, 262, 1910, 3307, 4324, 329, 257, 2176, 2099, 2389, 2641, 262, 5456, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9019, 14, 9654, 17497, 14, 10728, 36604, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9019, 14, 9654, 17497, 14, 10728, 36604, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 9019, 14, 9654, 17497, 14, 10728, 36604, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 30001, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 312, 28, 4906, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9019, 14, 9654, 17497, 14, 10728, 36604, 14, 11537, 628, 198, 4299, 1281, 62, 9019, 62, 9654, 17497, 62, 3605, 4529, 7, 25666, 649, 62, 4529, 11, 11241, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 649, 62, 4529, 25, 383, 3307, 286, 6920, 284, 2251, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 4946, 262, 968, 11099, 4324, 11, 1864, 284, 6460, 422, 262, 2581, 611, 9723, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 9019, 14, 9654, 17497, 14, 3605, 4529, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 9019, 14, 9654, 17497, 14, 3605, 4529, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 9019, 14, 9654, 17497, 14, 3605, 4529, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 3605, 62, 4529, 28, 3605, 62, 4529, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 9019, 14, 9654, 17497, 14, 3605, 4529, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 1192, 395, 1678, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 3497, 477, 2095, 10790, 1678, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 1192, 395, 1678, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 1192, 395, 1678, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 1192, 395, 1678, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 1192, 395, 1678, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 1603, 1868, 62, 6667, 912, 62, 1603, 1868, 62, 37976, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27460, 62, 37976, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 27460, 62, 37976, 62, 312, 25, 27460, 62, 37976, 62, 312, 18253, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 1321, 319, 281, 27460, 10999, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 1603, 1868, 62, 6667, 912, 14, 90, 1603, 1868, 62, 37976, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 1603, 1868, 62, 6667, 912, 14, 90, 1603, 1868, 62, 37976, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 1603, 1868, 62, 6667, 912, 14, 90, 1603, 1868, 62, 37976, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 1603, 1868, 62, 37976, 62, 312, 28, 1603, 1868, 62, 37976, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 1603, 1868, 62, 6667, 912, 14, 90, 1603, 1868, 62, 37976, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 18041, 6615, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 3497, 257, 1351, 286, 2910, 6615, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 18041, 6615, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 18041, 6615, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 18041, 6615, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 18041, 6615, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 66, 26129, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 2378, 9376, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 66, 26129, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 66, 26129, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 66, 26129, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 66, 26129, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 66, 26129, 62, 22872, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6536, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 6536, 62, 312, 25, 1052, 12882, 2378, 6536, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 3497, 1321, 286, 281, 2378, 6536, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 66, 26129, 14, 90, 22872, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 66, 26129, 14, 90, 22872, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 66, 26129, 14, 90, 22872, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6536, 62, 312, 28, 22872, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 66, 26129, 14, 90, 22872, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 9979, 695, 602, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 1500, 695, 602, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 9979, 695, 602, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 9979, 695, 602, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 9979, 695, 602, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 9979, 695, 602, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 9979, 695, 602, 62, 9979, 28828, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38712, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 38712, 62, 312, 25, 38712, 62, 312, 18253, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 3497, 1321, 319, 257, 38712, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 9979, 695, 602, 14, 90, 9979, 28828, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 9979, 695, 602, 14, 90, 9979, 28828, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 9979, 695, 602, 14, 90, 9979, 28828, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 38712, 62, 312, 28, 9979, 28828, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 9979, 695, 602, 14, 90, 9979, 28828, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 69, 4658, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 3497, 257, 1351, 286, 18783, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 69, 4658, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 403, 3997, 14, 69, 4658, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 69, 4658, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 70, 11549, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 9382, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 70, 11549, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 70, 11549, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 70, 11549, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 70, 11549, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 70, 11549, 62, 70, 22262, 62, 312, 7, 25666, 13028, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 13028, 62, 312, 25, 13028, 62, 312, 18253, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 1321, 319, 257, 13028, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 70, 11549, 14, 90, 70, 22262, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 70, 11549, 14, 90, 70, 22262, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 70, 11549, 14, 90, 70, 22262, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 70, 22262, 62, 312, 28, 70, 22262, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 70, 11549, 14, 90, 70, 22262, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 24432, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 11, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 3497, 257, 1351, 286, 2378, 2628, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 24432, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 24432, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 24432, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 24432, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 24432, 62, 8094, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 1448, 62, 312, 25, 1052, 12882, 2378, 1448, 4522, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 3497, 1321, 319, 281, 2378, 1448, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 24432, 14, 90, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 24432, 14, 90, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 24432, 14, 90, 8094, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 62, 312, 28, 8094, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 24432, 14, 90, 8094, 62, 312, 92, 14, 11537, 628, 198, 4299, 1281, 62, 403, 3997, 62, 2340, 7, 25666, 3303, 11, 3891, 11, 2453, 62, 16129, 11639, 268, 12, 385, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 3891, 25, 383, 3891, 284, 10568, 198, 220, 220, 220, 1874, 6442, 257, 900, 286, 3891, 284, 32373, 287, 262, 1708, 9376, 25, 6554, 11, 29614, 11, 3435, 11, 1500, 695, 602, 11, 10225, 18783, 11, 13184, 62, 19199, 11, 7652, 11, 8985, 11, 290, 3341, 13, 5514, 2748, 7466, 481, 307, 4504, 13, 1439, 3891, 16499, 329, 389, 39986, 329, 1105, 2250, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 2340, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 2340, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 2340, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3891, 28, 14933, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 2340, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 5908, 684, 62, 22977, 62, 312, 7, 25666, 8824, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 8824, 62, 312, 25, 8824, 62, 312, 18253, 198, 220, 220, 220, 3497, 1321, 319, 257, 8824, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 5908, 684, 14, 90, 22977, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 5908, 684, 14, 90, 22977, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 5908, 684, 14, 90, 22977, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8824, 62, 312, 28, 22977, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 5908, 684, 14, 90, 22977, 62, 312, 92, 14, 11537, 628, 198, 4299, 1281, 62, 403, 3997, 62, 14933, 7, 25666, 220, 2340, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 220, 2340, 25, 383, 220, 2340, 284, 10568, 198, 220, 220, 220, 1874, 6442, 257, 900, 286, 32373, 284, 3891, 290, 9376, 13, 36848, 4522, 338, 329, 31038, 389, 25, 26813, 11, 8422, 602, 11, 1439, 16097, 11, 520, 602, 11, 12347, 11998, 11, 4757, 695, 602, 11, 47089, 11, 24897, 11, 376, 4658, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 14933, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 403, 3997, 14, 14933, 14, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 2340, 28, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 32782, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 14933, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 11578, 1039, 62, 47427, 62, 312, 7, 25666, 5440, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 5440, 62, 312, 25, 5440, 62, 312, 18253, 198, 220, 220, 220, 3497, 1321, 319, 257, 5440, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 11578, 1039, 14, 90, 47427, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 11578, 1039, 14, 90, 47427, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 11578, 1039, 14, 90, 47427, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5440, 62, 312, 28, 47427, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 11578, 1039, 14, 90, 47427, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 81, 2114, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 3497, 257, 1351, 286, 2095, 9558, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 81, 2114, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 81, 2114, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 81, 2114, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 81, 2114, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 2301, 507, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 7652, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 2301, 507, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 2301, 507, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 2301, 507, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 2301, 507, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 2301, 507, 62, 36996, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3814, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 3814, 62, 312, 25, 3814, 62, 312, 18253, 198, 220, 220, 220, 3497, 1321, 319, 257, 3814, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 2301, 507, 14, 90, 36996, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 2301, 507, 14, 90, 36996, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 2301, 507, 14, 90, 36996, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3814, 62, 312, 28, 36996, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 2301, 507, 14, 90, 36996, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 1416, 10024, 873, 62, 1416, 23380, 62, 312, 7, 25666, 44566, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 44566, 62, 312, 25, 317, 30434, 44566, 4522, 198, 220, 220, 220, 3497, 1321, 319, 257, 27047, 8860, 44566, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 1416, 10024, 873, 14, 90, 1416, 23380, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 1416, 10024, 873, 14, 90, 1416, 23380, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 1416, 10024, 873, 14, 90, 1416, 23380, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44566, 62, 312, 28, 1416, 23380, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 1416, 10024, 873, 14, 90, 1416, 23380, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 301, 853, 689, 62, 301, 853, 378, 62, 312, 7, 25666, 336, 853, 378, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 336, 853, 378, 62, 312, 25, 336, 853, 378, 62, 312, 18253, 198, 220, 220, 220, 3497, 1321, 319, 257, 336, 853, 378, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 301, 853, 689, 14, 90, 301, 853, 378, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 301, 853, 689, 14, 90, 301, 853, 378, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 301, 853, 689, 14, 90, 301, 853, 378, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 853, 378, 62, 312, 28, 301, 853, 378, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 301, 853, 689, 14, 90, 301, 853, 378, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 30783, 62, 7364, 62, 312, 7, 25666, 3491, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3491, 62, 312, 25, 3491, 62, 312, 18253, 198, 220, 220, 220, 3497, 1321, 319, 257, 3491, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 30783, 14, 90, 7364, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 30783, 14, 90, 7364, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 30783, 14, 90, 7364, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3491, 62, 312, 28, 7364, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 30783, 14, 90, 7364, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 301, 602, 62, 17529, 62, 312, 7, 25666, 4429, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 4429, 62, 312, 25, 4429, 62, 312, 18253, 198, 220, 220, 220, 3497, 1321, 319, 257, 4429, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 301, 602, 14, 90, 17529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 403, 3997, 14, 301, 602, 14, 90, 17529, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4429, 62, 312, 28, 17529, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 301, 602, 14, 90, 17529, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 7249, 942, 7, 25666, 8106, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 8106, 25, 37250, 10728, 3256, 705, 48119, 870, 62, 35487, 20520, 5514, 1351, 1171, 8573, 326, 423, 428, 2139, 2691, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 7343, 477, 1171, 8573, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 7249, 942, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 7249, 942, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 7249, 942, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 24455, 28, 24455, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 7249, 942, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 7249, 942, 62, 301, 5620, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4645, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 4645, 62, 312, 25, 1052, 12882, 4645, 4522, 198, 220, 220, 220, 1058, 17143, 11241, 25, 8798, 11241, 284, 779, 611, 5906, 284, 900, 257, 13639, 198, 220, 220, 220, 16409, 1321, 319, 9167, 4645, 611, 345, 389, 319, 262, 17382, 13, 15323, 11, 5860, 366, 1890, 37978, 1, 329, 477, 17311, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 7249, 942, 14, 90, 301, 5620, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 403, 3997, 14, 7249, 942, 14, 90, 301, 5620, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4645, 62, 312, 28, 301, 5620, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 28, 30001, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 7249, 942, 14, 90, 301, 5620, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 10057, 62, 73, 8142, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 262, 1271, 286, 18045, 287, 6591, 3341, 1626, 262, 938, 1711, 7464, 379, 262, 41033, 286, 262, 4586, 12, 5841, 1431, 13639, 11, 23494, 23849, 13207, 2272, 13, 5514, 3341, 351, 18045, 481, 307, 5610, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 10057, 62, 73, 8142, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 10057, 62, 73, 8142, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 10057, 62, 73, 8142, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 10057, 62, 73, 8142, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 10057, 62, 74, 2171, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 262, 1271, 286, 4074, 11, 24573, 290, 15888, 12847, 583, 6591, 1080, 1626, 262, 938, 1711, 7464, 379, 262, 41033, 286, 262, 4586, 12, 5841, 1431, 13639, 11, 23494, 23849, 13207, 2272, 13, 5514, 3341, 351, 12847, 481, 307, 5610, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 10057, 62, 74, 2171, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 17, 14, 403, 3997, 14, 10057, 62, 74, 2171, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 10057, 62, 74, 2171, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 10057, 82, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 3497, 257, 1351, 286, 6591, 3341, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 10057, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 10057, 82, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 10057, 82, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 10057, 82, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 10057, 82, 62, 10057, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1080, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 1080, 62, 312, 25, 1080, 62, 312, 18253, 198, 220, 220, 220, 3497, 1321, 319, 257, 6591, 1080, 13, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 10057, 82, 14, 90, 10057, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 19, 14, 403, 3997, 14, 10057, 82, 14, 90, 10057, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1080, 62, 312, 28, 10057, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 10057, 82, 14, 90, 10057, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 19199, 7, 25666, 611, 62, 23108, 62, 15699, 28, 14202, 11, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 3497, 257, 1351, 286, 2099, 220, 2340, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 19199, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 403, 3997, 14, 19199, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 403, 3997, 14, 19199, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 19199, 14, 11537, 628, 198, 4299, 651, 62, 403, 3997, 62, 19199, 62, 4906, 62, 312, 7, 25666, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2453, 62, 16129, 11639, 268, 12, 385, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 2453, 62, 16129, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3303, 25, 37250, 2934, 3256, 705, 268, 12, 385, 3256, 705, 8310, 3256, 705, 6592, 3256, 705, 622, 3256, 705, 23548, 20520, 15417, 284, 779, 287, 262, 2882, 11, 2753, 38177, 625, 21699, 12, 32065, 198, 220, 220, 220, 1058, 17143, 2099, 62, 312, 25, 1052, 12882, 2378, 2099, 4522, 198, 220, 220, 220, 3497, 1321, 319, 257, 2099, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 403, 3997, 14, 19199, 14, 90, 4906, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 18, 14, 403, 3997, 14, 19199, 14, 90, 4906, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 27396, 4445, 379, 1367, 25, 2713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 13635, 62, 16129, 28, 13635, 62, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3303, 28, 16129, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 312, 28, 4906, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 403, 3997, 14, 19199, 14, 90, 4906, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 86, 945, 7, 25666, 3509, 62, 5767, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 3509, 62, 5767, 62, 312, 25, 5514, 1441, 9976, 351, 4522, 4833, 621, 428, 198, 220, 220, 220, 8229, 257, 1351, 286, 9976, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 86, 945, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 86, 945, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 86, 945, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 62, 5767, 62, 312, 28, 9806, 62, 5767, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 86, 945, 14, 11537, 628, 198, 4299, 651, 62, 86, 945, 62, 5767, 62, 312, 7, 25666, 1175, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 1175, 62, 312, 25, 4522, 329, 257, 1175, 198, 220, 220, 220, 8229, 3307, 546, 257, 1175, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 86, 945, 14, 90, 5767, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 86, 945, 14, 90, 5767, 62, 312, 92, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 86, 945, 14, 90, 5767, 62, 312, 92, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1175, 62, 312, 28, 5767, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 86, 945, 14, 90, 5767, 62, 312, 92, 14, 11537, 628, 198, 4299, 651, 62, 86, 945, 62, 5767, 62, 312, 62, 12728, 26165, 7, 25666, 1175, 62, 312, 11, 611, 62, 23108, 62, 15699, 28, 14202, 11, 2443, 11639, 16, 6, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 611, 62, 23108, 62, 15699, 25, 12152, 363, 422, 257, 2180, 2581, 13, 317, 31672, 481, 307, 4504, 611, 428, 7466, 262, 1459, 12152, 363, 198, 220, 220, 220, 1058, 17143, 2443, 25, 9022, 2443, 286, 2482, 284, 1441, 198, 220, 220, 220, 1058, 17143, 1175, 62, 312, 25, 317, 4938, 1175, 4522, 198, 220, 220, 220, 8229, 257, 1351, 286, 12847, 3519, 284, 257, 1175, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 7959, 14, 86, 945, 14, 90, 5767, 62, 312, 92, 14, 12728, 26165, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 1455, 1590, 14, 86, 945, 14, 90, 5767, 62, 312, 92, 14, 12728, 26165, 14, 63, 198, 220, 220, 220, 42400, 6339, 25, 4600, 14, 85, 16, 14, 86, 945, 14, 90, 5767, 62, 312, 92, 14, 12728, 26165, 14, 63, 198, 220, 220, 220, 11420, 198, 220, 220, 220, 770, 6339, 318, 39986, 329, 510, 284, 4570, 405, 4201, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 412, 11584, 62, 25927, 13, 25927, 7, 361, 62, 23108, 62, 15699, 28, 361, 62, 23108, 62, 15699, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2443, 28, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1175, 62, 312, 28, 5767, 62, 312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 10459, 11639, 2213, 26184, 879, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 11639, 42861, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14626, 62, 24396, 11639, 18851, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3108, 28, 69, 26488, 86, 945, 14, 90, 5767, 62, 312, 92, 14, 12728, 26165, 14, 11537, 198 ]
2.079877
103,371
n = int(input()) a = [list(map(int, input().split())) for i in range(n)] c = min([a[0][0], a[0][n-1], a[n - 1][0], a[n - 1][n - 1]]) if a[0][0] == c: for i in a: print(*i) pass elif a[0][n - 1] == c: for i in range(n - 1, -1, -1): for j in range(n): print(a[j][i], end=' ') print() elif a[n - 1][0] == c: for i in range(n): for j in range(n - 1, -1, -1): print(a[j][i], end=' ') print() else: for i in a[::-1]: print(*i[::-1])
[ 77, 796, 493, 7, 15414, 28955, 198, 64, 796, 685, 4868, 7, 8899, 7, 600, 11, 5128, 22446, 35312, 3419, 4008, 329, 1312, 287, 2837, 7, 77, 15437, 198, 198, 66, 796, 949, 26933, 64, 58, 15, 7131, 15, 4357, 257, 58, 15, 7131, 77, 12, 16, 4357, 257, 58, 77, 532, 352, 7131, 15, 4357, 257, 58, 77, 532, 352, 7131, 77, 532, 352, 11907, 8, 198, 198, 361, 257, 58, 15, 7131, 15, 60, 6624, 269, 25, 198, 220, 220, 220, 329, 1312, 287, 257, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 46491, 72, 8, 198, 220, 220, 220, 1208, 198, 417, 361, 257, 58, 15, 7131, 77, 532, 352, 60, 6624, 269, 25, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 532, 352, 11, 532, 16, 11, 532, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2837, 7, 77, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 64, 58, 73, 7131, 72, 4357, 886, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 198, 417, 361, 257, 58, 77, 532, 352, 7131, 15, 60, 6624, 269, 25, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 77, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 474, 287, 2837, 7, 77, 532, 352, 11, 532, 16, 11, 532, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 64, 58, 73, 7131, 72, 4357, 886, 11639, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 3419, 198, 198, 17772, 25, 198, 220, 220, 220, 329, 1312, 287, 257, 58, 3712, 12, 16, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 46491, 72, 58, 3712, 12, 16, 12962 ]
1.722772
303
#!/usr/bin/env python # -*- coding: utf-8 -*- """ test_util ---------------------------------- Tests for `util` module. """ try: import unittest2 as unittest except ImportError: import unittest from lispify import util if __name__ == '__main__': unittest.main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 37811, 198, 9288, 62, 22602, 198, 3880, 438, 198, 198, 51, 3558, 329, 4600, 22602, 63, 8265, 13, 198, 37811, 628, 198, 28311, 25, 198, 220, 220, 220, 1330, 555, 715, 395, 17, 355, 555, 715, 395, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1330, 555, 715, 395, 198, 198, 6738, 300, 8802, 1958, 1330, 7736, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.660377
106
# Three IA’s are conducted for a class of 10 students for the subject Maths. # The name, marks and USN are read from a file in.txt. Find the average of # the IA for each student and write the USN and average to a file out.txt. # Display the highest average of the class on the console with open("in.txt", "r") as input_file: lines = input_file.readlines() # print(lines) usns = [] mks = [] avgs = [] for line in lines: # print(line) name, m1, m2, m3, usn = map(str, line.split()) # print(name,m1,m2,m3,usn) usns.append(usn) mks.append([int(m1), int(m2), int(m3)]) avg = (int(m1)+int(m2)+int(m3))/3 avgs.append(avg) with open("out.txt", "w") as output_file: for i in range(len(usns)): str = f"USN : {usns[i]} Avg : {avgs[i]}\n" output_file.writelines(str) print("Higest Average of the class is :: ", max(avgs))
[ 2, 7683, 35229, 447, 247, 82, 389, 5952, 329, 257, 1398, 286, 838, 2444, 329, 262, 2426, 16320, 82, 13, 220, 198, 2, 383, 1438, 11, 8849, 290, 1294, 45, 389, 1100, 422, 257, 2393, 287, 13, 14116, 13, 9938, 262, 2811, 286, 220, 198, 2, 262, 35229, 329, 1123, 3710, 290, 3551, 262, 1294, 45, 290, 2811, 284, 257, 2393, 503, 13, 14116, 13, 220, 198, 2, 16531, 262, 4511, 2811, 286, 262, 1398, 319, 262, 8624, 198, 198, 4480, 1280, 7203, 259, 13, 14116, 1600, 366, 81, 4943, 355, 5128, 62, 7753, 25, 198, 220, 220, 220, 3951, 796, 5128, 62, 7753, 13, 961, 6615, 3419, 198, 220, 220, 220, 1303, 3601, 7, 6615, 8, 198, 220, 220, 220, 514, 5907, 796, 17635, 198, 220, 220, 220, 285, 591, 796, 17635, 198, 220, 220, 220, 1196, 14542, 796, 17635, 198, 220, 220, 220, 329, 1627, 287, 3951, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 1370, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11, 285, 16, 11, 285, 17, 11, 285, 18, 11, 514, 77, 796, 3975, 7, 2536, 11, 1627, 13, 35312, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 3672, 11, 76, 16, 11, 76, 17, 11, 76, 18, 11, 385, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 514, 5907, 13, 33295, 7, 385, 77, 8, 198, 220, 220, 220, 220, 220, 220, 220, 285, 591, 13, 33295, 26933, 600, 7, 76, 16, 828, 493, 7, 76, 17, 828, 493, 7, 76, 18, 8, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 42781, 796, 357, 600, 7, 76, 16, 47762, 600, 7, 76, 17, 47762, 600, 7, 76, 18, 4008, 14, 18, 198, 220, 220, 220, 220, 220, 220, 220, 1196, 14542, 13, 33295, 7, 615, 70, 8, 628, 220, 220, 220, 351, 1280, 7203, 448, 13, 14116, 1600, 366, 86, 4943, 355, 5072, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 11925, 7, 385, 5907, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 796, 277, 1, 2937, 45, 1058, 1391, 385, 5907, 58, 72, 48999, 220, 220, 33455, 1058, 1391, 615, 14542, 58, 72, 60, 32239, 77, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 7753, 13, 8933, 20655, 7, 2536, 8, 628, 220, 220, 220, 3601, 7203, 36124, 395, 13475, 286, 262, 1398, 318, 7904, 33172, 3509, 7, 615, 14542, 4008 ]
2.209906
424
import os import json import numpy as np from ashic import simulation from ashic import structure from ashic.utils import find_closestlength_chrom, encodejson from ashic.utils import get_localinds, get_rdis, parse_localinds from ashic.utils import centroid_distance from ashic.commands.fit import initialx, create_model from ashic.em import emfit from ashic.progresscb import SimulationProgress from ashic.model.zipoisson import ZeroInflatedPoisson from ashic.model.poisson import Poisson
[ 11748, 28686, 198, 11748, 33918, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 12530, 291, 1330, 18640, 198, 6738, 12530, 291, 1330, 4645, 198, 6738, 12530, 291, 13, 26791, 1330, 1064, 62, 565, 418, 395, 13664, 62, 28663, 11, 37773, 17752, 198, 6738, 12530, 291, 13, 26791, 1330, 651, 62, 12001, 521, 82, 11, 651, 62, 4372, 271, 11, 21136, 62, 12001, 521, 82, 198, 6738, 12530, 291, 13, 26791, 1330, 1247, 3882, 62, 30246, 198, 6738, 12530, 291, 13, 9503, 1746, 13, 11147, 1330, 4238, 87, 11, 2251, 62, 19849, 198, 6738, 12530, 291, 13, 368, 1330, 795, 11147, 198, 6738, 12530, 291, 13, 33723, 21101, 1330, 41798, 32577, 198, 6738, 12530, 291, 13, 19849, 13, 13344, 78, 30927, 1330, 12169, 818, 2704, 515, 18833, 30927, 198, 6738, 12530, 291, 13, 19849, 13, 7501, 30927, 1330, 7695, 30927, 628, 628, 628, 198 ]
3.461538
143
# Given an array of integers, find if the array contains any duplicates. # # Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct. # # Example 1: # # # Input: [1,2,3,1] # Output: true # # Example 2: # # # Input: [1,2,3,4] # Output: false # # Example 3: # # # Input: [1,1,1,3,3,4,3,2,4,2] # Output: true # # # @lc app=leetcode id=217 lang=python3 # # [217] Contains Duplicate # # https://leetcode.com/problems/contains-duplicate/description/ # # algorithms # Easy (52.40%) # Likes: 422 # Dislikes: 529 # Total Accepted: 352.1K # Total Submissions: 672K # Testcase Example: '[1,2,3,1]' # # Given an array of integers, find if the array contains any duplicates. # # Your function should return true if any value appears at least twice in the # array, and it should return false if every element is distinct. # # Example 1: # # # Input: [1,2,3,1] # Output: true # # Example 2: # # # Input: [1,2,3,4] # Output: false # # Example 3: # # # Input: [1,1,1,3,3,4,3,2,4,2] # Output: true # #
[ 2, 11259, 281, 7177, 286, 37014, 11, 1064, 611, 262, 7177, 4909, 597, 14184, 16856, 13, 201, 198, 2, 198, 2, 3406, 2163, 815, 1441, 2081, 611, 597, 1988, 3568, 379, 1551, 5403, 287, 262, 7177, 11, 290, 340, 815, 1441, 3991, 611, 790, 5002, 318, 7310, 13, 201, 198, 2, 198, 2, 17934, 352, 25, 201, 198, 2, 198, 2, 198, 2, 23412, 25, 685, 16, 11, 17, 11, 18, 11, 16, 60, 201, 198, 2, 25235, 25, 2081, 201, 198, 2, 198, 2, 17934, 362, 25, 201, 198, 2, 198, 2, 198, 2, 23412, 25, 685, 16, 11, 17, 11, 18, 11, 19, 60, 201, 198, 2, 25235, 25, 3991, 201, 198, 2, 198, 2, 17934, 513, 25, 201, 198, 2, 198, 2, 198, 2, 23412, 25, 685, 16, 11, 16, 11, 16, 11, 18, 11, 18, 11, 19, 11, 18, 11, 17, 11, 19, 11, 17, 60, 201, 198, 2, 25235, 25, 2081, 201, 198, 2, 628, 198, 2, 198, 2, 2488, 44601, 598, 28, 293, 316, 8189, 4686, 28, 24591, 42392, 28, 29412, 18, 198, 2, 198, 2, 685, 24591, 60, 49850, 49821, 5344, 198, 2, 198, 2, 3740, 1378, 293, 316, 8189, 13, 785, 14, 1676, 22143, 14, 3642, 1299, 12, 646, 489, 5344, 14, 11213, 14, 198, 2, 198, 2, 16113, 198, 2, 16789, 357, 4309, 13, 1821, 4407, 198, 2, 46077, 25, 220, 220, 220, 46588, 198, 2, 360, 3044, 7938, 25, 49888, 198, 2, 7472, 21699, 276, 25, 220, 220, 220, 44063, 13, 16, 42, 198, 2, 7472, 3834, 8481, 25, 718, 4761, 42, 198, 2, 6208, 7442, 17934, 25, 220, 44438, 16, 11, 17, 11, 18, 11, 16, 49946, 198, 2, 198, 2, 11259, 281, 7177, 286, 37014, 11, 1064, 611, 262, 7177, 4909, 597, 14184, 16856, 13, 198, 2, 198, 2, 3406, 2163, 815, 1441, 2081, 611, 597, 1988, 3568, 379, 1551, 5403, 287, 262, 198, 2, 7177, 11, 290, 340, 815, 1441, 3991, 611, 790, 5002, 318, 7310, 13, 198, 2, 198, 2, 17934, 352, 25, 198, 2, 198, 2, 198, 2, 23412, 25, 685, 16, 11, 17, 11, 18, 11, 16, 60, 198, 2, 25235, 25, 2081, 198, 2, 198, 2, 17934, 362, 25, 198, 2, 198, 2, 198, 2, 23412, 25, 685, 16, 11, 17, 11, 18, 11, 19, 60, 198, 2, 25235, 25, 3991, 198, 2, 198, 2, 17934, 513, 25, 198, 2, 198, 2, 198, 2, 23412, 25, 685, 16, 11, 16, 11, 16, 11, 18, 11, 18, 11, 19, 11, 18, 11, 17, 11, 19, 11, 17, 60, 198, 2, 25235, 25, 2081, 198, 2, 198, 2, 628, 198 ]
2.503448
435
# -*- coding: utf-8 -*- import time import functools import socket import logging from .metricspy.groupmetrics import GroupMetrics from app import load_app_config logger = logging.getLogger(__name__) metrics_clients = {} HOSTNAME = socket.getfqdn()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 11748, 640, 198, 11748, 1257, 310, 10141, 198, 11748, 17802, 198, 11748, 18931, 198, 6738, 764, 4164, 10466, 9078, 13, 8094, 4164, 10466, 1330, 4912, 9171, 10466, 198, 6738, 598, 1330, 3440, 62, 1324, 62, 11250, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 198, 4164, 10466, 62, 565, 2334, 796, 23884, 198, 39, 10892, 20608, 796, 17802, 13, 1136, 69, 80, 32656, 3419, 628, 628 ]
2.908046
87
""" Top-level module of Jina. The primary function of this module is to import all of the public Jina interfaces into a single place. The interfaces themselves are located in sub-modules, as described below. """ # DO SOME OS-WISE PATCHES import datetime as _datetime import os as _os import platform as _platform import signal as _signal import sys as _sys import types as _types from google.protobuf.internal import api_implementation as _api_implementation if _api_implementation._default_implementation_type != 'cpp': import warnings as _warnings _warnings.warn( ''' You are using Python protobuf backend, not the C++ version, which is much faster. This is often due to C++ implementation failed to compile while installing Protobuf - You are using in Python 3.9 (https://github.com/jina-ai/jina/issues/1801) - You are using on architecture other than x86_64/armv6/armv7 - You installation is broken, try `pip install --force protobuf` - You have C++ backend but you shut it down, try `export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp` ''', RuntimeWarning, ) if _sys.version_info < (3, 7, 0) or _sys.version_info >= (3, 10, 0): raise OSError(f'Jina requires Python 3.7/3.8/3.9, but yours is {_sys.version_info}') if _sys.version_info >= (3, 8, 0) and _platform.system() == 'Darwin': # temporary fix for python 3.8 on macos where the default start is set to "spawn" # https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods from multiprocessing import set_start_method as _set_start_method _set_start_method('fork') # fix fork error on MacOS but seems no effect? must do EXPORT manually before jina start _os.environ['OBJC_DISABLE_INITIALIZE_FORK_SAFETY'] = 'YES' # Underscore variables shared globally __copyright__ = "Copyright (c) 2020 Jina AI Limited. All rights reserved." __license__ = "Apache-2.0" # do not change this line manually # this is managed by git tag and updated on every release # NOTE: this represents the NEXT release version __version__ = '1.1.2' # do not change this line manually # this is managed by proto/build-proto.sh and updated on every execution __proto_version__ = '0.0.80' __uptime__ = _datetime.datetime.now().isoformat() # update on MacOS # 1. clean this tuple, # 2. grep -rohEI --exclude-dir=jina/hub --exclude-dir=tests --include \*.py "\'JINA_.*?\'" jina | sort -u | sed "s/$/,/g" # 3. copy all lines EXCEPT the first (which is the grep command in the last line) __jina_env__ = ( 'JINA_ARRAY_QUANT', 'JINA_BINARY_DELIMITER', 'JINA_CONTRIB_MODULE', 'JINA_CONTRIB_MODULE_IS_LOADING', 'JINA_CONTROL_PORT', 'JINA_DEFAULT_HOST', 'JINA_DISABLE_UVLOOP', 'JINA_EXECUTOR_WORKDIR', 'JINA_FULL_CLI', 'JINA_IPC_SOCK_TMP', 'JINA_LOG_CONFIG', 'JINA_LOG_ID', 'JINA_LOG_LEVEL', 'JINA_LOG_NO_COLOR', 'JINA_LOG_WORKSPACE', 'JINA_POD_NAME', 'JINA_RAISE_ERROR_EARLY', 'JINA_RANDOM_PORTS', 'JINA_RANDOM_PORT_MAX', 'JINA_RANDOM_PORT_MIN', 'JINA_SOCKET_HWM', 'JINA_VCS_VERSION', 'JINA_WARN_UNNAMED', 'JINA_WORKSPACE', ) __default_host__ = _os.environ.get('JINA_DEFAULT_HOST', '0.0.0.0') __ready_msg__ = 'ready and listening' __stop_msg__ = 'terminated' __binary_delimiter__ = _os.environ.get( 'JINA_BINARY_DELIMITER', '460841a0a8a430ae25d9ad7c1f048c57' ).encode() __root_dir__ = _os.path.dirname(_os.path.abspath(__file__)) _names_with_underscore = [ '__version__', '__copyright__', '__license__', '__proto_version__', '__default_host__', '__ready_msg__', '__stop_msg__', '__binary_delimiter__', '__jina_env__', '__uptime__', '__root_dir__', ] # Primitive data type, # note, they must be loaded BEFORE all executors/drivers/... to avoid cyclic imports from jina.types.ndarray.generic import NdArray from jina.types.request import Request, Response from jina.types.message import Message from jina.types.querylang import QueryLang from jina.types.document import Document from jina.types.document.multimodal import MultimodalDocument from jina.types.sets import DocumentSet, QueryLangSet # ADD GLOBAL NAMESPACE VARIABLES JINA_GLOBAL = _types.SimpleNamespace() JINA_GLOBAL.scipy_installed = None JINA_GLOBAL.tensorflow_installed = None JINA_GLOBAL.torch_installed = None import jina.importer as _ji # driver first, as executor may contain driver _ji.import_classes('jina.drivers', show_import_table=False, import_once=True) _ji.import_classes('jina.executors', show_import_table=False, import_once=True) _ji.import_classes('jina.hub', show_import_table=False, import_once=True) _signal.signal(_signal.SIGINT, _signal.default_int_handler) def _set_nofile(nofile_atleast=4096): """ Set nofile soft limit to at least 4096, useful for running matlplotlib/seaborn on parallel executing plot generators vs. Ubuntu default ulimit -n 1024 or OS X El Captian 256 temporary setting extinguishing with Python session. :param nofile_atleast: nofile soft limit :return: nofile soft limit and nofile hard limit """ try: import resource as res except ImportError: # Windows res = None from .logging import default_logger if res is None: return (None,) * 2 soft, ohard = res.getrlimit(res.RLIMIT_NOFILE) hard = ohard if soft < nofile_atleast: soft = nofile_atleast if hard < soft: hard = soft default_logger.debug(f'setting soft & hard ulimit -n {soft} {hard}') try: res.setrlimit(res.RLIMIT_NOFILE, (soft, hard)) except (ValueError, res.error): try: hard = soft default_logger.warning( f'trouble with max limit, retrying with soft,hard {soft},{hard}' ) res.setrlimit(res.RLIMIT_NOFILE, (soft, hard)) except Exception: default_logger.warning('failed to set ulimit, giving up') soft, hard = res.getrlimit(res.RLIMIT_NOFILE) default_logger.debug(f'ulimit -n soft,hard: {soft} {hard}') return soft, hard _set_nofile() # Flow from jina.flow import Flow from jina.flow.asyncio import AsyncFlow # Client from jina.clients import Client from jina.clients.asyncio import AsyncClient # Executor from jina.executors import BaseExecutor as Executor from jina.executors.classifiers import BaseClassifier as Classifier from jina.executors.crafters import BaseCrafter as Crafter from jina.executors.encoders import BaseEncoder as Encoder from jina.executors.evaluators import BaseEvaluator as Evaluator from jina.executors.indexers import BaseIndexer as Indexer from jina.executors.rankers import BaseRanker as Ranker from jina.executors.segmenters import BaseSegmenter as Segmenter __all__ = [_s for _s in dir() if not _s.startswith('_')] __all__.extend([_s for _s in _names_with_underscore])
[ 37811, 198, 9126, 12, 5715, 8265, 286, 449, 1437, 13, 198, 198, 464, 4165, 2163, 286, 428, 8265, 318, 284, 1330, 477, 286, 262, 1171, 449, 1437, 198, 3849, 32186, 656, 257, 2060, 1295, 13, 383, 20314, 2405, 389, 5140, 287, 198, 7266, 12, 18170, 11, 355, 3417, 2174, 13, 198, 198, 37811, 198, 198, 2, 8410, 41670, 7294, 12, 54, 24352, 350, 11417, 1546, 198, 198, 11748, 4818, 8079, 355, 4808, 19608, 8079, 198, 11748, 28686, 355, 4808, 418, 198, 11748, 3859, 355, 4808, 24254, 198, 11748, 6737, 355, 4808, 12683, 282, 198, 11748, 25064, 355, 4808, 17597, 198, 11748, 3858, 355, 4808, 19199, 198, 198, 6738, 23645, 13, 11235, 672, 3046, 13, 32538, 1330, 40391, 62, 320, 32851, 355, 4808, 15042, 62, 320, 32851, 198, 198, 361, 4808, 15042, 62, 320, 32851, 13557, 12286, 62, 320, 32851, 62, 4906, 14512, 705, 20322, 10354, 198, 220, 220, 220, 1330, 14601, 355, 4808, 40539, 654, 628, 220, 220, 220, 4808, 40539, 654, 13, 40539, 7, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 921, 389, 1262, 11361, 1237, 672, 3046, 30203, 11, 407, 262, 327, 4880, 2196, 11, 543, 318, 881, 5443, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 770, 318, 1690, 2233, 284, 327, 4880, 7822, 4054, 284, 17632, 981, 15975, 5038, 672, 3046, 198, 220, 220, 220, 532, 921, 389, 1262, 287, 11361, 513, 13, 24, 357, 5450, 1378, 12567, 13, 785, 14, 73, 1437, 12, 1872, 14, 73, 1437, 14, 37165, 14, 1507, 486, 8, 198, 220, 220, 220, 532, 921, 389, 1262, 319, 10959, 584, 621, 2124, 4521, 62, 2414, 14, 1670, 85, 21, 14, 1670, 85, 22, 198, 220, 220, 220, 532, 921, 9988, 318, 5445, 11, 1949, 4600, 79, 541, 2721, 1377, 3174, 1237, 672, 3046, 63, 198, 220, 220, 220, 532, 921, 423, 327, 4880, 30203, 475, 345, 4423, 340, 866, 11, 1949, 4600, 39344, 48006, 4503, 3535, 62, 19499, 5777, 4877, 62, 47, 56, 4221, 1340, 62, 3955, 16437, 10979, 6234, 28, 20322, 63, 198, 220, 220, 220, 220, 198, 220, 220, 220, 10148, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 43160, 20361, 11, 198, 220, 220, 220, 1267, 198, 198, 361, 4808, 17597, 13, 9641, 62, 10951, 1279, 357, 18, 11, 767, 11, 657, 8, 393, 4808, 17597, 13, 9641, 62, 10951, 18189, 357, 18, 11, 838, 11, 657, 2599, 198, 220, 220, 220, 5298, 440, 5188, 81, 1472, 7, 69, 6, 41, 1437, 4433, 11361, 513, 13, 22, 14, 18, 13, 23, 14, 18, 13, 24, 11, 475, 12431, 318, 1391, 62, 17597, 13, 9641, 62, 10951, 92, 11537, 198, 198, 361, 4808, 17597, 13, 9641, 62, 10951, 18189, 357, 18, 11, 807, 11, 657, 8, 290, 4808, 24254, 13, 10057, 3419, 6624, 705, 32708, 5404, 10354, 198, 220, 220, 220, 1303, 8584, 4259, 329, 21015, 513, 13, 23, 319, 8352, 418, 810, 262, 4277, 923, 318, 900, 284, 366, 48183, 1, 198, 220, 220, 220, 1303, 3740, 1378, 31628, 13, 29412, 13, 2398, 14, 18, 14, 32016, 14, 16680, 541, 305, 919, 278, 13, 6494, 2, 22866, 82, 12, 392, 12, 9688, 12, 24396, 82, 198, 220, 220, 220, 422, 18540, 305, 919, 278, 1330, 900, 62, 9688, 62, 24396, 355, 4808, 2617, 62, 9688, 62, 24396, 628, 220, 220, 220, 4808, 2617, 62, 9688, 62, 24396, 10786, 32523, 11537, 198, 198, 2, 4259, 15563, 4049, 319, 4100, 2640, 475, 2331, 645, 1245, 30, 1276, 466, 7788, 15490, 14500, 878, 474, 1437, 923, 198, 62, 418, 13, 268, 2268, 17816, 9864, 34382, 62, 26288, 17534, 62, 1268, 2043, 12576, 35400, 62, 13775, 42, 62, 4090, 37, 2767, 56, 20520, 796, 705, 43335, 6, 198, 198, 2, 13794, 364, 7295, 9633, 4888, 18309, 198, 198, 834, 22163, 4766, 834, 796, 366, 15269, 357, 66, 8, 12131, 449, 1437, 9552, 15302, 13, 1439, 2489, 10395, 526, 198, 834, 43085, 834, 796, 366, 25189, 4891, 12, 17, 13, 15, 1, 198, 198, 2, 466, 407, 1487, 428, 1627, 14500, 198, 2, 428, 318, 5257, 416, 17606, 7621, 290, 6153, 319, 790, 2650, 198, 2, 24550, 25, 428, 6870, 262, 39726, 2650, 2196, 198, 834, 9641, 834, 796, 705, 16, 13, 16, 13, 17, 6, 198, 198, 2, 466, 407, 1487, 428, 1627, 14500, 198, 2, 428, 318, 5257, 416, 44876, 14, 11249, 12, 1676, 1462, 13, 1477, 290, 6153, 319, 790, 9706, 198, 834, 1676, 1462, 62, 9641, 834, 796, 705, 15, 13, 15, 13, 1795, 6, 198, 198, 834, 37623, 524, 834, 796, 4808, 19608, 8079, 13, 19608, 8079, 13, 2197, 22446, 26786, 18982, 3419, 198, 198, 2, 4296, 319, 4100, 2640, 198, 2, 352, 13, 3424, 428, 46545, 11, 198, 2, 362, 13, 42717, 532, 305, 71, 36, 40, 1377, 1069, 9152, 12, 15908, 28, 73, 1437, 14, 40140, 1377, 1069, 9152, 12, 15908, 28, 41989, 1377, 17256, 3467, 24620, 9078, 37082, 6, 41, 28893, 62, 15885, 30, 59, 29653, 474, 1437, 220, 930, 3297, 532, 84, 930, 10081, 366, 82, 32624, 47454, 14, 70, 1, 198, 2, 513, 13, 4866, 477, 3951, 7788, 42006, 262, 717, 357, 4758, 318, 262, 42717, 3141, 287, 262, 938, 1627, 8, 198, 834, 73, 1437, 62, 24330, 834, 796, 357, 198, 220, 220, 220, 705, 41, 28893, 62, 1503, 30631, 62, 10917, 8643, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 33, 1268, 13153, 62, 35, 3698, 3955, 2043, 1137, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 10943, 5446, 9865, 62, 33365, 24212, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 10943, 5446, 9865, 62, 33365, 24212, 62, 1797, 62, 35613, 2751, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 10943, 5446, 3535, 62, 15490, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 7206, 38865, 62, 39, 10892, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 26288, 17534, 62, 31667, 21982, 3185, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 6369, 2943, 3843, 1581, 62, 33249, 34720, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 37, 9994, 62, 5097, 40, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 4061, 34, 62, 50, 11290, 62, 51, 7378, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 25294, 62, 10943, 16254, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 25294, 62, 2389, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 25294, 62, 2538, 18697, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 25294, 62, 15285, 62, 46786, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 25294, 62, 33249, 4303, 11598, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 47, 3727, 62, 20608, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 3861, 24352, 62, 24908, 62, 17133, 11319, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 49, 6981, 2662, 62, 47, 33002, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 49, 6981, 2662, 62, 15490, 62, 22921, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 49, 6981, 2662, 62, 15490, 62, 23678, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 50, 11290, 2767, 62, 39, 22117, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 53, 7902, 62, 43717, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 37771, 62, 4944, 45, 2390, 1961, 3256, 198, 220, 220, 220, 705, 41, 28893, 62, 33249, 4303, 11598, 3256, 198, 8, 198, 198, 834, 12286, 62, 4774, 834, 796, 4808, 418, 13, 268, 2268, 13, 1136, 10786, 41, 28893, 62, 7206, 38865, 62, 39, 10892, 3256, 705, 15, 13, 15, 13, 15, 13, 15, 11537, 198, 834, 1493, 62, 19662, 834, 796, 705, 1493, 290, 8680, 6, 198, 834, 11338, 62, 19662, 834, 796, 705, 23705, 515, 6, 198, 834, 39491, 62, 12381, 320, 2676, 834, 796, 4808, 418, 13, 268, 2268, 13, 1136, 7, 198, 220, 220, 220, 705, 41, 28893, 62, 33, 1268, 13153, 62, 35, 3698, 3955, 2043, 1137, 3256, 705, 19, 28688, 3901, 64, 15, 64, 23, 64, 31794, 3609, 1495, 67, 24, 324, 22, 66, 16, 69, 47202, 66, 3553, 6, 198, 737, 268, 8189, 3419, 198, 834, 15763, 62, 15908, 834, 796, 4808, 418, 13, 6978, 13, 15908, 3672, 28264, 418, 13, 6978, 13, 397, 2777, 776, 7, 834, 7753, 834, 4008, 198, 198, 62, 14933, 62, 4480, 62, 41116, 7295, 796, 685, 198, 220, 220, 220, 705, 834, 9641, 834, 3256, 198, 220, 220, 220, 705, 834, 22163, 4766, 834, 3256, 198, 220, 220, 220, 705, 834, 43085, 834, 3256, 198, 220, 220, 220, 705, 834, 1676, 1462, 62, 9641, 834, 3256, 198, 220, 220, 220, 705, 834, 12286, 62, 4774, 834, 3256, 198, 220, 220, 220, 705, 834, 1493, 62, 19662, 834, 3256, 198, 220, 220, 220, 705, 834, 11338, 62, 19662, 834, 3256, 198, 220, 220, 220, 705, 834, 39491, 62, 12381, 320, 2676, 834, 3256, 198, 220, 220, 220, 705, 834, 73, 1437, 62, 24330, 834, 3256, 198, 220, 220, 220, 705, 834, 37623, 524, 834, 3256, 198, 220, 220, 220, 705, 834, 15763, 62, 15908, 834, 3256, 198, 60, 198, 198, 2, 11460, 1800, 1366, 2099, 11, 198, 2, 3465, 11, 484, 1276, 307, 9639, 38331, 477, 3121, 669, 14, 36702, 14, 986, 284, 3368, 11700, 291, 17944, 198, 6738, 474, 1437, 13, 19199, 13, 358, 18747, 13, 41357, 1330, 399, 67, 19182, 198, 6738, 474, 1437, 13, 19199, 13, 25927, 1330, 19390, 11, 18261, 198, 6738, 474, 1437, 13, 19199, 13, 20500, 1330, 16000, 198, 6738, 474, 1437, 13, 19199, 13, 22766, 17204, 1330, 43301, 43, 648, 198, 6738, 474, 1437, 13, 19199, 13, 22897, 1330, 16854, 198, 6738, 474, 1437, 13, 19199, 13, 22897, 13, 16680, 320, 375, 282, 1330, 7854, 320, 375, 282, 24941, 198, 6738, 474, 1437, 13, 19199, 13, 28709, 1330, 16854, 7248, 11, 43301, 43, 648, 7248, 198, 198, 2, 27841, 10188, 9864, 1847, 399, 29559, 47, 11598, 569, 1503, 3539, 9148, 1546, 198, 41, 28893, 62, 8763, 9864, 1847, 796, 4808, 19199, 13, 26437, 36690, 10223, 3419, 198, 41, 28893, 62, 8763, 9864, 1847, 13, 1416, 541, 88, 62, 37050, 796, 6045, 198, 41, 28893, 62, 8763, 9864, 1847, 13, 83, 22854, 11125, 62, 37050, 796, 6045, 198, 41, 28893, 62, 8763, 9864, 1847, 13, 13165, 354, 62, 37050, 796, 6045, 198, 198, 11748, 474, 1437, 13, 320, 26634, 355, 4808, 7285, 198, 198, 2, 4639, 717, 11, 355, 3121, 273, 743, 3994, 4639, 198, 62, 7285, 13, 11748, 62, 37724, 10786, 73, 1437, 13, 36702, 3256, 905, 62, 11748, 62, 11487, 28, 25101, 11, 1330, 62, 27078, 28, 17821, 8, 198, 62, 7285, 13, 11748, 62, 37724, 10786, 73, 1437, 13, 18558, 315, 669, 3256, 905, 62, 11748, 62, 11487, 28, 25101, 11, 1330, 62, 27078, 28, 17821, 8, 198, 62, 7285, 13, 11748, 62, 37724, 10786, 73, 1437, 13, 40140, 3256, 905, 62, 11748, 62, 11487, 28, 25101, 11, 1330, 62, 27078, 28, 17821, 8, 198, 198, 62, 12683, 282, 13, 12683, 282, 28264, 12683, 282, 13, 50, 3528, 12394, 11, 4808, 12683, 282, 13, 12286, 62, 600, 62, 30281, 8, 628, 198, 4299, 4808, 2617, 62, 77, 1659, 576, 7, 77, 1659, 576, 62, 265, 293, 459, 28, 1821, 4846, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5345, 645, 7753, 2705, 4179, 284, 379, 1551, 42479, 11, 4465, 329, 2491, 2603, 75, 29487, 8019, 14, 325, 397, 1211, 319, 198, 220, 220, 220, 10730, 23710, 7110, 27298, 3691, 13, 14949, 4277, 334, 32374, 532, 77, 28119, 393, 7294, 1395, 2574, 6790, 666, 17759, 198, 220, 220, 220, 8584, 4634, 24995, 3929, 351, 11361, 6246, 13, 628, 220, 220, 220, 1058, 17143, 645, 7753, 62, 265, 293, 459, 25, 645, 7753, 2705, 4179, 198, 220, 220, 220, 1058, 7783, 25, 645, 7753, 2705, 4179, 290, 645, 7753, 1327, 4179, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1330, 8271, 355, 581, 198, 220, 220, 220, 2845, 17267, 12331, 25, 220, 1303, 3964, 198, 220, 220, 220, 220, 220, 220, 220, 581, 796, 6045, 628, 220, 220, 220, 422, 764, 6404, 2667, 1330, 4277, 62, 6404, 1362, 628, 220, 220, 220, 611, 581, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 14202, 35751, 1635, 362, 628, 220, 220, 220, 2705, 11, 267, 10424, 796, 581, 13, 1136, 81, 32374, 7, 411, 13, 7836, 3955, 2043, 62, 15285, 25664, 8, 198, 220, 220, 220, 1327, 796, 267, 10424, 628, 220, 220, 220, 611, 2705, 1279, 645, 7753, 62, 265, 293, 459, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2705, 796, 645, 7753, 62, 265, 293, 459, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1327, 1279, 2705, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1327, 796, 2705, 628, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 6404, 1362, 13, 24442, 7, 69, 338, 35463, 2705, 1222, 1327, 334, 32374, 532, 77, 1391, 4215, 92, 1391, 10424, 92, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 13, 2617, 81, 32374, 7, 411, 13, 7836, 3955, 2043, 62, 15285, 25664, 11, 357, 4215, 11, 1327, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 357, 11395, 12331, 11, 581, 13, 18224, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1327, 796, 2705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 6404, 1362, 13, 43917, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 470, 472, 903, 351, 3509, 4179, 11, 1005, 14992, 351, 2705, 11, 10424, 1391, 4215, 5512, 90, 10424, 92, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 13, 2617, 81, 32374, 7, 411, 13, 7836, 3955, 2043, 62, 15285, 25664, 11, 357, 4215, 11, 1327, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 35528, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 62, 6404, 1362, 13, 43917, 10786, 47904, 284, 900, 334, 32374, 11, 3501, 510, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2705, 11, 1327, 796, 581, 13, 1136, 81, 32374, 7, 411, 13, 7836, 3955, 2043, 62, 15285, 25664, 8, 628, 220, 220, 220, 4277, 62, 6404, 1362, 13, 24442, 7, 69, 6, 377, 320, 270, 532, 77, 2705, 11, 10424, 25, 1391, 4215, 92, 1391, 10424, 92, 11537, 198, 220, 220, 220, 1441, 2705, 11, 1327, 628, 198, 62, 2617, 62, 77, 1659, 576, 3419, 198, 198, 2, 27782, 198, 6738, 474, 1437, 13, 11125, 1330, 27782, 198, 6738, 474, 1437, 13, 11125, 13, 292, 13361, 952, 1330, 1081, 13361, 37535, 198, 198, 2, 20985, 198, 6738, 474, 1437, 13, 565, 2334, 1330, 20985, 198, 6738, 474, 1437, 13, 565, 2334, 13, 292, 13361, 952, 1330, 1081, 13361, 11792, 198, 198, 2, 8393, 38409, 198, 6738, 474, 1437, 13, 18558, 315, 669, 1330, 7308, 23002, 38409, 355, 8393, 38409, 198, 6738, 474, 1437, 13, 18558, 315, 669, 13, 4871, 13350, 1330, 7308, 9487, 7483, 355, 5016, 7483, 198, 6738, 474, 1437, 13, 18558, 315, 669, 13, 66, 430, 47131, 1330, 7308, 33800, 637, 355, 11176, 637, 198, 6738, 474, 1437, 13, 18558, 315, 669, 13, 12685, 375, 364, 1330, 7308, 27195, 12342, 355, 14711, 12342, 198, 6738, 474, 1437, 13, 18558, 315, 669, 13, 18206, 84, 2024, 1330, 7308, 36, 2100, 84, 1352, 355, 26439, 84, 1352, 198, 6738, 474, 1437, 13, 18558, 315, 669, 13, 9630, 364, 1330, 7308, 15732, 263, 355, 12901, 263, 198, 6738, 474, 1437, 13, 18558, 315, 669, 13, 43027, 364, 1330, 7308, 27520, 263, 355, 10916, 263, 198, 6738, 474, 1437, 13, 18558, 315, 669, 13, 325, 5154, 364, 1330, 7308, 41030, 434, 263, 355, 1001, 5154, 263, 198, 198, 834, 439, 834, 796, 685, 62, 82, 329, 4808, 82, 287, 26672, 3419, 611, 407, 4808, 82, 13, 9688, 2032, 342, 10786, 62, 11537, 60, 198, 834, 439, 834, 13, 2302, 437, 26933, 62, 82, 329, 4808, 82, 287, 4808, 14933, 62, 4480, 62, 41116, 7295, 12962, 198 ]
2.530864
2,754
import re from genie.metaparser import MetaParser from genie.metaparser.util.schemaengine import Any, Optional # ====================== # Schema for: # * 'show wlan summary' # ====================== class ShowWlanSummarySchema(MetaParser): """Schema for show wlan summary.""" schema = { "wlan_summary": { "wlan_count": int, "wlan_id": { int: { "profile_name": str, "ssid": str, "status": str, "security": str } } } } # ====================== # Parser for: # * 'show wlan summary' # ====================== class ShowWlanSummary(ShowWlanSummarySchema): """Parser for show wlan summary""" cli_command = 'show ap cdp neighbor' # ================== # Schema for: # * 'show wlan all' # ================== class ShowWlanAllSchema(MetaParser): """Schema for show wlan all.""" schema = { "wlan_names" : { Optional(str): { "identifier": int, Optional("description"): str, "ssid": str, "status": str, "broadcast_ssid": str, "advertise_ap_name": str, "universal_ap_admin": str, "max_clients_wlan": int, "max_clients_ap": int, "max_clients_ap_radio": int, "okc": str, "active_clients": int, "chd_per_wlan": str, "wmm": str, "channel_scan_defer_priority": { "priority": list }, "scan_defer_time_msecs": int, "media_stream_multicast_direct": str, "ccx_aironet_support": str, "p2p_blocking_action": str, "radio_policy": str, Optional("dtim_period_dot11a"): str, Optional("dtim_period_dot11b"): str, "local_eap_authentication": str, "mac_filter_authorization_list_name": str, "mac_filter_override_authorization_list_name": str, "dot1x_authentication_list_name": str, "dot1x_authorization_list_name": str, "security": { "dot11_authentication": str, "static_wep_keys": str, "wifi_protected_access_wpa1_wpa2_wpa3": str, Optional("wifi_protected_access_wpa"): { Optional("wpa_ssn_ie"): str }, Optional("wifi_protected_access_wpa2"): { Optional("wpa2_rsn_ie"): str, Optional("wpa2_attributes"): { Optional("mpsk"): str, Optional("aes"): str, Optional("ccmp256"): str, Optional("gcmp128"): str, Optional("gcmp256"): str, Optional("randomized_gtk"): str } }, Optional("wifi_protected_access_wpa3"): { Optional("wpa3_ie"): str }, Optional("auth_key_mgmt"): { Optional("dot1x"): str, Optional("psk"): str, Optional("cckm"): str, Optional("ft_dot1x"): str, Optional("ft_psk"): str, Optional("dot1x_sha256"): str, Optional("psk_sha256"): str, Optional("sae"): str, Optional("owe"): str, Optional("suiteb_1x"): str, Optional("suiteb192_1x"): str }, Optional("cckm_tsf_tolerance_msecs"): int, "owe_transition_mode": str, "osen": str, "ft_support": str, "ft_support": { "ft_support_status": str, "ft_reassociation_timer_secs": int, "ft_over_the_ds_mode": str }, "pmf_support": { "pmf_support_status": str, "pmf_association_comeback_timeout_secs": int, "pmf_sa_query_time_msecs": int }, "web_based_authenticaion": str, "conditional_web_redirect": str, "splash_page_web_redirect": str, "webauth_on_mac_filter_failure": str, "webauth_authentication_list_name": str, "webauth_authorization_list_name": str, "webauth_parameter_map": str }, "band_select": str, "load_balancing": str, "multicast_buffer": str, "multicast_buffer_size": int, "ip_source_guard": str, "assisted_roaming": { "neighbbor_list": str, "prediction_list": str, "dual_band_support": str }, "ieee_dot11v_parameters": { "directed_multicast_service": str, "bss_max_idle": { "bss_max_idle_status": str, "protected_mode": str }, "traffic_filtering_servce": str, "bss_transition": { "bss_transition_status": str, "disassociation_imminent": { "disassociation_imminent_status": str, "optimised_roaming_timer": int, "timer": int, } }, "wmn_sleep_mode": str }, "dot11ac_mu_mimo": str, "dot11ax_parameters": { "ofdma_downlink": str, "ofdma_uplink": str, "mu_mimo_downlink": str, "mu_mimo_uplink": str, "bss_target_wake_up_time": str, "bss_target_wake_up_time_broadcast_support": str }, "mdns_gateway_status": str, "wifi_alliance_agile_multiband": str, "device_analytics": { "advertise_support": str, "share_data_with_client": str }, Optional("wifi_to_cellular_steering"): str } } } # ================== # Parser for: # * 'show wlan all' # ================== class ShowWlanAll(ShowWlanAllSchema): """Parser for show wlan all""" cli_command = 'show wlan all'
[ 11748, 302, 198, 198, 6738, 2429, 494, 13, 4164, 499, 28198, 1330, 30277, 46677, 198, 6738, 2429, 494, 13, 4164, 499, 28198, 13, 22602, 13, 15952, 2611, 18392, 1330, 4377, 11, 32233, 628, 198, 2, 36658, 1421, 28, 198, 2, 10011, 2611, 329, 25, 198, 2, 220, 1635, 705, 12860, 266, 9620, 10638, 6, 198, 2, 36658, 1421, 28, 198, 4871, 5438, 54, 9620, 22093, 27054, 2611, 7, 48526, 46677, 2599, 198, 220, 220, 220, 37227, 27054, 2611, 329, 905, 266, 9620, 10638, 526, 15931, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 86, 9620, 62, 49736, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 9620, 62, 9127, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 9620, 62, 312, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 493, 25, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13317, 62, 3672, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 824, 312, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13376, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12961, 1298, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 1782, 628, 198, 2, 36658, 1421, 28, 198, 2, 23042, 263, 329, 25, 198, 2, 220, 1635, 705, 12860, 266, 9620, 10638, 6, 198, 2, 36658, 1421, 28, 198, 4871, 5438, 54, 9620, 22093, 7, 15307, 54, 9620, 22093, 27054, 2611, 2599, 198, 220, 220, 220, 37227, 46677, 329, 905, 266, 9620, 10638, 37811, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 2471, 22927, 79, 4780, 6, 628, 198, 198, 2, 36658, 28, 198, 2, 10011, 2611, 329, 25, 198, 2, 220, 1635, 705, 12860, 266, 9620, 477, 6, 198, 2, 36658, 28, 198, 4871, 5438, 54, 9620, 3237, 27054, 2611, 7, 48526, 46677, 2599, 198, 220, 220, 220, 37227, 27054, 2611, 329, 905, 266, 9620, 477, 526, 15931, 628, 220, 220, 220, 32815, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 366, 86, 9620, 62, 14933, 1, 1058, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7, 2536, 2599, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 738, 7483, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 11213, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 824, 312, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 13376, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 36654, 2701, 62, 824, 312, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17904, 786, 62, 499, 62, 3672, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 40082, 62, 499, 62, 28482, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9806, 62, 565, 2334, 62, 86, 9620, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9806, 62, 565, 2334, 62, 499, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9806, 62, 565, 2334, 62, 499, 62, 37004, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 482, 66, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5275, 62, 565, 2334, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 354, 67, 62, 525, 62, 86, 9620, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 3020, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17620, 62, 35836, 62, 4299, 263, 62, 49336, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 49336, 1298, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 35836, 62, 4299, 263, 62, 2435, 62, 76, 2363, 82, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11431, 62, 5532, 62, 16680, 291, 459, 62, 12942, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 535, 87, 62, 958, 36823, 62, 11284, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 79, 17, 79, 62, 41938, 62, 2673, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 37004, 62, 30586, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 67, 16514, 62, 41007, 62, 26518, 1157, 64, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 67, 16514, 62, 41007, 62, 26518, 1157, 65, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12001, 62, 68, 499, 62, 41299, 3299, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20285, 62, 24455, 62, 9800, 1634, 62, 4868, 62, 3672, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20285, 62, 24455, 62, 2502, 13154, 62, 9800, 1634, 62, 4868, 62, 3672, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 26518, 16, 87, 62, 41299, 3299, 62, 4868, 62, 3672, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 26518, 16, 87, 62, 9800, 1634, 62, 4868, 62, 3672, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12961, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 26518, 1157, 62, 41299, 3299, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12708, 62, 86, 538, 62, 13083, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 22238, 62, 24326, 62, 15526, 62, 86, 8957, 16, 62, 86, 8957, 17, 62, 86, 8957, 18, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 86, 22238, 62, 24326, 62, 15526, 62, 86, 8957, 1, 2599, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 86, 8957, 62, 824, 77, 62, 494, 1, 2599, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 86, 22238, 62, 24326, 62, 15526, 62, 86, 8957, 17, 1, 2599, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 86, 8957, 17, 62, 3808, 77, 62, 494, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 86, 8957, 17, 62, 1078, 7657, 1, 2599, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 76, 862, 74, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 64, 274, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 535, 3149, 11645, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 36484, 3149, 12762, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 36484, 3149, 11645, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 25120, 1143, 62, 13655, 74, 1, 2599, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 86, 22238, 62, 24326, 62, 15526, 62, 86, 8957, 18, 1, 2599, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 86, 8957, 18, 62, 494, 1, 2599, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 18439, 62, 2539, 62, 11296, 16762, 1, 2599, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 26518, 16, 87, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 862, 74, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 535, 13276, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 701, 62, 26518, 16, 87, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 701, 62, 862, 74, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 26518, 16, 87, 62, 26270, 11645, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 862, 74, 62, 26270, 11645, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 82, 3609, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 47097, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 2385, 578, 65, 62, 16, 87, 1, 2599, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 2385, 578, 65, 17477, 62, 16, 87, 1, 2599, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 535, 13276, 62, 912, 69, 62, 83, 37668, 62, 76, 2363, 82, 1, 2599, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 47097, 62, 7645, 653, 62, 14171, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 5233, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 701, 62, 11284, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 701, 62, 11284, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 701, 62, 11284, 62, 13376, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 701, 62, 260, 562, 41003, 62, 45016, 62, 2363, 82, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 701, 62, 2502, 62, 1169, 62, 9310, 62, 14171, 1298, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4426, 69, 62, 11284, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4426, 69, 62, 11284, 62, 13376, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4426, 69, 62, 562, 41003, 62, 2958, 1891, 62, 48678, 62, 2363, 82, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4426, 69, 62, 11400, 62, 22766, 62, 2435, 62, 76, 2363, 82, 1298, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 12384, 62, 3106, 62, 41299, 3970, 295, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17561, 1859, 62, 12384, 62, 445, 1060, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22018, 1077, 62, 7700, 62, 12384, 62, 445, 1060, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 732, 7012, 1071, 62, 261, 62, 20285, 62, 24455, 62, 32165, 495, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 732, 7012, 1071, 62, 41299, 3299, 62, 4868, 62, 3672, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 732, 7012, 1071, 62, 9800, 1634, 62, 4868, 62, 3672, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 732, 7012, 1071, 62, 17143, 2357, 62, 8899, 1298, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3903, 62, 19738, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2220, 62, 6893, 5077, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16680, 291, 459, 62, 22252, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16680, 291, 459, 62, 22252, 62, 7857, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 541, 62, 10459, 62, 14864, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 42191, 62, 305, 3723, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 710, 394, 65, 2865, 62, 4868, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 28764, 2867, 62, 4868, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 646, 282, 62, 3903, 62, 11284, 1298, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 494, 1453, 62, 26518, 1157, 85, 62, 17143, 7307, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 34762, 62, 16680, 291, 459, 62, 15271, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 65, 824, 62, 9806, 62, 312, 293, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 65, 824, 62, 9806, 62, 312, 293, 62, 13376, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24326, 62, 14171, 1298, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9535, 2108, 62, 10379, 20212, 62, 3168, 344, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 65, 824, 62, 7645, 653, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 65, 824, 62, 7645, 653, 62, 13376, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6381, 562, 41003, 62, 320, 19669, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 6381, 562, 41003, 62, 320, 19669, 62, 13376, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 40085, 1417, 62, 305, 3723, 62, 45016, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 45016, 1298, 493, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 10295, 62, 42832, 62, 14171, 1298, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 26518, 1157, 330, 62, 30300, 62, 76, 25147, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 26518, 1157, 897, 62, 17143, 7307, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1659, 67, 2611, 62, 2902, 8726, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1659, 67, 2611, 62, 84, 489, 676, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30300, 62, 76, 25147, 62, 2902, 8726, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30300, 62, 76, 25147, 62, 84, 489, 676, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 65, 824, 62, 16793, 62, 48530, 62, 929, 62, 2435, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 65, 824, 62, 16793, 62, 48530, 62, 929, 62, 2435, 62, 36654, 2701, 62, 11284, 1298, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9132, 5907, 62, 10494, 1014, 62, 13376, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 86, 22238, 62, 439, 3610, 62, 363, 576, 62, 16680, 35967, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 25202, 62, 38200, 14094, 1298, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17904, 786, 62, 11284, 1298, 965, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20077, 62, 7890, 62, 4480, 62, 16366, 1298, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 32233, 7203, 86, 22238, 62, 1462, 62, 3846, 934, 62, 4169, 1586, 1, 2599, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 1782, 628, 198, 2, 36658, 28, 198, 2, 23042, 263, 329, 25, 198, 2, 220, 1635, 705, 12860, 266, 9620, 477, 6, 198, 2, 36658, 28, 198, 4871, 5438, 54, 9620, 3237, 7, 15307, 54, 9620, 3237, 27054, 2611, 2599, 198, 220, 220, 220, 37227, 46677, 329, 905, 266, 9620, 477, 37811, 628, 220, 220, 220, 537, 72, 62, 21812, 796, 705, 12860, 266, 9620, 477, 6, 198 ]
1.620882
4,310
#!/usr/bin/env python from mnml import TokenBasedApplication, RegexBasedApplication, \ RequestHandler, HttpResponse, HttpResponseRedirect, \ development_server # a MNML application consists of a series of RequestHandlers which return # HttpResponse objects when methods are called. The method called should # match the HTTP method of the request. class Foo(RequestHandler): "Demonstrates multiple methods and taking optional arguments" def GET(self, number=1, number2=1): """ A get request which may provide two arguments, both of which have default values. """ # If you wanted you could use a template engine of your choice # here as long as it can render to a string which # can be returned in the body of a HttpResponse return HttpResponse("<h1>Hello World of %s and %s</h1>" % (number, number2) ) def PUT(self): "A simple demonstration of a PUT method" return HttpResponse("<h1>Hello World of Put</h1>") class Form(RequestHandler): "Demonstrates display a form and accept POST data" def GET(self, number=1, number2=1): """ Display the form """ # If you wanted you could use a template engine of your choice # here as long as it can render to a string which # can be returned in the body of a HttpResponse return HttpResponse("""<form action="/form" method="post"> <input type="text" name="data" id="data"/> <input type="submit" value="submit"/> </form>""" ) def POST(self): "Take the POST data and display it on the page" data = self.request.POST['data'].value return HttpResponse("<h1>Hello World of %s</h1>" % data) class Bar(RequestHandler): "A second handler, demonstrating different methods" def GET(self): "Demonstration of using a 301 redirect" return HttpResponseRedirect("/") def DELETE(self): "Demonstration of using a 302 redirect" return HttpResponseRedirect("/", False) class NotFoundPageHandler(RequestHandler): """ Although the framework will capture page not found errors you might want to do that yourself so you have more control over what happends next """ def GET(self): """ Demonstration of using the build in error response. You'll probably want to overload that in some cases to get even more control over procedings """ return self.error(404) # MNML supports two different routing mechanisms. One using regular # expressions and another using tokens. This is done predominantly to # highlight the pluggable nature of MNML, but also because the two # authors both prefer different approaches. Use whichever suites you best. routes = ( (r'^/$', Foo), (r'^/form$', Form), (r'^/foo/([0-9]+)/([0-9]+)', Foo), (r'^/bar$', Bar), ('/.*', NotFoundPageHandler), ) application = RegexBasedApplication(routes) """ routes = ( ('/', Foo), ('/myview/:stuff/', Bar) ) application = TokenBasedApplication(routes) """ if __name__ == '__main__': # run the MNML development server development_server(application)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 6738, 285, 77, 4029, 1330, 29130, 15001, 23416, 11, 797, 25636, 15001, 23416, 11, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19390, 25060, 11, 367, 29281, 31077, 11, 367, 29281, 31077, 7738, 1060, 11, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2478, 62, 15388, 198, 198, 2, 257, 29060, 5805, 3586, 10874, 286, 257, 2168, 286, 19390, 12885, 8116, 543, 1441, 198, 2, 367, 29281, 31077, 5563, 618, 5050, 389, 1444, 13, 383, 2446, 1444, 815, 220, 198, 2, 2872, 262, 14626, 2446, 286, 262, 2581, 13, 198, 198, 4871, 36080, 7, 18453, 25060, 2599, 198, 220, 220, 220, 366, 35477, 2536, 689, 3294, 5050, 290, 2263, 11902, 7159, 1, 198, 220, 220, 220, 825, 17151, 7, 944, 11, 1271, 28, 16, 11, 1271, 17, 28, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 317, 651, 2581, 543, 743, 2148, 734, 7159, 11, 1111, 286, 543, 423, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 3815, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 345, 2227, 345, 714, 779, 257, 11055, 3113, 286, 534, 3572, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 994, 355, 890, 355, 340, 460, 8543, 284, 257, 4731, 543, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 460, 307, 4504, 287, 262, 1767, 286, 257, 367, 29281, 31077, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7203, 27, 71, 16, 29, 15496, 2159, 286, 4064, 82, 290, 4064, 82, 3556, 71, 16, 24618, 4064, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17618, 11, 1271, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 198, 220, 220, 220, 825, 350, 3843, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 366, 32, 2829, 13646, 286, 257, 350, 3843, 2446, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7203, 27, 71, 16, 29, 15496, 2159, 286, 5930, 3556, 71, 16, 29, 4943, 198, 220, 220, 220, 220, 198, 4871, 5178, 7, 18453, 25060, 2599, 198, 220, 220, 220, 366, 35477, 2536, 689, 3359, 257, 1296, 290, 2453, 24582, 1366, 1, 198, 220, 220, 220, 825, 17151, 7, 944, 11, 1271, 28, 16, 11, 1271, 17, 28, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 16531, 262, 1296, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 345, 2227, 345, 714, 779, 257, 11055, 3113, 286, 534, 3572, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 994, 355, 890, 355, 340, 460, 8543, 284, 257, 4731, 543, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 460, 307, 4504, 287, 262, 1767, 286, 257, 367, 29281, 31077, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7203, 15931, 27, 687, 2223, 35922, 687, 1, 2446, 2625, 7353, 5320, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1279, 15414, 2099, 2625, 5239, 1, 1438, 2625, 7890, 1, 4686, 2625, 7890, 26700, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1279, 15414, 2099, 2625, 46002, 1, 1988, 2625, 46002, 26700, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7359, 687, 29, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 24582, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 366, 12322, 262, 24582, 1366, 290, 3359, 340, 319, 262, 2443, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2116, 13, 25927, 13, 32782, 17816, 7890, 6, 4083, 8367, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7203, 27, 71, 16, 29, 15496, 2159, 286, 4064, 82, 3556, 71, 16, 24618, 4064, 1366, 8, 198, 198, 4871, 2409, 7, 18453, 25060, 2599, 198, 220, 220, 220, 366, 32, 1218, 21360, 11, 21135, 1180, 5050, 1, 198, 220, 220, 220, 825, 17151, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 366, 35477, 12401, 286, 1262, 257, 25643, 18941, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 7203, 14, 4943, 628, 220, 220, 220, 825, 5550, 2538, 9328, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 366, 35477, 12401, 286, 1262, 257, 32591, 18941, 1, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 7203, 14, 1600, 10352, 8, 198, 220, 220, 220, 220, 198, 4871, 1892, 21077, 9876, 25060, 7, 18453, 25060, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4900, 262, 9355, 481, 8006, 2443, 407, 1043, 8563, 345, 198, 220, 220, 220, 1244, 765, 284, 466, 326, 3511, 523, 345, 423, 517, 1630, 625, 198, 220, 220, 220, 644, 1147, 2412, 1306, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 825, 17151, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 7814, 12401, 286, 1262, 262, 1382, 287, 4049, 2882, 13, 198, 220, 220, 220, 220, 220, 220, 220, 921, 1183, 2192, 765, 284, 31754, 326, 287, 617, 2663, 284, 220, 198, 220, 220, 220, 220, 220, 220, 220, 651, 772, 517, 1630, 625, 5131, 654, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 18224, 7, 26429, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 2, 29060, 5805, 6971, 734, 1180, 28166, 11701, 13, 1881, 1262, 3218, 198, 2, 14700, 290, 1194, 1262, 16326, 13, 770, 318, 1760, 20736, 284, 198, 2, 7238, 262, 6107, 70, 540, 3450, 286, 29060, 5805, 11, 475, 635, 780, 262, 734, 198, 2, 7035, 1111, 4702, 1180, 10581, 13, 5765, 26204, 45861, 345, 1266, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 81, 448, 274, 796, 357, 198, 220, 220, 220, 357, 81, 6, 61, 32624, 3256, 36080, 828, 198, 220, 220, 220, 357, 81, 6, 61, 14, 687, 3, 3256, 5178, 828, 198, 220, 220, 220, 357, 81, 6, 61, 14, 21943, 14, 26933, 15, 12, 24, 48688, 20679, 26933, 15, 12, 24, 60, 28988, 3256, 36080, 828, 198, 220, 220, 220, 357, 81, 6, 61, 14, 5657, 3, 3256, 2409, 828, 198, 220, 220, 220, 19203, 11757, 9, 3256, 1892, 21077, 9876, 25060, 828, 198, 8, 198, 31438, 796, 797, 25636, 15001, 23416, 7, 81, 448, 274, 8, 198, 198, 37811, 198, 81, 448, 274, 796, 357, 198, 220, 220, 220, 19203, 14, 3256, 36080, 828, 198, 220, 220, 220, 19203, 14, 1820, 1177, 14, 25, 41094, 14, 3256, 2409, 8, 198, 8, 198, 31438, 796, 29130, 15001, 23416, 7, 81, 448, 274, 8, 198, 37811, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1303, 1057, 262, 29060, 5805, 2478, 4382, 198, 220, 220, 220, 2478, 62, 15388, 7, 31438, 8 ]
2.674738
1,239
from django.conf import settings from django.conf.urls.defaults import patterns, include, url # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover() urlpatterns = patterns( '', url(r'^admin/', include(admin.site.urls)), # Use "linaro-openid" to allow peaceful coexistence of both # python-apache-openid and django-openid authentication on the # same server. When we get rid of apache openid protection, # we can go back to using just "openid" here. url(r'^linaro-openid/', include('django_openid_auth.urls')), url(r'^logout/$', 'django.contrib.auth.views.logout'), # Handle JS libs and CSS. url(r'^js/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.JS_PATH}), url(r'^css/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.CSS_PATH}), url(r'^get-remote-static', 'license_protected_downloads.views.get_remote_static', name='get_remote_static'), # The license page... url(r'^license$', 'license_protected_downloads.views.show_license', name='show_license'), # Exceptions redirected to root... url(r'^license', 'license_protected_downloads.views.redirect_to_root', name='redirect_to_root'), # Accept the license url(r'^accept-license', 'license_protected_downloads.views.accept_license', name='accept_license'), # Recursively get files for rendering (async calls accepted only). url(r'^get-textile-files', 'license_protected_downloads.views.get_textile_files', name='get_textile_files'), url(r'^api/ls/(?P<path>.*)$', 'license_protected_downloads.api.v1.list_files_api'), url(r'^api/license/(?P<path>.*)$', 'license_protected_downloads.api.v1.get_license_api'), url(r'^api/v2/token/(?P<token>.*)$', 'license_protected_downloads.api.v2.token'), url(r'^api/v2/publish/(?P<path>.*)$', 'license_protected_downloads.api.v2.publish'), # Catch-all. We always return a file (or try to) if it exists. # This handler does that. url(r'(?P<path>.*)', 'license_protected_downloads.views.file_server'), )
[ 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 6738, 42625, 14208, 13, 10414, 13, 6371, 82, 13, 12286, 82, 1330, 7572, 11, 2291, 11, 19016, 198, 198, 2, 791, 23893, 262, 1306, 734, 3951, 284, 7139, 262, 13169, 25, 198, 6738, 42625, 14208, 13, 3642, 822, 1330, 13169, 198, 28482, 13, 2306, 375, 29392, 3419, 628, 198, 6371, 33279, 82, 796, 7572, 7, 198, 220, 220, 220, 705, 3256, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 28482, 14, 3256, 2291, 7, 28482, 13, 15654, 13, 6371, 82, 36911, 628, 220, 220, 220, 1303, 5765, 366, 2815, 12022, 12, 9654, 312, 1, 284, 1249, 12309, 763, 41084, 286, 1111, 198, 220, 220, 220, 1303, 21015, 12, 43073, 12, 9654, 312, 290, 42625, 14208, 12, 9654, 312, 18239, 319, 262, 198, 220, 220, 220, 1303, 976, 4382, 13, 220, 1649, 356, 651, 5755, 286, 2471, 4891, 1280, 312, 4800, 11, 198, 220, 220, 220, 1303, 356, 460, 467, 736, 284, 1262, 655, 366, 9654, 312, 1, 994, 13, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 2815, 12022, 12, 9654, 312, 14, 3256, 2291, 10786, 28241, 14208, 62, 9654, 312, 62, 18439, 13, 6371, 82, 11537, 828, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 6404, 448, 32624, 3256, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 33571, 13, 6404, 448, 33809, 628, 220, 220, 220, 1303, 33141, 26755, 9195, 82, 290, 17391, 13, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 8457, 29006, 30, 47, 27, 6978, 29, 15885, 8, 3, 3256, 705, 28241, 14208, 13, 33571, 13, 12708, 13, 2655, 303, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 22897, 62, 15763, 10354, 6460, 13, 20120, 62, 34219, 92, 828, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 25471, 29006, 30, 47, 27, 6978, 29, 15885, 8, 3, 3256, 705, 28241, 14208, 13, 33571, 13, 12708, 13, 2655, 303, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1391, 6, 22897, 62, 15763, 10354, 6460, 13, 49155, 62, 34219, 92, 828, 628, 220, 220, 220, 19016, 7, 81, 6, 61, 1136, 12, 47960, 12, 12708, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 33571, 13, 1136, 62, 47960, 62, 12708, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 1136, 62, 47960, 62, 12708, 33809, 628, 220, 220, 220, 1303, 383, 5964, 2443, 986, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 43085, 3, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 33571, 13, 12860, 62, 43085, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 12860, 62, 43085, 33809, 628, 220, 220, 220, 1303, 1475, 11755, 45158, 284, 6808, 986, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 43085, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 33571, 13, 445, 1060, 62, 1462, 62, 15763, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 445, 1060, 62, 1462, 62, 15763, 33809, 628, 220, 220, 220, 1303, 21699, 262, 5964, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 13635, 12, 43085, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 33571, 13, 13635, 62, 43085, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 13635, 62, 43085, 33809, 628, 220, 220, 220, 1303, 3311, 1834, 2280, 651, 3696, 329, 14837, 357, 292, 13361, 3848, 6292, 691, 737, 198, 220, 220, 220, 19016, 7, 81, 6, 61, 1136, 12, 5239, 576, 12, 16624, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 33571, 13, 1136, 62, 5239, 576, 62, 16624, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1438, 11639, 1136, 62, 5239, 576, 62, 16624, 33809, 628, 220, 220, 220, 19016, 7, 81, 6, 61, 15042, 14, 7278, 29006, 30, 47, 27, 6978, 29, 15885, 8, 3, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 15042, 13, 85, 16, 13, 4868, 62, 16624, 62, 15042, 33809, 628, 220, 220, 220, 19016, 7, 81, 6, 61, 15042, 14, 43085, 29006, 30, 47, 27, 6978, 29, 15885, 8, 3, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 15042, 13, 85, 16, 13, 1136, 62, 43085, 62, 15042, 33809, 628, 220, 220, 220, 19016, 7, 81, 6, 61, 15042, 14, 85, 17, 14, 30001, 29006, 30, 47, 27, 30001, 29, 15885, 8, 3, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 15042, 13, 85, 17, 13, 30001, 33809, 628, 220, 220, 220, 19016, 7, 81, 6, 61, 15042, 14, 85, 17, 14, 12984, 1836, 29006, 30, 47, 27, 6978, 29, 15885, 8, 3, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43085, 62, 24326, 62, 15002, 82, 13, 15042, 13, 85, 17, 13, 12984, 1836, 33809, 628, 220, 220, 220, 1303, 25750, 12, 439, 13, 775, 1464, 1441, 257, 2393, 357, 273, 1949, 284, 8, 611, 340, 7160, 13, 198, 220, 220, 220, 1303, 770, 21360, 857, 326, 13, 198, 220, 220, 220, 19016, 7, 81, 6, 7, 30, 47, 27, 6978, 29, 15885, 8, 3256, 705, 43085, 62, 24326, 62, 15002, 82, 13, 33571, 13, 7753, 62, 15388, 33809, 198, 8, 198 ]
2.445295
914
"""Gather -- Collect all your plugins Gather allows a way to register plugins. It features the ability to register the plugins from any module, in any package, in any distribution. A given module can register plugins of multiple types. In order to have anything registered from a package, it needs to declare that it supports :code:`gather` in its `setup.py`: .. code:: entry_points={ 'gather': [ "dummy=ROOT_PACKAGE:dummy", ] The :code:`ROOT_PACKAGE` should point to the Python name of the package: i.e., what users are expected to :code:`import` at the top-level. Note that while having special facilities to run functions as subcommands, Gather can be used to collect anything. """ import importlib import sys import pkg_resources import attr import venusian class GatherCollisionError(ValueError): """Two or more plugins registered for the same name.""" def _one_of(_registry, _effective_name, objct): """ Assign one of the possible options. When given as a collection strategy to :code:`collect`, this will assign one of the options to a name in case more than one item is registered to the same name. This is the default. """ return objct def _all(registry, effective_name, objct): """ Assign all of the possible options. Collect all registered items into a set, and assign that set to a name. Note that even if only one item is assigned to a name, that name will be assigned to a set of length 1. """ myset = registry.get(effective_name, set()) myset.add(objct) return myset def _exactly_one(registry, effective_name, objct): """ Raise an error on colliding registration. If more than one item is registered to the same name, raise a :code:`GatherCollisionError`. """ if effective_name in registry: raise GatherCollisionError("Attempt to double register", registry, effective_name, objct) return objct @attr.s(frozen=True) class Collector(object): """ A plugin collector. A collector allows to *register* functions or classes by modules, and *collect*-ing them when they need to be used. """ name = attr.ib(default=None) depth = attr.ib(default=1) one_of = staticmethod(_one_of) all = staticmethod(_all) exactly_one = staticmethod(_exactly_one) def register(self, name=None, transform=lambda x: x): """ Register a class or function Args: name (str): optional. Name to register the class or function as. (default is name of object) transform (callable): optional. A one-argument function. Will be called, and the return value used in collection. Default is identity function This is meant to be used as a decoator: .. code:: @COLLECTOR.register() def specific_subcommand(args): pass @COLLECTOR.register(name='another_specific_name') def main(args): pass """ def attach(func): """Attach callback to be called when object is scanned""" venusian.attach(func, callback, depth=self.depth) return func return attach def collect(self, strategy=one_of.__func__): """ Collect all registered functions or classes. Returns a dictionary mapping names to registered elements. """ def ignore_import_error(_unused): """ Ignore ImportError during collection. Some modules raise import errors for various reasons, and should be just treated as missing. """ if not issubclass(sys.exc_info()[0], ImportError): raise # pragma: no cover params = _ScannerParameters(strategy=strategy) scanner = venusian.Scanner(update=params.update, tag=self) for module in _get_modules(): scanner.scan(module, onerror=ignore_import_error) params.raise_if_needed() return params.registry @attr.s class _ScannerParameters(object): """ Parameters for scanner Update the registry respecting the strategy, and raise errors at the end. """ _please_raise = attr.ib(init=False, default=None) _strategy = attr.ib() registry = attr.ib(init=False, default=attr.Factory(dict)) def update(self, name, objct): """Update registry with name->objct""" try: res = self._strategy(self.registry, name, objct) self.registry[name] = res except GatherCollisionError as exc: self._please_raise = exc def raise_if_needed(self): """Raise exception if any of the updates failed.""" if self._please_raise is not None: raise self._please_raise def run(argv, commands, version, output): """ Run the specified subcommand. Args: argv (list of str): Arguments to be processed commands (mapping of str to callables): Commands (usually collected by a :code:`Collector`) version (str): Version to display if :code:`--version` is asked output (file): Where to write output to """ if len(argv) < 1: argv = argv + ['help'] if argv[0] in ('version', '--version'): output.write("Version {}\n".format(version)) return if argv[0] in ('help', '--help') or argv[0] not in commands: output.write("Available subcommands:\n") for command in commands.keys(): output.write("\t{}\n".format(command)) output.write("Run subcommand with '--help' for more information\n") return commands[argv[0]](argv) @attr.s(frozen=True) class Wrapper(object): """Add extra data to an object""" original = attr.ib() extra = attr.ib() @classmethod def glue(cls, extra): """ Glue extra data to an object Args: extra: what to add Returns: callable: function of one argument that returns a :code:`Wrapped` This method is useful mainly as the :code:`transform` parameter of a :code:`register` call. """ def ret(original): """Return a :code:`Wrapper` with the original and extra""" return cls(original=original, extra=extra) return ret __all__ = ['Collector', 'run', 'Wrapper']
[ 37811, 38, 1032, 1377, 9745, 477, 534, 20652, 198, 198, 38, 1032, 3578, 257, 835, 284, 7881, 20652, 13, 198, 1026, 3033, 262, 2694, 284, 7881, 262, 20652, 422, 597, 8265, 11, 198, 259, 597, 5301, 11, 287, 597, 6082, 13, 198, 32, 1813, 8265, 460, 7881, 20652, 286, 3294, 3858, 13, 198, 198, 818, 1502, 284, 423, 1997, 6823, 422, 257, 5301, 11, 198, 270, 2476, 284, 13627, 326, 340, 6971, 1058, 8189, 25, 63, 70, 1032, 63, 287, 663, 4600, 40406, 13, 9078, 63, 25, 198, 198, 492, 2438, 3712, 628, 220, 220, 220, 5726, 62, 13033, 34758, 198, 220, 220, 220, 220, 220, 220, 220, 705, 70, 1032, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 67, 13513, 28, 13252, 2394, 62, 47, 8120, 11879, 25, 67, 13513, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 198, 464, 1058, 8189, 25, 63, 13252, 2394, 62, 47, 8120, 11879, 63, 815, 966, 284, 262, 11361, 1438, 286, 262, 5301, 25, 198, 72, 13, 68, 1539, 644, 2985, 389, 2938, 284, 1058, 8189, 25, 63, 11748, 63, 379, 262, 1353, 12, 5715, 13, 198, 198, 6425, 326, 981, 1719, 2041, 7291, 284, 1057, 5499, 355, 850, 9503, 1746, 11, 198, 38, 1032, 460, 307, 973, 284, 2824, 1997, 13, 198, 37811, 198, 11748, 1330, 8019, 198, 11748, 25064, 198, 198, 11748, 279, 10025, 62, 37540, 198, 198, 11748, 708, 81, 198, 198, 11748, 8710, 385, 666, 628, 198, 198, 4871, 402, 1032, 22667, 1166, 12331, 7, 11395, 12331, 2599, 198, 220, 220, 220, 37227, 7571, 393, 517, 20652, 6823, 329, 262, 976, 1438, 526, 15931, 628, 198, 4299, 4808, 505, 62, 1659, 28264, 2301, 4592, 11, 4808, 16803, 62, 3672, 11, 26181, 310, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2195, 570, 530, 286, 262, 1744, 3689, 13, 628, 220, 220, 220, 1649, 1813, 355, 257, 4947, 4811, 284, 1058, 8189, 25, 63, 33327, 47671, 198, 220, 220, 220, 428, 481, 8333, 530, 286, 262, 3689, 284, 257, 1438, 287, 1339, 517, 198, 220, 220, 220, 621, 530, 2378, 318, 6823, 284, 262, 976, 1438, 13, 628, 220, 220, 220, 770, 318, 262, 4277, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 26181, 310, 628, 198, 4299, 4808, 439, 7, 2301, 4592, 11, 4050, 62, 3672, 11, 26181, 310, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2195, 570, 477, 286, 262, 1744, 3689, 13, 628, 220, 220, 220, 9745, 477, 6823, 3709, 656, 257, 900, 11, 198, 220, 220, 220, 290, 8333, 326, 900, 284, 257, 1438, 13, 5740, 326, 198, 220, 220, 220, 772, 611, 691, 530, 2378, 318, 8686, 284, 257, 1438, 11, 198, 220, 220, 220, 326, 1438, 481, 307, 8686, 284, 257, 900, 286, 4129, 352, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 616, 2617, 796, 20478, 13, 1136, 7, 16803, 62, 3672, 11, 900, 28955, 198, 220, 220, 220, 616, 2617, 13, 2860, 7, 26801, 310, 8, 198, 220, 220, 220, 1441, 616, 2617, 628, 198, 4299, 4808, 1069, 24342, 62, 505, 7, 2301, 4592, 11, 4050, 62, 3672, 11, 26181, 310, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 35123, 281, 4049, 319, 2927, 2530, 9352, 13, 628, 220, 220, 220, 1002, 517, 621, 530, 2378, 318, 6823, 284, 262, 198, 220, 220, 220, 976, 1438, 11, 5298, 257, 1058, 8189, 25, 63, 38, 1032, 22667, 1166, 12331, 44646, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 4050, 62, 3672, 287, 20478, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 402, 1032, 22667, 1166, 12331, 7203, 37177, 284, 4274, 7881, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20478, 11, 4050, 62, 3672, 11, 26181, 310, 8, 198, 220, 220, 220, 1441, 26181, 310, 628, 198, 31, 35226, 13, 82, 7, 69, 42005, 28, 17821, 8, 198, 4871, 17573, 7, 15252, 2599, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 13877, 22967, 13, 628, 220, 220, 220, 317, 22967, 3578, 284, 1635, 30238, 9, 5499, 393, 6097, 416, 13103, 11, 198, 220, 220, 220, 290, 1635, 33327, 9, 12, 278, 606, 618, 484, 761, 284, 307, 973, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1438, 796, 708, 81, 13, 571, 7, 12286, 28, 14202, 8, 628, 220, 220, 220, 6795, 796, 708, 81, 13, 571, 7, 12286, 28, 16, 8, 628, 220, 220, 220, 530, 62, 1659, 796, 9037, 24396, 28264, 505, 62, 1659, 8, 628, 220, 220, 220, 477, 796, 9037, 24396, 28264, 439, 8, 628, 220, 220, 220, 3446, 62, 505, 796, 9037, 24396, 28264, 1069, 24342, 62, 505, 8, 628, 220, 220, 220, 825, 7881, 7, 944, 11, 1438, 28, 14202, 11, 6121, 28, 50033, 2124, 25, 2124, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 17296, 257, 1398, 393, 2163, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 357, 2536, 2599, 11902, 13, 6530, 284, 7881, 262, 1398, 393, 2163, 355, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 12286, 318, 1438, 286, 2134, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6121, 357, 13345, 540, 2599, 11902, 13, 317, 530, 12, 49140, 2163, 13, 2561, 307, 1444, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 262, 1441, 1988, 973, 287, 4947, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15161, 318, 5369, 2163, 628, 220, 220, 220, 220, 220, 220, 220, 770, 318, 4001, 284, 307, 973, 355, 257, 875, 78, 1352, 25, 628, 220, 220, 220, 220, 220, 220, 220, 11485, 2438, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 25154, 16779, 1581, 13, 30238, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 825, 2176, 62, 7266, 21812, 7, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2488, 25154, 16779, 1581, 13, 30238, 7, 3672, 11639, 29214, 62, 11423, 62, 3672, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 825, 1388, 7, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 628, 220, 220, 220, 220, 220, 220, 220, 825, 10199, 7, 20786, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 33296, 23838, 284, 307, 1444, 618, 2134, 318, 28660, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8710, 385, 666, 13, 47348, 7, 20786, 11, 23838, 11, 6795, 28, 944, 13, 18053, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 25439, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10199, 628, 220, 220, 220, 825, 2824, 7, 944, 11, 4811, 28, 505, 62, 1659, 13, 834, 20786, 834, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 9745, 477, 6823, 5499, 393, 6097, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 257, 22155, 16855, 3891, 284, 6823, 4847, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 825, 8856, 62, 11748, 62, 18224, 28264, 403, 1484, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41032, 17267, 12331, 1141, 4947, 13, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2773, 13103, 5298, 1330, 8563, 329, 2972, 3840, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 815, 307, 655, 5716, 355, 4814, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1189, 549, 4871, 7, 17597, 13, 41194, 62, 10951, 3419, 58, 15, 4357, 17267, 12331, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 796, 4808, 33351, 1008, 48944, 7, 2536, 4338, 28, 2536, 4338, 8, 198, 220, 220, 220, 220, 220, 220, 220, 27474, 796, 8710, 385, 666, 13, 33351, 1008, 7, 19119, 28, 37266, 13, 19119, 11, 7621, 28, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 329, 8265, 287, 4808, 1136, 62, 18170, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27474, 13, 35836, 7, 21412, 11, 319, 18224, 28, 46430, 62, 11748, 62, 18224, 8, 198, 220, 220, 220, 220, 220, 220, 220, 42287, 13, 40225, 62, 361, 62, 27938, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 42287, 13, 2301, 4592, 628, 198, 31, 35226, 13, 82, 198, 4871, 4808, 33351, 1008, 48944, 7, 15252, 2599, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 40117, 329, 27474, 628, 220, 220, 220, 10133, 262, 20478, 30796, 262, 4811, 11, 198, 220, 220, 220, 290, 5298, 8563, 379, 262, 886, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 4808, 29688, 62, 40225, 796, 708, 81, 13, 571, 7, 15003, 28, 25101, 11, 4277, 28, 14202, 8, 198, 220, 220, 220, 4808, 2536, 4338, 796, 708, 81, 13, 571, 3419, 198, 220, 220, 220, 20478, 796, 708, 81, 13, 571, 7, 15003, 28, 25101, 11, 4277, 28, 35226, 13, 22810, 7, 11600, 4008, 628, 220, 220, 220, 825, 4296, 7, 944, 11, 1438, 11, 26181, 310, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10260, 20478, 351, 1438, 3784, 26801, 310, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 581, 796, 2116, 13557, 2536, 4338, 7, 944, 13, 2301, 4592, 11, 1438, 11, 26181, 310, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2301, 4592, 58, 3672, 60, 796, 581, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 402, 1032, 22667, 1166, 12331, 355, 2859, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 29688, 62, 40225, 796, 2859, 628, 220, 220, 220, 825, 5298, 62, 361, 62, 27938, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 21762, 786, 6631, 611, 597, 286, 262, 5992, 4054, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 29688, 62, 40225, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2116, 13557, 29688, 62, 40225, 628, 198, 4299, 1057, 7, 853, 85, 11, 9729, 11, 2196, 11, 5072, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5660, 262, 7368, 850, 21812, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1822, 85, 357, 4868, 286, 965, 2599, 20559, 2886, 284, 307, 13686, 198, 220, 220, 220, 220, 220, 220, 220, 9729, 357, 76, 5912, 286, 965, 284, 869, 2977, 2599, 49505, 357, 23073, 7723, 416, 257, 1058, 8189, 25, 63, 31337, 273, 63, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 357, 2536, 2599, 10628, 284, 3359, 611, 1058, 8189, 25, 63, 438, 9641, 63, 318, 1965, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 357, 7753, 2599, 6350, 284, 3551, 5072, 284, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 18896, 7, 853, 85, 8, 1279, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1822, 85, 796, 1822, 85, 1343, 37250, 16794, 20520, 198, 220, 220, 220, 611, 1822, 85, 58, 15, 60, 287, 19203, 9641, 3256, 705, 438, 9641, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 13, 13564, 7203, 14815, 23884, 59, 77, 1911, 18982, 7, 9641, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 611, 1822, 85, 58, 15, 60, 287, 19203, 16794, 3256, 705, 438, 16794, 11537, 393, 1822, 85, 58, 15, 60, 407, 287, 9729, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 13, 13564, 7203, 10493, 850, 9503, 1746, 7479, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 329, 3141, 287, 9729, 13, 13083, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 13, 13564, 7203, 59, 83, 90, 32239, 77, 1911, 18982, 7, 21812, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 13, 13564, 7203, 10987, 850, 21812, 351, 705, 438, 16794, 6, 329, 517, 1321, 59, 77, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 198, 220, 220, 220, 9729, 58, 853, 85, 58, 15, 11907, 7, 853, 85, 8, 628, 198, 31, 35226, 13, 82, 7, 69, 42005, 28, 17821, 8, 198, 4871, 27323, 2848, 7, 15252, 2599, 628, 220, 220, 220, 37227, 4550, 3131, 1366, 284, 281, 2134, 37811, 628, 220, 220, 220, 2656, 796, 708, 81, 13, 571, 3419, 628, 220, 220, 220, 3131, 796, 708, 81, 13, 571, 3419, 628, 220, 220, 220, 2488, 4871, 24396, 198, 220, 220, 220, 825, 22749, 7, 565, 82, 11, 3131, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2671, 518, 3131, 1366, 284, 281, 2134, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 25, 644, 284, 751, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 869, 540, 25, 2163, 286, 530, 4578, 326, 5860, 257, 1058, 8189, 25, 63, 36918, 1496, 63, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 318, 4465, 8384, 355, 262, 1058, 8189, 25, 63, 35636, 63, 11507, 198, 220, 220, 220, 220, 220, 220, 220, 286, 257, 1058, 8189, 25, 63, 30238, 63, 869, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 825, 1005, 7, 14986, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 257, 1058, 8189, 25, 63, 36918, 2848, 63, 351, 262, 2656, 290, 3131, 37811, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 537, 82, 7, 14986, 28, 14986, 11, 3131, 28, 26086, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1005, 628, 198, 834, 439, 834, 796, 37250, 31337, 273, 3256, 705, 5143, 3256, 705, 36918, 2848, 20520, 198 ]
2.537145
2,571
import gmsh import sys gmsh.initialize(sys.argv) gmsh.fltk.initialize() gmsh.option.setNumber("General.Terminal", 1) gmsh.model.add("square with cracks") surf1 = 1 gmsh.model.occ.addRectangle(0, 0, 0, 1, 1, surf1) pt1 = gmsh.model.occ.addPoint(0.2, 0.2, 0) pt2 = gmsh.model.occ.addPoint(0.4, 0.4, 0) line1 = gmsh.model.occ.addLine(pt1, pt2) pt3 = gmsh.model.occ.addPoint(0.6, 0.1, 0) pt4 = gmsh.model.occ.addPoint(0.1, 0.3, 0) line2 = gmsh.model.occ.addLine(pt3, pt4) o, m = gmsh.model.occ.fragment([(2,surf1)], [(1,line1), (1,line2)]) gmsh.model.occ.synchronize() # m contains, for each input entity (surf1, line1 and line2), the child entities # (if any) after the fragmentation, as lists of tuples. To apply the crack # plugin we group all the intersecting lines in a physical group new_surf = m[0][0][1] new_lines = [item[1] for sublist in m[1:] for item in sublist] gmsh.model.addPhysicalGroup(2, [new_surf], 100) gmsh.model.addPhysicalGroup(1, new_lines, 101) gmsh.model.mesh.generate(2) gmsh.plugin.setNumber("Crack", "PhysicalGroup", 101) gmsh.plugin.run("Crack") gmsh.fltk.run() gmsh.finalize()
[ 11748, 308, 907, 71, 198, 11748, 25064, 198, 198, 70, 907, 71, 13, 36733, 1096, 7, 17597, 13, 853, 85, 8, 198, 70, 907, 71, 13, 69, 2528, 74, 13, 36733, 1096, 3419, 198, 198, 70, 907, 71, 13, 18076, 13, 2617, 15057, 7203, 12218, 13, 44798, 282, 1600, 352, 8, 198, 198, 70, 907, 71, 13, 19849, 13, 2860, 7203, 23415, 351, 23217, 4943, 198, 198, 11793, 69, 16, 796, 352, 198, 70, 907, 71, 13, 19849, 13, 13966, 13, 2860, 45474, 9248, 7, 15, 11, 657, 11, 657, 11, 352, 11, 352, 11, 9053, 16, 8, 198, 198, 457, 16, 796, 308, 907, 71, 13, 19849, 13, 13966, 13, 2860, 12727, 7, 15, 13, 17, 11, 657, 13, 17, 11, 657, 8, 198, 457, 17, 796, 308, 907, 71, 13, 19849, 13, 13966, 13, 2860, 12727, 7, 15, 13, 19, 11, 657, 13, 19, 11, 657, 8, 198, 1370, 16, 796, 308, 907, 71, 13, 19849, 13, 13966, 13, 2860, 13949, 7, 457, 16, 11, 42975, 17, 8, 198, 457, 18, 796, 308, 907, 71, 13, 19849, 13, 13966, 13, 2860, 12727, 7, 15, 13, 21, 11, 657, 13, 16, 11, 657, 8, 198, 457, 19, 796, 308, 907, 71, 13, 19849, 13, 13966, 13, 2860, 12727, 7, 15, 13, 16, 11, 657, 13, 18, 11, 657, 8, 198, 1370, 17, 796, 308, 907, 71, 13, 19849, 13, 13966, 13, 2860, 13949, 7, 457, 18, 11, 42975, 19, 8, 198, 198, 78, 11, 285, 796, 308, 907, 71, 13, 19849, 13, 13966, 13, 8310, 363, 434, 26933, 7, 17, 11, 11793, 69, 16, 8, 4357, 47527, 16, 11, 1370, 16, 828, 357, 16, 11, 1370, 17, 8, 12962, 198, 70, 907, 71, 13, 19849, 13, 13966, 13, 28869, 11413, 1096, 3419, 198, 198, 2, 285, 4909, 11, 329, 1123, 5128, 9312, 357, 11793, 69, 16, 11, 1627, 16, 290, 1627, 17, 828, 262, 1200, 12066, 198, 2, 357, 361, 597, 8, 706, 262, 42965, 11, 355, 8341, 286, 12777, 2374, 13, 1675, 4174, 262, 8469, 198, 2, 13877, 356, 1448, 477, 262, 36177, 278, 3951, 287, 257, 3518, 1448, 198, 198, 3605, 62, 11793, 69, 796, 285, 58, 15, 7131, 15, 7131, 16, 60, 198, 3605, 62, 6615, 796, 685, 9186, 58, 16, 60, 329, 850, 4868, 287, 285, 58, 16, 47715, 329, 2378, 287, 850, 4868, 60, 198, 198, 70, 907, 71, 13, 19849, 13, 2860, 31611, 13247, 7, 17, 11, 685, 3605, 62, 11793, 69, 4357, 1802, 8, 198, 70, 907, 71, 13, 19849, 13, 2860, 31611, 13247, 7, 16, 11, 649, 62, 6615, 11, 8949, 8, 198, 198, 70, 907, 71, 13, 19849, 13, 76, 5069, 13, 8612, 378, 7, 17, 8, 198, 198, 70, 907, 71, 13, 33803, 13, 2617, 15057, 7203, 13916, 441, 1600, 366, 31611, 13247, 1600, 8949, 8, 198, 70, 907, 71, 13, 33803, 13, 5143, 7203, 13916, 441, 4943, 198, 198, 70, 907, 71, 13, 69, 2528, 74, 13, 5143, 3419, 198, 198, 70, 907, 71, 13, 20311, 1096, 3419, 198 ]
2.229541
501